robot_params.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059 #ifndef _ROBOT_PARAMS_H
00060 #define _ROBOT_PARAMS_H
00061
00062
00063 void initialize_robot_params(void);
00064
00065 #define PLAYER_NUM_ROBOT_TYPES 29
00066
00067
00068 typedef struct
00069 {
00070 double x;
00071 double y;
00072 double th;
00073 double length;
00074 double radius;
00075 } bumper_def_t;
00076
00077 typedef struct
00078 {
00079 double x;
00080 double y;
00081 double th;
00082 } sonar_pose_t;
00083
00084
00085 typedef struct
00086 {
00087 double AngleConvFactor;
00088 const char* Class;
00089 double DiffConvFactor;
00090 double DistConvFactor;
00091 int FrontBumpers;
00092 double GyroScaler;
00093 int HasMoveCommand;
00094 int Holonomic;
00095 int IRNum;
00096 int IRUnit;
00097 int LaserFlipped;
00098 const char* LaserIgnore;
00099 const char* LaserPort;
00100 int LaserPossessed;
00101 int LaserPowerControlled;
00102 int LaserTh;
00103 int LaserX;
00104 int LaserY;
00105 int MaxRVelocity;
00106 int MaxVelocity;
00107 int NewTableSensingIR;
00108 int NumFrontBumpers;
00109 int NumRearBumpers;
00110 double RangeConvFactor;
00111 int RearBumpers;
00112 int RequestEncoderPackets;
00113 int RequestIOPackets;
00114 int RobotDiagonal;
00115 int RobotLength;
00116 int RobotRadius;
00117 int RobotWidth;
00118 int RotAccel;
00119 int RotDecel;
00120 int RotVelMax;
00121 int SettableAccsDecs;
00122 int SettableVelMaxes;
00123 int SonarNum;
00124 const char* Subclass;
00125 int SwitchToBaudRate;
00126 int TableSensingIR;
00127 int TransAccel;
00128 int TransDecel;
00129 int TransVelMax;
00130 int Vel2Divisor;
00131 double VelConvFactor;
00132 sonar_pose_t sonar_pose[32];
00133 bumper_def_t bumper_geom[32];
00134 } RobotParams_t;
00135
00136
00137 extern RobotParams_t PlayerRobotParams[];
00138
00139
00140 #endif
Last updated 12 September 2005 21:38:45
|