chuyiwen_gmsv/map/map_warppoint.c

388 lines
11 KiB
C
Raw Normal View History

2016-12-24 08:45:52 +08:00
#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 ){
2017-01-13 23:37:03 +08:00
return -1;//原点
2016-12-24 08:45:52 +08:00
}
obj.floor = atoi( buf1);
if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ){
2017-01-13 23:37:03 +08:00
return -1;//原点
2016-12-24 08:45:52 +08:00
}
obj.x = atoi( buf1);
if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ){
2017-01-13 23:37:03 +08:00
return -1;//原点
2016-12-24 08:45:52 +08:00
}
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) ){
2017-01-13 23:37:03 +08:00
print(" 放置传送点从 %s 获得!!\n", buf);
2016-12-24 08:45:52 +08:00
return -1;
}
memset( buf1, 0, sizeof( buf1));
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ",", 1, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点
2016-12-24 08:45:52 +08:00
MapWarppoint[ps].ofloor = atoi( buf1);
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点
2016-12-24 08:45:52 +08:00
MapWarppoint[ps].ox = atoi( buf1);
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点
2016-12-24 08:45:52 +08:00
MapWarppoint[ps].oy = atoi( buf1);
return 1;
}
int MAPPOINT_setMapWarpGoal( int ps, char *buf)
{
char buf1[256];
if( MAPPOINT_CHECKINDEX( ps) ){
2017-01-13 23:37:03 +08:00
print(" 放置传送点获得 :%s!!\n", buf);
2016-12-24 08:45:52 +08:00
return -1;
}
memset( buf1, 0, sizeof( buf1));
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ",", 1, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点
2016-12-24 08:45:52 +08:00
MapWarppoint[ps].floor = atoi( buf1);
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ",", 2, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点
2016-12-24 08:45:52 +08:00
MapWarppoint[ps].x = atoi( buf1);
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ",", 3, buf1, sizeof(buf1)) ==FALSE ) return -1;//原点
2016-12-24 08:45:52 +08:00
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) ){
2017-01-13 23:37:03 +08:00
print("获取传送点PS:%d 错误!!\n", ps);
2016-12-24 08:45:52 +08:00
return -1;
}
if( MapWarppoint[ps].ofloor != ofl ||
MapWarppoint[ps].ox != ox || MapWarppoint[ps].oy != oy ){
2017-01-13 23:37:03 +08:00
print( "不正常传送点: 旧的有问题传送点 %d %d %d !!\n" , ofl,ox,oy );
2016-12-24 08:45:52 +08:00
int newmappointtime = time(NULL);
if(newmappointtime-resetmappointtime>=60){
MAPPOINT_resetMapWarpPoint( 1);
MAPPOINT_loadMapWarpPoint();
resetmappointtime = newmappointtime;
}
return -1;
}
2017-01-13 23:37:03 +08:00
//可加判断条件
2016-12-24 08:45:52 +08:00
if( MAP_IsValidCoordinate( MapWarppoint[ps].floor, MapWarppoint[ps].x, MapWarppoint[ps].y)== FALSE ){
2017-01-13 23:37:03 +08:00
print( "不正常传送点:有问题 %d %d %d !!\n" ,
2016-12-24 08:45:52 +08:00
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) ){
2017-01-13 23:37:03 +08:00
print(" 1.map 传送点错误 %s \n", buf);
2016-12-24 08:45:52 +08:00
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){
2017-01-13 23:37:03 +08:00
print(" 2-1.map 传送点错误 %s [%s] \n", buf, buf1);
2016-12-24 08:45:52 +08:00
continue;
}
if( MAPPOINT_creatMapWarpObj( ps, buf1, objtype) == -1 ){
2017-01-13 23:37:03 +08:00
print(" 2.map 传送点错误 %s [%s] \n", buf, buf1);
2016-12-24 08:45:52 +08:00
continue;
}
memset( buf1, 0, sizeof(buf1));
if( getStringFromIndexWithDelim( buf, ":", 4, buf1, sizeof(buf1)) ==FALSE ){
2017-01-13 23:37:03 +08:00
print(" 3.map 传送点错误 %s [%s] \n", buf, buf1);
2016-12-24 08:45:52 +08:00
continue;
}
if( MAPPOINT_setMapWarpGoal( ps, buf1) == -1 ){
2017-01-13 23:37:03 +08:00
print(" 4.map 传送点错误 %s \n", buf);
2016-12-24 08:45:52 +08:00
continue;
}
memset( buf1, 0, sizeof(buf1));
if( getStringFromIndexWithDelim( buf, ":", 5, buf1, sizeof(buf1)) ==FALSE ){
2017-01-13 23:37:03 +08:00
print(" 5.map 传送点错误 %s [%s] \n", buf, buf1);
2016-12-24 08:45:52 +08:00
continue;
}
MapWarppoint[ps].use = 1;
MapWarpPoints++;
ps++;
if( ps >= MAP_MAXWARPPOINT ){
break;
}
}
//andy_log
2017-01-13 23:37:03 +08:00
print("初始化 %d 地图传送点...", MapWarpPoints);
2016-12-24 08:45:52 +08:00
fclose( fp);
2017-01-13 23:37:03 +08:00
print("完成\n");
2016-12-24 08:45:52 +08:00
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
2017-01-13 23:37:03 +08:00
print( "获取传送点( %d, %d,%d,%d)错误!!\n", ps, ofl, ox, oy);
2016-12-24 08:45:52 +08:00
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
2017-01-13 23:37:03 +08:00
int DelMapPoint( int ps)//卸载地图传送点
2016-12-24 08:45:52 +08:00
{
if (MapWarppoint[ps].use != 1) return FALSE;
2017-01-13 23:37:03 +08:00
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;//设置地图的传送点类型
2016-12-24 08:45:52 +08:00
MapWarppoint[ps].use = 0;
MapWarppoint[ps].type = 0;
2017-01-13 23:37:03 +08:00
return TRUE;//注意设置传送点时先检查是否原来有传送点
2016-12-24 08:45:52 +08:00
}
2017-01-13 23:37:03 +08:00
int SetMapPoint( char* buf)//加载地图传送点
{ // "传送点类型:NULL:2000,50,50:2006,20,20:"
2016-12-24 08:45:52 +08:00
if( MapWarpPoints >= MAP_MAXWARPPOINT ){
2017-01-13 23:37:03 +08:00
print(" 传送点已达上限!\n");
2016-12-24 08:45:52 +08:00
return -1;
}
char buf1[256];
char buf2[256];
int objtype,i;
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ":", 1, buf1, sizeof(buf1)) ==FALSE )//找出传送点类型
2016-12-24 08:45:52 +08:00
{
return -2;
}
for( i=0; i<arraysizeof( PointType); i++) {
if( !strcmp( buf1, PointType[i]) )break;
}
2017-01-13 23:37:03 +08:00
if( i >= arraysizeof( PointType) ){//传送点类型错误
2016-12-24 08:45:52 +08:00
return -3 ;
}
2017-01-13 23:37:03 +08:00
MapWarppoint[MapWarpPoints].type = i;//设置地图的传送点类型
if( getStringFromIndexWithDelim( buf, ":", 2, buf1, sizeof(buf1)) ==FALSE ) //找出传送点有效时间
2016-12-24 08:45:52 +08:00
{
return -4 ;
}
2017-01-13 23:37:03 +08:00
objtype = CHAR_EVENT_WARP;//设置对象为传送点
2016-12-24 08:45:52 +08:00
if( !strcmp( buf1, "NULL")){
}else if( !strcmp( buf1, "M")){
2017-01-13 23:37:03 +08:00
objtype = CHAR_EVENT_WARP_MORNING;//设置对象为早晨传送点
2016-12-24 08:45:52 +08:00
}else if( !strcmp( buf1, "N")){
2017-01-13 23:37:03 +08:00
objtype = CHAR_EVENT_WARP_NIGHT;//设置对象为晚上传送点
2016-12-24 08:45:52 +08:00
}else if( !strcmp( buf1, "A")){
2017-01-13 23:37:03 +08:00
objtype = CHAR_EVENT_WARP_NOON;//设置对象为中午传送点
2016-12-24 08:45:52 +08:00
}
memset( buf1, 0, sizeof(buf1));
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ":", 3, buf1, sizeof(buf1)) ==FALSE )//找出原点
2016-12-24 08:45:52 +08:00
{
return -5 ;
}
int fl = -1,x = -1,y = -1;
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf1, ",", 1, buf2, sizeof(buf1)) !=FALSE )//找出原点
2016-12-24 08:45:52 +08:00
{
fl = atoi(buf2);
}
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf1, ",", 2, buf2, sizeof(buf1)) !=FALSE )//找出原点
2016-12-24 08:45:52 +08:00
{
x = atoi(buf2);
}
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf1, ",", 3, buf2, sizeof(buf1)) !=FALSE )//找出原点
2016-12-24 08:45:52 +08:00
{
y = atoi(buf2);
}
if (fl == -1 || x == -1 || y == -1) return -5;
2017-01-13 23:37:03 +08:00
if (get_mappointindex( fl,x, y) != -1) return -5;//设置过传送点!
for (i=0;i<MapWarpPoints;i++)//找出一个空闲的传送点
2016-12-24 08:45:52 +08:00
{
2017-01-13 23:37:03 +08:00
if (MapWarppoint[i].use != 1) break;//找到空闲传送点
2016-12-24 08:45:52 +08:00
}
2017-01-13 23:37:03 +08:00
if( MAPPOINT_setMapWarpFrom( i, buf1) == -1){//放置原点
2016-12-24 08:45:52 +08:00
return -6 ;
}
2017-01-13 23:37:03 +08:00
if( MAPPOINT_creatMapWarpObj( i, buf1, objtype) == -1 ){//放置原点对象
2016-12-24 08:45:52 +08:00
return -7 ;
}
memset( buf1, 0, sizeof(buf1));
2017-01-13 23:37:03 +08:00
if( getStringFromIndexWithDelim( buf, ":", 4, buf1, sizeof(buf1)) ==FALSE ){//找出传送点
2016-12-24 08:45:52 +08:00
return -8 ;
}
2017-01-13 23:37:03 +08:00
if( MAPPOINT_setMapWarpGoal( i, buf1) == -1 ){//设置传送点
2016-12-24 08:45:52 +08:00
return -9 ;
}
memset( buf1, 0, sizeof(buf1));
if( getStringFromIndexWithDelim( buf, ":", 5, buf1, sizeof(buf1)) ==FALSE ){
2017-01-13 23:37:03 +08:00
//print(" 缺少传送点类型 \n", buf, buf1);
2016-12-24 08:45:52 +08:00
return -10 ;
}
MapWarppoint[i].use = 1;
2017-01-13 23:37:03 +08:00
if (i >= MapWarpPoints) MapWarpPoints++;//如果当前传送点已经到达最后,预设下一个传送点。
2016-12-24 08:45:52 +08:00
return i;
}
#endif