OSDN Git Service

16_ca needs huge amounts of work and I should remember what needs to be done soon...
[proj16/16.git] / src / inputest.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
3  *\r
4  * This file is part of Project 16.\r
5  *\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
10  *\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
15  *\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
20  *\r
21  */\r
22 /*\r
23         input test\r
24 */\r
25 #include "src/lib/16_in.h"\r
26 #include "src/lib/16_tail.h"\r
27 \r
28 void\r
29 main(int argc, char *argv[])\r
30 {\r
31         static global_game_variables_t gvar;\r
32 #ifdef __DEBUG_InputMgr__\r
33         dbg_testkeyin=1;\r
34         dbg_testcontrolnoisy=0;\r
35 #endif\r
36         start_timer(&gvar);\r
37         //Startup16(&gvar);\r
38         IN_Startup(&gvar);\r
39         IN_Default(0,&gvar.player[0],\r
40 ctrl_Keyboard1, &gvar);\r
41 //ctrl_Joystick1);\r
42         IN_SetControlType(&gvar.player[0],\r
43 ctrl_Keyboard1);\r
44 //ctrl_Joystick1);\r
45 \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
49 \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
54         {\r
55 //0000          shinkutxt(&gvar);\r
56                 IN_ReadControl(&gvar.player[0], &gvar);\r
57                 switch(gvar.player[0].enti.d)\r
58                 {\r
59                 //right movement\r
60                 case 3:\r
61                         if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))\r
62                         {\r
63                                 gvar.player[0].enti.q++;\r
64                         } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }\r
65                 break;\r
66 \r
67                 //left movement\r
68                 case 1:\r
69                         if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))\r
70                         {\r
71                                 gvar.player[0].enti.q++;\r
72                         } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }\r
73                 break;\r
74 \r
75                 //down movement\r
76                 case 4:\r
77                         if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))\r
78                         {\r
79                                 gvar.player[0].enti.q++;\r
80                         } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }\r
81                 break;\r
82 \r
83                 //up movement\r
84                 case 0:\r
85                         if(gvar.player[0].enti.q<=(TILEWH/(gvar.player[0].enti.speed)))\r
86                         {\r
87                                 gvar.player[0].enti.q++;\r
88                         } else { gvar.player[0].enti.q = 1; gvar.player[0].enti.d = 2; }\r
89                 break;\r
90         }\r
91                 //printf("%u\n", gvar.in.inst->Keyboard[sc_Escape]);\r
92                 //if(\r
93                 if(gvar.in.inst->Keyboard[88])  //speed\r
94                 {\r
95                         switch(gvar.kurokku.fpscap)\r
96                         {\r
97                                 case 0:\r
98                                         gvar.kurokku.fpscap=1;\r
99                                 break;\r
100                                 case 1:\r
101                                         gvar.kurokku.fpscap=0;\r
102                                 break;\r
103                         }\r
104                         //IN_Ack();\r
105                 }\r
106         }\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
115 #endif\r
116 }\r