SBSPSS/source/enemy/npbug.cpp

156 lines
2.9 KiB
C++
Raw Normal View History

2001-04-26 17:13:31 +02:00
/*=========================================================================
npbug.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __ENEMY_NPBUG_H__
#include "enemy\npbug.h"
#endif
#ifndef __LAYER_COLLISION_H__
#include "level\layercollision.h"
#endif
2001-05-29 17:56:44 +02:00
#ifndef __VID_HEADER_
#include "system\vid.h"
#endif
2001-05-25 20:43:47 +02:00
#include "game/game.h"
2001-05-29 17:56:44 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2001-04-26 17:13:31 +02:00
void CNpcPricklyBugEnemy::processMovementModifier( int _frames, s32 distX, s32 distY, s32 dist, s16 headingChange )
{
Pos.vx += distX;
Pos.vy += distY;
// sort out draw rotation
DVECTOR testPos1, testPos2;
testPos1 = testPos2 = Pos;
testPos1.vx -= 10;
testPos2.vx += 10;
2001-05-25 20:43:47 +02:00
testPos1.vy += CGameScene::getCollision()->getHeightFromGround( testPos1.vx, testPos1.vy, 16 );
testPos2.vy += CGameScene::getCollision()->getHeightFromGround( testPos2.vx, testPos2.vy, 16 );
2001-04-26 17:13:31 +02:00
s32 xDist = testPos2.vx - testPos1.vx;
s32 yDist = testPos2.vy - testPos1.vy;
s16 heading = ratan2( yDist, xDist );
m_drawRotation = heading;
2001-05-21 23:16:42 +02:00
// sound
CSoundMediator::playSfx( CSoundMediator::SFX_PRICKLY_BUG_MOVE );
2001-04-26 17:13:31 +02:00
}
2001-05-29 17:56:44 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcPricklyBugEnemy::processShot( int _frames )
{
switch ( m_state )
{
case NPC_GENERIC_HIT_CHECK_HEALTH:
{
2001-05-30 00:07:28 +02:00
m_health -= 5;
if ( m_health < 0 )
2001-05-29 17:56:44 +02:00
{
m_state = NPC_GENERIC_HIT_DEATH_START;
2001-05-30 00:07:28 +02:00
m_animPlaying = true;
m_animNo = m_data[m_type].dieAnim;
m_frame = 0;
2001-05-29 17:56:44 +02:00
}
else
{
2001-05-30 00:07:28 +02:00
m_state = NPC_GENERIC_HIT_RECOIL;
m_animPlaying = true;
m_animNo = m_data[m_type].recoilAnim;
m_frame = 0;
2001-05-29 17:56:44 +02:00
}
break;
}
case NPC_GENERIC_HIT_RECOIL:
{
if ( !m_animPlaying )
{
m_state = 0;
m_controlFunc = NPC_CONTROL_MOVEMENT;
}
break;
}
case NPC_GENERIC_HIT_DEATH_START:
{
if ( !m_animPlaying )
{
m_state = NPC_GENERIC_HIT_DEATH_END;
if ( m_data[m_type].deathSfx < CSoundMediator::NUM_SFXIDS )
{
CSoundMediator::playSfx( m_data[m_type].deathSfx );
}
m_isDying = true;
m_speed = -5;
if (m_data[m_type].skelType)
{
m_actorGfx->SetOtPos( 0 );
}
}
break;
}
case NPC_GENERIC_HIT_DEATH_END:
{
m_drawRotation += 64 * _frames;
m_drawRotation &= 4095;
Pos.vy += m_speed * _frames;
if ( m_speed < 5 )
{
m_speed++;
}
DVECTOR offset = CLevel::getCameraPos();
if ( Pos.vy - offset.vy > VidGetScrH() )
{
if ( m_data[m_type].respawning )
{
m_isActive = false;
m_timerFunc = NPC_TIMER_RESPAWN;
m_timerTimer = 4 * GameState::getOneSecondInFrames();
}
else
{
setToShutdown();
}
}
break;
}
}
}