SBSPSS/source/platform/pdual.cpp

220 lines
4.1 KiB
C++
Raw Normal View History

2001-05-02 21:44:56 +02:00
/*=========================================================================
pdual.cpp
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __PLATFORM_PDUAL_H__
#include "platform\pdual.h"
#endif
#ifndef __UTILS_HEADER__
#include "utils\utils.h"
#endif
2001-05-09 17:00:18 +02:00
#ifndef __VID_HEADER_
#include "system\vid.h"
#endif
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
2001-05-02 21:44:56 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcDualPlatform::setMaster( u8 isMaster )
{
m_isMaster = isMaster;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcDualPlatform::setOtherPlatform( CNpcDualPlatform *other )
{
m_otherPlatform = other;
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcDualPlatform::setWaypoints( sThingPlatform *ThisPlatform )
{
2001-05-09 17:00:18 +02:00
ASSERT( ThisPlatform->PointCount >= 3 );
2001-05-02 21:44:56 +02:00
u16 *PntList=(u16*)MakePtr(ThisPlatform,sizeof(sThingPlatform));
u16 newXPos, newYPos;
// get master platform init pos
newXPos = (u16) *PntList;
PntList++;
newYPos = (u16) *PntList;
PntList++;
DVECTOR startPos;
startPos.vx = newXPos << 4;
startPos.vy = newYPos << 4;
init( startPos );
m_extension = 0;
// get master platform max vertical extension
newXPos = (u16) *PntList;
PntList++;
newYPos = (u16) *PntList;
PntList++;
m_maxExtension = ( newYPos << 4 ) - startPos.vy;
ASSERT( m_maxExtension >= 0 );
// get slave platform init x pos
newXPos = (u16) *PntList;
2001-05-09 17:00:18 +02:00
PntList++;
newYPos = (u16) *PntList;
PntList++;
2001-05-02 21:44:56 +02:00
DVECTOR slavePos;
slavePos.vx = newXPos << 4;
slavePos.vy = startPos.vy + m_maxExtension;
m_otherPlatform->init( slavePos );
2001-05-08 20:18:17 +02:00
m_otherPlatform->postInit();
2001-05-09 17:00:18 +02:00
if ( ThisPlatform->PointCount > 3 )
{
DVECTOR base;
base.vx = (u16) *PntList;
base.vx <<= 4;
PntList++;
base.vy = (u16) *PntList;
base.vy <<= 4;
PntList++;
m_otherPlatform->setLineBase( base );
base.vx = (u16) *PntList;
base.vx <<= 4;
PntList++;
base.vy = (u16) *PntList;
base.vy <<= 4;
PntList++;
setLineBase( base );
}
else
{
setLineBase( Pos );
m_otherPlatform->setLineBase( slavePos );
}
2001-05-02 21:44:56 +02:00
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2001-05-08 18:25:45 +02:00
u8 CNpcDualPlatform::canDrop()
{
if ( m_isMaster )
{
s32 extensionLeft = m_maxExtension - m_extension;
if ( extensionLeft == 0 )
{
return( false );
}
else
{
return( true );
}
}
else
{
return( false );
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
2001-05-02 21:44:56 +02:00
void CNpcDualPlatform::processMovement( int _frames )
{
if ( m_isMaster )
{
s32 extensionChange = 0;
s32 extensionLeft;
if ( m_contact )
{
extensionLeft = m_maxExtension - m_extension;
extensionChange = 3 * _frames;
if ( extensionChange > extensionLeft )
{
extensionChange = extensionLeft;
}
}
else
{
extensionLeft = m_extension;
extensionChange = -3 * _frames;
if ( -extensionChange > extensionLeft )
{
extensionChange = -extensionLeft;
}
}
m_extension += extensionChange;
Pos.vy = m_base.vy + m_extension;
DVECTOR slaveMove;
slaveMove.vx = 0;
slaveMove.vy = -extensionChange;
m_otherPlatform->setMovement( slaveMove );
2001-05-09 21:44:03 +02:00
m_otherPlatform->think(_frames);
2001-05-08 20:18:17 +02:00
m_otherPlatform->updateCollisionArea();
2001-05-02 21:44:56 +02:00
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcDualPlatform::setMovement( DVECTOR move )
{
Pos.vx += move.vx;
Pos.vy += move.vy;
}
2001-05-09 17:00:18 +02:00
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CNpcDualPlatform::render()
{
int x1,y1,x2,y2;
if ( m_isActive )
{
CPlatformThing::render();
2001-05-10 18:16:57 +02:00
if (canRender())
2001-05-09 17:00:18 +02:00
{
2001-05-10 18:16:57 +02:00
DVECTOR &renderPos=getRenderPos();
m_modelGfx->Render(renderPos);
2001-05-09 17:00:18 +02:00
}
}
}