home *** CD-ROM | disk | FTP | other *** search
- /* Data for Ants */
-
- #define CHANGE_SCREEN_MODE 278
- #define CHANGE_COLOUR 274
- #define DEFAULT_NUMBER_OF_ANTS 25
- #define BLACK 0
- #define WHITE 3
- #define CIRCLESIZE 5
-
- /* Display variables */
-
- int screen_mode = 34
- ,screen_width = 768
- ,screen_height = 288
- ,x_factor = 2
- ,y_factor = 4;
-
-
- /* Global data */
-
- enum directiontype /* Define an enumerated list for the direction */
- {up = 0
- ,right
- ,down
- ,left} antd[1000];
-
- int numants
- ,antx[1000] /* Ooooer, should be using malloc()!!! */
- ,anty[1000];
-
- _kernel_swi_regs in,out;
-
-