OSDN Git Service

====----==== this is a messed up build that contains a busted 0.exe pan page system
[proj16/16.git] / src / maptest.c
old mode 100644 (file)
new mode 100755 (executable)
index 48c022d..7649898
@@ -1,9 +1,63 @@
-#include "src/lib/mapread.c"\r
+/* Project 16 Source Code~\r
+ * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover\r
+ *\r
+ * This file is part of Project 16.\r
+ *\r
+ * Project 16 is free software; you can redistribute it and/or modify\r
+ * it under the terms of the GNU General Public License as published by\r
+ * the Free Software Foundation; either version 3 of the License, or\r
+ * (at your option) any later version.\r
+ *\r
+ * Project 16 is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>, or\r
+ * write to the Free Software Foundation, Inc., 51 Franklin Street,\r
+ * Fifth Floor, Boston, MA 02110-1301 USA.\r
+ *\r
+ */\r
+//TODO: ADD MEMORY MANAGER! WWWW\r
+#include "src/lib/16_map.h"\r
 \r
-void
+#define DUMP\r
+#define DUMP_MAP\r
+\r
+void\r
 main(int argc, char *argv[])\r
 {\r
-       map_t map;
-       loadmap("data/test.map", &map);
-       fprintf(stderr, "%d\n", map.data[0]);
+       map_t map;\r
+       short i;\r
+       char *fmt = "Memory available = %u\n";\r
+       char *fmt0 = "Largest Contiguous Block of Memory available = %u\n";\r
+\r
+       fprintf(stderr, fmt, _memavl());\r
+       fprintf(stderr, fmt0, _memmax());\r
+       fprintf(stderr, "Size of map var = %u\n", _msize(&map));\r
+       //fprintf(stderr, "program always crashes for some reason....\n");\r
+       getch();\r
+\r
+       loadmap("data/test.map", &map);\r
+       #ifdef DUMP\r
+       fprintf(stdout, "map.width=     %d\n", map.width);\r
+       fprintf(stdout, "map.height=    %d\n", map.height);\r
+       #ifdef DUMP_MAP\r
+       if(map.width*map.height != 1200) exit(-3);\r
+       for(i=0; i<(map.width*map.height); i++)\r
+       {\r
+               fprintf(stdout, "%04d[%02d]", i, map.data[i]);\r
+               if(i && !(i%map.width)) fprintf(stdout, "\n");\r
+       }\r
+       fprintf(stdout, "\n");\r
+       #endif\r
+       fprintf(stdout, "&main()=%Fp\n", *argv[0]);\r
+       fprintf(stdout, "&map==%Fp\n", &map);\r
+       fprintf(stdout, "&map.tiles==%Fp\n", map.tiles);\r
+       fprintf(stdout, "&map.width==%Fp\n", map.width);\r
+       fprintf(stdout, "&map.height==%Fp\n", map.height);\r
+       fprintf(stdout, "&map.data==%Fp\n", map.data);\r
+       #endif\r
+       fprintf(stdout, "okies~\n");\r
 }\r