X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fnlsop.git;a=blobdiff_plain;f=dfbapi.h;h=0e325ca5e20878fcb67840116549e4ea26a470b0;hp=369260157531c75d23c73e78a0b1e0bc50b7e4ba;hb=65f454e2e690473128d65b9f6859e4a354a1e38a;hpb=3525ca35938a42b8c518b65e3747541893025de3 diff --git a/dfbapi.h b/dfbapi.h index 3692601..0e325ca 100644 --- a/dfbapi.h +++ b/dfbapi.h @@ -5,7 +5,12 @@ * */ +#ifndef DFBAPI_H +#define DFBAPI_H + +#ifdef USE_DFB_API #include +#endif /* two dimensional lattice */ @@ -13,6 +18,11 @@ #define Y_GAP X_GAP #define RED 1 +#ifndef _U32 +#define _U32 +typedef unsigned int u32; +#endif + typedef struct __d2_lattice { int max_x,max_y; @@ -22,11 +32,17 @@ typedef struct __d2_lattice int info_w,info_h; int font_h; unsigned char *status; /* status&1 -> red, else blue */ + int *extra; /* store extra values */ + void *v_ptr; /* void ptr, for any use */ +#ifdef USE_DFB_API IDirectFB *dfb; IDirectFBSurface *p_surface; IDirectFBFont *font; IDirectFBInputDevice *keyboard; IDirectFBEventBuffer *k_buffer; +#else + char *foo1,*foo2,*foo3,*foo4,*foo5; +#endif } d2_lattice; typedef struct __d3_lattice @@ -35,22 +51,33 @@ typedef struct __d3_lattice int s_height,s_width; int fakt_x,fakt_y; int info_x,info_y; + int o_x; int info_w,info_h; int font_h; unsigned char *status; /* status&1 -> red, else blue */ + int *extra; /* store extra values */ + void *v_ptr; /* void ptr, for any use */ +#ifdef USE_DFB_API IDirectFB *dfb; IDirectFBSurface *p_surface; IDirectFBFont *font; IDirectFBInputDevice *keyboard; IDirectFBEventBuffer *k_buffer; +#else + char *foo1,*foo2,*foo3,*foo4,*foo5; +#endif } d3_lattice; /* function prototypes */ -int d2_lattice_init(int *argc,char **argv,d2_lattice *d2_l,int x,int y); +int d2_lattice_init(int *argc,char **argv,d2_lattice *d2_l); int d2_lattice_release(d2_lattice *d2_l); -int d2_lattice_draw(d2_lattice *d2_l,int x,int y,int arg_c,char **arg_v); -int d3_lattice_init(int *argc,char **argv,d3_lattice *d3_l,int x,int y,int z); +int d2_lattice_draw(d2_lattice *d2_l,int x,int y,int arg_c,char **arg_v,unsigned char mode,int max_extra); +int d3_lattice_init(int *argc,char **argv,d3_lattice *d3_l); int d3_lattice_release(d3_lattice *d3_l); -int d3_lattice_draw(d3_lattice *d3_l,int x,int y,int z,int arg_c,char **arg_v); -int dx_lattice_get_color(unsigned char *status,unsigned char *r,unsigned char *g,unsigned char *b); +int d3_lattice_draw(d3_lattice *d3_l,int x,int y,int z,int arg_c,char **arg_v,unsigned char mode,int max_extra,u32 *p1,u32 max1,u32 *p2,u32 max2); +int d2_event_init(d2_lattice *d2_l); +int d3_event_init(d3_lattice *d3_l); +int scan_event(d3_lattice *d3_l,int *x,int *y,int *z,int *q,int *esc,int *switchmode,int *bmp,int *ac_distr); +int dx_lattice_get_color(unsigned char *status,unsigned char *r,unsigned char *g,unsigned char *b,unsigned char mode); +#endif /* DFBAPI_H */