X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Ftypdefst.h;h=07f097361d00e616819807f3e7fde56d39911ed5;hb=354f7f6075e4c911b66c34b33bab64e5ec407c3e;hp=dff4e2cc95002f81c6dcc10249a928e3520a2833;hpb=d6aa8de1065d2657d9aebc1d7fc9953588675e25;p=16.git diff --git a/src/lib/typdefst.h b/src/lib/typdefst.h index dff4e2cc..07f09736 100755 --- a/src/lib/typdefst.h +++ b/src/lib/typdefst.h @@ -42,7 +42,7 @@ * typedefs of the game variables! */ typedef struct { - byte huge *data; + byte *data; word width; word height; byte *palette; @@ -83,9 +83,22 @@ typedef struct { sword tileplayerposscreenx; /* player position on screen */ sword tileplayerposscreeny; /* player position on screen */ word stridew; /*width/4*/ - sdiword pagesize; /* page size */ + word pagesize; /* page size */ + word pi; /* incremention page by this much to preserve location */ } page_t; +typedef struct +{ + //sprite .... + boolean wwww; +} spri_t; + +typedef struct +{ + //vrs with sprite .... + spri_t *spri; +} vrs_t; + typedef struct { // int showmemhandle; @@ -112,10 +125,12 @@ typedef struct { char old_mode; //old video mode before game! page_t page[MAXPAGE]; //pointer to root page[0] - sdiword vmem_remain; //remaining video memory + word vmem_remain; //remaining video memory byte num_of_pages; //number of actual pages boolean __near p; //render page number + boolean __near r; //page flip if true word pr[MAXPAGE][4]; //render sections of pages + //0000word startclk; float clk, tickclk; //timer } video_t; typedef struct