388 lines
10 KiB
C
388 lines
10 KiB
C
#include "version.h"
|
||
|
||
#include <string.h>
|
||
#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; i++){
|
||
MapWarppoint[i].use = 0;
|
||
MapWarppoint[i].floor = -1;
|
||
}
|
||
|
||
if( flg == 1 ){
|
||
int objindex;
|
||
int objmaxnum = OBJECT_getNum();
|
||
for( objindex=0; objindex<objmaxnum; objindex++) {
|
||
if( CHECKOBJECT( objindex ) == FALSE ) continue;
|
||
if( OBJECT_getType( objindex) != OBJTYPE_WARPPOINT )continue;
|
||
CHAR_ObjectDelete( objindex);
|
||
}
|
||
}
|
||
}
|
||
|
||
int MAPPOINT_creatMapWarpObj( int pointindex, char *buf, int objtype)
|
||
{
|
||
int objindex;
|
||
Object obj;
|
||
char buf1[256];
|
||
obj.index= pointindex;
|
||
memset( obj.objname, 0, sizeof( obj.objname));
|
||
if( getStringFromIndexWithDelim( buf, ",", 1, buf1, sizeof(buf1)) ==FALSE ){
|
||
return -1;//ԭ<><D4AD>
|
||
}
|
||
obj.floor = atoi( buf1);
|
||
if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ){
|
||
return -1;//ԭ<><D4AD>
|
||
}
|
||
obj.x = atoi( buf1);
|
||
if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ){
|
||
return -1;//ԭ<><D4AD>
|
||
}
|
||
obj.y = atoi( buf1);
|
||
obj.type = OBJTYPE_WARPPOINT;
|
||
obj.chartype = objtype;
|
||
obj.dir = 0;
|
||
objindex = initObjectOne( &obj );
|
||
if( objindex == -1 ){
|
||
//andy_log
|
||
//print( " creatMapWarpObj() initObjectOne err !!\n");
|
||
return -1;
|
||
}
|
||
return objindex;
|
||
}
|
||
|
||
BOOL MAPPOINT_CHECKINDEX( int ps)
|
||
{
|
||
if( ps < 0 || ps >= 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(" <20><><EFBFBD>ô<EFBFBD><C3B4>͵<EFBFBD><CDB5><EFBFBD> %s <20><><EFBFBD><EFBFBD>!!\n", buf);
|
||
return -1;
|
||
}
|
||
|
||
memset( buf1, 0, sizeof( buf1));
|
||
if( getStringFromIndexWithDelim( buf, ",", 1, buf1, sizeof(buf1)) ==FALSE ) return -1;//ԭ<><D4AD>
|
||
MapWarppoint[ps].ofloor = atoi( buf1);
|
||
if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ) return -1;//ԭ<><D4AD>
|
||
MapWarppoint[ps].ox = atoi( buf1);
|
||
if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ) return -1;//ԭ<><D4AD>
|
||
MapWarppoint[ps].oy = atoi( buf1);
|
||
return 1;
|
||
}
|
||
|
||
int MAPPOINT_setMapWarpGoal( int ps, char *buf)
|
||
{
|
||
char buf1[256];
|
||
if( MAPPOINT_CHECKINDEX( ps) ){
|
||
print(" <20><><EFBFBD>ô<EFBFBD><C3B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> :%s!!\n", buf);
|
||
return -1;
|
||
}
|
||
|
||
memset( buf1, 0, sizeof( buf1));
|
||
if( getStringFromIndexWithDelim( buf, ",", 1, buf1, sizeof(buf1)) ==FALSE ) return -1;//ԭ<><D4AD>
|
||
MapWarppoint[ps].floor = atoi( buf1);
|
||
if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ) return -1;//ԭ<><D4AD>
|
||
MapWarppoint[ps].x = atoi( buf1);
|
||
if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ) return -1;//ԭ<><D4AD>
|
||
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("<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>PS:%d <20><><EFBFBD><EFBFBD>!!\n", ps);
|
||
return -1;
|
||
}
|
||
|
||
if( MapWarppoint[ps].ofloor != ofl ||
|
||
MapWarppoint[ps].ox != ox || MapWarppoint[ps].oy != oy ){
|
||
print( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>: <20>ɵ<EFBFBD><C9B5><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD> %d %d %d !!\n" , ofl,ox,oy );
|
||
int newmappointtime = time(NULL);
|
||
if(newmappointtime-resetmappointtime>=60){
|
||
MAPPOINT_resetMapWarpPoint( 1);
|
||
MAPPOINT_loadMapWarpPoint();
|
||
resetmappointtime = newmappointtime;
|
||
}
|
||
return -1;
|
||
}
|
||
//<2F>ɼ<EFBFBD><C9BC>ж<EFBFBD><D0B6><EFBFBD><EFBFBD><EFBFBD>
|
||
if( MAP_IsValidCoordinate( MapWarppoint[ps].floor, MapWarppoint[ps].x, MapWarppoint[ps].y)== FALSE ){
|
||
print( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>:<3A><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %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); i++) {
|
||
if( !strcmp( buf1, PointType[i]) )break;
|
||
}
|
||
if( i >= arraysizeof( PointType) ){
|
||
print(" 1.map <20><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> %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 <20><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> %s [%s] \n", buf, buf1);
|
||
continue;
|
||
}
|
||
if( MAPPOINT_creatMapWarpObj( ps, buf1, objtype) == -1 ){
|
||
print(" 2.map <20><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> %s [%s] \n", buf, buf1);
|
||
continue;
|
||
}
|
||
memset( buf1, 0, sizeof(buf1));
|
||
if( getStringFromIndexWithDelim( buf, ":", 4, buf1, sizeof(buf1)) ==FALSE ){
|
||
print(" 3.map <20><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> %s [%s] \n", buf, buf1);
|
||
continue;
|
||
}
|
||
if( MAPPOINT_setMapWarpGoal( ps, buf1) == -1 ){
|
||
print(" 4.map <20><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> %s \n", buf);
|
||
continue;
|
||
}
|
||
memset( buf1, 0, sizeof(buf1));
|
||
if( getStringFromIndexWithDelim( buf, ":", 5, buf1, sizeof(buf1)) ==FALSE ){
|
||
print(" 5.map <20><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> %s [%s] \n", buf, buf1);
|
||
continue;
|
||
}
|
||
MapWarppoint[ps].use = 1;
|
||
MapWarpPoints++;
|
||
ps++;
|
||
if( ps >= MAP_MAXWARPPOINT ){
|
||
break;
|
||
}
|
||
}
|
||
//andy_log
|
||
print("<EFBFBD><EFBFBD>ʼ<EFBFBD><EFBFBD> %d <20><>ͼ<EFBFBD><CDBC><EFBFBD>͵<EFBFBD>...", MapWarpPoints);
|
||
fclose( fp);
|
||
print("<EFBFBD><EFBFBD><EFBFBD><EFBFBD>\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( "<EFBFBD><EFBFBD>ȡ<EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>( %d, %d,%d,%d)<29><><EFBFBD><EFBFBD>!!\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)//ж<>ص<EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD>͵<EFBFBD>
|
||
{
|
||
if (MapWarppoint[ps].use != 1) return FALSE;
|
||
MapWarppoint[ps].type = 0;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
endObjectOne(get_mappointindex(MapWarppoint[ps].ofloor,MapWarppoint[ps].ox,MapWarppoint[ps].oy));//<2F><><EFBFBD><EFBFBD>obj
|
||
MapWarppoint[ps].ofloor = -1;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
MapWarppoint[ps].ox = -1;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
MapWarppoint[ps].oy = -1;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
MapWarppoint[ps].floor = -1;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
MapWarppoint[ps].x = -1;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
MapWarppoint[ps].y = -1;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
MapWarppoint[ps].use = 0;
|
||
MapWarppoint[ps].type = 0;
|
||
return TRUE;//ע<><D7A2><EFBFBD><EFBFBD><EFBFBD>ô<EFBFBD><C3B4>͵<EFBFBD>ʱ<EFBFBD>ȼ<EFBFBD><C8BC><EFBFBD><EFBFBD>Ƿ<EFBFBD>ԭ<EFBFBD><D4AD><EFBFBD>д<EFBFBD><D0B4>͵<EFBFBD>
|
||
}
|
||
|
||
int SetMapPoint( char* buf)//<2F><><EFBFBD>ص<EFBFBD>ͼ<EFBFBD><CDBC><EFBFBD>͵<EFBFBD>
|
||
{ // "<22><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>:NULL:2000,50,50:2006,20,20:<3A><>"
|
||
if( MapWarpPoints >= MAP_MAXWARPPOINT ){
|
||
print(" <20><><EFBFBD>͵<EFBFBD><CDB5>Ѵ<EFBFBD><D1B4><EFBFBD><EFBFBD>ޣ<EFBFBD>\n");
|
||
return -1;
|
||
}
|
||
char buf1[256];
|
||
char buf2[256];
|
||
int objtype,i;
|
||
if( getStringFromIndexWithDelim( buf, ":", 1, buf1, sizeof(buf1)) ==FALSE )//<2F>ҳ<EFBFBD><D2B3><EFBFBD><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
{
|
||
return -2;
|
||
}
|
||
for( i=0; i<arraysizeof( PointType); i++) {
|
||
if( !strcmp( buf1, PointType[i]) )break;
|
||
}
|
||
if( i >= arraysizeof( PointType) ){//<2F><><EFBFBD>͵<EFBFBD><CDB5><EFBFBD><EFBFBD>ʹ<EFBFBD><CDB4><EFBFBD>
|
||
return -3 ;
|
||
}
|
||
MapWarppoint[MapWarpPoints].type = i;//<2F><><EFBFBD>õ<EFBFBD>ͼ<EFBFBD>Ĵ<EFBFBD><C4B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD>
|
||
if( getStringFromIndexWithDelim( buf, ":", 2, buf1, sizeof(buf1)) ==FALSE ) //<2F>ҳ<EFBFBD><D2B3><EFBFBD><EFBFBD>͵<EFBFBD><CDB5><EFBFBD>Чʱ<D0A7><CAB1>
|
||
{
|
||
return -4 ;
|
||
}
|
||
objtype = CHAR_EVENT_WARP;//<2F><><EFBFBD>ö<EFBFBD><C3B6><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>͵<EFBFBD>
|
||
if( !strcmp( buf1, "NULL")){
|
||
}else if( !strcmp( buf1, "M")){
|
||
objtype = CHAR_EVENT_WARP_MORNING;//<2F><><EFBFBD>ö<EFBFBD><C3B6><EFBFBD>Ϊ<EFBFBD>糿<EFBFBD><E7B3BF><EFBFBD>͵<EFBFBD>
|
||
}else if( !strcmp( buf1, "N")){
|
||
objtype = CHAR_EVENT_WARP_NIGHT;//<2F><><EFBFBD>ö<EFBFBD><C3B6><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>ϴ<EFBFBD><CFB4>͵<EFBFBD>
|
||
}else if( !strcmp( buf1, "A")){
|
||
objtype = CHAR_EVENT_WARP_NOON;//<2F><><EFBFBD>ö<EFBFBD><C3B6><EFBFBD>Ϊ<EFBFBD><CEAA><EFBFBD>紫<EFBFBD>͵<EFBFBD>
|
||
}
|
||
memset( buf1, 0, sizeof(buf1));
|
||
if( getStringFromIndexWithDelim( buf, ":", 3, buf1, sizeof(buf1)) ==FALSE )//<2F>ҳ<EFBFBD>ԭ<EFBFBD><D4AD>
|
||
{
|
||
return -5 ;
|
||
}
|
||
int fl = -1,x = -1,y = -1;
|
||
if( getStringFromIndexWithDelim( buf1, ",", 1, buf2, sizeof(buf1)) !=FALSE )//<2F>ҳ<EFBFBD>ԭ<EFBFBD><D4AD>
|
||
{
|
||
fl = atoi(buf2);
|
||
}
|
||
if( getStringFromIndexWithDelim( buf1, ",", 2, buf2, sizeof(buf1)) !=FALSE )//<2F>ҳ<EFBFBD>ԭ<EFBFBD><D4AD>
|
||
{
|
||
x = atoi(buf2);
|
||
}
|
||
if( getStringFromIndexWithDelim( buf1, ",", 3, buf2, sizeof(buf1)) !=FALSE )//<2F>ҳ<EFBFBD>ԭ<EFBFBD><D4AD>
|
||
{
|
||
y = atoi(buf2);
|
||
}
|
||
if (fl == -1 || x == -1 || y == -1) return -5;
|
||
if (get_mappointindex( fl,x, y) != -1) return -5;//<2F><><EFBFBD>ù<EFBFBD><C3B9><EFBFBD><EFBFBD>͵㣡
|
||
for (i=0;i<MapWarpPoints;i++)//<2F>ҳ<EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD>еĴ<D0B5><C4B4>͵<EFBFBD>
|
||
{
|
||
if (MapWarppoint[i].use != 1) break;//<2F>ҵ<EFBFBD><D2B5><EFBFBD><EFBFBD>д<EFBFBD><D0B4>͵<EFBFBD>
|
||
}
|
||
|
||
if( MAPPOINT_setMapWarpFrom( i, buf1) == -1){//<2F><><EFBFBD><EFBFBD>ԭ<EFBFBD><D4AD>
|
||
return -6 ;
|
||
}
|
||
if( MAPPOINT_creatMapWarpObj( i, buf1, objtype) == -1 ){//<2F><><EFBFBD><EFBFBD>ԭ<EFBFBD><D4AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
||
return -7 ;
|
||
}
|
||
memset( buf1, 0, sizeof(buf1));
|
||
if( getStringFromIndexWithDelim( buf, ":", 4, buf1, sizeof(buf1)) ==FALSE ){//<2F>ҳ<EFBFBD><D2B3><EFBFBD><EFBFBD>͵<EFBFBD>
|
||
return -8 ;
|
||
}
|
||
if( MAPPOINT_setMapWarpGoal( i, buf1) == -1 ){//<2F><><EFBFBD>ô<EFBFBD><C3B4>͵<EFBFBD>
|
||
return -9 ;
|
||
}
|
||
memset( buf1, 0, sizeof(buf1));
|
||
if( getStringFromIndexWithDelim( buf, ":", 5, buf1, sizeof(buf1)) ==FALSE ){
|
||
//print(" ȱ<>ٴ<EFBFBD><D9B4>͵<EFBFBD><CDB5><EFBFBD><EFBFBD><EFBFBD> \n", buf, buf1);
|
||
return -10 ;
|
||
}
|
||
MapWarppoint[i].use = 1;
|
||
if (i >= MapWarpPoints) MapWarpPoints++;//<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ǰ<EFBFBD><C7B0><EFBFBD>͵<EFBFBD><CDB5>Ѿ<EFBFBD><D1BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ԥ<EFBFBD><D4A4><EFBFBD><EFBFBD>һ<EFBFBD><D2BB><EFBFBD><EFBFBD><EFBFBD>͵㡣
|
||
return i;
|
||
}
|
||
#endif
|