X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Fmaptest.c;h=33c5dcc7152a6e3d5e949734248388ecdd1c4908;hb=11757203baaa7f57f795025a3326e97a4a5f2b70;hp=ae016eec046c4e47eb02e1977595168d8d3a6a1a;hpb=1073f7dbfa5b78819af46c64f3ffd0301e9d8cc6;p=16.git diff --git a/src/maptest.c b/src/maptest.c old mode 100644 new mode 100755 index ae016eec..33c5dcc7 --- a/src/maptest.c +++ b/src/maptest.c @@ -1,10 +1,89 @@ -#include "src/lib/mapread.c" +/* 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 -void +#define DUMP +//#define DUMP_MAP + +void main(int argc, char *argv[]) { - map_t map; - fprintf(stderr, "wwww\n"); - //loadmap("data/test.map", &map); - fprintf(stderr, "wwww\n"); + 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