X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Fmaptest0.c;h=3a05abdddf2c0d6640c437cc4261b1a12dbf3d7b;hb=25b9bc83026e8a72be55c8ba9ad73496e8654e50;hp=e0ca320c77f7880c2cff579e4b6c6c5db9569d32;hpb=4448398b83f88683f07e18e1d8ab5ffbf56ce5cb;p=16.git diff --git a/src/maptest0.c b/src/maptest0.c old mode 100644 new mode 100755 index e0ca320c..3a05abdd --- a/src/maptest0.c +++ b/src/maptest0.c @@ -1,41 +1,65 @@ -#include -#include "src/lib/mapread.h" - -//#define DUMP -//#define DUMP_MAP - -void +/* Project 16 Source Code~ + * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 + * + * 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 +#include "src/lib/fmapread.h" + +#define DUMP +//#define DUMP_MAP + +void main(int argc, char *argv[]) { - map_t map; - short i; - char *fmt = "Memory available = %u\n"; - char *fmt0 = "Largest Contiguous Block of Memory available = %u\n"; - - fprintf(stderr, fmt, _memavl()); - fprintf(stderr, fmt0, _memmax()); - fprintf(stderr, "Size of map var = %u\n", _msize(&map)); - getch(); - - fprintf(stderr, "loading~\n\n"); - loadmap("data/tes0.map", &map); - fprintf(stderr, "\nokies~\n"); - #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); + map_t map; + short i; + char *fmt = "Memory available = %u\n"; + char *fmt0 = "Largest Contiguous Block of Memory available = %u\n"; + + fprintf(stderr, fmt, _memavl()); + fprintf(stderr, fmt0, _memmax()); + fprintf(stderr, "Size of map var = %u\n", _msize(&map)); + fprintf(stderr, "program always crashes for some reason...."); + getch(); + + fprintf(stderr, "loading~\n\n"); + loadmap("data/tes0.map", &map); + fprintf(stderr, "\nokies~\n"); + #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, "&main()=%Fp\n", *argv[0]); + fprintf(stdout, "&map==%Fp\n", &map); + fprintf(stdout, "&map.tiles==%Fp\n", map.tiles); + fprintf(stdout, "&map.width==%Fp\n", map.width); fprintf(stdout, "&map.height==%Fp\n", map.height); - fprintf(stdout, "&map.data==%Fp\n", map.data); - #endif - fprintf(stdout, "okies~\n"); + fprintf(stdout, "&map.data==%Fp\n", map.data); + #endif + fprintf(stdout, "okies~\n"); }