SBSPSS/source/triggers/tbemit.cpp

51 lines
1.0 KiB
C++
Raw Normal View History

2001-06-04 16:04:03 +02:00
/*=========================================================================
2001-06-05 22:21:11 +02:00
tbemit.cpp
2001-06-04 16:04:03 +02:00
Author: CRB
Created:
Project: Spongebob
Purpose:
Copyright (c) 2001 Climax Development Ltd
===========================================================================*/
#ifndef __TRIGGERS_TBEMIT_H__
#include "triggers\tbemit.h"
#endif
#ifndef __GAME_GAME_H__
#include "game\game.h"
#endif
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CBubbleEmitterTrigger::think(int _frames)
{
CTrigger::think( _frames );
if ( m_timer <= 0 )
{
2001-07-03 17:00:35 +02:00
#ifndef __USER_paul__
2001-06-04 16:04:03 +02:00
CFX::Create( CFX::FX_TYPE_BUBBLE_WATER, Pos );
2001-07-03 17:00:35 +02:00
#endif
2001-06-04 16:04:03 +02:00
m_timer = GameState::getOneSecondInFrames() >> 2;
}
else
{
m_timer -= _frames;
}
}
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
void CBubbleEmitterTrigger::setPositionAndSize(int _x,int _y,int _w,int _h)
{
CTrigger::setPositionAndSize( _x, _y, _w, _h );
m_timer = 0;
}