X-Git-Url: http://4ch.mooo.com/gitweb/?a=blobdiff_plain;f=src%2Flib%2F16_map.h;h=b2e5dd5283abc45370b9ea7824482b11329ff87c;hb=e7476357695d692374e26dd4cba93b2e1fdabe84;hp=4fd0442967ee63cb39c49791b6cb37852e1b2d9f;hpb=c8dd189c61a9d0e0ef34224be609f1c8f590be7c;p=16.git diff --git a/src/lib/16_map.h b/src/lib/16_map.h index 4fd04429..b2e5dd52 100755 --- a/src/lib/16_map.h +++ b/src/lib/16_map.h @@ -1,5 +1,5 @@ /* Project 16 Source Code~ - * Copyright (C) 2012-2016 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover + * Copyright (C) 2012-2019 sparky4 & pngwen & andrius4669 & joncampbell123 & yakui-lover * * This file is part of Project 16. * @@ -20,42 +20,29 @@ * */ -#ifndef _LIBMAPREAD_H_ -#define _LIBMAPREAD_H_ +#ifndef _16_MAP__H_ +#define _16_MAP__H_ -#include "jsmn/jsmn.h" +#include "src/lib/16_head.h" +#include "src/lib/16_tdef.h" //#include "stdio.h" included in 16_head.h //#include "stdlib.h" included in 16_head.h -#include "src/lib/modex16.h" -#include "src/lib/16_head.h" +#include "src/lib/16_vl.h" #include "src/lib/16_ca.h" #include "src/lib/16_mm.h" +#include "src/lib/16_pm.h" + -//TODO: 16_mm and 16_ca must handle this -typedef struct { - bitmap_t huge *btdata; //old - planar_buf_t huge *data; //old - word tileHeight; - word tileWidth; - unsigned int rows; - unsigned int cols; - #ifdef __DEBUG__ - boolean debug_text; //show the value of the tile! wwww - byte *debug_data; - #endif -} tiles_t; +//#define DEBUG_MAPDATA +//#define DEBUG_MAPVARS +//0000++#define DEBUG_OBVARS +//#define DEBUG_JS -//TODO: 16_mm and 16_ca must handle this -//TODO: add variables from 16_ca -typedef struct { - //long planestart[3]; - //unsigned planelength[3]; - byte * huge *data; //TODO: 16_mm and 16_ca must handle this - tiles_t **tiles; //TODO: 16_mm and 16_ca must handle this - unsigned int width, height; //this has to be positive - char name[16]; -} map_t; +//typedefs moved to 16_tdef.h -int loadmap(char *mn, map_t *map); +//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, global_game_variables_t *gvar); +int newloadmap(char *mn, map_t *map); +int CA_loadmap(char *mn, map_t *map, global_game_variables_t *gvar); -#endif/*_LIBMAPREAD_H_*/ +#endif/*_16_LIB__H_*/