X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Fmaptest.c;h=33c5dcc7152a6e3d5e949734248388ecdd1c4908;hb=11757203baaa7f57f795025a3326e97a4a5f2b70;hp=86cda8db237ccb19b4f94e639b3f23d5d12a26f1;hpb=26fc7489c3a21062310fbf51b9da51f65086075b;p=16.git diff --git a/src/maptest.c b/src/maptest.c old mode 100644 new mode 100755 index 86cda8db..33c5dcc7 --- a/src/maptest.c +++ b/src/maptest.c @@ -1,29 +1,89 @@ -#include "src/lib/mapread.h" - -#define DUMP -//#define DUMP_MAP - -void +/* Project 16 Source Code~ + * Copyright (C) 2012-2017 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover + * + * This file is part of Project 16. + * + * Project 16 is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 3 of the License, or + * (at your option) any later version. + * + * Project 16 is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see , or + * write to the Free Software Foundation, Inc., 51 Franklin Street, + * Fifth Floor, Boston, MA 02110-1301 USA. + * + */ +#include "src/lib/16_map.h" +#include + +#define DUMP +//#define DUMP_MAP + +void main(int argc, char *argv[]) { - map_t map; - short i; - loadmap("data/test.map", &map); - #ifdef DUMP - fprintf(stdout, "map.width= %d\n", map.width); - fprintf(stdout, "map.height= %d\n", map.height); - #ifdef DUMP_MAP - for(i=0; i<(map.width*map.height); i++) - { - fprintf(stdout, "%04d[%02d]", i, map.data[i]); - if(i && !(i%map.width)) fprintf(stdout, "\n"); - } - fprintf(stdout, "\n"); - #endif - fprintf(stdout, "&map==%Fp\n", &map); - fprintf(stdout, "&map.tiles==%Fp\n", map.tiles); - fprintf(stdout, "&map.width==%Fp\n", map.width); + static global_game_variables_t gvar; + static map_t map; +#ifdef DUMP +#ifdef DUMP_MAP + short i; + word k; +#endif +#endif + char *fmt = "Memory available = %u\n"; + char *fmt0 = "Largest Contiguous Block of Memory available = %u\n"; + //byte *datboi = "oh shit waddup!\n"; + + MM_Startup(&gvar); + PM_Startup(&gvar); + PM_CheckMainMem(&gvar); + PM_UnlockMainMem(&gvar); + CA_Startup(&gvar); + + fprintf(stderr, fmt, _memavl()); + fprintf(stderr, fmt0, _memmax()); + fprintf(stderr, "Size of map var = %u\n", _msize(&(gvar.ca.MAPSEGPTR))); + + CA_loadmap("data/test.map", &map, &gvar); +#ifdef DUMP + fprintf(stdout, "map.width= %d\n", map.width); + fprintf(stdout, "map.height= %d\n", map.height); + getch(); +#ifdef DUMP_MAP + for(k=0;k