This commit is contained in:
Charles 2001-06-21 20:10:19 +00:00
parent 3f2ebeb556
commit af42f43345
7 changed files with 226 additions and 4 deletions

View file

@ -64,11 +64,15 @@ protected:
virtual void processShot( int _frames );
virtual void processEnemyCollision( CThing *thisThing );
virtual void processUserCollision( CThing *thisThing );
u8 isSnakeStopped();
void moveEntireSnake( DVECTOR newPos );
enum
{
NPC_SEA_SNAKE_SPACING = 6,
NPC_SEA_SNAKE_LENGTH = 10,
NPC_SEA_SNAKE_CIRCLE_CLOCKWISE = 1,
NPC_SEA_SNAKE_CIRCLE_ANTICLOCKWISE = 2,
};
// position history stuff
@ -90,6 +94,9 @@ protected:
s32 m_snapTimer;
//s32 m_openTimer;
bool m_meterOn;
u8 m_turnDir;
s16 m_circleHeading;
s16 m_origHeading;
};
#endif