94 lines
2.6 KiB
C
94 lines
2.6 KiB
C
![]() |
#include "version.h"
|
|||
|
#include "char.h"
|
|||
|
#include "object.h"
|
|||
|
#include "npcutil.h"
|
|||
|
#include "readmap.h"
|
|||
|
|
|||
|
/*
|
|||
|
* <EFBFBD>Ӽ<EFBFBD><EFBFBD><EFBFBD><EFBFBD>PNPC<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*
|
|||
|
* NPC_SamplePreWalk
|
|||
|
* NPC_SamplePostWalk
|
|||
|
* NPC_SamplePreOver
|
|||
|
* NPC_SamplePostOver
|
|||
|
* NPC_SampleWatch
|
|||
|
* NPC_SampleLoop
|
|||
|
* NPC_SampleDying
|
|||
|
* NPC_SampleTalked
|
|||
|
* NPC_SamplePreAttacked
|
|||
|
* NPC_SamplePostAttacked
|
|||
|
* NPC_SampleOff
|
|||
|
* NPC_SampleLooked
|
|||
|
* NPC_SampleItemPut
|
|||
|
*/
|
|||
|
/*------------------------------------------------------------
|
|||
|
* NPC<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>
|
|||
|
------------------------------------------------------------*/
|
|||
|
void NPC_SampleLoop( int index )
|
|||
|
{
|
|||
|
int i,j;
|
|||
|
BOOL found=FALSE;
|
|||
|
int fl,x,y;
|
|||
|
BOOL nearby = FALSE;
|
|||
|
|
|||
|
fl = CHAR_getInt(index,CHAR_FLOOR);
|
|||
|
x = CHAR_getInt(index,CHAR_X);
|
|||
|
y = CHAR_getInt(index,CHAR_Y);
|
|||
|
|
|||
|
/*
|
|||
|
* <EFBFBD><EFBFBD>ئ<EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>շ¼<EFBFBD>ĸة<EFBFBD><EFBFBD><EFBFBD>ɡ<EFBFBD><EFBFBD><EFBFBD>
|
|||
|
*/
|
|||
|
for( i=x-2 ; i<=x+2 ; i ++ ){
|
|||
|
for( j=y-2 ; j<=y+2 ; j++ ){
|
|||
|
OBJECT object;
|
|||
|
for( object=MAP_getTopObj(fl,i,j) ; object ;
|
|||
|
object = NEXT_OBJECT(object) ){
|
|||
|
int objindex = GET_OBJINDEX(object);
|
|||
|
if( OBJECT_getType(objindex) == OBJTYPE_CHARA
|
|||
|
&& CHAR_getInt(OBJECT_getIndex(objindex),
|
|||
|
CHAR_WHICHTYPE) == CHAR_TYPEPLAYER ){
|
|||
|
|
|||
|
int dir;
|
|||
|
POINT start,end;
|
|||
|
end.x = CHAR_getInt(OBJECT_getIndex(objindex),CHAR_X);
|
|||
|
end.y = CHAR_getInt(OBJECT_getIndex(objindex),CHAR_Y);
|
|||
|
start.x = x;
|
|||
|
start.y = y;
|
|||
|
dir = NPC_Util_getDirFromTwoPoint( &start,&end );
|
|||
|
if( dir != -1 )
|
|||
|
CHAR_walk(index,dir,0);
|
|||
|
else
|
|||
|
print( "????????same coordinates\n" );
|
|||
|
found = TRUE;
|
|||
|
|
|||
|
if( ABS( x-OBJECT_getX(objindex) ) <= 1 &&
|
|||
|
ABS( y-OBJECT_getY(objindex) ) <= 1 ){
|
|||
|
nearby = TRUE;
|
|||
|
}
|
|||
|
|
|||
|
break;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
if( !found )
|
|||
|
CHAR_walk( index,RAND(0,7),0);
|
|||
|
|
|||
|
/* print( "e(%d,%d)[%d]" ,CHAR_getInt(index,CHAR_X),
|
|||
|
CHAR_getInt(index,CHAR_Y),found );*/
|
|||
|
|
|||
|
|
|||
|
if( found && nearby ){
|
|||
|
/* print( "found" );*/
|
|||
|
/*CHAR_Attack( index, CHAR_getInt(index,CHAR_DIR));*/
|
|||
|
}
|
|||
|
/* print("\n");*/
|
|||
|
|
|||
|
// print( "%d %d\n",CHAR_getInt( index,CHAR_X),
|
|||
|
// CHAR_getInt( index,CHAR_Y) );
|
|||
|
|
|||
|
}
|