SBSPSS/source/game/game.cpp

250 lines
5.8 KiB
C++
Raw Normal View History

2000-08-29 21:54:22 +02:00
/**********************/
/*** Main Game File ***/
/**********************/
#include "system\global.h"
#include "fileio\fileio.h"
#include "pad\pads.h"
#include "system\vid.h"
#include "gfx\prim.h"
#include "utils\utils.h"
2000-12-07 16:56:20 +01:00
#include "level\level.h"
2000-08-29 21:54:22 +02:00
#include "game\game.h"
#include "system\gstate.h"
#include "gfx\font.h"
#include "gfx\fdata.h"
2001-01-22 21:57:39 +01:00
#ifndef __GAME_CONVO_H__
#include "game\convo.h"
#endif
2001-01-16 17:20:45 +01:00
#ifndef __PLAYER_PLAYER_H__
#include "player\player.h"
#endif
2001-02-09 18:01:04 +01:00
#include "player\demoplay.h"
2001-01-16 17:20:45 +01:00
#ifndef __ENEMY_2DENEMY_H__
#include "enemy\2denemy.h"
#endif
2001-01-22 17:02:38 +01:00
#ifndef __PROJECTL_PROJECTL_H__
#include "projectl\projectl.h"
#endif
2001-01-15 23:02:25 +01:00
#ifndef __GFX_FADER_H__
#include "gfx\fader.h"
#endif
2000-10-18 20:37:39 +02:00
#ifndef __GFX_BUBICLES__
#include "gfx\bubicles.h"
#endif
2000-10-31 17:41:02 +01:00
#ifndef __SPR_INGAMEFX_H__
#include <ingamefx.h>
#endif
2001-02-09 18:01:04 +01:00
#ifndef _ANIMTEX_HEADER_
#include "gfx\animtex.h"
#endif
2000-10-18 20:37:39 +02:00
2001-02-09 22:41:55 +01:00
#ifndef __GAME_PAUSE_H__
#include "game\pause.h"
#endif
2001-02-12 18:18:17 +01:00
#ifndef __FRONTEND_FRONTEND_H__
#include "frontend\frontend.h"
#endif
2001-02-21 18:09:19 +01:00
#ifndef __PICKUPS_PICKUP_H__
#include "pickups\pickup.h"
#endif
2001-02-12 18:18:17 +01:00
2000-08-29 21:54:22 +02:00
2001-01-17 22:53:31 +01:00
int GX=248;
int GY=129;
int GH=256;
int ZPos=5100;
2001-01-15 16:22:33 +01:00
2000-08-29 21:54:22 +02:00
/*****************************************************************************/
2001-01-15 16:22:33 +01:00
FontBank *CGameScene::s_genericFont;
MATRIX CGameScene::CamMtx;
2000-10-18 20:37:39 +02:00
2000-08-29 21:54:22 +02:00
/*****************************************************************************/
2001-02-12 17:06:24 +01:00
int s_globalLevelSelectThing=0;
2001-02-12 18:18:17 +01:00
int CGameScene::s_readyToExit;
2001-02-21 18:09:19 +01:00
int exitToNextLevel;
2001-02-12 17:06:24 +01:00
/*****************************************************************************/
2000-08-29 21:54:22 +02:00
CGameScene GameScene;
/*****************************************************************************/
2000-09-12 01:41:29 +02:00
void CGameScene::init()
2000-08-29 21:54:22 +02:00
{
2001-01-30 19:46:07 +01:00
SetIdentNoTrans(&CamMtx);
CamMtx.t[2]=ZPos;
2000-12-07 16:56:20 +01:00
s_genericFont=new ("CGameScene::Init") FontBank();
s_genericFont->initialise( &standardFont );
s_genericFont->setColour( 255, 255 , 0 );
VidSetClearScreen(1);
2001-01-23 22:05:48 +01:00
2001-01-22 21:57:39 +01:00
CConversation::init();
2001-01-23 22:05:48 +01:00
CConversation::registerConversationScript(SCRIPTS_SPEECHTEST_DAT); // Register one script for testing..
2000-12-07 16:56:20 +01:00
Level.init();
2001-01-16 17:20:45 +01:00
2001-01-25 18:58:01 +01:00
#ifdef __USER_charles__
2001-01-16 17:20:45 +01:00
C2dEnemy *enemy;
enemy=new ("test enemy") C2dEnemy;
enemy->init();
2001-02-12 18:37:55 +01:00
enemy->setLayerCollision( Level.getCollisionLayer() );
2001-01-25 18:58:01 +01:00
#endif
2001-01-16 17:20:45 +01:00
2001-02-21 18:09:19 +01:00
#ifdef __USER_paul__
DVECTOR pos={16*10,16*10};
createPickup(PICKUP__100_PERCENT_LIFE,&pos);
pos.vx+=32; createPickup(PICKUP__50_PERCENT_LIFE,&pos);
pos.vx+=32; createPickup(PICKUP__25_PERCENT_LIFE,&pos);
pos.vx+=32; createPickup(PICKUP__LIFE,&pos);
pos.vx+=32; createPickup(PICKUP__SPATULA,&pos);
pos.vx+=32; createPickup(PICKUP__JELLY_LAUNCHER_AMMO,&pos);
pos.vx+=32; createPickup(PICKUP__BUBBLE_MIXTURE,&pos);
pos.vx+=32; createPickup(PICKUP__GLASSES,&pos);
pos.vx+=32; createPickup(PICKUP__SQUEAKY_SHOES,&pos);
pos.vx+=32; createPickup(PICKUP__QUEST_ITEM__TEST,&pos);
#endif
2001-02-09 18:01:04 +01:00
createPlayer();
2001-01-16 18:34:38 +01:00
m_player->init();
2001-02-06 18:15:28 +01:00
m_player->setLayerCollision(Level.getCollisionLayer());
2001-02-12 16:26:00 +01:00
m_player->setMapSize(Level.getMapSize());
2001-01-16 18:34:38 +01:00
2001-02-09 22:41:55 +01:00
m_pauseMenu=new ("Pause Menu") CPauseMenu();
m_pauseMenu->init();
2001-01-15 23:02:25 +01:00
CFader::setFadingIn();
2001-01-17 22:53:31 +01:00
SetGeomOffset( GX, GY );
SetGeomScreen(GH);
2001-02-12 18:18:17 +01:00
s_readyToExit=false;
2001-02-21 18:09:19 +01:00
exitToNextLevel=false;
2001-02-09 18:01:04 +01:00
}
2001-01-17 22:53:31 +01:00
2001-02-09 18:01:04 +01:00
/*****************************************************************************/
// This is a seperate funtion ( and virtual ) so that we can overload it for
// the demo mode (pkg)
// NB: This function should *only* include the new function - Don't add anything else here!
void CGameScene::createPlayer()
{
m_player=new ("player") CPlayer();
2000-08-29 21:54:22 +02:00
}
2001-02-12 18:24:58 +01:00
// This is also to be overloaded for demomode.. to stop the pause menu appearing
int CGameScene::canPause()
{
return true;
}
2001-02-09 18:01:04 +01:00
2000-08-29 21:54:22 +02:00
/*****************************************************************************/
2000-12-07 16:56:20 +01:00
void CGameScene::shutdown()
2000-08-29 21:54:22 +02:00
{
2001-02-12 16:26:00 +01:00
m_pauseMenu->shutdown(); delete m_pauseMenu;
2001-02-09 22:41:55 +01:00
2001-01-16 17:20:45 +01:00
m_player->shutdown(); delete m_player;
2001-01-16 18:34:38 +01:00
CThing::shutdownAndDeleteAllThings();
2001-01-16 17:20:45 +01:00
2000-12-07 16:56:20 +01:00
Level.shutdown();
2001-01-22 21:57:39 +01:00
CConversation::shutdown();
2001-01-10 18:27:12 +01:00
s_genericFont->dump(); delete s_genericFont;
2000-08-29 21:54:22 +02:00
}
/*****************************************************************************/
2000-09-12 01:41:29 +02:00
void CGameScene::render()
2000-08-29 21:54:22 +02:00
{
2001-01-15 16:22:33 +01:00
CamMtx.t[2]=ZPos; // Temp
2001-02-09 22:41:55 +01:00
m_pauseMenu->render();
2001-01-22 21:57:39 +01:00
CConversation::render();
2001-01-16 17:20:45 +01:00
CThing::renderAllThings();
2001-01-12 23:49:25 +01:00
Level.render();
2000-08-29 21:54:22 +02:00
}
/*****************************************************************************/
2000-10-19 17:40:24 +02:00
void CGameScene::think(int _frames)
2000-08-29 21:54:22 +02:00
{
2001-02-09 18:01:04 +01:00
//#ifdef __USER_paul__
// if(!CConversation::isActive()&&PadGetDown(0)&PAD_START)
// {
// CConversation::trigger(SCRIPTS_SPEECHTEST_DAT);
// }
//#endif
2001-01-16 18:34:38 +01:00
2001-02-12 18:24:58 +01:00
if(!m_pauseMenu->isActive()&&PadGetDown(0)&PAD_START&&canPause())
2001-02-09 22:41:55 +01:00
{
m_pauseMenu->select();
}
2001-01-22 21:57:39 +01:00
CConversation::think(_frames);
2001-02-09 22:41:55 +01:00
m_pauseMenu->think(_frames);
if(!CConversation::isActive()&&
!m_pauseMenu->isActive())
2001-01-16 18:34:38 +01:00
{
2001-01-25 16:25:46 +01:00
DVECTOR camPos;
2001-01-16 17:20:45 +01:00
CThing::thinkAllThings(_frames);
2001-01-25 16:25:46 +01:00
camPos=m_player->getCameraPos();
//PKG
2001-02-12 16:26:00 +01:00
// if(camPos.vx<0){camPos.vx=0;PAUL_DBGMSG("cx<0");}
// if(camPos.vy<0){camPos.vy=0;PAUL_DBGMSG("cy<0");}
2001-01-25 16:25:46 +01:00
//PKG
CBubicleFactory::setMapOffset(&camPos);
Level.setCameraCentre(camPos);
2000-12-07 16:56:20 +01:00
Level.think(_frames);
2001-02-21 18:09:19 +01:00
if(PadGetDown(0)&PAD_R2)
{
exitToNextLevel=true;
}
2001-01-16 18:34:38 +01:00
}
2001-02-12 18:18:17 +01:00
2001-02-21 18:09:19 +01:00
2001-02-12 18:18:17 +01:00
if(s_readyToExit)
{
// Temporarily.. exiting game scene always goes back to the front end (pkg)
GameState::setNextScene(&FrontEndScene);
}
2001-02-21 18:09:19 +01:00
else if(exitToNextLevel)
{
s_globalLevelSelectThing++;
GameState::setNextScene(&GameScene);
s_readyToExit=true;
}
2000-08-29 21:54:22 +02:00
}
/*****************************************************************************/
2000-10-26 18:50:54 +02:00
int CGameScene::readyToShutdown()
{
2001-02-12 18:18:17 +01:00
return s_readyToExit;
2000-10-26 18:50:54 +02:00
}
/*****************************************************************************/
2001-01-16 20:00:08 +01:00
CPlayer * CGameScene::getPlayer()
{
return( m_player );
}
/*****************************************************************************/
2001-01-16 21:55:44 +01:00
void CGameScene::sendEvent( GAME_EVENT evt, CThing *sourceThing )
{
CThing::processEventAllThings(evt, sourceThing);
}
/*****************************************************************************/