SBSPSS/source/hazard/hboat.cpp

182 lines
3.5 KiB
C++
Raw Normal View History

2001-04-24 17:12:46 +02:00
/*=========================================================================
hboat.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __HAZARD_HBOAT_H__
#include "hazard\hboat.h"
#endif
#ifndef __LAYER_COLLISION_H__
#include "level\layercollision.h"
#endif
2001-05-09 18:04:17 +02:00
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
#ifndef __VID_HEADER_
#include "system\vid.h"
#endif
2001-05-10 22:27:33 +02:00
#ifndef __PLAYER_PLAYER_H__
#include "player\player.h"
#endif
2001-04-24 17:12:46 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcBoatHazard::init()
{
CNpcHazard::init();
m_npcPath.setPathType( CNpcPath::PONG_PATH );
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcBoatHazard::processMovement( int _frames )
{
s32 maxHeight = 20;
s32 distX, distY;
s32 fallSpeed = 3;
s8 yMovement = fallSpeed * _frames;
s32 groundHeight;
s32 moveX = 0;
s32 moveY = 0;
// ignore y component of waypoint, since we are stuck to the ground
bool pathComplete;
if ( m_npcPath.thinkFlat( Pos, &pathComplete, &distX, &distY, &m_heading ) )
{
// path has finished, waypoint has changed, or there are no waypoints - do not move horizontally
// check for vertical movement
2001-05-25 20:43:47 +02:00
groundHeight = CGameScene::getCollision()->getHeightFromGround( Pos.vx, Pos.vy, yMovement + 16 );
2001-04-24 17:12:46 +02:00
if ( groundHeight <= yMovement )
{
// groundHeight <= yMovement indicates either just above ground or on or below ground
moveY = groundHeight;
}
else
{
// fall
moveY = yMovement;
}
}
else
{
// check for collision
distX = distX / abs( distX );
2001-05-09 18:04:17 +02:00
if ( distX > 0 )
{
m_reversed = false;
}
else
{
m_reversed = true;
}
2001-05-25 20:43:47 +02:00
if ( CGameScene::getCollision()->getHeightFromGround( Pos.vx + ( distX * 3 * _frames ), Pos.vy ) < -maxHeight )
2001-04-24 17:12:46 +02:00
{
// there is an obstacle in the way, increment the path point (hopefully this will resolve the problem)
m_npcPath.incPath();
}
else
{
// check for vertical movement
2001-05-25 20:43:47 +02:00
groundHeight = CGameScene::getCollision()->getHeightFromGround( Pos.vx, Pos.vy, yMovement + 16 );
2001-04-24 17:12:46 +02:00
if ( groundHeight <= yMovement )
{
// groundHeight <= yMovement indicates either just above ground or on or below ground
moveX = distX * 3 * _frames;
moveY = groundHeight;
}
else
{
// fall
moveY = yMovement;
}
}
}
Pos.vx += moveX;
Pos.vy += moveY;
2001-05-09 18:04:17 +02:00
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcBoatHazard::render()
{
if ( m_isActive )
{
CHazardThing::render();
2001-05-14 23:08:03 +02:00
if (canRender())
{
DVECTOR &renderPos=getRenderPos();
2001-05-09 18:04:17 +02:00
2001-05-14 23:08:03 +02:00
VECTOR flip;
2001-05-09 18:04:17 +02:00
2001-05-14 23:08:03 +02:00
if ( m_reversed )
{
flip.vx = ONE;
}
else
2001-05-09 18:04:17 +02:00
{
2001-05-14 23:08:03 +02:00
flip.vx = -ONE;
2001-05-09 18:04:17 +02:00
}
2001-05-14 23:08:03 +02:00
flip.vy = ONE;
flip.vz = ONE;
2001-07-31 22:29:25 +02:00
m_modelGfx->RenderNoClip( renderPos, NULL, &flip );
2001-05-09 18:04:17 +02:00
}
}
}
2001-05-10 21:27:57 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcBoatHazard::collidedWith( CThing *_thisThing )
{
if ( m_isActive )
{
switch(_thisThing->getThingType())
{
case TYPE_PLAYER:
{
CPlayer *player = (CPlayer *) _thisThing;
2001-07-11 21:45:38 +02:00
player->takeDamage( DAMAGE__HIT_ENEMY, REACT__GET_DIRECTION_FROM_THING, this );
2001-05-10 21:27:57 +02:00
break;
}
default:
break;
}
}
}