Subversion Repositories shark

Rev

Blame | Last modification | View Log | RSS feed

#define _SIM_AREA_HEADER_

#ifndef _INPUT_
#include "input.h"
#endif

#ifndef _CONST_
#include "constants.h"
#endif

#ifndef _ATCSIM_HEADER_
#include "atcsim.h"
#endif

#include <kernel/kern.h>   //include the SHARK kernel header
#include <drivers/glib.h>  //include the graphics library
#include <drivers/keyb.h>  //include the keyboard library
#include <semaphore.h>     //include the semaphore library
#include <stdlib.h>                //include the standard library
#include <math.h>          //include the math library for random
#include <string.h>

/* useful colors... */
extern int white;
extern int black;
extern int red;
extern int gray;
extern int green;
extern int blue;

extern int number_of_planes;
extern int plane_period;
extern int plane_wcet;
extern sem_t graphics_mutex;

extern airport airports[NUM_OF_AIRPORTS];
extern void init_simulation();

extern mutex_t mut_STARTSIM;

extern int STARTSIM;