2 * Copyright Droids, Microb Technology (2010)
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.
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.
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
18 * Revision : $Id: strat.c,v 1.6 2009-11-08 17:24:33 zer0 Exp $
20 * Olivier MATZ <zer0@droids-corp.org>
23 #define WAYPOINTS_NBX 13
24 #define WAYPOINTS_NBY 8
27 /* I2C_COB_UNKNOWN, I2C_COB_WHITE, I2C_COB_BLACK */
31 /* index in corn table */
39 /* structure describing the status of a waypoint */
41 /* type of the waypoint */
42 #define WP_TYPE_WAYPOINT 0 /* no object on it */
43 #define WP_TYPE_OBSTACLE 1 /* cannot reach this point */
44 #define WP_TYPE_TOMATO 2 /* place for a tomato */
45 #define WP_TYPE_CORN 3 /* place for a corn */
48 /* true if point is near the border */
51 /* true if element is present */
54 /* visited by opponent */
55 uint8_t opp_visited:1;
59 /* absolute position of the waypoint */
65 struct tomato_db tomato;
69 /* database reflecting the status of objects on area */
73 /* table of waypoints */
74 struct waypoint_db wp_table[WAYPOINTS_NBX][WAYPOINTS_NBY];
76 /* corn_table: pointers to waypoints */
77 struct waypoint_db *corn_table[CORN_NB];
79 /* tomato_table: pointers to waypoints */
80 struct waypoint_db *tomato_table[TOMATO_NB];
82 /* number of oranges remaining */
83 uint8_t our_oranges_count;
84 uint8_t opp_oranges_count;
87 /* global structure storing the database */
88 extern struct strat_db strat_db;
90 /* convert i,j coords to x,y coords */
91 int8_t ijcoord_to_xycoord(uint8_t i, uint8_t j, int16_t *x, int16_t *y);
93 /* return the index of a corn given its i,j coords. */
94 int8_t ijcoord_to_corn_idx(uint8_t i, uint8_t j);
96 /* return the i,j coords of a corn given its index */
97 int8_t corn_idx_to_ijcoord(uint8_t idx, uint8_t *i, uint8_t *j);
99 /* return the index of a corn given its x,y coords. */
100 int8_t corn_idx_to_xycoord(uint8_t idx, int16_t *x, int16_t *y);
102 /* return the index of the closest corn at these coordinates. If the
103 * corn is really too far (~20cm), return NULL. The x and y pointer are
104 * updated with the real position of the corn */
105 struct waypoint_db *xycoord_to_corn_idx(int16_t *x, int16_t *y);
107 /* set color of a corn
108 * type is I2C_COB_BLACK, I2C_COB_WHITE, I2C_COB_UNKNOWN
109 * it will update the symetric corn if != UNKOWN
110 * it will also deduct color of some other cobs */
111 void corn_set_color(struct waypoint_db *wp, uint8_t color);
113 /* return the idx of the symetric corn */
114 int8_t corn_get_sym_idx(int8_t i);
116 /*********** TOMATO */
118 /* return the index of a tomato given its i,j coords. */
119 int8_t ijcoord_to_tomato_idx(uint8_t i, uint8_t j);
121 /* return the i,j coords of a tomato given its index */
122 int8_t tomato_idx_to_ijcoord(uint8_t idx, uint8_t *i, uint8_t *j);
124 /* return the index of a tomato given its x,y coords. */
125 int8_t tomato_idx_to_xycoord(uint8_t idx, int16_t *x, int16_t *y);
127 /* return the index of the closest tomato at these coordinates. If the
128 * tomato is really too far (~20cm), return NULL. The x and y pointer are
129 * updated with the real position of the tomato */
130 struct waypoint_db *xycoord_to_tomato_idx(int16_t *x, int16_t *y);
133 * Init internal database. The initialization is done with UNKNOWN
134 * corn with all objects present
136 void strat_db_init(void);
138 /* dump infos about area and objects */
139 void strat_db_dump(const char *caller);