#include "version.h" #include #include "common.h" #include "char.h" #include "char_base.h" #include "object.h" #include "buf.h" #include "util.h" #include "configfile.h" #include "readmap.h" #include "map_warppoint.h" #ifdef _MAP_WARPPOINT #define MAP_MAXWARPPOINT 6000 typedef struct _tagMAPwarpPoints{ int use; int ofloor; int ox; int oy; int floor; int x; int y; int type; }_MAPwarpPoints; _MAPwarpPoints *MapWarppoint; static int MapWarpPoints=0; char PointType[3][256]={ "NONE", "FREE", "ERROR"}; char Filename[256]; int resetmappointtime = 0; int MAPPOINT_InitMapWarpPoint() { MapWarppoint = ( _MAPwarpPoints *)calloc( 1, sizeof( struct _tagMAPwarpPoints)*MAP_MAXWARPPOINT); if( MapWarppoint == NULL ) return 0; sprintf(Filename, "%s/mapwarp.txt", getMapdir()); MAPPOINT_resetMapWarpPoint( 0); return MAP_MAXWARPPOINT; } /* void MAPPOINT_checkMapWarpPoint( int floor, int x, int y) { OBJECT object; for( object = MAP_getTopObj(fl,x,y) ; object ; object = NEXT_OBJECT(object) ){ int o = GET_OBJINDEX(object); if( OBJECT_getType(o) == OBJTYPE_WARPPOINT){ if( !MAPPOINT_CHECKINDEX( OBJECT_getIndex( o)) ) continue; if( OBJECT_getchartype( o) != event ) continue; MAPPOINT_MapWarpHandle( charaindex, OBJECT_getIndex( o), fl, x, y ); found = TRUE; break; } } */ void MAPPOINT_resetMapWarpPoint( int flg) { int i; if( MapWarppoint == NULL ) return; for( i=0; i= MAP_MAXWARPPOINT ) return FALSE; return MapWarppoint[ ps].use; } int MAPPOINT_getMPointEVType( int ps) { if( !MAPPOINT_CHECKINDEX( ps) ) return -1; return MapWarppoint[ ps].type; } int MAPPOINT_setMapWarpFrom( int ps, char *buf) { char buf1[256]; if( MAPPOINT_CHECKINDEX( ps) ){ print(" 放置传送点从 %s 获得!!\n", buf); return -1; } memset( buf1, 0, sizeof( buf1)); if( getStringFromIndexWithDelim( buf, ",", 1, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点 MapWarppoint[ps].ofloor = atoi( buf1); if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点 MapWarppoint[ps].ox = atoi( buf1); if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点 MapWarppoint[ps].oy = atoi( buf1); return 1; } int MAPPOINT_setMapWarpGoal( int ps, char *buf) { char buf1[256]; if( MAPPOINT_CHECKINDEX( ps) ){ print(" 放置传送点获得 :%s!!\n", buf); return -1; } memset( buf1, 0, sizeof( buf1)); if( getStringFromIndexWithDelim( buf, ",", 1, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点 MapWarppoint[ps].floor = atoi( buf1); if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点 MapWarppoint[ps].x = atoi( buf1); if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点 MapWarppoint[ps].y = atoi( buf1); return 1; } int MAPPOINT_getMapWarpGoal( int ps, int ofl, int ox, int oy, int *fl, int *x, int *y) { if( !MAPPOINT_CHECKINDEX( ps) ){ print("获取传送点PS:%d 错误!!\n", ps); return -1; } if( MapWarppoint[ps].ofloor != ofl || MapWarppoint[ps].ox != ox || MapWarppoint[ps].oy != oy ){ print( "不正常传送点: 旧的有问题传送点 %d %d %d !!\n" , ofl,ox,oy ); int newmappointtime = time(NULL); if(newmappointtime-resetmappointtime>=60){ MAPPOINT_resetMapWarpPoint( 1); MAPPOINT_loadMapWarpPoint(); resetmappointtime = newmappointtime; } return -1; } //可加判断条件 if( MAP_IsValidCoordinate( MapWarppoint[ps].floor, MapWarppoint[ps].x, MapWarppoint[ps].y)== FALSE ){ print( "不正常传送点:有问题 %d %d %d !!\n" , MapWarppoint[ps].floor,MapWarppoint[ps].x, MapWarppoint[ps].y ); return -1; } *fl = MapWarppoint[ps].floor; *x = MapWarppoint[ps].x; *y = MapWarppoint[ps].y; return 1; } int MAPPOINT_loadMapWarpPoint( ) { int i=0, ps=0, objtype; FILE *fp=NULL; char buf[256], buf1[256]; if( Filename == NULL ) return -1; fp = fopen( Filename, "r"); if( fp == NULL ){ return 0; } while( fgets( buf, sizeof( buf)-1, fp) != NULL ){ if( strstr( buf, "#") != 0 ) continue; if( getStringFromIndexWithDelim( buf, ":", 1, buf1, sizeof(buf1)) ==FALSE ) continue; for( i=0; i= arraysizeof( PointType) ){ print(" 1.map 传送点错误 %s \n", buf); continue; } MapWarppoint[ps].type = i; if( getStringFromIndexWithDelim( buf, ":", 2, buf1, sizeof(buf1)) ==FALSE ) continue; objtype = CHAR_EVENT_WARP; if( !strcmp( buf1, "NULL")){ }else if( !strcmp( buf1, "M")){ objtype = CHAR_EVENT_WARP_MORNING; }else if( !strcmp( buf1, "N")){ objtype = CHAR_EVENT_WARP_NIGHT; }else if( !strcmp( buf1, "A")){ objtype = CHAR_EVENT_WARP_NOON; } memset( buf1, 0, sizeof(buf1)); if( getStringFromIndexWithDelim( buf, ":", 3, buf1, sizeof(buf1)) ==FALSE )continue; if( MAPPOINT_setMapWarpFrom( ps, buf1) == -1){ print(" 2-1.map 传送点错误 %s [%s] \n", buf, buf1); continue; } if( MAPPOINT_creatMapWarpObj( ps, buf1, objtype) == -1 ){ print(" 2.map 传送点错误 %s [%s] \n", buf, buf1); continue; } memset( buf1, 0, sizeof(buf1)); if( getStringFromIndexWithDelim( buf, ":", 4, buf1, sizeof(buf1)) ==FALSE ){ print(" 3.map 传送点错误 %s [%s] \n", buf, buf1); continue; } if( MAPPOINT_setMapWarpGoal( ps, buf1) == -1 ){ print(" 4.map 传送点错误 %s \n", buf); continue; } memset( buf1, 0, sizeof(buf1)); if( getStringFromIndexWithDelim( buf, ":", 5, buf1, sizeof(buf1)) ==FALSE ){ print(" 5.map 传送点错误 %s [%s] \n", buf, buf1); continue; } MapWarppoint[ps].use = 1; MapWarpPoints++; ps++; if( ps >= MAP_MAXWARPPOINT ){ break; } } //andy_log print("初始化 %d 地图传送点...", MapWarpPoints); fclose( fp); print("完成\n"); return 1; } void MAPPOINT_MapWarpHandle( int charaindex, int ps, int ofl, int ox, int oy ) { int floor, x, y; if( MAPPOINT_getMapWarpGoal( ps, ofl, ox, oy, &floor, &x, &y) == -1 ){ //andy_log print( "获取传送点( %d, %d,%d,%d)错误!!\n", ps, ofl, ox, oy); return; } if( floor == 777 ) return; CHAR_warpToSpecificPoint( charaindex, floor, x, y); if( CHAR_getWorkInt( charaindex, CHAR_WORKPARTYMODE ) == CHAR_PARTY_LEADER ) { int i; for( i = 1; i < CHAR_PARTYMAX; i ++ ) { int index = CHAR_getWorkInt( charaindex, i + CHAR_WORKPARTYINDEX1); if( CHAR_CHECKINDEX(index) ) { CHAR_warpToSpecificPoint( index, floor, x, y); } } } } #endif #ifdef _CAX_LNS_MAPSUOXU int DelMapPoint( int ps)//卸载地图传送点 { if (MapWarppoint[ps].use != 1) return FALSE; MapWarppoint[ps].type = 0;//设置地图的传送点类型 endObjectOne(get_mappointindex(MapWarppoint[ps].ofloor,MapWarppoint[ps].ox,MapWarppoint[ps].oy));//清掉obj MapWarppoint[ps].ofloor = -1;//设置地图的传送点类型 MapWarppoint[ps].ox = -1;//设置地图的传送点类型 MapWarppoint[ps].oy = -1;//设置地图的传送点类型 MapWarppoint[ps].floor = -1;//设置地图的传送点类型 MapWarppoint[ps].x = -1;//设置地图的传送点类型 MapWarppoint[ps].y = -1;//设置地图的传送点类型 MapWarppoint[ps].use = 0; MapWarppoint[ps].type = 0; return TRUE;//注意设置传送点时先检查是否原来有传送点 } int SetMapPoint( char* buf)//加载地图传送点 { // "传送点类型:NULL:2000,50,50:2006,20,20:?" if( MapWarpPoints >= MAP_MAXWARPPOINT ){ print(" 传送点已达上限!\n"); return -1; } char buf1[256]; char buf2[256]; int objtype,i; if( getStringFromIndexWithDelim( buf, ":", 1, buf1, sizeof(buf1)) ==FALSE )//找出传送点类型 { return -2; } for( i=0; i= arraysizeof( PointType) ){//传送点类型错误 return -3 ; } MapWarppoint[MapWarpPoints].type = i;//设置地图的传送点类型 if( getStringFromIndexWithDelim( buf, ":", 2, buf1, sizeof(buf1)) ==FALSE ) //找出传送点有效时间 { return -4 ; } objtype = CHAR_EVENT_WARP;//设置对象为传送点 if( !strcmp( buf1, "NULL")){ }else if( !strcmp( buf1, "M")){ objtype = CHAR_EVENT_WARP_MORNING;//设置对象为早晨传送点 }else if( !strcmp( buf1, "N")){ objtype = CHAR_EVENT_WARP_NIGHT;//设置对象为晚上传送点 }else if( !strcmp( buf1, "A")){ objtype = CHAR_EVENT_WARP_NOON;//设置对象为中午传送点 } memset( buf1, 0, sizeof(buf1)); if( getStringFromIndexWithDelim( buf, ":", 3, buf1, sizeof(buf1)) ==FALSE )//找出原点 { return -5 ; } int fl = -1,x = -1,y = -1; if( getStringFromIndexWithDelim( buf1, ",", 1, buf2, sizeof(buf1)) !=FALSE )//找出原点 { fl = atoi(buf2); } if( getStringFromIndexWithDelim( buf1, ",", 2, buf2, sizeof(buf1)) !=FALSE )//找出原点 { x = atoi(buf2); } if( getStringFromIndexWithDelim( buf1, ",", 3, buf2, sizeof(buf1)) !=FALSE )//找出原点 { y = atoi(buf2); } if (fl == -1 || x == -1 || y == -1) return -5; if (get_mappointindex( fl,x, y) != -1) return -5;//设置过传送点! for (i=0;i= MapWarpPoints) MapWarpPoints++;//如果当前传送点已经到达最后,预设下一个传送点。 return i; } #endif