38397387431d4aed1aac4720d1482ef2d05b8cac
[aversive.git] / projects / microb2010 / mainboard / strat.c
1 /*
2  *  Copyright Droids, Microb Technology (2009)
3  *
4  *  This program is free software; you can redistribute it and/or modify
5  *  it under the terms of the GNU General Public License as published by
6  *  the Free Software Foundation; either version 2 of the License, or
7  *  (at your option) any later version.
8  *
9  *  This program is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  *  GNU General Public License for more details.
13  *
14  *  You should have received a copy of the GNU General Public License
15  *  along with this program; if not, write to the Free Software
16  *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  *  Revision : $Id: strat.c,v 1.6 2009-11-08 17:24:33 zer0 Exp $
19  *
20  *  Olivier MATZ <zer0@droids-corp.org>
21  */
22
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26 #include <math.h>
27
28 #include <aversive/pgmspace.h>
29 #include <aversive/queue.h>
30 #include <aversive/wait.h>
31 #include <aversive/error.h>
32
33 #include <ax12.h>
34 #include <uart.h>
35 #include <pwm_ng.h>
36 #include <clock_time.h>
37 #include <spi.h>
38
39 #include <pid.h>
40 #include <quadramp.h>
41 #include <control_system_manager.h>
42 #include <trajectory_manager.h>
43 #include <vect_base.h>
44 #include <lines.h>
45 #include <polygon.h>
46 #include <obstacle_avoidance.h>
47 #include <blocking_detection_manager.h>
48 #include <robot_system.h>
49 #include <position_manager.h>
50
51 #include <diagnostic.h>
52
53 #include <rdline.h>
54 #include <parse.h>
55
56 #include "../common/i2c_commands.h"
57 #include "i2c_protocol.h"
58 #include "main.h"
59 #include "strat.h"
60 #include "strat_db.h"
61 #include "strat_base.h"
62 #include "strat_corn.h"
63 #include "strat_utils.h"
64 #include "sensor.h"
65 #include "actuator.h"
66
67 #define COL_DISP_MARGIN 400 /* stop 40 cm in front of dispenser */
68 #define COL_SCAN_PRE_MARGIN 250
69
70 static uint8_t strat_running = 0;
71 struct strat_conf strat_conf;
72
73 /*************************************************************/
74
75 /*                  INIT                                     */
76
77 /*************************************************************/
78
79 /* called before each strat, and before the start switch */
80 void strat_preinit(void)
81 {
82         time_reset();
83         interrupt_traj_reset();
84         mainboard.flags =  DO_ENCODERS | DO_CS | DO_RS |
85                 DO_POS | DO_BD | DO_POWER;
86
87         //i2c_cobboard_mode_init();
88         strat_conf_dump(__FUNCTION__);
89         strat_db_dump(__FUNCTION__);
90 }
91
92 void strat_conf_dump(const char *caller)
93 {
94         if (!strat_conf.dump_enabled)
95                 return;
96
97         printf_P(PSTR("-- conf --\r\n"));
98
99 }
100
101 /* call it just before launching the strat */
102 void strat_init(void)
103 {
104 #ifdef HOST_VERSION
105         position_set(&mainboard.pos, 298.16,
106                      COLOR_Y(308.78), COLOR_A(70.00));
107 #endif
108
109         /* we consider that the color is correctly set */
110         strat_running = 1;
111         strat_db_init();
112         strat_set_speed(SPEED_DIST_FAST, SPEED_ANGLE_FAST);
113         time_reset();
114         interrupt_traj_reset();
115
116         i2c_cobboard_set_mode(I2C_COBBOARD_MODE_HARVEST);
117         i2c_ballboard_set_mode(I2C_BALLBOARD_MODE_HARVEST);
118
119         /* used in strat_base for END_TIMER */
120         mainboard.flags = DO_ENCODERS | DO_CS | DO_RS |
121                 DO_POS | DO_BD | DO_TIMER | DO_POWER;
122 }
123
124
125 /* call it after each strat */
126 void strat_exit(void)
127 {
128 #ifndef HOST_VERSION
129         uint8_t flags;
130 #endif
131
132         strat_running = 0;
133         mainboard.flags &= ~(DO_TIMER);
134         strat_hardstop();
135         time_reset();
136         wait_ms(100);
137 #ifndef HOST_VERSION
138         IRQ_LOCK(flags);
139         mainboard.flags &= ~(DO_CS);
140         IRQ_UNLOCK(flags);
141         pwm_ng_set(LEFT_PWM, 0);
142         pwm_ng_set(RIGHT_PWM, 0);
143 #endif
144 }
145
146 /* called periodically (10ms) */
147 void strat_event(void *dummy)
148 {
149         uint8_t flags;
150         uint8_t lcob, rcob;
151         uint8_t lidx, ridx;
152
153         /* ignore when strat is not running */
154         if (strat_running == 0)
155                 return;
156
157         IRQ_LOCK(flags);
158         lcob = ballboard.lcob;
159         ballboard.lcob = I2C_COB_NONE;
160         rcob = ballboard.rcob;
161         ballboard.rcob = I2C_COB_NONE;
162         IRQ_UNLOCK(flags);
163
164         /* XXX take opponent position into account */
165
166
167         /* detect cob on left side */
168         if (corn_is_near(&lidx, I2C_LEFT_SIDE)) {
169                 if (lcob != I2C_COB_NONE) {
170                         corn_set_color(strat_db.corn_table[lidx], lcob);
171                         DEBUG(E_USER_STRAT, "lcob %s %d",
172                               lcob == I2C_COB_WHITE ? "white" : "black", lidx);
173                 }
174                 if (strat_db.corn_table[lidx]->corn.color == I2C_COB_WHITE)
175                         i2c_cobboard_autoharvest(I2C_LEFT_SIDE);
176                 else
177                         i2c_cobboard_deploy(I2C_LEFT_SIDE);
178         }
179         else {
180                 i2c_cobboard_deploy(I2C_LEFT_SIDE);
181         }
182
183         /* detect cob on right side */
184         if (corn_is_near(&ridx, I2C_RIGHT_SIDE)) {
185                 if (rcob != I2C_COB_NONE) {
186                         corn_set_color(strat_db.corn_table[ridx], rcob);
187                         DEBUG(E_USER_STRAT, "rcob %s %d",
188                               rcob == I2C_COB_WHITE ? "white" : "black", ridx);
189                 }
190                 if (strat_db.corn_table[ridx]->corn.color == I2C_COB_WHITE)
191                         i2c_cobboard_autoharvest(I2C_RIGHT_SIDE);
192                 else
193                         i2c_cobboard_deploy(I2C_RIGHT_SIDE);
194         }
195         else {
196                 i2c_cobboard_deploy(I2C_RIGHT_SIDE);
197         }
198
199
200         /* limit speed when opponent is close */
201         strat_limit_speed();
202 }
203
204 static uint8_t strat_beginning(void)
205 {
206         uint8_t err;
207
208         strat_set_acc(ACC_DIST, ACC_ANGLE);
209 #ifdef HOST_VERSION
210         strat_set_speed(600, SPEED_ANGLE_FAST);
211 #else
212         /* 250 */
213         strat_set_speed(250, SPEED_ANGLE_FAST);
214 #endif
215
216
217         // strat_set_speed(600, 60); /* OK */
218         strat_set_speed(250, 28); /* OK */
219
220         trajectory_d_a_rel(&mainboard.traj, 1000, COLOR_A(20));
221         err = WAIT_COND_OR_TRAJ_END(trajectory_angle_finished(&mainboard.traj),
222                                     TRAJ_FLAGS_STD);
223
224         strat_set_acc(ACC_DIST, ACC_ANGLE);
225
226 #if 1
227  l1:
228         if (get_cob_count() >= 5)
229                 strat_set_speed(600, SPEED_ANGLE_FAST);
230
231         err = line2line(LINE_UP, 0, LINE_R_DOWN, 2);
232         if (!TRAJ_SUCCESS(err)) {
233                 trajectory_hardstop(&mainboard.traj);
234                 time_wait_ms(2000);
235                 goto l1;
236         }
237
238  l2:
239         if (get_cob_count() >= 5)
240                 strat_set_speed(600, SPEED_ANGLE_FAST);
241
242         err = line2line(LINE_R_DOWN, 2, LINE_R_UP, 2);
243         if (!TRAJ_SUCCESS(err)) {
244                 trajectory_hardstop(&mainboard.traj);
245                 time_wait_ms(2000);
246                 goto l2;
247         }
248
249  l3:
250         if (get_cob_count() >= 5)
251                 strat_set_speed(600, SPEED_ANGLE_FAST);
252
253         err = line2line(LINE_R_UP, 2, LINE_UP, 5);
254         if (!TRAJ_SUCCESS(err)) {
255                 trajectory_hardstop(&mainboard.traj);
256                 time_wait_ms(2000);
257                 goto l3;
258         }
259 #else
260         strat_set_speed(600, SPEED_ANGLE_FAST);
261         err = line2line(LINE_UP, 0, LINE_R_DOWN, 3);
262         err = line2line(LINE_R_DOWN, 3, LINE_R_UP, 2);
263         err = line2line(LINE_R_UP, 2, LINE_R_DOWN, 2);
264         err = line2line(LINE_R_DOWN, 2, LINE_R_UP, 3);
265         err = line2line(LINE_R_UP, 3, LINE_UP, 5);
266         err = line2line(LINE_UP, 5, LINE_L_DOWN, 2);
267         err = line2line(LINE_L_DOWN, 2, LINE_L_UP, 1);
268         err = line2line(LINE_L_UP, 1, LINE_L_DOWN, 1);
269         err = line2line(LINE_L_DOWN, 1, LINE_DOWN, 0);
270         wait_ms(500);
271         trajectory_hardstop(&mainboard.traj);
272         return END_TRAJ;
273 #endif
274
275         trajectory_hardstop(&mainboard.traj);
276
277         /* ball ejection */
278         trajectory_a_abs(&mainboard.traj, COLOR_A(90));
279         i2c_ballboard_set_mode(I2C_BALLBOARD_MODE_EJECT);
280         time_wait_ms(2000);
281
282         /* half turn */
283         trajectory_goto_xy_abs(&mainboard.traj, 2625, COLOR_Y(1847));
284         err = wait_traj_end(END_INTR|END_TRAJ);
285         i2c_cobboard_pack(I2C_LEFT_SIDE);
286         i2c_cobboard_pack(I2C_RIGHT_SIDE);
287         trajectory_a_rel(&mainboard.traj, COLOR_A(180));
288         err = wait_traj_end(END_INTR|END_TRAJ);
289
290         /* cob ejection */
291         trajectory_d_rel(&mainboard.traj, -100);
292         err = wait_traj_end(END_INTR|END_TRAJ);
293         i2c_cobboard_set_mode(I2C_COBBOARD_MODE_EJECT);
294         time_wait_ms(2000);
295
296         trajectory_hardstop(&mainboard.traj);
297         return END_TRAJ;
298 }
299
300 /* dump state (every 5 s max) */
301 #define DUMP_RATE_LIMIT(dump, last_print)               \
302         do {                                            \
303                 if (time_get_s() - last_print > 5) {    \
304                         dump();                         \
305                         last_print = time_get_s();      \
306                 }                                       \
307         } while (0)
308
309
310 /* return true if we need to grab some more elements */
311 static uint8_t need_more_elements(void)
312 {
313         if (time_get_s() <= 75) {
314                 /* we have enough time left */
315                 if (get_ball_count() >= 4)
316                         return 0;
317                 if (get_cob_count() >= 4)
318                         return 0;
319                 if ((get_ball_count() >= 2) &&
320                     (get_cob_count() >= 2))
321                         return 0;
322                 return 1;
323         }
324         else {
325                 /* not much time remaining */
326                 if ((get_ball_count() >= 1) &&
327                     (get_cob_count() >= 1))
328                         return 0;
329                 return 1;
330         }
331 }
332
333 static uint8_t strat_harvest(void)
334 {
335         return 0;
336 }
337
338 static uint8_t strat_eject(void)
339 {
340         return 0;
341 }
342
343 uint8_t strat_main(void)
344 {
345         uint8_t err;
346
347         /* harvest the first cobs + balls */
348         err = strat_beginning();
349
350         while (1) {
351                 /* end of time exit ! */
352                 if (err == END_TIMER) {
353                         DEBUG(E_USER_STRAT, "End of time");
354                         strat_exit();
355                         break;
356                 }
357
358                 if (need_more_elements() == 0) {
359                         /* we have enough elements, go to eject */
360                         err = strat_eject();
361                         if (!TRAJ_SUCCESS(err))
362                                 continue;
363                 }
364                 else {
365                         /* harvest */
366                         err = strat_harvest();
367                         if (!TRAJ_SUCCESS(err))
368                                 continue;
369                 }
370         }
371
372         return err;
373 }