* Fifth Floor, Boston, MA 02110-1301 USA.\r
*\r
*/\r
-\r
+//TODO: ADD MEMORY MANAGER! WWWW\r
#include "src/lib/mapread.h"\r
\r
#define DUMP\r
{\r
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....");\r
+ getch();\r
+\r
loadmap("data/test.map", &map);\r
#ifdef DUMP\r
fprintf(stdout, "map.width= %d\n", map.width);\r
+++ /dev/null
-/* Project 16 Source Code~\r
- * Copyright (C) 2012-2016 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
-\r
-#include <conio.h>\r
-#include "src/lib/fmapread.h"\r
-\r
-#define DUMP\r
-//#define DUMP_MAP\r
-\r
-void\r
-main(int argc, char *argv[])\r
-{\r
- 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....");\r
- getch();\r
-\r
- fprintf(stderr, "loading~\n\n");\r
- loadmap("data/tes0.map", &map);\r
- fprintf(stderr, "\nokies~\n");\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
- 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