2001-04-23 18:54:49 +02:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
pbubble.cpp
|
|
|
|
|
|
|
|
Author: CRB
|
|
|
|
Created:
|
|
|
|
Project: Spongebob
|
|
|
|
Purpose:
|
|
|
|
|
|
|
|
Copyright (c) 2001 Climax Development Ltd
|
|
|
|
|
|
|
|
===========================================================================*/
|
|
|
|
|
|
|
|
#ifndef __PLATFORM_PBUBBLE_H__
|
|
|
|
#include "platform\pbubble.h"
|
|
|
|
#endif
|
|
|
|
|
2001-06-04 23:16:15 +02:00
|
|
|
#ifndef __GAME_GAME_H__
|
|
|
|
#include "game\game.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __SPR_SPRITES_H__
|
|
|
|
#include <sprites.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void CNpcBubblePlatform::postInit()
|
|
|
|
{
|
|
|
|
CNpcPlatform::postInit();
|
|
|
|
|
|
|
|
m_pop = false;
|
2001-06-19 22:07:57 +02:00
|
|
|
|
|
|
|
s32 minX, maxX, minY, maxY;
|
|
|
|
|
|
|
|
m_npcPath.getPathXExtents( &minX, &maxX );
|
|
|
|
m_npcPath.getPathYExtents( &minY, &maxY );
|
|
|
|
|
|
|
|
m_thinkArea.x1 = minX;
|
|
|
|
m_thinkArea.x2 = maxX;
|
|
|
|
m_thinkArea.y1 = minY;
|
|
|
|
m_thinkArea.y2 = maxY;
|
2001-06-04 23:16:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void CNpcBubblePlatform::render()
|
|
|
|
{
|
|
|
|
if ( m_isActive || m_pop )
|
|
|
|
{
|
|
|
|
CPlatformThing::render();
|
|
|
|
|
|
|
|
// Render
|
|
|
|
if (canRender())
|
|
|
|
{
|
|
|
|
DVECTOR &renderPos=getRenderPos();
|
|
|
|
|
|
|
|
if ( m_pop )
|
|
|
|
{
|
|
|
|
POLY_FT4 *SprFrame = CGameScene::getSpriteBank()->printRotatedScaledSprite( FRM__BALLOONBURST, renderPos.vx, renderPos.vy - 16, 4096 << 1, 4096 << 1, 0, 10 );
|
|
|
|
setRGB0( SprFrame, 128, 128, 255 );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_modelGfx->Render(renderPos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-04-23 18:54:49 +02:00
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
void CNpcBubblePlatform::processMovement( int _frames )
|
|
|
|
{
|
2001-06-04 23:16:15 +02:00
|
|
|
if ( !isSetToShutdown() && !m_pop )
|
2001-05-05 01:12:26 +02:00
|
|
|
{
|
2001-05-22 22:39:46 +02:00
|
|
|
Pos.vy -= m_speed * _frames;
|
|
|
|
|
2001-05-30 22:24:02 +02:00
|
|
|
if ( m_npcPath.getWaypointCount() )
|
2001-05-22 22:39:46 +02:00
|
|
|
{
|
|
|
|
s32 minY, maxY;
|
|
|
|
|
|
|
|
m_npcPath.getPathYExtents( &minY, &maxY );
|
|
|
|
|
|
|
|
if ( Pos.vy < minY )
|
|
|
|
{
|
2001-06-04 23:16:15 +02:00
|
|
|
m_lifetime = GameState::getOneSecondInFrames() >> 2;
|
|
|
|
m_pop = true;
|
2001-05-22 22:39:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( Pos.vy < 0 )
|
|
|
|
{
|
2001-06-04 23:16:15 +02:00
|
|
|
m_lifetime = GameState::getOneSecondInFrames() >> 2;
|
|
|
|
m_pop = true;
|
2001-05-22 22:39:46 +02:00
|
|
|
}
|
|
|
|
}
|
2001-05-05 01:12:26 +02:00
|
|
|
}
|
2001-05-22 21:59:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-06-04 23:16:15 +02:00
|
|
|
void CNpcBubblePlatform::processLifetime( int _frames )
|
|
|
|
{
|
|
|
|
if ( m_pop )
|
|
|
|
{
|
|
|
|
if ( m_lifetime <= 0 )
|
|
|
|
{
|
|
|
|
setToShutdown();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_lifetime = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2001-06-19 22:07:57 +02:00
|
|
|
/*const CRECT *CNpcBubblePlatform::getThinkBBox()
|
2001-05-22 21:59:56 +02:00
|
|
|
{
|
|
|
|
CRECT objThinkBox = getCollisionArea();
|
|
|
|
|
|
|
|
sBBox &thinkBBox = CThingManager::getThinkBBox();
|
|
|
|
objThinkBox.x1 = thinkBBox.XMin;
|
|
|
|
objThinkBox.x2 = thinkBBox.XMax;
|
|
|
|
objThinkBox.y1 = thinkBBox.YMin;
|
|
|
|
objThinkBox.y2 = thinkBBox.YMax;
|
|
|
|
|
|
|
|
return &objThinkBox;
|
2001-06-19 22:07:57 +02:00
|
|
|
}*/
|