X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2Fmapread.h;h=d3c26c03ff207407212a1f28d1de7d36265f8fc7;hb=19d11f1b4bed1c6ec1510168ee7e9bdb7e88cb39;hp=26682626b9120cb7a14447233bc08a0df7ab4d74;hpb=cb813c605876f11ce54bee2b44a33e97b00dcf16;p=16.git diff --git a/src/lib/mapread.h b/src/lib/mapread.h old mode 100644 new mode 100755 index 26682626..d3c26c03 --- a/src/lib/mapread.h +++ b/src/lib/mapread.h @@ -1,31 +1,57 @@ -#ifndef _LIBMAPREAD_H_ -#define _LIBMAPREAD_H_ -#include -#include -#include -#include "src/lib/jsmn/jsmn.c" -#include "src/lib/modex16.h" - -char *js_sv; -byte bgdata[4096]; - +/* Project 16 Source Code~ + * Copyright (C) 2012-2016 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. + * + */ + +#ifndef _LIBMAPREAD_H_ +#define _LIBMAPREAD_H_ + +#include "src/lib/jsmn/jsmn.h" +#include "src/lib/modex16.h" +#include "src/lib/16_head.h" + +//#define DEBUG_MAPDATA +//#define DEBUG_MAPVAR +//#define DEBUG_DUMPVARS +//#define DEBUG_JS + typedef struct { - bitmap_t *data; + bitmap_t huge *btdata; + planar_buf_t huge *data; word tileHeight; word tileWidth; unsigned int rows; unsigned int cols; + boolean debug_text; //show the value of the tile! wwww + byte *debug_data; } tiles_t; typedef struct { byte *data; tiles_t *tiles; - int width; - int height; -} map_t; - -static int jsoneq(const char *json, jsmntok_t *tok, const char *s); -static int dump(const char *js, jsmntok_t *t, size_t count, int indent, /*char *js_sv,*/ map_t *map, int q); -int loadmap(char *mn, map_t *map); - -#endif/*_LIBMAPREAD_H_*/ + int width; //this has to be signed! + int height; //this has to be signed! +} map_t; + +int jsoneq(const char *json, jsmntok_t *tok, const char *s); +word dump(const char *js, jsmntok_t *t, size_t count, word indent, char *js_sv, map_t *map, dword q); +int loadmap(char *mn, map_t *map); + +#endif/*_LIBMAPREAD_H_*/