]> 4ch.mooo.com Git - 16.git/blob - src/maptest.c
working on maptest
[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 \r
24 #define DUMP\r
25 #define DUMP_MAP\r
26 \r
27 void\r
28 main(int argc, char *argv[])\r
29 {\r
30         static global_game_variables_t gvar;\r
31         map_t map;\r
32         static memptr   mapbuf;\r
33 #ifdef DUMP_MAP\r
34         short i;\r
35 #endif\r
36         char *fmt = "Memory available = %u\n";\r
37         char *fmt0 = "Largest Contiguous Block of Memory available = %u\n";\r
38 \r
39         MM_Startup(&gvar);\r
40         PM_Startup(&gvar);\r
41         //printf("pmstarted ok\n");\r
42         //PM_CheckMainMem(&gvar);\r
43         PM_UnlockMainMem(&gvar);\r
44         CA_Startup(&gvar);\r
45 \r
46         fprintf(stderr, fmt, _memavl());\r
47         fprintf(stderr, fmt0, _memmax());\r
48         fprintf(stderr, "Size of map var = %u\n", _msize(&mapbuf));\r
49         //fprintf(stderr, "program always crashes for some reason....\n");\r
50         getch();\r
51 \r
52         loadmap("data/test.map", &map);\r
53         CA_LoadFile("data/test.map", &mapbuf, &gvar);\r
54         //map=(map_t *)mapbuf;\r
55         #ifdef DUMP\r
56         fprintf(stdout, "map.width=     %d\n", map.width);\r
57         fprintf(stdout, "map.height=    %d\n", map.height);\r
58         #ifdef DUMP_MAP\r
59         //if(map.width*map.height != 1200)\r
60         for(i=0; i<(map.width*map.height); i++)\r
61         {\r
62                 //fprintf(stdout, "%04d[%02d]", i, map.data[i]);\r
63                 fprintf(stdout, "%c", map.data[i]+44);\r
64                 if(!((i+1)%map.width)){ fprintf(stdout, "[%d]", i); fprintf(stdout, "\n"); }\r
65         }\r
66         fprintf(stdout, "\n");\r
67         #else\r
68         fprintf(stderr, "contents of the buffer\n[\n%s\n]\n", mapbuf);\r
69         #endif\r
70         /*fprintf(stdout, "&main()=%Fp\n", *argv[0]);\r
71         fprintf(stdout, "&map==%Fp\n", &map);\r
72         fprintf(stdout, "&map.tiles==%Fp\n", map.tiles);\r
73         fprintf(stdout, "&map.width==%Fp\n", map.width);\r
74         fprintf(stdout, "&map.height==%Fp\n", map.height);\r
75         fprintf(stdout, "&map.data==%Fp\n", map.data);*/\r
76         #endif\r
77         fprintf(stdout, "okies~\n");\r
78         MM_FreePtr(&mapbuf, &gvar);\r
79         PM_Shutdown(&gvar);\r
80         CA_Shutdown(&gvar);\r
81         MM_Shutdown(&gvar);\r
82 }\r