OSDN Git Service

updated copyleft and need to test and fix newer version of open watcom
[proj16/16.git] / src / maptest.c
1 /* Project 16 Source Code~\r
2  * Copyright (C) 2012-2022 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 #include "src/lib/16_map.h"\r
23 #include <malloc.h>\r
24 \r
25 #define DUMP\r
26 //#define DUMP_MAP\r
27 \r
28 void\r
29 main(int argc, char *argv[])\r
30 {\r
31         static global_game_variables_t gvar;\r
32         static map_t map;\r
33 #ifdef DUMP\r
34 #ifdef DUMP_MAP\r
35         short i;\r
36         word k;\r
37 #endif\r
38 #endif\r
39         char *fmt = "Memory available = %u\n";\r
40         char *fmt0 = "Largest Contiguous Block of Memory available = %u\n";\r
41         //byte *datboi = "oh shit waddup!\n";\r
42 \r
43         MM_Startup(&gvar);\r
44         PM_Startup(&gvar);\r
45         PM_CheckMainMem(&gvar);\r
46         PM_UnlockMainMem(&gvar);\r
47         CA_Startup(&gvar);\r
48 \r
49         fprintf(stderr, fmt, _memavl());\r
50         fprintf(stderr, fmt0, _memmax());\r
51         fprintf(stderr, "Size of map var = %u\n", _msize(&(gvar.ca.MAPSEGPTR)));\r
52 \r
53         CA_loadmap("data/test.map", &map, &gvar);\r
54 #ifdef DUMP\r
55         fprintf(stdout, "map.width=     %d\n", map.width);\r
56         fprintf(stdout, "map.height=    %d\n", map.height);\r
57         getch();\r
58 #ifdef DUMP_MAP\r
59         for(k=0;k<MAPPLANES;k++)\r
60         {\r
61                 printf("maplayer: %u\n[\n", k);\r
62                 for(i=0; i<(map.width*map.height); i++)\r
63                 {\r
64                         //fprintf(stdout, "%04d[%02d]", i, map.data[i]);\r
65                         //fprintf(stdout, "%c", map.MAPDATAPTK[i]+44);\r
66                         fprintf(stdout, "%c", map.layerdata[k].data[i]+44);\r
67                         if(!((i+1)%map.width)){\r
68                                 //fprintf(stdout, "[%d]", i);\r
69                                 fprintf(stdout, "\n"); }\r
70                 }\r
71                 fprintf(stdout, "]\n");\r
72                 getch();\r
73         }\r
74 #else\r
75         fprintf(stderr, "contents of the buffer\n[\n%s\n]\n", (gvar.ca.MAPSEGPTR));\r
76 #endif\r
77         /*fprintf(stdout, "&main()=%Fp\n", *argv[0]);\r
78         fprintf(stdout, "&map==%Fp\n", &map);\r
79         fprintf(stdout, "&map.tiles==%Fp\n", map.tiles);\r
80         fprintf(stdout, "&map.width==%Fp\n", map.width);\r
81         fprintf(stdout, "&map.height==%Fp\n", map.height);\r
82         fprintf(stdout, "&map.data==%Fp\n", map.data);*/\r
83 #endif\r
84         //fprintf(stderr, "here comes dat boi!\n"); getch(); fprintf(stderr, "%s", datboi);\r
85         MM_FreePtr(MEMPTRCONV (gvar.ca.MAPSEGPTR), &gvar);\r
86         PM_Shutdown(&gvar);\r
87         CA_Shutdown(&gvar);\r
88         MM_Shutdown(&gvar);\r
89 }\r