1 /* Project 16 Source Code~
\r
2 * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover
\r
4 * This file is part of Project 16.
\r
6 * Project 16 is free software; you can redistribute it and/or modify
\r
7 * it under the terms of the GNU General Public License as published by
\r
8 * the Free Software Foundation; either version 3 of the License, or
\r
9 * (at your option) any later version.
\r
11 * Project 16 is distributed in the hope that it will be useful,
\r
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 * GNU General Public License for more details.
\r
16 * You should have received a copy of the GNU General Public License
\r
17 * along with this program. If not, see <http://www.gnu.org/licenses/>, or
\r
18 * write to the Free Software Foundation, Inc., 51 Franklin Street,
\r
19 * Fifth Floor, Boston, MA 02110-1301 USA.
\r
25 #include "src/lib/16_in.h"
\r
26 #include "src/lib/16_tail.h"
\r
29 main(int argc, char *argv[])
\r
31 static global_game_variables_t gvar;
\r
32 //extern struct inconfig inpu;
\r
34 dbg_testcontrolnoisy=1;
\r
38 IN_Default(0,&gvar.player[0],
\r
41 IN_SetControlType(&gvar.player[0],
\r
45 gvar.player[0].enti.q=1;
\r
46 gvar.player[0].enti.d=2;
\r
47 gvar.player[0].enti.speed=4;
\r
49 //0000 nibbletest();
\r
50 //0000 booleantest();
\r
51 //printf("dbg_testkeyin=%u dbg_testcontrolnoisy=%u dbg_nogvar.playerinpu=%u\nloop if this is not responsive then please KILL or reset machine sorry!!\n", dbg_testkeyin, dbg_testcontrolnoisy, dbg_nogvar.playerinpu);
\r
52 while(!IN_KeyDown(sc_Escape))
\r
54 //0000 shinkutxt(&gvar);
\r
55 IN_ReadControl(&gvar.player[0]);
\r
56 switch(gvar.player[0].enti.d)
\r
60 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
62 gvar.player[0].enti.q++;
\r
63 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
68 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
70 gvar.player[0].enti.q++;
\r
71 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
76 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
78 gvar.player[0].enti.q++;
\r
79 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
84 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
86 gvar.player[0].enti.q++;
\r
87 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
90 //printf("%u\n", IN_KeyDown(sc_Escape));
\r
92 IN_qb(sc_9);//>0) printf("IN_qb(sc_9)=%u\n", IN_qb(sc_9));
\r
93 if(IN_KeyDown(88)) //speed
\r
95 switch(gvar.kurokku.fpscap)
\r
98 gvar.kurokku.fpscap=1;
\r
101 gvar.kurokku.fpscap=0;
\r
108 //Shutdown16(&gvar);
\r
109 //printf("%u\n", in.Keyboard[sc_Escape]);
\r
110 printf("inputest.exe ");
\r
111 printf("version %s\n", VERSION);
\r
112 printf("testkeyin=%u\n", dbg_testkeyin);
\r
113 printf("testcontrolnoisy=%u\n", dbg_testcontrolnoisy);
\r