yei
Dependencies: interface mbed enc_1multi calPID motorout KondoServoLibrary
Fork of cat18_operate by
workinfo/workinfo.cpp@38:9bed85d32c97, 2018-09-06 (annotated)
- Committer:
- shimizuta
- Date:
- Thu Sep 06 03:37:20 2018 +0000
- Revision:
- 38:9bed85d32c97
- Parent:
- 37:d4b711619962
- Child:
- 41:7e3b95c2fcac
a
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
shimizuta | 20:13934809e117 | 1 | #include "mbed.h" |
shimizuta | 20:13934809e117 | 2 | #include "state.h" |
shimizuta | 20:13934809e117 | 3 | #include "workinfo.h" |
shimizuta | 20:13934809e117 | 4 | #include "debug.h" |
shimizuta | 20:13934809e117 | 5 | #include "coordinate.h" |
shimizuta | 20:13934809e117 | 6 | //全部右で考えてる |
shimizuta | 20:13934809e117 | 7 | //穴の数 |
shimizuta | 20:13934809e117 | 8 | const int kWorkAreaNum = 6; |
shimizuta | 20:13934809e117 | 9 | const int kCommonAreaNum = 17; |
shimizuta | 20:13934809e117 | 10 | const int kBoxNum = 12; |
shimizuta | 23:f45eb02433a5 | 11 | //ワークエリアの配列のいれかた |
shimizuta | 23:f45eb02433a5 | 12 | int kWorkAreaIndex[kWorkAreaNum] = { |
shimizuta | 23:f45eb02433a5 | 13 | 3, 4, 5, |
shimizuta | 23:f45eb02433a5 | 14 | 0, 1, 2, |
shimizuta | 23:f45eb02433a5 | 15 | }; |
shimizuta | 23:f45eb02433a5 | 16 | //共通ワークエリア |
shimizuta | 23:f45eb02433a5 | 17 | const int kCommonAreaIndex[kCommonAreaNum] = { |
shimizuta | 23:f45eb02433a5 | 18 | 17, 18, 19, 20, 21, 22, |
shimizuta | 23:f45eb02433a5 | 19 | 12, 13, 14, 15, 16, |
shimizuta | 23:f45eb02433a5 | 20 | 6, 7, 8, 9, 10, 11, |
shimizuta | 23:f45eb02433a5 | 21 | }; |
shimizuta | 23:f45eb02433a5 | 22 | //shootingboxの配列のいれかた |
shimizuta | 23:f45eb02433a5 | 23 | const int kBoxIndex[kBoxNum] = { |
shimizuta | 23:f45eb02433a5 | 24 | 11, 10, 9, |
shimizuta | 23:f45eb02433a5 | 25 | 8, 7, 6, |
shimizuta | 23:f45eb02433a5 | 26 | 5, 4, 3, |
shimizuta | 23:f45eb02433a5 | 27 | 2, 1, 0, |
shimizuta | 23:f45eb02433a5 | 28 | }; |
shimizuta | 20:13934809e117 | 29 | //////////////////////////////変更出来るパラメータ |
shimizuta | 20:13934809e117 | 30 | //priority 取る順番を決める |
shimizuta | 20:13934809e117 | 31 | const int kWorkAreaPriority[kWorkAreaNum] = { |
yuto17320508 | 32:21229c96144a | 32 | 102, 101, 100, |
shimizuta | 38:9bed85d32c97 | 33 | 105, 104, 103, |
shimizuta | 20:13934809e117 | 34 | }; |
shimizuta | 20:13934809e117 | 35 | const int kCommonAreaPriority[kCommonAreaNum] = { |
shimizuta | 20:13934809e117 | 36 | 17, 16, 15, 14, 13, 12, |
shimizuta | 20:13934809e117 | 37 | 11, 10, 9, 8, 7, |
shimizuta | 20:13934809e117 | 38 | 6, 5, 4, 3, 2, 1, |
shimizuta | 20:13934809e117 | 39 | }; |
shimizuta | 20:13934809e117 | 40 | //workareaの補正値 |
shimizuta | 20:13934809e117 | 41 | const int kWorkAreaCorrect[kWorkAreaNum][3] = { |
shimizuta | 37:d4b711619962 | 42 | {0,-20,10},{0,0,10},{30,0,10}, |
shimizuta | 37:d4b711619962 | 43 | {0+20,0+30,100},{0,-20,0},{0,0,0}, |
shimizuta | 20:13934809e117 | 44 | }; |
shimizuta | 20:13934809e117 | 45 | const int kCommonAreaCorrect[kCommonAreaNum][3] = { |
shimizuta | 38:9bed85d32c97 | 46 | {0,20,40},{0,0,40},{0,40,40},{-10,50,40},{-10,30,40},{-30,50,40}, |
shimizuta | 38:9bed85d32c97 | 47 | {0,50,40},{0,50,40},{0,50,40},{0,50,40},{0,50,40}, |
shimizuta | 38:9bed85d32c97 | 48 | {10,50,40},{0,50,40},{30,50,40},{20,50,40},{0,50,40},{-10,50,40}, |
shimizuta | 20:13934809e117 | 49 | }; |
shimizuta | 20:13934809e117 | 50 | const int kBoxCorrect[kBoxNum][3] = { |
shimizuta | 37:d4b711619962 | 51 | {0,0,0},{0,0,0},{0,0,0}, |
shimizuta | 37:d4b711619962 | 52 | {0,0,0},{0,0,0},{0,0,0}, |
shimizuta | 37:d4b711619962 | 53 | {0,0,0},{0,0,0},{0,0,0}, |
shimizuta | 37:d4b711619962 | 54 | {0,0,0},{0,0,0},{0,0,0}, |
shimizuta | 20:13934809e117 | 55 | }; |
shimizuta | 29:ea48140fc85e | 56 | const int kHandCenter = 22;//想定先端と実際の先端位置のずれ |
shimizuta | 20:13934809e117 | 57 | |
shimizuta | 20:13934809e117 | 58 | const int kYawWorkAreaRedDegree = 270; |
shimizuta | 20:13934809e117 | 59 | const int kYawWorkAreaYellowDegree = 90; |
shimizuta | 20:13934809e117 | 60 | const int kYawCommonAreaDegree = 90; |
shimizuta | 20:13934809e117 | 61 | const int kYawBoxDegree = 90; |
shimizuta | 20:13934809e117 | 62 | |
shimizuta | 20:13934809e117 | 63 | const int kPitchWorkAreaDegree = -90; |
shimizuta | 28:bcfc84b481bc | 64 | const int kPitchCommonAreaDegree = -5; |
shimizuta | 38:9bed85d32c97 | 65 | const int kPitchBoxDegree = 10; |
shimizuta | 20:13934809e117 | 66 | ////////////////////////////// |
shimizuta | 20:13934809e117 | 67 | //配列のスタート番号 |
shimizuta | 20:13934809e117 | 68 | const int kWorkStart = 0; |
shimizuta | 20:13934809e117 | 69 | const int kCommonStart = kWorkAreaNum; |
shimizuta | 20:13934809e117 | 70 | |
shimizuta | 20:13934809e117 | 71 | WorkPosi work[kWorkAreaNum + kCommonAreaNum + 1];//最後の1つは番兵 |
shimizuta | 20:13934809e117 | 72 | BoxPosi shootingbox[kBoxNum]; |
shimizuta | 20:13934809e117 | 73 | Pattern now_pattern = NOPATTERN; |
shimizuta | 23:f45eb02433a5 | 74 | |
shimizuta | 20:13934809e117 | 75 | |
shimizuta | 20:13934809e117 | 76 | //関数名 |
shimizuta | 20:13934809e117 | 77 | void AreaNameSetup();//areanameを入れる。 |
shimizuta | 20:13934809e117 | 78 | void ShootingBoxPosition();//シューティングボックスにおける穴の座標を代入している |
shimizuta | 20:13934809e117 | 79 | void WorkPosition();//ワークエリア、共通ワークエリアにおける穴の座標を代入している |
shimizuta | 20:13934809e117 | 80 | void Priority();//ワークエリア、共通ワークエリアにおける穴の優先度を決めてる |
shimizuta | 20:13934809e117 | 81 | void ArrangementPattern(Pattern pattern); |
shimizuta | 20:13934809e117 | 82 | void ShootingBoxStuff(); |
shimizuta | 20:13934809e117 | 83 | void ExistReset();//is_existとcolorをリセット |
shimizuta | 20:13934809e117 | 84 | |
yoka06 | 26:5e292422cc08 | 85 | void WorkPosition() |
yoka06 | 26:5e292422cc08 | 86 | { |
yoka06 | 26:5e292422cc08 | 87 | DEBUG("WorkPosition() start\r\n"); |
yoka06 | 26:5e292422cc08 | 88 | //ワークエリア |
yoka06 | 26:5e292422cc08 | 89 | //x座標 |
yoka06 | 26:5e292422cc08 | 90 | for(int i=0; i<3; i++) { |
shimizuta | 29:ea48140fc85e | 91 | #ifdef RIGHT |
yoka06 | 26:5e292422cc08 | 92 | work[i].position[0] = -630 + 180 * i; |
yoka06 | 26:5e292422cc08 | 93 | work[i + 3].position[0] = -540 + 180 * i; |
shimizuta | 29:ea48140fc85e | 94 | #elif defined LEFT |
shimizuta | 29:ea48140fc85e | 95 | work[i].position[0] = -540 + 180 * i; |
shimizuta | 29:ea48140fc85e | 96 | work[i + 3].position[0] = -630 + 180 * i; |
shimizuta | 29:ea48140fc85e | 97 | #else |
shimizuta | 29:ea48140fc85e | 98 | DEBUG("error:There is no defined RIGHT/LEFT in WorkPosition\r\n"); |
shimizuta | 29:ea48140fc85e | 99 | #endif |
yoka06 | 26:5e292422cc08 | 100 | } |
yoka06 | 26:5e292422cc08 | 101 | //y座標 |
yoka06 | 26:5e292422cc08 | 102 | for(int i=0; i<3; i++) { |
shimizuta | 28:bcfc84b481bc | 103 | work[i].position[1]= 300 - 150; |
shimizuta | 30:af136b83b202 | 104 | work[i+3].position[1]= 210 + 150; |
yoka06 | 26:5e292422cc08 | 105 | } |
yoka06 | 26:5e292422cc08 | 106 | //z座標 |
shimizuta | 30:af136b83b202 | 107 | for(int i=0; i<6; i++) work[i].position[2]=-420; |
yoka06 | 26:5e292422cc08 | 108 | //共通ワークエリア |
yoka06 | 26:5e292422cc08 | 109 | //x座標 |
shimizuta | 29:ea48140fc85e | 110 | for(int i = kCommonStart; i<12; i++) { |
yoka06 | 26:5e292422cc08 | 111 | work[i].position[0]=-595+(i-kCommonStart)*80; |
yoka06 | 26:5e292422cc08 | 112 | work[i+11].position[0]=-595+(i-kCommonStart)*80; |
yoka06 | 26:5e292422cc08 | 113 | } |
yoka06 | 26:5e292422cc08 | 114 | for(int i=12; i<17; i++) work[i].position[0]=-555+(i-12)*80; |
yoka06 | 26:5e292422cc08 | 115 | //y座標 |
yoka06 | 26:5e292422cc08 | 116 | for(int i=kCommonStart; i<sizeof(work)/sizeof(work[0]); i++) { |
shimizuta | 29:ea48140fc85e | 117 | if(i < 12) { |
shimizuta | 29:ea48140fc85e | 118 | work[i].position[1]=595 + kHandCenter; |
shimizuta | 29:ea48140fc85e | 119 | } else if(i < 17) { |
shimizuta | 29:ea48140fc85e | 120 | work[i].position[1]=675 + kHandCenter; |
shimizuta | 29:ea48140fc85e | 121 | } else if(i < kCommonStart + kCommonAreaNum) { |
shimizuta | 29:ea48140fc85e | 122 | work[i].position[1]=755 + kHandCenter; |
yoka06 | 26:5e292422cc08 | 123 | } |
yoka06 | 26:5e292422cc08 | 124 | } |
yoka06 | 26:5e292422cc08 | 125 | //z座標 |
shimizuta | 28:bcfc84b481bc | 126 | for(int i=kCommonStart; i<kCommonStart + kCommonAreaNum; i++) work[i].position[2]=-350; |
yoka06 | 26:5e292422cc08 | 127 | for(int i = 0; i < kWorkAreaNum; i++) { |
yoka06 | 26:5e292422cc08 | 128 | for(int j = 0; j < 3; j++) work[kWorkAreaIndex[i]].position[j] += kWorkAreaCorrect[i][j]; |
yoka06 | 26:5e292422cc08 | 129 | } |
yoka06 | 26:5e292422cc08 | 130 | for(int i = 0; i < kCommonAreaNum; i++) { |
yoka06 | 26:5e292422cc08 | 131 | for(int j = 0; j < 3; j++) work[kCommonAreaIndex[i]].position[j] += kCommonAreaCorrect[i][j]; |
yoka06 | 26:5e292422cc08 | 132 | DEBUG("work %d %f,%f,%f\r\n",kCommonAreaIndex[i], work[kCommonAreaIndex[i]].position[0], work[kCommonAreaIndex[i]].position[1], work[kCommonAreaIndex[i]].position[2] ); |
yoka06 | 26:5e292422cc08 | 133 | } |
yoka06 | 26:5e292422cc08 | 134 | DEBUG("WorkPosition() finish\r\n"); |
yoka06 | 26:5e292422cc08 | 135 | } |
yoka06 | 26:5e292422cc08 | 136 | void ShootingBoxPosition() |
yoka06 | 26:5e292422cc08 | 137 | { |
yoka06 | 26:5e292422cc08 | 138 | DEBUG("ShootingBoxPosition() start\r\n"); |
yoka06 | 26:5e292422cc08 | 139 | //軸は一番右下の穴を原点に取っている. |
yoka06 | 26:5e292422cc08 | 140 | //x座標 |
yoka06 | 26:5e292422cc08 | 141 | for(int i=0; i<3; i++) { |
yoka06 | 26:5e292422cc08 | 142 | shootingbox[i].position[0]=240-80*i; |
yoka06 | 26:5e292422cc08 | 143 | shootingbox[i+3].position[0]=240-80*i; |
yoka06 | 26:5e292422cc08 | 144 | shootingbox[i+6].position[0]=240-80*i; |
yoka06 | 26:5e292422cc08 | 145 | shootingbox[i+9].position[0]=240-80*i; |
yoka06 | 26:5e292422cc08 | 146 | } |
yoka06 | 26:5e292422cc08 | 147 | //y座標 |
yoka06 | 26:5e292422cc08 | 148 | for(int i=0; i<4; i++) { |
shimizuta | 37:d4b711619962 | 149 | shootingbox[i*3].position[1]=160+80*i; |
shimizuta | 37:d4b711619962 | 150 | shootingbox[i*3+1].position[1]=160+80*i; |
shimizuta | 37:d4b711619962 | 151 | shootingbox[i*3+2].position[1]=160+80*i; |
yoka06 | 26:5e292422cc08 | 152 | } |
shimizuta | 37:d4b711619962 | 153 | for(int i = 0; i < kBoxNum; i++) shootingbox[i].position[1] += kArmLength[3] *(1 - cos(kPitchBoxDegree * kDegreeToRad)); |
yoka06 | 26:5e292422cc08 | 154 | //z座標 |
yuto17320508 | 33:3902febe8c45 | 155 | for(int i=0; i<sizeof(shootingbox)/sizeof(shootingbox[0]); i++) shootingbox[i].position[2]=125 + kArmLength[3] * sin(kPitchBoxDegree * kDegreeToRad); |
yoka06 | 26:5e292422cc08 | 156 | for(int i = 0; i < kBoxNum; i++) { |
yoka06 | 26:5e292422cc08 | 157 | for(int j = 0; j < 3; j++) shootingbox[kBoxIndex[i]].position[j] += kBoxCorrect[i][j]; |
yoka06 | 26:5e292422cc08 | 158 | } |
yoka06 | 26:5e292422cc08 | 159 | DEBUG("ShootingBoxPosition() finish\r\n"); |
yoka06 | 26:5e292422cc08 | 160 | } |
shimizuta | 20:13934809e117 | 161 | |
shimizuta | 20:13934809e117 | 162 | void SetupPosition() |
shimizuta | 20:13934809e117 | 163 | { |
shimizuta | 20:13934809e117 | 164 | DEBUG("SetupPosition() start\r\n"); |
shimizuta | 20:13934809e117 | 165 | ExistReset(); |
shimizuta | 20:13934809e117 | 166 | AreaNameSetup(); |
shimizuta | 20:13934809e117 | 167 | WorkPosition(); |
shimizuta | 20:13934809e117 | 168 | ShootingBoxPosition(); |
shimizuta | 20:13934809e117 | 169 | Priority(); |
shimizuta | 20:13934809e117 | 170 | DEBUG("SetupPosition() finish\r\n"); |
shimizuta | 20:13934809e117 | 171 | } |
shimizuta | 37:d4b711619962 | 172 | double GetIdealYawRad(WorkState state) |
shimizuta | 20:13934809e117 | 173 | { |
shimizuta | 20:13934809e117 | 174 | double degree = 0; |
shimizuta | 20:13934809e117 | 175 | switch(state.areaname) { |
shimizuta | 20:13934809e117 | 176 | case BOX: |
shimizuta | 20:13934809e117 | 177 | degree = kYawBoxDegree; |
shimizuta | 20:13934809e117 | 178 | break; |
shimizuta | 20:13934809e117 | 179 | case COMMONAREA: |
shimizuta | 20:13934809e117 | 180 | degree = kYawCommonAreaDegree; |
shimizuta | 20:13934809e117 | 181 | break; |
shimizuta | 20:13934809e117 | 182 | case WORKAREA: |
shimizuta | 20:13934809e117 | 183 | switch(state.color) { |
shimizuta | 20:13934809e117 | 184 | case RED: |
shimizuta | 20:13934809e117 | 185 | degree = kYawWorkAreaRedDegree; |
shimizuta | 20:13934809e117 | 186 | break; |
shimizuta | 20:13934809e117 | 187 | case YELLOW: |
shimizuta | 20:13934809e117 | 188 | degree = kYawWorkAreaYellowDegree; |
shimizuta | 20:13934809e117 | 189 | break; |
shimizuta | 20:13934809e117 | 190 | } |
shimizuta | 20:13934809e117 | 191 | break; |
shimizuta | 20:13934809e117 | 192 | } |
shimizuta | 20:13934809e117 | 193 | return degree * kDegreeToRad; |
shimizuta | 20:13934809e117 | 194 | } |
shimizuta | 37:d4b711619962 | 195 | double GetIdealPitchRad(WorkState state) |
shimizuta | 20:13934809e117 | 196 | { |
shimizuta | 20:13934809e117 | 197 | double degree = 0; |
shimizuta | 20:13934809e117 | 198 | switch(state.areaname) { |
shimizuta | 20:13934809e117 | 199 | case BOX: |
shimizuta | 20:13934809e117 | 200 | degree = kPitchBoxDegree; |
shimizuta | 20:13934809e117 | 201 | break; |
shimizuta | 20:13934809e117 | 202 | case COMMONAREA: |
shimizuta | 20:13934809e117 | 203 | degree = kPitchCommonAreaDegree; |
shimizuta | 20:13934809e117 | 204 | break; |
shimizuta | 20:13934809e117 | 205 | case WORKAREA: |
shimizuta | 20:13934809e117 | 206 | degree = kPitchWorkAreaDegree; |
shimizuta | 20:13934809e117 | 207 | break; |
shimizuta | 20:13934809e117 | 208 | } |
shimizuta | 20:13934809e117 | 209 | return degree * kDegreeToRad; |
shimizuta | 20:13934809e117 | 210 | } |
shimizuta | 20:13934809e117 | 211 | void YawPitchSetup() |
shimizuta | 20:13934809e117 | 212 | { |
shimizuta | 20:13934809e117 | 213 | DEBUG("YawPitchSetup() start\r\n"); |
shimizuta | 20:13934809e117 | 214 | for(int i = 0; i < kWorkAreaNum+ kCommonAreaNum; i++) { |
shimizuta | 20:13934809e117 | 215 | work[i].yaw_rad = GetIdealYawRad(work[i]); |
shimizuta | 20:13934809e117 | 216 | work[i].pitch_rad = GetIdealPitchRad(work[i]); |
shimizuta | 20:13934809e117 | 217 | } |
shimizuta | 20:13934809e117 | 218 | for(int i = 0; i < kBoxNum; i++) { |
shimizuta | 20:13934809e117 | 219 | shootingbox[i].yaw_rad = GetIdealYawRad(shootingbox[i]); |
shimizuta | 20:13934809e117 | 220 | shootingbox[i].pitch_rad = GetIdealPitchRad(shootingbox[i]); |
shimizuta | 20:13934809e117 | 221 | } |
shimizuta | 20:13934809e117 | 222 | DEBUG("YawPitchSetup() finish\r\n"); |
shimizuta | 20:13934809e117 | 223 | } |
shimizuta | 20:13934809e117 | 224 | //areanameをセット。BOXは初期段階で入っている。 |
shimizuta | 20:13934809e117 | 225 | void AreaNameSetup() |
shimizuta | 20:13934809e117 | 226 | { |
shimizuta | 20:13934809e117 | 227 | DEBUG("AreaNameSetup() start\r\n"); |
shimizuta | 20:13934809e117 | 228 | for(int i = kWorkStart; i < kWorkAreaNum; i++) work[i].areaname = WORKAREA; |
shimizuta | 20:13934809e117 | 229 | for(int i = kCommonStart; i < kCommonStart + kCommonAreaNum; i++) work[i].areaname = COMMONAREA; |
shimizuta | 20:13934809e117 | 230 | DEBUG("AreaNameSetup() finish\r\n"); |
shimizuta | 20:13934809e117 | 231 | } |
shimizuta | 20:13934809e117 | 232 | void Priority() |
shimizuta | 20:13934809e117 | 233 | { |
shimizuta | 20:13934809e117 | 234 | DEBUG("Priority() start\r\n"); |
shimizuta | 20:13934809e117 | 235 | work[23].priority=1000;//SearchCommonArea で使用。最初の時の比較に使用.最後だということを示す。 |
shimizuta | 20:13934809e117 | 236 | for(int i = kWorkStart; i < kWorkAreaNum; i++) work[kWorkAreaIndex[i]].priority = kWorkAreaPriority[i]; |
shimizuta | 20:13934809e117 | 237 | for(int i = 0; i < kCommonAreaNum; i++) work[kCommonAreaIndex[i]].priority = kCommonAreaPriority[i]; |
shimizuta | 20:13934809e117 | 238 | DEBUG("Priority() finish\r\n"); |
shimizuta | 20:13934809e117 | 239 | } |
shimizuta | 20:13934809e117 | 240 | void ArrangementPattern(Pattern pattern)//引数にはAとかで入力//初めに一回だけ呼び出すことを想定 |
shimizuta | 20:13934809e117 | 241 | { |
shimizuta | 20:13934809e117 | 242 | DEBUG("ArrangementPattern() start\r\n"); |
shimizuta | 20:13934809e117 | 243 | //workareaの設定 |
shimizuta | 20:13934809e117 | 244 | work[0].color=RED; |
shimizuta | 20:13934809e117 | 245 | work[1].color=RED; |
shimizuta | 20:13934809e117 | 246 | work[2].color=RED; |
shimizuta | 20:13934809e117 | 247 | work[3].color=YELLOW; |
shimizuta | 20:13934809e117 | 248 | work[4].color=YELLOW; |
shimizuta | 20:13934809e117 | 249 | work[5].color=YELLOW; |
shimizuta | 20:13934809e117 | 250 | |
shimizuta | 20:13934809e117 | 251 | |
shimizuta | 20:13934809e117 | 252 | switch(pattern) { |
shimizuta | 20:13934809e117 | 253 | case A: |
shimizuta | 20:13934809e117 | 254 | DEBUG("ArrangementPattern() A\r\n"); |
shimizuta | 20:13934809e117 | 255 | #ifdef RIGHT |
shimizuta | 20:13934809e117 | 256 | DEBUG("right\r\n"); |
shimizuta | 20:13934809e117 | 257 | work[6].color=RED; |
shimizuta | 20:13934809e117 | 258 | work[13].color=RED; |
shimizuta | 20:13934809e117 | 259 | work[20].color=RED; |
shimizuta | 20:13934809e117 | 260 | work[8].color=YELLOW; |
shimizuta | 20:13934809e117 | 261 | work[15].color=YELLOW; |
shimizuta | 20:13934809e117 | 262 | work[22].color=YELLOW; |
shimizuta | 20:13934809e117 | 263 | |
shimizuta | 20:13934809e117 | 264 | work[6].is_exist=1; |
shimizuta | 20:13934809e117 | 265 | work[13].is_exist=1; |
shimizuta | 20:13934809e117 | 266 | work[20].is_exist=1; |
shimizuta | 20:13934809e117 | 267 | work[8].is_exist=1; |
shimizuta | 20:13934809e117 | 268 | work[15].is_exist=1; |
shimizuta | 20:13934809e117 | 269 | work[22].is_exist=1; |
shimizuta | 20:13934809e117 | 270 | |
shimizuta | 20:13934809e117 | 271 | #elif defined LEFT |
shimizuta | 20:13934809e117 | 272 | DEBUG("left\r\n"); |
shimizuta | 20:13934809e117 | 273 | work[9].color=RED; |
shimizuta | 20:13934809e117 | 274 | work[13].color=RED; |
shimizuta | 20:13934809e117 | 275 | work[17].color=RED; |
shimizuta | 20:13934809e117 | 276 | work[11].color=YELLOW; |
shimizuta | 20:13934809e117 | 277 | work[15].color=YELLOW; |
shimizuta | 20:13934809e117 | 278 | work[19].color=YELLOW; |
shimizuta | 20:13934809e117 | 279 | |
shimizuta | 20:13934809e117 | 280 | work[9].is_exist=1; |
shimizuta | 20:13934809e117 | 281 | work[13].is_exist=1; |
shimizuta | 20:13934809e117 | 282 | work[17].is_exist=1; |
shimizuta | 20:13934809e117 | 283 | work[11].is_exist=1; |
shimizuta | 20:13934809e117 | 284 | work[15].is_exist=1; |
shimizuta | 20:13934809e117 | 285 | work[19].is_exist=1; |
shimizuta | 29:ea48140fc85e | 286 | #else |
shimizuta | 29:ea48140fc85e | 287 | DEBUG("error:There is no defined RIGHT/LEFT in ArrangementPattern\r\n"); |
shimizuta | 20:13934809e117 | 288 | #endif |
shimizuta | 20:13934809e117 | 289 | break; |
shimizuta | 20:13934809e117 | 290 | |
shimizuta | 20:13934809e117 | 291 | case B: |
shimizuta | 20:13934809e117 | 292 | DEBUG("ArrangementPattern() B\r\n"); |
shimizuta | 20:13934809e117 | 293 | #ifdef RIGHT |
shimizuta | 20:13934809e117 | 294 | DEBUG("right\r\n"); |
shimizuta | 20:13934809e117 | 295 | work[7].color=RED; |
shimizuta | 20:13934809e117 | 296 | work[9].color=RED; |
shimizuta | 20:13934809e117 | 297 | work[11].color=RED; |
shimizuta | 20:13934809e117 | 298 | work[17].color=YELLOW; |
shimizuta | 20:13934809e117 | 299 | work[19].color=YELLOW; |
shimizuta | 20:13934809e117 | 300 | work[21].color=YELLOW; |
shimizuta | 20:13934809e117 | 301 | |
shimizuta | 20:13934809e117 | 302 | work[7].is_exist=1; |
shimizuta | 20:13934809e117 | 303 | work[9].is_exist=1; |
shimizuta | 20:13934809e117 | 304 | work[11].is_exist=1; |
shimizuta | 20:13934809e117 | 305 | work[17].is_exist=1; |
shimizuta | 20:13934809e117 | 306 | work[19].is_exist=1; |
shimizuta | 20:13934809e117 | 307 | work[21].is_exist=1; |
shimizuta | 20:13934809e117 | 308 | |
shimizuta | 20:13934809e117 | 309 | #elif defined LEFT |
shimizuta | 20:13934809e117 | 310 | DEBUG("left\r\n"); |
shimizuta | 20:13934809e117 | 311 | work[18].color=RED; |
shimizuta | 20:13934809e117 | 312 | work[20].color=RED; |
shimizuta | 20:13934809e117 | 313 | work[22].color=RED; |
shimizuta | 20:13934809e117 | 314 | work[6].color=YELLOW; |
shimizuta | 20:13934809e117 | 315 | work[8].color=YELLOW; |
shimizuta | 20:13934809e117 | 316 | work[10].color=YELLOW; |
shimizuta | 20:13934809e117 | 317 | |
shimizuta | 20:13934809e117 | 318 | work[18].is_exist=1; |
shimizuta | 20:13934809e117 | 319 | work[20].is_exist=1; |
shimizuta | 20:13934809e117 | 320 | work[22].is_exist=1; |
shimizuta | 20:13934809e117 | 321 | work[6].is_exist=1; |
shimizuta | 20:13934809e117 | 322 | work[8].is_exist=1; |
shimizuta | 20:13934809e117 | 323 | work[10].is_exist=1; |
shimizuta | 29:ea48140fc85e | 324 | #else |
shimizuta | 29:ea48140fc85e | 325 | DEBUG("error:There is no defined RIGHT/LEFT in ArrangementPattern\r\n"); |
shimizuta | 20:13934809e117 | 326 | #endif |
shimizuta | 20:13934809e117 | 327 | break; |
shimizuta | 20:13934809e117 | 328 | |
shimizuta | 20:13934809e117 | 329 | case C: |
shimizuta | 20:13934809e117 | 330 | DEBUG("ArrangementPattern() C\r\n"); |
shimizuta | 20:13934809e117 | 331 | work[15].color=RED; |
shimizuta | 20:13934809e117 | 332 | work[22].color=RED; |
shimizuta | 20:13934809e117 | 333 | work[11].color=RED; |
shimizuta | 20:13934809e117 | 334 | work[19].color=YELLOW; |
shimizuta | 20:13934809e117 | 335 | work[12].color=YELLOW; |
shimizuta | 20:13934809e117 | 336 | work[8].color=YELLOW; |
shimizuta | 20:13934809e117 | 337 | |
shimizuta | 20:13934809e117 | 338 | work[15].is_exist=1; |
shimizuta | 20:13934809e117 | 339 | work[22].is_exist=1; |
shimizuta | 20:13934809e117 | 340 | work[11].is_exist=1; |
shimizuta | 20:13934809e117 | 341 | work[19].is_exist=1; |
shimizuta | 20:13934809e117 | 342 | work[12].is_exist=1; |
shimizuta | 20:13934809e117 | 343 | work[8].is_exist=1; |
shimizuta | 20:13934809e117 | 344 | break; |
shimizuta | 20:13934809e117 | 345 | |
shimizuta | 20:13934809e117 | 346 | case D: |
shimizuta | 20:13934809e117 | 347 | DEBUG("ArrangementPattern() D\r\n"); |
shimizuta | 20:13934809e117 | 348 | work[22].color=RED; |
shimizuta | 20:13934809e117 | 349 | work[15].color=RED; |
shimizuta | 20:13934809e117 | 350 | work[11].color=RED; |
shimizuta | 20:13934809e117 | 351 | work[17].color=YELLOW; |
shimizuta | 20:13934809e117 | 352 | work[13].color=YELLOW; |
shimizuta | 20:13934809e117 | 353 | work[6].color=YELLOW; |
shimizuta | 20:13934809e117 | 354 | |
shimizuta | 20:13934809e117 | 355 | work[22].is_exist=1; |
shimizuta | 20:13934809e117 | 356 | work[15].is_exist=1; |
shimizuta | 20:13934809e117 | 357 | work[11].is_exist=1; |
shimizuta | 20:13934809e117 | 358 | work[17].is_exist=1; |
shimizuta | 20:13934809e117 | 359 | work[13].is_exist=1; |
shimizuta | 20:13934809e117 | 360 | work[6].is_exist=1; |
shimizuta | 20:13934809e117 | 361 | break; |
shimizuta | 20:13934809e117 | 362 | |
shimizuta | 20:13934809e117 | 363 | default: |
shimizuta | 20:13934809e117 | 364 | break; |
shimizuta | 20:13934809e117 | 365 | } |
shimizuta | 20:13934809e117 | 366 | DEBUG("ArrangementPattern() finish\r\n"); |
shimizuta | 20:13934809e117 | 367 | } |
shimizuta | 20:13934809e117 | 368 | void ExistReset() |
shimizuta | 20:13934809e117 | 369 | { |
shimizuta | 20:13934809e117 | 370 | DEBUG("ExistReset() start\r\n"); |
shimizuta | 20:13934809e117 | 371 | ///初期化してる。いったん全部存在してないことにする//要はリセット |
shimizuta | 20:13934809e117 | 372 | for(int i=kCommonStart; i < kCommonStart + kCommonAreaNum; i++) { |
shimizuta | 20:13934809e117 | 373 | work[i].is_exist=0;//共通ワークエリアの初期化 |
shimizuta | 20:13934809e117 | 374 | work[i].color = NOCOLOR; |
shimizuta | 20:13934809e117 | 375 | } |
shimizuta | 20:13934809e117 | 376 | for(int i=kWorkStart; i < kWorkAreaNum; i++) { //初期化してる。ワークエリアの初期化 |
shimizuta | 20:13934809e117 | 377 | work[i].is_exist=1; |
shimizuta | 20:13934809e117 | 378 | } |
shimizuta | 20:13934809e117 | 379 | for(int i=0; i<12; i++) {//shootingの初期値 |
shimizuta | 20:13934809e117 | 380 | shootingbox[i].is_exist=0; |
shimizuta | 20:13934809e117 | 381 | shootingbox[i].color = NOCOLOR; |
shimizuta | 20:13934809e117 | 382 | } |
shimizuta | 20:13934809e117 | 383 | DEBUG("ExistReset() finish\r\n"); |
shimizuta | 20:13934809e117 | 384 | } |