This commit is contained in:
parent
74aca949a4
commit
0f12ceeddd
2 changed files with 124 additions and 0 deletions
96
source/hazard/hsrdfish.cpp
Normal file
96
source/hazard/hsrdfish.cpp
Normal file
|
@ -0,0 +1,96 @@
|
||||||
|
/*=========================================================================
|
||||||
|
|
||||||
|
hsrdfish.cpp
|
||||||
|
|
||||||
|
Author: CRB
|
||||||
|
Created:
|
||||||
|
Project: Spongebob
|
||||||
|
Purpose:
|
||||||
|
|
||||||
|
Copyright (c) 2001 Climax Development Ltd
|
||||||
|
|
||||||
|
===========================================================================*/
|
||||||
|
|
||||||
|
#ifndef __HAZARD_HSRDFISH_H__
|
||||||
|
#include "hazard\hsrdfish.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#ifndef __UTILS_HEADER__
|
||||||
|
#include "utils\utils.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void CNpcSwordfishHazard::render()
|
||||||
|
{
|
||||||
|
if ( m_isActive )
|
||||||
|
{
|
||||||
|
CHazardThing::render();
|
||||||
|
|
||||||
|
if (canRender())
|
||||||
|
{
|
||||||
|
DVECTOR &renderPos=getRenderPos();
|
||||||
|
|
||||||
|
VECTOR flip;
|
||||||
|
|
||||||
|
if ( m_heading )
|
||||||
|
{
|
||||||
|
flip.vx = ONE;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
flip.vx = -ONE;
|
||||||
|
}
|
||||||
|
|
||||||
|
flip.vy = ONE;
|
||||||
|
flip.vz = ONE;
|
||||||
|
|
||||||
|
m_modelGfx->Render( renderPos, NULL, &flip );
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
|
void CNpcSwordfishHazard::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;
|
||||||
|
|
||||||
|
s32 minX, maxX, minY, maxY;
|
||||||
|
|
||||||
|
m_npcPath.getPathXExtents( &minX, &maxX );
|
||||||
|
m_width = maxX - minX;
|
||||||
|
m_npcPath.getPathYExtents( &minY, &maxY );
|
||||||
|
m_height = maxY - minY;
|
||||||
|
|
||||||
|
if ( ThisHazard->PointCount > 1 )
|
||||||
|
{
|
||||||
|
newXPos = (u16) *PntList;
|
||||||
|
|
||||||
|
if ( ( ( newXPos << 4 ) + 8 ) < startPos.vx )
|
||||||
|
{
|
||||||
|
m_width = -m_width;
|
||||||
|
m_heading = 2048;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
28
source/hazard/hsrdfish.h
Normal file
28
source/hazard/hsrdfish.h
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
/*=========================================================================
|
||||||
|
|
||||||
|
hsrdfish.h
|
||||||
|
|
||||||
|
Author: CRB
|
||||||
|
Created:
|
||||||
|
Project: Spongebob
|
||||||
|
Purpose:
|
||||||
|
|
||||||
|
Copyright (c) 2001 Climax Development Ltd
|
||||||
|
|
||||||
|
===========================================================================*/
|
||||||
|
|
||||||
|
#ifndef __HAZARD_HSRDFISH_H__
|
||||||
|
#define __HAZARD_HSRDFISH_H__
|
||||||
|
|
||||||
|
#ifndef __HAZARD_HFIREBAL_H__
|
||||||
|
#include "hazard\hfirebal.h"
|
||||||
|
#endif
|
||||||
|
|
||||||
|
class CNpcSwordfishHazard : public CNpcFireballHazard
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
void render();
|
||||||
|
virtual void setWaypoints( sThingHazard *ThisHazard );
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
Loading…
Add table
Reference in a new issue