X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=defines.h;h=60befa56d498a37c2c4492d1e9ab6b73e02d01b6;hb=46b1c51ef602958cd5acf558c9aa8a9f88fcd9b5;hp=aac65620229eedfdc295679724ce44b5634665a1;hpb=9d299f65c528e62247efb3b7f2b70468f43a255c;p=physik%2Fmorpheus.git diff --git a/defines.h b/defines.h index aac6562..60befa5 100644 --- a/defines.h +++ b/defines.h @@ -9,6 +9,8 @@ #include #endif +#define NOT_SPECIFIED 0 + #define DEFAULT_X_SEG 50 #define DEFAULT_Y_SEG 50 #define DEFAULT_Z_SEG 100 @@ -16,11 +18,16 @@ #define DEFAULT_SLOPE_NEL 1 #define DEFAULT_START_NEL 0 +#define DEFAULT_A_P_RANGE 3 +#define DEFAULT_A_P_FAKTOR 0.2 +#define DEFAULT_A_P_P0 0.2 + #define DEFAULT_STEPS 5000 /* program defines, dont touch ;) */ #define URAND_MAX 0xffffffff +#define URAND_2BYTE_MAX 0xffff typedef unsigned int u32; typedef long long unsigned int u64; @@ -41,6 +48,8 @@ typedef struct __display { IDirectFB *dfb; /* pointer to dfb main construct */ IDirectFBSurface *primary_surface; /* pointer to dfb primary surface */ IDirectFBFont *font; /* the font */ + IDirectFBInputDevice *keyboard; /* for keyboard input */ + IDirectFBEventBuffer *keyboard_buffer; /* event buffer */ #endif int screen_height,screen_width; /* screen dimensions */ } display; @@ -56,5 +65,7 @@ typedef struct __display { /* masks for u32 cell */ #define AMORPH 0x00000001 #define CRYSTAL 0x00000000 +#define NAMORPH 0xfffffffe +#define NCRYSTAL 0xffffffff #define C_CONC_MASK 0xfffffffe