mirror of
https://github.com/DrBeef/Raze.git
synced 2025-02-21 19:21:44 +00:00
- removed DebugMoveHit.
This commit is contained in:
parent
0de816d308
commit
6db11ff2d5
2 changed files with 1 additions and 36 deletions
|
@ -74,40 +74,6 @@ int Distance(int x1, int y1, int x2, int y2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
void DebugMoveHit(DSWActor* actor)
|
|
||||||
{
|
|
||||||
//if (u->ret == -1)
|
|
||||||
// printf("Hit a ledge\n");
|
|
||||||
//else
|
|
||||||
/*
|
|
||||||
SPRITEp sp;
|
|
||||||
USERp u = actor->u();
|
|
||||||
switch (TEST(u->ret, HIT_MASK))
|
|
||||||
{
|
|
||||||
case HIT_SPRITE:
|
|
||||||
sp = &sprite[NORM_SPRITE(u->ret)];
|
|
||||||
//DSPRINTF(ds, "Hit a Sprite %d, stat %d ", sp-sprite, (short)sp->statnum);
|
|
||||||
if (sp->statnum == STAT_MISSILE)
|
|
||||||
{
|
|
||||||
//DSPRINTF(ds, "Monster hit bullet %d, stat %d ", sp-sprite, (short)sp->statnum);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
//DSPRINTF(ds, "Hit a Sprite %d, stat %d ", sp-sprite, (short)sp->statnum);
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
case HIT_WALL:
|
|
||||||
//DSPRINTF(ds, "Hit a Wall %d ", NORM_WALL(u->ret));
|
|
||||||
break;
|
|
||||||
case HIT_SECTOR:
|
|
||||||
//DSPRINTF(ds, "Hit a Sector %d ", NORM_SECTOR(u->ret));
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
MONO_PRINT(ds);
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
bool ActorMoveHitReact(DSWActor* actor)
|
bool ActorMoveHitReact(DSWActor* actor)
|
||||||
{
|
{
|
||||||
|
@ -1022,7 +988,7 @@ int DoActorMoveCloser(DSWActor* actor)
|
||||||
// if cannot move the sprite
|
// if cannot move the sprite
|
||||||
if (!move_actor(actor, nx, ny, 0L))
|
if (!move_actor(actor, nx, ny, 0L))
|
||||||
{
|
{
|
||||||
DebugMoveHit(actor);
|
//DebugMoveHit(actor);
|
||||||
|
|
||||||
if (ActorMoveHitReact(actor))
|
if (ActorMoveHitReact(actor))
|
||||||
return 0;
|
return 0;
|
||||||
|
|
|
@ -70,7 +70,6 @@ struct ATTRIBUTEstruct
|
||||||
extern ATTRIBUTE DefaultAttrib;
|
extern ATTRIBUTE DefaultAttrib;
|
||||||
|
|
||||||
// AI.C functions
|
// AI.C functions
|
||||||
void DebugMoveHit(DSWActor* actor);
|
|
||||||
bool ActorMoveHitReact(DSWActor* actor);
|
bool ActorMoveHitReact(DSWActor* actor);
|
||||||
short ChooseActionNumber(short decision[]);
|
short ChooseActionNumber(short decision[]);
|
||||||
bool CanSeePlayer(DSWActor* actor);
|
bool CanSeePlayer(DSWActor* actor);
|
||||||
|
|
Loading…
Reference in a new issue