1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
/*
* Copyright (C) 2006-2010 - Frictional Games
*
* This file is part of HPL1 Engine.
*/
#ifndef HPL_SCENE_H
#define HPL_SCENE_H
#include "hpl1/engine/game/GameTypes.h"
#include "hpl1/engine/system/SystemTypes.h"
#include "hpl1/engine/game/Updateable.h"
#include "hpl1/engine/scene/Camera3D.h"
#include "common/list.h"
#include "hpl1/engine/resources/MeshLoader.h"
namespace hpl {
class cAI;
class cGraphics;
class cResources;
class cSystem;
class cSound;
class cPhysics;
class cCollider2D;
class iCamera;
class cCamera2D;
class cUpdater;
class cWorld3D;
class cWorld2D;
typedef Common::List<iCamera *> tCameraList;
typedef tCameraList::iterator tCameraListIt;
typedef Common::List<cWorld3D *> tWorld3DList;
typedef tWorld3DList::iterator tWorld3DListIt;
class cScene : public iUpdateable {
public:
cScene(cGraphics *apGraphics, cResources *apResources, cSound *apSound, cPhysics *apPhysics,
cSystem *apSystem, cAI *apAI);
~cScene();
void Reset();
/**
* Called by cGame
*/
void UpdateRenderList(float afFrameTime);
/**
* Called by cGame
*/
void Render(cUpdater *apUpdater, float afFrameTime);
bool LoadMap2D(tString asFile);
void RenderWorld2D(cCamera2D *apCam, cWorld2D *apWorld);
void Update(float afTimeStep);
void ClearLoadedMaps() { m_setLoadedMaps.clear(); }
tStringSet *GetLoadedMapsSet() { return &m_setLoadedMaps; }
void SetDrawScene(bool abX);
bool GetDrawScene() { return mbDrawScene; }
///// SCRIPT VAR METHODS ////////////////////
cScriptVar *CreateLocalVar(const tString &asName);
cScriptVar *GetLocalVar(const tString &asName);
tScriptVarMap *GetLocalVarMap();
cScriptVar *CreateGlobalVar(const tString &asName);
cScriptVar *GetGlobalVar(const tString &asName);
tScriptVarMap *GetGlobalVarMap();
///// CAMERA 2D METHODS ////////////////////
cCamera2D *CreateCamera2D(unsigned int alW, unsigned int alH);
cCamera3D *CreateCamera3D(eCameraMoveMode aMoveMode);
void DestroyCamera(iCamera *apCam);
/**
* This sets the current camera, depending on this one is 2D or 3D a 2D or 3D world will be rendered.
* \param pCam
*/
void SetCamera(iCamera *pCam);
iCamera *GetCamera() { return mpActiveCamera; }
void SetCameraPosition(const cVector3f &avPos);
cVector3f GetCameraPosition();
void SetCameraIsListener(bool abX) { mbCameraIsListener = abX; }
///// WORLD METHODS ////////////////////
cWorld3D *LoadWorld3D(const tString &asFile, bool abLoadScript, tWorldLoadFlag aFlags);
cWorld3D *CreateWorld3D(const tString &asName);
void DestroyWorld3D(cWorld3D *apWorld);
void SetWorld3D(cWorld3D *apWorld);
cWorld3D *GetWorld3D() { return mpCurrentWorld3D; }
bool HasLoadedWorld(const tString &asFile);
cWorld2D *GetWorld2D() { return mpCurrentWorld2D; }
cCollider2D *GetCollider2D() { return mpCollider2D; }
void SetUpdateMap(bool abX) { mbUpdateMap = abX; }
bool GetUpdateMap() { return mbUpdateMap; }
cSystem *GetSystem() { return mpSystem; }
private:
cGraphics *mpGraphics;
cResources *mpResources;
cSound *mpSound;
cPhysics *mpPhysics;
cSystem *mpSystem;
cAI *mpAI;
cCollider2D *mpCollider2D;
bool mbDrawScene;
bool mbUpdateMap;
tWorld3DList mlstWorld3D;
cWorld3D *mpCurrentWorld3D;
cWorld2D *mpCurrentWorld2D;
tCameraList mlstCamera;
iCamera *mpActiveCamera;
bool mbCameraIsListener;
tScriptVarMap m_mapLocalVars;
tScriptVarMap m_mapGlobalVars;
tStringSet m_setLoadedMaps;
};
} // namespace hpl
#endif // HPL_SCENE_H
|