From: sparky4 Date: Sun, 13 Mar 2016 03:33:34 +0000 (-0600) Subject: inputest manipulates d and q like scroll.exe X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=3401a0bddcdce075f8cda8b6392c541050fd36e2;p=proj16%2F16.git inputest manipulates d and q like scroll.exe --- diff --git a/src/lib/16_in.c b/src/lib/16_in.c index 062e3bee..52a76774 100755 --- a/src/lib/16_in.c +++ b/src/lib/16_in.c @@ -919,16 +919,13 @@ register KeyboardDef *def; // player[pn].info.dir = DirTable[((my + 1) * 3) + (mx + 1)]; conpee=(((my + 1) * 2) + (mx + 1))-1; //if(conpee) conpee--; player[pn].info.dir = DirTable[conpee]; + + //TODO: overwriting direction must be added if(DIRECTIONIFELSEGFXTEST && player[pn].d != player[pn].info.dir) player[pn].pdir=DirTable[conpee]; if(player[pn].q==1 && (mx!=motion_None || my!=motion_None)) { player[pn].d = player[pn].info.dir; - //printf("q =%d ", player[pn].q); - //if(testcontrolnoisy > 0) - //if(testcontrolnoisy > 0) - //printf("cpee=%d ", conpee); } - if(testcontrolnoisy > 0) #if DEMO0 if (DemoMode == demo_Record) diff --git a/src/lib/16_in.h b/src/lib/16_in.h index e39c400e..ad625ed1 100755 --- a/src/lib/16_in.h +++ b/src/lib/16_in.h @@ -45,8 +45,8 @@ extern byte testkeyin,testcontrolnoisy,gfxtest; //if else for gfxtesting and direction -#define DIRECTIONIFELSEGFXTEST (player[pn].d == 2 && gfxtest) || (player[pn].info.dir == 2 && !gfxtest) -#define NDIRECTIONIFELSEGFXTEST (player[pn].d != 2 && gfxtest) || (player[pn].info.dir != 2 && !gfxtest) +#define DIRECTIONIFELSEGFXTEST (player[pn].d == 2 || player[pn].info.dir == 2) +#define NDIRECTIONIFELSEGFXTEST (player[pn].d != 2 || player[pn].info.dir != 2) #define KeyInt 9 // The keyboard ISR number