-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.h
53 lines (47 loc) · 1.13 KB
/
Game.h
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
#pragma once
#include "Runnable.h"
// Forward declarations.
#pragma region Forward declarations.
namespace GLib {
class Light;
class RenderTarget;
class Primitive;
class Texture2D;
class ShadowMap;
class ModelImporter;
class Model;
class SkinnedModel;
class World;
class StaticObject;
class AnimatedObject;
}
class Editor;
#pragma endregion
class Game : public GLib::Runnable
{
public:
Game(HINSTANCE hInstance, string caption, int width, int height);
~Game();
void Init();
void Update(GLib::Input* pInput, float dt);
void Draw(GLib::Graphics* pGraphics);
void OnResize(int width, int height);
void RenderLoadingScreen(GLib::Graphics* pGraphics);
LRESULT MsgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam);
void GwenInit();
private:
GLib::World* mWorld;
GLib::Light* mLight;
GLib::Light* mLight2;
GLib::StaticObject* mObject;
GLib::StaticObject* mObject2;
GLib::StaticObject* mTerrain;
GLib::AnimatedObject* mAnimatedObject;
Editor* mEditor;
bool mEditorVisible;
GLib::Texture2D* mLoadingAssetsBkgd;
GLib::Texture2D* mHelpScreen;
GLib::Texture2D* mPressH;
float mElapsedTime;
bool mDrawHelp;
};