X-Git-Url: https://hackdaworld.org/gitweb/?p=physik%2Fnlsop.git;a=blobdiff_plain;f=dfbapi.c;h=2ff070ed7e73ce597cd46c0d49ae3b6ae060f168;hp=3d0e4d0dcfe5cb3466b8557dbe6b56b04fa14c18;hb=91f24c2c4523729fa5a85c91a6b90cb8de712e4b;hpb=3525ca35938a42b8c518b65e3747541893025de3 diff --git a/dfbapi.c b/dfbapi.c index 3d0e4d0..2ff070e 100644 --- a/dfbapi.c +++ b/dfbapi.c @@ -6,6 +6,7 @@ */ #include +#include #include "dfbapi.h" /* two dimensional lattice */ @@ -272,4 +273,41 @@ int d3_lattice_draw(d3_lattice *d3_l,int x,int y,int z,int arg_c,char **arg_v) } return 1; -} +} + +int 2d_event_init(2d_lattice *2d_l) +{ + 2d_l->dfb->GetInputDevice(2d_l->dfb,DIDID_KEYBOARD,&(2d_l->keyboard)); + 2d_l->keyboard->CreateEventBuffer(2d_l->keyboard,&(2d_l->k_buffer)); + + return 1; +} + +int 3d_event_init(3d_lattice *3d_l) +{ + 3d_l->dfb->GetInputDevice(3d_l->dfb,DIDID_KEYBOARD,&(3d_l->keyboard)); + 3d_l->keyboard->CreateEventBuffer(3d_l->keyboard,&(3d_l->k_buffer)); + + return 1; +} + +int scan_event(d3_lattice *d3_l,int *x,int *y,int *z,int *q,int *esc) +{ + DFBInputEvent ke; + + d3_l->k_buffer->GetEvent(d3_l->k_buffer,DFB_EVENT(&ke)); + if(ke.type==DIET_KEYPRESS) + { + if(ke.key_id==DIKI_LEFT && *x!=0) *x-=1; + if(ke.key_id==DIKI_RIGHT && *x!=d3_l->max_x-1) *x+=1; + if(ke.key_id==DIET_DOWN && *y!=0) *y-=1; + if(ke.key_id==DIET_UP && *y!=d3_l->max_y-1) *y+=1; + if(ke.key_id==DIET_PAGE_DOWN && *z!=0) *z-=1; + if(ke.key_id==DIET_PAGE_UP && *z!=d3_l->mac_z-1) *z+=1; + if(ke.key_id==DIKI_Q) *quit=1; + if(ke.key_id==DIKI_ESCAPE) *esc=1; + } + + return 1; +} +