chuyiwen_gmsv/include/readmap.h

141 lines
4.4 KiB
C
Raw Normal View History

2016-12-24 08:45:52 +08:00
#ifndef __MAP_H__
#define __MAP_H__
#include "common.h"
#include "util.h"
typedef struct tagMAP_Objlink
{
int objindex;
struct tagMAP_Objlink* next;
}MAP_Objlink, *OBJECT;
#define GET_OBJINDEX(x) ((x)->objindex)
#define NEXT_OBJECT(x) ((x)->next)
typedef struct tagMAP_Map
{
int id; /* ID */
int xsiz,ysiz; /* */
char string[64]; /* <20><>ʾ */
unsigned short* tile; /* */
unsigned short* obj; /* */
MAP_Objlink** olink;
#ifdef _MAP_NOEXIT
unsigned int startpoint;
int MapType;
#endif
}MAP_Map;
typedef enum
{
MAP_WALKABLE, /*
* <EFBFBD><EFBFBD><EFBFBD><EFBFBD>
* <EFBFBD><EFBFBD>? Q <EFBFBD><EFBFBD> 0
* <EFBFBD><EFBFBD>? M <EFBFBD><EFBFBD> 1
* <EFBFBD><EFBFBD>? M <EFBFBD><EFBFBD> 2
*/
MAP_HAVEHEIGHT, /* <20><> <20><>0 0 */
MAP_DEFENCE, /* <20>\ <20><><EFBFBD>ر<EFBFBD><D8B1><EFBFBD><EFBFBD><EFBFBD>0 <20><><EFBFBD><EFBFBD> <20>\ */
MAP_INTODAMAGE, /* <20><> ʱ HP <20><> ? */
MAP_OUTOFDAMAGE, /* <20><> ʱ HP <20><> ? */
MAP_SETED_BATTLEMAP, /* <20>趨? */
MAP_BATTLEMAP, /* <20><><EFBFBD>A <20><>*/
MAP_BATTLEMAP2, /* <20><><EFBFBD>A <20><>*/
MAP_BATTLEMAP3, /* <20><><EFBFBD>A <20><>*/
/* <20><><EFBFBD><EFBFBD> <20>̣ӣ<CCA3> ʹ <20>ӣ<EFBFBD> ʹ (? X ? @) */
MAP_INTODARKNESS, /* <20><> ʱ <20><> */
MAP_INTOCONFUSION, /* <20><> ʱ <20><>? */
MAP_OUTOFPOISON, /* <20><> ʱ <20><> */
MAP_OUTOFPARALYSIS, /* <20><> ʱ */
MAP_OUTOFSILENCE, /* <20><> ʱ <20><>? */
MAP_OUTOFSTONE, /* <20><> ʱ ʯ */
MAP_OUTOFDARKNESS, /* <20><> ʱ <20><> */
MAP_OUTOFCONFUSION, /* <20><> ʱ <20><>? */
MAP_DATAINT_NUM,
}MAP_DATAINT;
typedef enum
{
MAP_DATACHAR_NUM,
}MAP_DATACHAR;
typedef struct tagMAP_ImageData
{
int data[MAP_DATAINT_NUM];
STRING32 string[MAP_DATACHAR_NUM];
}MAP_ImageData;
typedef enum
{
MAP_KINDWALKABLE, /* <20><>? F 1 <20><> */
MAP_KINDNUM,
}MAP_kind;
INLINE int MAP_getfloorIndex( int floorid );
int MAP_getfloorX( int floorid );
int MAP_getfloorY( int floorid );
BOOL MAP_initReadMap( char* maptilefile , char* mapdir );
BOOL MAP_initMapArray( int num );
void MAP_endMapArray( void );
char* MAP_getdataFromRECT( int floor, RECT* seekr, RECT* realr );
char *MAP_getChecksumFromRECT( int floor, RECT* seekr, RECT* realr,
int *tilesum, int *objsum, int *eventsum );
BOOL MAP_checkCoordinates( int mapid, int x, int y );
BOOL MAP_setTileAndObjData( int ff ,int fx, int fy, int tile, int obj);
BOOL MAP_getTileAndObjData( int ff ,int fx, int fy, int* tile, int* obj);
void MAP_sendAroundMapdata( int fl, int x, int y);
int MAP_getImageInt( int imagenumber, int element );
BOOL MAP_setImageInt( int imagenumber, int element, int value );
BOOL IsValidImagenumber( int imagenumber );
char* MAP_getfloorShowstring( int floorid );
BOOL MAP_makeVariousMap(char* atile, char* aobj, int floor, int startx, int starty, int xsiz, int ysiz, MAP_kind kind );
BOOL MAP_makeWalkableMap( char* data, int floor, int startx, int starty,int xsiz, int ysiz );
BOOL MAP_IsThereSpecificFloorid( int floorid );
BOOL MAP_IsValidCoordinate( int floorid, int x, int y );
BOOL MAP_addNewObj( int floor, int x, int y, int objindex );
BOOL MAP_removeObj( int floor, int x, int y, int objindex );
#define MAP_getTopObj( fl, x, y) _MAP_getTopObj( __FILE__, __LINE__, fl, x, y)
MAP_Objlink* _MAP_getTopObj( char *file, int line, int floor, int x, int y );
#define MAP_objmove( objindex, of, ox, oy, nfl, nx, ny) _MAP_objmove( __FILE__, __LINE__, objindex, of, ox, oy, nfl, nx, ny)
BOOL _MAP_objmove( char *file, int line, int objindex, int ofloor, int ox, int oy, int nfloor,
int nx, int ny );
char *MAP_getFloorName( int floor);
BOOL MAP_setObjData( int ff ,int fx, int fy, int obj, int objhp );
#ifdef _MAKE_MAP
int MAP_getFloorXY( int floor, int *x, int *y);
#endif
#ifdef _STATUS_WATERWORD //ˮ<><CBAE><EFBFBD><EFBFBD>״̬
int MAP_getMapFloorType( int floor);
#endif
#ifdef _MAP_NOEXIT
unsigned int MAP_getExFloor_XY( int floor , int *map_type);
BOOL CHECKFLOORID( int id);
#endif
int MAP_getMapNum();
int MAP_getfloorId(int index);
#ifdef _CAX_LNS_MAPSUOXU
BOOL MAP_SetExWarp(int mapid , int fl, int x, int y, int type);
BOOL MAP_DelMap(int mapid );
int MAP_makenew( int mapid ,char* map_name);
#endif
#endif
/*__MAP_H__*/