This commit is contained in:
parent
5192c4b988
commit
a17755d81c
4 changed files with 326 additions and 0 deletions
104
source/hazard/hcswitch.cpp
Normal file
104
source/hazard/hcswitch.cpp
Normal file
|
@ -0,0 +1,104 @@
|
|||
/*=========================================================================
|
||||
|
||||
hcswitch.cpp
|
||||
|
||||
Author: CRB
|
||||
Created:
|
||||
Project: Spongebob
|
||||
Purpose:
|
||||
|
||||
Copyright (c) 2001 Climax Development Ltd
|
||||
|
||||
===========================================================================*/
|
||||
|
||||
#ifndef __HAZARD_HCSWITCH_H__
|
||||
#include "hazard\hcswitch.h"
|
||||
#endif
|
||||
|
||||
#ifndef __TRIGGERS_THAZARD_H__
|
||||
#include "triggers\thazard.h"
|
||||
#endif
|
||||
|
||||
#ifndef __UTILS_HEADER__
|
||||
#include "utils\utils.h"
|
||||
#endif
|
||||
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void CNpcConveyorSwitchHazard::init()
|
||||
{
|
||||
CNpcHazard::init();
|
||||
|
||||
m_reversed = false;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void CNpcConveyorSwitchHazard::render()
|
||||
{
|
||||
if ( m_isActive )
|
||||
{
|
||||
CHazardThing::render();
|
||||
|
||||
if (canRender())
|
||||
{
|
||||
DVECTOR &renderPos=getRenderPos();
|
||||
|
||||
VECTOR flip;
|
||||
|
||||
if ( m_reversed )
|
||||
{
|
||||
flip.vx = ONE;
|
||||
}
|
||||
else
|
||||
{
|
||||
flip.vx = -ONE;
|
||||
}
|
||||
|
||||
flip.vy = ONE;
|
||||
flip.vz = ONE;
|
||||
|
||||
m_modelGfx->Render( renderPos, NULL, &flip );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void CNpcConveyorSwitchHazard::setWaypoints( sThingHazard *ThisHazard )
|
||||
{
|
||||
int pointNum;
|
||||
|
||||
u16 *PntList=(u16*)MakePtr(ThisHazard,sizeof(sThingHazard));
|
||||
|
||||
u16 newXPos, newYPos;
|
||||
|
||||
m_npcPath.setWaypointCount( ThisHazard->PointCount - 1 );
|
||||
|
||||
newXPos = (u16) *PntList;
|
||||
setWaypointPtr( PntList );
|
||||
PntList++;
|
||||
newYPos = (u16) *PntList;
|
||||
PntList++;
|
||||
|
||||
DVECTOR startPos;
|
||||
startPos.vx = ( newXPos << 4 ) + 8;
|
||||
startPos.vy = ( newYPos << 4 ) + 16;
|
||||
|
||||
Pos = startPos;
|
||||
m_base = Pos;
|
||||
|
||||
CHazardTrigger *trigger;
|
||||
|
||||
trigger=(CHazardTrigger*)CTrigger::Create(CTrigger::TRIGGER_HAZARD);
|
||||
trigger->setPositionAndSize( ( newXPos << 4 ) + 8, ( newYPos << 4 ) + 16, 100, 0 );
|
||||
trigger->setHazard( this );
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
void CNpcConveyorSwitchHazard::trigger()
|
||||
{
|
||||
m_reversed = !m_reversed;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue