![]() |
Starship Code Contest
0.1
A real student nightmare...
|
An example of artificial intelligence plugin moving randomly. More...
Go to the source code of this file.
Functions | |
| void | decision_frame (Decision_frame *d) |
| the brilliant decision my AI is taking each frame. More... | |
| void | initialize_my_AI (void) |
| there is nothing to intialize in this More... | |
| void | clean_my_AI (void) |
| Clean nothing because there is nothing to clean. More... | |
An example of artificial intelligence plugin moving randomly.
Definition in file rand_move.c.
| void clean_my_AI | ( | void | ) |
Clean nothing because there is nothing to clean.
void clean_my_AI(void)
There is nothing to clean for this plugin but the symbol but be present for loading.
Definition at line 80 of file rand_move.c.
| void decision_frame | ( | Decision_frame * | d | ) |
the brilliant decision my AI is taking each frame.
void decision_frame(Decision_frame* d)
| d | : a Decision_frame structure passed by pointer |
The starship will move randomly and will not shot any missile.
Definition at line 35 of file rand_move.c.
References Decision_frame::move, and Decision_frame::shot.
| void initialize_my_AI | ( | void | ) |
there is nothing to intialize in this
plugin but the symbol but be present for loading.
Definition at line 69 of file rand_move.c.
1.8.13