]> 4ch.mooo.com Git - 16.git/blob - src/maptest.c
7b53667c7d755a61073088bada70837bf6881e09
[16.git] / src / maptest.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 #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         //printf("pmstarted ok\n");\r
46         PM_CheckMainMem(&gvar);\r
47         PM_UnlockMainMem(&gvar);\r
48         CA_Startup(&gvar);\r
49 \r
50         fprintf(stderr, fmt, _memavl());\r
51         fprintf(stderr, fmt0, _memmax());\r
52         fprintf(stderr, "Size of map var = %u\n", _msize(&(gvar.ca.mapsegs)));\r
53         //getch();\r
54 \r
55         CA_loadmap("data/test.map", &map, &gvar);\r
56 #ifdef DUMP\r
57         fprintf(stdout, "map.width=     %d\n", map.width);\r
58         fprintf(stdout, "map.height=    %d\n", map.height);\r
59         getch();\r
60 #ifdef DUMP_MAP\r
61         //if(map.width*map.height != 1200)\r
62         for(k=0;k<MAPPLANES;k++)\r
63         {\r
64                 printf("maplayer: %u\n[\n", k);\r
65                 for(i=0; i<(map.width*map.height); i++)\r
66                 {\r
67                         //fprintf(stdout, "%04d[%02d]", i, map.data[i]);\r
68                         //fprintf(stdout, "%c", map.MAPDATAPTK[i]+44);\r
69                         fprintf(stdout, "%c", map.layerdata[k].data[i]+44);\r
70                         if(!((i+1)%map.width)){\r
71                                 //fprintf(stdout, "[%d]", i);\r
72                                 fprintf(stdout, "\n"); }\r
73                 }\r
74                 fprintf(stdout, "]\n");\r
75                 getch();\r
76         }\r
77 #else\r
78         //fprintf(stderr, "contents of the buffer\n[\n%s\n]\n", (gvar.ca.mapsegs));\r
79 #endif\r
80         /*fprintf(stdout, "&main()=%Fp\n", *argv[0]);\r
81         fprintf(stdout, "&map==%Fp\n", &map);\r
82         fprintf(stdout, "&map.tiles==%Fp\n", map.tiles);\r
83         fprintf(stdout, "&map.width==%Fp\n", map.width);\r
84         fprintf(stdout, "&map.height==%Fp\n", map.height);\r
85         fprintf(stdout, "&map.data==%Fp\n", map.data);*/\r
86 #endif\r
87         //fprintf(stderr, "here comes dat boi!\n"); getch(); fprintf(stderr, "%s", datboi);\r
88         MM_FreePtr((memptr *)&(gvar.ca.mapsegs), &gvar);\r
89         PM_Shutdown(&gvar);\r
90         CA_Shutdown(&gvar);\r
91         MM_Shutdown(&gvar);\r
92 }\r