added event stuff, c conc and more ...
[physik/morpheus.git] / defines.h
index aac6562..17e83cf 100644 (file)
--- a/defines.h
+++ b/defines.h
@@ -9,6 +9,8 @@
 #include <directfb.h>
 #endif
 
+#define NOT_SPECIFIED 0
+
 #define DEFAULT_X_SEG 50
 #define DEFAULT_Y_SEG 50
 #define DEFAULT_Z_SEG 100
 #define DEFAULT_SLOPE_NEL 1
 #define DEFAULT_START_NEL 0
 
+#define DEFAULT_A_P_RANGE 0.2
+#define DEFAULT_A_P_FAKTOR 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 +47,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;