SBSPSS/source/platform/pcart.cpp

98 lines
1.8 KiB
C++
Raw Normal View History

2001-04-23 20:58:30 +02:00
/*=========================================================================
pcart.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PCART_H__
#include "platform\pcart.h"
#endif
2001-04-23 22:40:13 +02:00
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
2001-04-23 20:58:30 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcCartPlatform::postInit()
{
2001-05-05 15:54:34 +02:00
CNpcPlatform::postInit();
2001-05-04 18:20:10 +02:00
m_npcPath.setPathType( CNpcPath::SINGLE_USE_PATH );
m_carSpeed = m_data[m_type].speed << 8;
2001-04-23 20:58:30 +02:00
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcCartPlatform::processMovement( int _frames )
{
2001-05-04 18:20:10 +02:00
s32 fallSpeed = 2;
2001-04-23 20:58:30 +02:00
s8 yMovement = fallSpeed * _frames;
s32 distX, distY, heading;
s32 groundHeight;
s32 moveX = 0;
s32 moveY = 0;
bool pathComplete;
m_npcPath.thinkFlat( Pos, &pathComplete, &distX, &distY, &heading );
2001-05-04 18:20:10 +02:00
if ( !pathComplete )
2001-04-23 20:58:30 +02:00
{
2001-05-04 18:20:10 +02:00
moveX = ( m_carSpeed >> 8 ) * _frames;
if ( heading == 2048 )
{
moveX = -moveX;
}
2001-04-23 20:58:30 +02:00
}
// check for vertical movement
2001-05-04 18:20:10 +02:00
s32 checkDist = yMovement + 50;
2001-04-23 20:58:30 +02:00
2001-05-04 18:20:10 +02:00
groundHeight = m_layerCollision->getHeightFromGround( Pos.vx + moveX, Pos.vy, checkDist );
if ( groundHeight < checkDist )
2001-04-23 20:58:30 +02:00
{
// groundHeight <= yMovement indicates either just above ground or on or below ground
moveY = groundHeight;
}
else
{
// fall
moveY = yMovement;
}
2001-05-04 18:20:10 +02:00
if ( moveY < 0 )
{
m_carSpeed -= 20;
if ( m_carSpeed < ( 2 << 8 ) )
{
m_carSpeed = ( 2 << 8 );
}
}
else if ( moveY > 0 )
{
m_carSpeed += 20;
if ( m_carSpeed > ( 6 << 8 ) )
{
m_carSpeed = ( 6 << 8 );
}
}
2001-04-23 20:58:30 +02:00
Pos.vx += moveX;
Pos.vy += moveY;
}