614 lines
20 KiB
C
614 lines
20 KiB
C
![]() |
#include "version.h"
|
|||
|
#define __NPCCREATE__
|
|||
|
|
|||
|
#include <stdio.h>
|
|||
|
#include <string.h>
|
|||
|
|
|||
|
#include "common.h"
|
|||
|
#include "npccreate.h"
|
|||
|
#include "npctemplate.h"
|
|||
|
#include "util.h"
|
|||
|
#include "buf.h"
|
|||
|
#include "readmap.h"
|
|||
|
#include "char_data.h"
|
|||
|
#include "handletime.h"
|
|||
|
#include "configfile.h"
|
|||
|
|
|||
|
INLINE int NPC_CHECKCREATEINDEX(int index)
|
|||
|
{
|
|||
|
if( NPC_createnum <= index || index < 0 )return FALSE;
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
INLINE int NPC_CHECKCREATEINTINDEX( int index)
|
|||
|
{
|
|||
|
if( NPC_CREATEINTNUM <= index || index < 0 )return FALSE;
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
INLINE int NPC_setCreateInt( int index , NPC_CREATEINT element, int data )
|
|||
|
{
|
|||
|
int buf;
|
|||
|
buf = NPC_create[index].intdata[element];
|
|||
|
NPC_create[index].intdata[element] = data;
|
|||
|
return buf;
|
|||
|
}
|
|||
|
|
|||
|
INLINE int NPC_getCreateInt( int index , NPC_CREATEINT element )
|
|||
|
{
|
|||
|
return NPC_create[index].intdata[element];
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
BOOL NPC_initCreateArray( int createnum )
|
|||
|
{
|
|||
|
NPC_createnum = createnum;
|
|||
|
NPC_create = (NPC_Create*)allocateMemory( sizeof( NPC_Create ) * NPC_createnum );
|
|||
|
|
|||
|
print( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>С:%d. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:%d.\n", sizeof( NPC_Create ), createnum);
|
|||
|
if( NPC_create == NULL ){
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
NPC_create_readindex = 0;
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
void NPC_setDefaultNPCCreate( NPC_Create* cr )
|
|||
|
{
|
|||
|
if( cr == NULL )return;
|
|||
|
|
|||
|
cr->intdata[NPC_CREATEFLOORID]=0;
|
|||
|
cr->intdata[NPC_CREATEBORNLEFTUPX]=0;
|
|||
|
cr->intdata[NPC_CREATEBORNLEFTUPY]=0;
|
|||
|
cr->intdata[NPC_CREATEBORNRIGHTDOWNX]=0;
|
|||
|
cr->intdata[NPC_CREATEBORNRIGHTDOWNY]=0;
|
|||
|
cr->intdata[NPC_CREATEMOVELEFTUPX]=0;
|
|||
|
cr->intdata[NPC_CREATEMOVELEFTUPY]=0;
|
|||
|
cr->intdata[NPC_CREATEMOVERIGHTDOWNX]=0;
|
|||
|
cr->intdata[NPC_CREATEMOVERIGHTDOWNY]=0;
|
|||
|
|
|||
|
cr->intdata[NPC_CREATEDIR]=0;
|
|||
|
//jeffrey 1231
|
|||
|
#ifdef _ADD_ACTION
|
|||
|
cr->intdata[NPC_CREATEACTION] = 0;
|
|||
|
#endif
|
|||
|
cr->intdata[NPC_CREATEBASEIMAGENUMBER]=-1;
|
|||
|
cr->intdata[NPC_CREATETIME]=0;
|
|||
|
cr->intdata[NPC_CREATEBORNNUM]=0;
|
|||
|
cr->intdata[NPC_CREATEENEMYNUM]=0;
|
|||
|
cr->intdata[NPC_CREATEBOUNDARY]=1;
|
|||
|
cr->intdata[NPC_CREATEIGNOREINVINCIBLE]=0;
|
|||
|
|
|||
|
cr->intdata[NPC_CREATEDATE]=0;
|
|||
|
|
|||
|
cr->intdata[NPC_CREATEFAMILY]=0;
|
|||
|
|
|||
|
cr->chardata[NPC_CREATENAME].string[0]= '\0';
|
|||
|
|
|||
|
cr->workdata[NPC_CREATEWORKENEMYNUM]=0;
|
|||
|
cr->workdata[NPC_CREATEWORKMAKESTARTSEC]=0;
|
|||
|
cr->workdata[NPC_CREATEWORKMAKESTARTUSEC]=0;
|
|||
|
cr->workdata[NPC_CREATEWORKNEVERMAKE]=0;
|
|||
|
|
|||
|
|
|||
|
{
|
|||
|
int i;
|
|||
|
for( i=0 ; i<arraysizeof(cr->templateindex) ; i++ ){
|
|||
|
cr->templateindex[i] = -1;
|
|||
|
cr->arg[i].string[0] = '\0';
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
BOOL NPC_IsNPCCreateFile( char* filename )
|
|||
|
{
|
|||
|
FILE* f;
|
|||
|
char line1[128];
|
|||
|
char* ret;
|
|||
|
|
|||
|
/* ~ƥ<><C6A5><EFBFBD>°<EFBFBD><C2B0><EFBFBD><EFBFBD>̻ﷴئ<EFB7B4>Ʊ<EFBFBD><C6B1><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
if( filename == NULL
|
|||
|
|| strlen( filename ) < 1
|
|||
|
|| filename[strlen(filename)-1] == '~'
|
|||
|
|| filename[0] == '#'
|
|||
|
|| strcmptail( filename, ".bak" ) == 0 )return FALSE;
|
|||
|
|
|||
|
f= fopen( filename , "r" );
|
|||
|
if( f == NULL ) goto RETURNFALSE;
|
|||
|
|
|||
|
ret = fgets( line1, sizeof( line1 ), f );
|
|||
|
if( ret == NULL )goto FCLOSERETURNFALSE;
|
|||
|
|
|||
|
if( strcasecmp( NPC_CREATEFILEMAGIC, line1 ) == 0 ){
|
|||
|
fclose(f);
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
FCLOSERETURNFALSE:
|
|||
|
fclose(f);
|
|||
|
RETURNFALSE:
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
static int NPC_readCreateFile( char* filename )
|
|||
|
{
|
|||
|
FILE* f;
|
|||
|
char line[512];
|
|||
|
int linenum=0;
|
|||
|
int start=OFF;
|
|||
|
NPC_Create cr;
|
|||
|
int enemyreadindex=0;
|
|||
|
|
|||
|
typedef struct tagPOINT
|
|||
|
{
|
|||
|
int x,y;
|
|||
|
}POINT;
|
|||
|
typedef struct tagREC
|
|||
|
{
|
|||
|
int w,h;
|
|||
|
}REC;
|
|||
|
POINT center[2]={{0,0},{0,0}}; /* born <20><> 0 ƥ move <20><> 1 */
|
|||
|
REC wh[2] ={{0,0},{0,0}}; /* born <20><> 0 ƥ move <20><> 1 */
|
|||
|
|
|||
|
POINT lu[2] ={{0,0},{0,0}}; /* born <20><> 0 ƥ move <20><> 1 */
|
|||
|
POINT rd[2] ={{0,0},{0,0}}; /* born <20><> 0 ƥ move <20><> 1 */
|
|||
|
|
|||
|
int defborn=FALSE; /* born ëɬ<C3AB><C9AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><D7BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
int defmove=FALSE; /* move ëɬ<C3AB><C9AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><D7BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
int deflurd[2]={FALSE,FALSE}; /* lu,rd ƥɬ<C6A5><C9AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD><D7BE><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
char* ret;
|
|||
|
|
|||
|
|
|||
|
if( NPC_create_readindex >= NPC_createnum ){
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>\n" );
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀ<EFBFBD><EFBFBD> %d\n",NPC_createnum);
|
|||
|
print("û<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD> %s\n",filename);
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
NPC_setDefaultNPCCreate( &cr );
|
|||
|
|
|||
|
f= fopen( filename ,"r");
|
|||
|
if( f == NULL )return FALSE;
|
|||
|
|
|||
|
ret = fgets( line, sizeof( line ), f );
|
|||
|
if( ret == NULL )goto FCLOSERETURNFALSE;
|
|||
|
if( strcmp( NPC_CREATEFILEMAGIC, line ) != 0 ){
|
|||
|
print( "<EFBFBD>ⲻ<EFBFBD><EFBFBD>һ<EFBFBD><EFBFBD>create<EFBFBD>ļ<EFBFBD>.\n" );
|
|||
|
goto FCLOSERETURNFALSE;
|
|||
|
}
|
|||
|
linenum = 1;
|
|||
|
|
|||
|
while( fgets( line , sizeof( line ) , f ) ){
|
|||
|
|
|||
|
linenum++;
|
|||
|
|
|||
|
if( line[0] == '#' )continue; /* comment */
|
|||
|
if( line[0] == '\n' )continue; /* none */
|
|||
|
chomp( line );
|
|||
|
|
|||
|
switch( line[0] ){
|
|||
|
case '{':
|
|||
|
if( start == ON ){
|
|||
|
fprint( "Find {. But already START state. %s:%d\n",
|
|||
|
filename, linenum);
|
|||
|
fprint( "<EFBFBD>˳<EFBFBD>\n" );
|
|||
|
goto FCLOSERETURNFALSE;
|
|||
|
|
|||
|
}else{
|
|||
|
NPC_setDefaultNPCCreate( &cr );
|
|||
|
start = ON;
|
|||
|
}
|
|||
|
break;
|
|||
|
case '}':
|
|||
|
if( start == ON ){
|
|||
|
int err = FALSE;
|
|||
|
if( enemyreadindex == 0 ){
|
|||
|
err = TRUE;
|
|||
|
print( "<EFBFBD>ⲻ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s:%d\n",
|
|||
|
filename,linenum);
|
|||
|
}else if( MAP_IsThereSpecificFloorid(
|
|||
|
cr.intdata[NPC_CREATEFLOORID]) == FALSE ){
|
|||
|
err = TRUE;
|
|||
|
print( "<EFBFBD><EFBFBD>ͼID<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ë<EFBFBD><EFBFBD> %s:%d-floor:%d\n",
|
|||
|
filename,linenum, cr.intdata[NPC_CREATEFLOORID]);
|
|||
|
}else if( defborn == FALSE ){
|
|||
|
err = TRUE;
|
|||
|
print( "<EFBFBD><EFBFBD>Щ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> born <20><>װ %s:%d\n",
|
|||
|
filename,linenum);
|
|||
|
}
|
|||
|
|
|||
|
if( err == FALSE ){
|
|||
|
cr.intdata[NPC_CREATEENEMYNUM] = enemyreadindex;
|
|||
|
|
|||
|
if( deflurd[0] ){
|
|||
|
cr.intdata[NPC_CREATEBORNLEFTUPX] =
|
|||
|
min(lu[0].x,rd[0].x);
|
|||
|
cr.intdata[NPC_CREATEBORNRIGHTDOWNX] =
|
|||
|
max(lu[0].x,rd[0].x);
|
|||
|
cr.intdata[NPC_CREATEBORNLEFTUPY] =
|
|||
|
min(lu[0].y,rd[0].y);
|
|||
|
cr.intdata[NPC_CREATEBORNRIGHTDOWNY] =
|
|||
|
max(lu[0].y,rd[0].y);
|
|||
|
}else{
|
|||
|
cr.intdata[NPC_CREATEBORNLEFTUPX] =
|
|||
|
center[0].x-wh[0].w/2;
|
|||
|
cr.intdata[NPC_CREATEBORNRIGHTDOWNX] =
|
|||
|
center[0].x+wh[0].w/2;
|
|||
|
cr.intdata[NPC_CREATEBORNLEFTUPY] =
|
|||
|
center[0].y-wh[0].h/2;
|
|||
|
cr.intdata[NPC_CREATEBORNRIGHTDOWNY] =
|
|||
|
center[0].y+wh[0].h/2;
|
|||
|
}
|
|||
|
if( defmove ){
|
|||
|
if( deflurd[0] ){
|
|||
|
cr.intdata[NPC_CREATEMOVELEFTUPX] =
|
|||
|
min(lu[1].x,rd[1].x);
|
|||
|
cr.intdata[NPC_CREATEMOVERIGHTDOWNX] =
|
|||
|
max(lu[1].x,rd[1].x);
|
|||
|
cr.intdata[NPC_CREATEMOVELEFTUPY] =
|
|||
|
min(lu[1].y,rd[1].y);
|
|||
|
cr.intdata[NPC_CREATEMOVERIGHTDOWNY] =
|
|||
|
max(lu[1].y,rd[1].y);
|
|||
|
}else{
|
|||
|
cr.intdata[NPC_CREATEMOVELEFTUPX] =
|
|||
|
center[1].x-wh[1].w/2;
|
|||
|
cr.intdata[NPC_CREATEMOVERIGHTDOWNX] =
|
|||
|
center[1].x+wh[1].w/2;
|
|||
|
cr.intdata[NPC_CREATEMOVELEFTUPY] =
|
|||
|
center[1].y-wh[1].h/2;
|
|||
|
cr.intdata[NPC_CREATEMOVERIGHTDOWNY] =
|
|||
|
center[1].y+wh[1].h/2;
|
|||
|
}
|
|||
|
|
|||
|
}else{
|
|||
|
/* born ë<><C3AB><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
cr.intdata[NPC_CREATEMOVELEFTUPX] =
|
|||
|
cr.intdata[NPC_CREATEBORNLEFTUPX];
|
|||
|
cr.intdata[NPC_CREATEMOVERIGHTDOWNX] =
|
|||
|
cr.intdata[NPC_CREATEBORNRIGHTDOWNX];
|
|||
|
cr.intdata[NPC_CREATEMOVELEFTUPY] =
|
|||
|
cr.intdata[NPC_CREATEBORNLEFTUPY];
|
|||
|
cr.intdata[NPC_CREATEMOVERIGHTDOWNY] =
|
|||
|
cr.intdata[NPC_CREATEBORNRIGHTDOWNY];
|
|||
|
}
|
|||
|
|
|||
|
memcpy( &NPC_create[NPC_create_readindex], &cr,
|
|||
|
sizeof( NPC_Create ) );
|
|||
|
|
|||
|
|
|||
|
NPC_create_readindex++;
|
|||
|
|
|||
|
if( NPC_create_readindex >= NPC_createnum ){
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>û<EFBFBD><EFBFBD><EFBFBD>\n" );
|
|||
|
print("<EFBFBD><EFBFBD><EFBFBD>ô<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD>Ŀ %d\n",
|
|||
|
NPC_createnum);
|
|||
|
print("û<EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>:%s\n",filename);
|
|||
|
goto FCLOSERETURNFALSE;
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
NPC_setDefaultNPCCreate( &cr );
|
|||
|
enemyreadindex=0;
|
|||
|
defborn=FALSE;
|
|||
|
defmove=FALSE;
|
|||
|
deflurd[0]=FALSE;
|
|||
|
deflurd[1]=FALSE;
|
|||
|
|
|||
|
start = OFF;
|
|||
|
}else{
|
|||
|
fprint( "δ<EFBFBD><EFBFBD><EFBFBD><EFBFBD> '}' at %s:%d\n",filename,linenum);
|
|||
|
goto FCLOSERETURNFALSE;
|
|||
|
}
|
|||
|
break;
|
|||
|
default:
|
|||
|
{
|
|||
|
|
|||
|
char firstToken[256];
|
|||
|
char secondToken[256];
|
|||
|
int ret;
|
|||
|
ret = getStringFromIndexWithDelim( line, "=", 1, firstToken,
|
|||
|
sizeof( firstToken ) );
|
|||
|
if( ret == FALSE ){
|
|||
|
print( "Find error at %s in line %d. Ignore\n",
|
|||
|
filename , linenum);
|
|||
|
break;
|
|||
|
}
|
|||
|
ret = getStringFromIndexWithDelim( line, "=", 2, secondToken,
|
|||
|
sizeof( secondToken ) );
|
|||
|
if( ret == FALSE ){
|
|||
|
print( "Find error at %s in line %d. Ignore\n",
|
|||
|
filename , linenum);
|
|||
|
break;
|
|||
|
}
|
|||
|
|
|||
|
if( strcasecmp("floorid",firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEFLOORID] = atoi(secondToken);
|
|||
|
|
|||
|
}else if( strcasecmp("borncenter", firstToken) == 0 ){
|
|||
|
getFourIntsFromString(secondToken,¢er[0].x,
|
|||
|
¢er[0].y,&wh[0].w,&wh[0].h );
|
|||
|
defborn = TRUE;
|
|||
|
}else if( strcasecmp("borncorner", firstToken) == 0 ){
|
|||
|
getFourIntsFromString(secondToken,&lu[0].x,&lu[0].y,
|
|||
|
&rd[0].x,&rd[0].y );
|
|||
|
defborn = TRUE;
|
|||
|
deflurd[0]=TRUE;
|
|||
|
|
|||
|
}else if( strcasecmp("movecenter", firstToken) == 0 ){
|
|||
|
getFourIntsFromString(secondToken,¢er[1].x,
|
|||
|
¢er[1].y,&wh[1].w,&wh[1].h );
|
|||
|
defmove = TRUE;
|
|||
|
}else if( strcasecmp("movecorner", firstToken) == 0 ){
|
|||
|
getFourIntsFromString(secondToken,&lu[1].x,&lu[1].y,
|
|||
|
&rd[1].x,&rd[1].y );
|
|||
|
defmove = TRUE;
|
|||
|
deflurd[1]=TRUE;
|
|||
|
|
|||
|
}else if( strcasecmp("dir",firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEDIR] = atoi( secondToken );
|
|||
|
|
|||
|
}else if( strcasecmp("graphicname",firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEBASEIMAGENUMBER]
|
|||
|
= CHAR_seekGraphicNumberFromString(secondToken);
|
|||
|
|
|||
|
}else if( strcasecmp("name",firstToken) == 0 ){
|
|||
|
strcpysafe( cr.chardata[NPC_CREATENAME].string,
|
|||
|
sizeof(cr.chardata[NPC_CREATENAME].string),
|
|||
|
secondToken );
|
|||
|
|
|||
|
}else if( strcasecmp("time",firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATETIME] = atoi( secondToken );
|
|||
|
|
|||
|
}else if( strcasecmp("date",firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEDATE] = atoi( secondToken );
|
|||
|
|
|||
|
}else if( strcasecmp("createnum",firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEBORNNUM] = atoi( secondToken );
|
|||
|
|
|||
|
}else if( strcasecmp( "boundary", firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEBOUNDARY] = atoi( secondToken );
|
|||
|
|
|||
|
}else if( strcasecmp( "ignoreinvincible", firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEIGNOREINVINCIBLE] = atoi( secondToken );
|
|||
|
|
|||
|
//jeffrey 1231
|
|||
|
#ifdef _ADD_ACTION
|
|||
|
}else if( strcasecmp( "action", firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEACTION] = atoi( secondToken );
|
|||
|
#endif
|
|||
|
// Robin 0731
|
|||
|
}else if( strcasecmp( "family", firstToken) == 0 ){
|
|||
|
cr.intdata[NPC_CREATEFAMILY] = atoi( secondToken );
|
|||
|
|
|||
|
}else if( strcasecmp("enemy", firstToken) == 0 ){
|
|||
|
int templateindex;
|
|||
|
char enemyname[64];
|
|||
|
|
|||
|
/* <20><><EFBFBD><EFBFBD>˲<EFBFBD><CBB2><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> */
|
|||
|
if( enemyreadindex <= arraysizeof(cr.templateindex) )
|
|||
|
/* OK */
|
|||
|
;
|
|||
|
else
|
|||
|
break;
|
|||
|
|
|||
|
getStringFromIndexWithDelim(secondToken,"|",1,enemyname,
|
|||
|
sizeof(enemyname) );
|
|||
|
templateindex= NPC_templateGetTemplateIndex(enemyname);
|
|||
|
if( templateindex != -1 ){
|
|||
|
cr.templateindex[enemyreadindex] = templateindex;
|
|||
|
{
|
|||
|
char tmp[2];
|
|||
|
int ret;
|
|||
|
ret = getStringFromIndexWithDelim( secondToken,
|
|||
|
"|",2,tmp,
|
|||
|
sizeof(tmp) );
|
|||
|
if( ret == FALSE )
|
|||
|
cr.arg[enemyreadindex].string[0] = '\0';
|
|||
|
else
|
|||
|
strcpysafe( cr.arg[enemyreadindex].string,
|
|||
|
sizeof( cr.arg[enemyreadindex].
|
|||
|
string ),
|
|||
|
secondToken+strlen(enemyname)+1 );
|
|||
|
}
|
|||
|
enemyreadindex++;
|
|||
|
}else
|
|||
|
fprint( "û<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ģ<EFBFBD><EFBFBD>:\n[%s(%d)%s] enemy:%s\n",
|
|||
|
filename ,linenum,secondToken, enemyname);
|
|||
|
}else{
|
|||
|
fprint( "û<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ֵ<EFBFBD>½ %s %s:%d\n",firstToken,filename,
|
|||
|
linenum );
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
fclose(f);
|
|||
|
return TRUE;
|
|||
|
|
|||
|
FCLOSERETURNFALSE:
|
|||
|
fclose(f);
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
|
|||
|
BOOL NPC_readNPCCreateFiles( char* topdirectory ,int createsize)
|
|||
|
{
|
|||
|
STRING64 *filenames;
|
|||
|
int filenum;
|
|||
|
int i;
|
|||
|
filenames = (STRING64 *)allocateMemory( sizeof( STRING64 ) *
|
|||
|
(int)getFilesearchnum( ) );
|
|||
|
if( filenames == NULL ){
|
|||
|
print( "<EFBFBD><EFBFBD>ȡNPC<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>... <20>ڴ<EFBFBD><DAB4><EFBFBD><EFBFBD><EFBFBD>\n" );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
filenum = rgetFileName( topdirectory ,filenames ,getFilesearchnum( ) );
|
|||
|
if( filenum == -1 ){
|
|||
|
freeMemory( filenames );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
if( filenum >= getFilesearchnum( ) ){
|
|||
|
print( "<EFBFBD>ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>Ŀʧ<EFBFBD><EFBFBD> %d\n", getFilesearchnum( ) );
|
|||
|
while( 1 );
|
|||
|
}
|
|||
|
if( !NPC_initCreateArray( createsize ) ){
|
|||
|
fprint( "<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>\n" );
|
|||
|
freeMemory( filenames );
|
|||
|
return FALSE;
|
|||
|
}
|
|||
|
print( "<EFBFBD><EFBFBD>ȡNPC<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ļ<EFBFBD>..." );
|
|||
|
for( i = 0 ; i < filenum ; i ++ )
|
|||
|
if( NPC_IsNPCCreateFile( filenames[i].string ))
|
|||
|
if( NPC_readCreateFile( filenames[i].string ) == -1 )
|
|||
|
break;
|
|||
|
print( "<EFBFBD><EFBFBD>ȷ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>NPC %d ..." , NPC_create_readindex );
|
|||
|
NPC_createnum=NPC_create_readindex;
|
|||
|
#ifdef DEBUG
|
|||
|
/* 99/4/8 By Kawata csv<73><76>ֿ<EFBFBD><D6BF><EFBFBD>ƻ<EFBFBD>֧<EFBFBD><D6A7> */
|
|||
|
print( "Npc_Create's\n");
|
|||
|
for( i = 0 ; i < NPC_createnum ; i ++ ){
|
|||
|
int j;
|
|||
|
/*print( "NPC_create[%d]:\n", i);*/
|
|||
|
print( "%d,", i);
|
|||
|
for( j = 0 ; j < NPC_CREATECHARNUM ; j ++ )
|
|||
|
print("%s," , NPC_create[i].chardata[j].string );
|
|||
|
/*print( "\tIntdata\t" );*/
|
|||
|
for( j = 0 ; j < NPC_CREATEINTNUM ; j ++ )
|
|||
|
print("%d," , NPC_create[i].intdata[j] );
|
|||
|
/***print("\n" );
|
|||
|
print( "\tChardata\t" );***/
|
|||
|
for( j = 0 ; j < NPC_create[i].intdata[NPC_CREATEENEMYNUM]; j ++ )
|
|||
|
print("%d" , NPC_create[i].templateindex[j] );
|
|||
|
/*print("\n" );*/
|
|||
|
print("\n" );
|
|||
|
}
|
|||
|
#endif /*DEBUG*/
|
|||
|
|
|||
|
freeMemory( filenames );
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/*------------------------------------------------------------
|
|||
|
* createindex <EFBFBD><EFBFBD><EFBFBD><EFBFBD> boundary <EFBFBD><EFBFBD>ɬ<EFBFBD>ý<EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>¾<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëέ<EFBFBD><EFBFBD>
|
|||
|
* ¦<EFBFBD><EFBFBD>
|
|||
|
* createindex int create<EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
* ߯Ի<EFBFBD><EFBFBD>
|
|||
|
* ɬ<EFBFBD>ý<EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> TRUE(1)
|
|||
|
* ɬ<EFBFBD>ý<EFBFBD>ľ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><EFBFBD> FALSE(0)
|
|||
|
------------------------------------------------------------*/
|
|||
|
BOOL NPC_isBoundarySet( int createindex )
|
|||
|
{
|
|||
|
if( NPC_CHECKCREATEINDEX(createindex) == FALSE )return FALSE;
|
|||
|
return NPC_create[createindex].intdata[NPC_CREATEBOUNDARY];
|
|||
|
}
|
|||
|
/*------------------------------------------------------------
|
|||
|
* ¦<EFBFBD><EFBFBD>
|
|||
|
* r RECT* <EFBFBD><EFBFBD>ë<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>RECT <EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD>
|
|||
|
* ߯Ի<EFBFBD><EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
BOOL NPC_createGetRECT( int createindex,RECT* r )
|
|||
|
{
|
|||
|
if( NPC_CHECKCREATEINDEX(createindex) == FALSE )return FALSE;
|
|||
|
|
|||
|
r->x = NPC_create[createindex].intdata[NPC_CREATEMOVELEFTUPX];
|
|||
|
r->y = NPC_create[createindex].intdata[NPC_CREATEMOVELEFTUPY];
|
|||
|
r->width
|
|||
|
= NPC_create[createindex].intdata[NPC_CREATEMOVERIGHTDOWNX]
|
|||
|
- NPC_create[createindex].intdata[NPC_CREATEMOVELEFTUPX];
|
|||
|
r->height
|
|||
|
= NPC_create[createindex].intdata[NPC_CREATEMOVERIGHTDOWNY]
|
|||
|
- NPC_create[createindex].intdata[NPC_CREATEMOVELEFTUPY];
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/*------------------------------------------------------------
|
|||
|
* ¦<EFBFBD><EFBFBD>
|
|||
|
* cindex int <EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
* ߯Ի<EFBFBD><EFBFBD>
|
|||
|
* BOOL <EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> TRUE(1)
|
|||
|
* BOOL <EFBFBD><EFBFBD><EFBFBD>Ȼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ئ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> FALSE(0)
|
|||
|
------------------------------------------------------------*/
|
|||
|
BOOL NPC_createCheckGenerateFromTime( int cindex )
|
|||
|
{
|
|||
|
struct timeval old;
|
|||
|
if( !NPC_CHECKCREATEINDEX(cindex) )
|
|||
|
return FALSE;
|
|||
|
|
|||
|
if( NPC_create[cindex].workdata[NPC_CREATEWORKNEVERMAKE] )
|
|||
|
return FALSE;
|
|||
|
|
|||
|
if( NPC_create[cindex].intdata[NPC_CREATEBORNNUM]
|
|||
|
<= NPC_create[cindex].workdata[NPC_CREATEWORKENEMYNUM] )
|
|||
|
return FALSE;
|
|||
|
|
|||
|
if( NPC_create[cindex].intdata[NPC_CREATETIME] < 0 )return FALSE;
|
|||
|
old.tv_sec = NPC_create[cindex].workdata[NPC_CREATEWORKMAKESTARTSEC];
|
|||
|
old.tv_usec= NPC_create[cindex].workdata[NPC_CREATEWORKMAKESTARTUSEC];
|
|||
|
|
|||
|
if( time_diff_us( NowTime , old ) <=
|
|||
|
NPC_create[cindex].intdata[NPC_CREATETIME]*1000 )
|
|||
|
return FALSE;
|
|||
|
|
|||
|
return TRUE;
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
/*------------------------------------------------------------
|
|||
|
* ¦<EFBFBD><EFBFBD>
|
|||
|
* tindex int <EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
* ߯Ի<EFBFBD><EFBFBD>
|
|||
|
* ئ<EFBFBD><EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
void NPC_createInitTime( int index )
|
|||
|
{
|
|||
|
/* <20><><EFBFBD><EFBFBD><EFBFBD>DZ<EFBFBD>ئ<EFBFBD><D8A6><EFBFBD><EFBFBD><D7BE>հ<EFBFBD>ëɬ<C3AB><C9AC> */
|
|||
|
NPC_create[index].workdata[NPC_CREATEWORKMAKESTARTSEC] =
|
|||
|
NowTime.tv_sec;
|
|||
|
NPC_create[index].workdata[NPC_CREATEWORKMAKESTARTUSEC] =
|
|||
|
NowTime.tv_usec;
|
|||
|
}
|
|||
|
/*------------------------------------------------------------
|
|||
|
* ¦<EFBFBD><EFBFBD>
|
|||
|
* index int <EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
* ߯Ի<EFBFBD><EFBFBD>
|
|||
|
* ئ<EFBFBD><EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
void NPC_createIncreaseEnemynum( int index )
|
|||
|
{
|
|||
|
if( !NPC_CHECKCREATEINDEX(index) )return;
|
|||
|
NPC_create[index].workdata[NPC_CREATEWORKENEMYNUM] ++;
|
|||
|
}
|
|||
|
/*------------------------------------------------------------
|
|||
|
* <EFBFBD>Ļ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ƥ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ëӼ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
* ¦<EFBFBD><EFBFBD>
|
|||
|
* index int <EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
* ߯Ի<EFBFBD><EFBFBD>
|
|||
|
* ئ<EFBFBD><EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
void NPC_createDecreaseEnemynum( int index )
|
|||
|
{
|
|||
|
if( !NPC_CHECKCREATEINDEX(index) )return;
|
|||
|
NPC_create[index].workdata[NPC_CREATEWORKENEMYNUM] --;
|
|||
|
}
|
|||
|
/*------------------------------------------------------------
|
|||
|
* ¦<EFBFBD><EFBFBD>
|
|||
|
* index int <EFBFBD>̼<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>͵<EFBFBD>
|
|||
|
* ߯Ի<EFBFBD><EFBFBD>
|
|||
|
* TRUE:MAX FALSE:ਵ<EFBFBD>
|
|||
|
------------------------------------------------------------*/
|
|||
|
BOOL NPC_createCheckMaxEnemynum( int index )
|
|||
|
{
|
|||
|
|
|||
|
if( NPC_create[index].intdata[NPC_CREATEBORNNUM]
|
|||
|
<= NPC_create[index].workdata[NPC_CREATEWORKENEMYNUM] )
|
|||
|
return TRUE;
|
|||
|
else
|
|||
|
return FALSE;
|
|||
|
}
|