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 #ifdef __DEBUG_InputMgr__
\r
34 dbg_testcontrolnoisy=1;
\r
39 IN_Default(0,&gvar.player[0],
\r
40 ctrl_Keyboard1, &gvar);
\r
42 IN_SetControlType(&gvar.player[0],
\r
46 gvar.player[0].enti.q=1;
\r
47 gvar.player[0].enti.d=2;
\r
48 gvar.player[0].enti.speed=4;
\r
50 //0000 nibbletest();
\r
51 //0000 booleantest();
\r
52 //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
53 while(!gvar.in.inst->Keyboard[sc_Escape])
\r
55 //0000 shinkutxt(&gvar);
\r
56 IN_ReadControl(&gvar.player[0], &gvar);
\r
57 switch(gvar.player[0].enti.d)
\r
61 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
63 gvar.player[0].enti.q++;
\r
64 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
69 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
71 gvar.player[0].enti.q++;
\r
72 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
77 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
79 gvar.player[0].enti.q++;
\r
80 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
85 if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))
\r
87 gvar.player[0].enti.q++;
\r
88 } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }
\r
91 //printf("%u\n", gvar.in.inst->Keyboard[sc_Escape]);
\r
93 if(gvar.in.inst->Keyboard[88]) //speed
\r
95 switch(gvar.kurokku.fpscap)
\r
98 gvar.kurokku.fpscap=1;
\r
101 gvar.kurokku.fpscap=0;
\r
107 IN_Shutdown(&gvar);
\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 #ifdef __DEBUG_InputMgr__
\r
113 printf("testkeyin=%u\n", dbg_testkeyin);
\r
114 printf("testcontrolnoisy=%u\n", dbg_testcontrolnoisy);
\r