-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGame.cpp
194 lines (157 loc) · 4.52 KB
/
Game.cpp
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#include <crtdbg.h>
#include <assert.h>
#include <time.h>
#include "Game.h"
#include "D3DCore.h"
#include "d3dUtil.h"
#include "Graphics.h"
#include "PrimitiveFactory.h"
#include "Input.h"
#include "Light.h"
#include "BillboardManager.h"
#include "Vertex.h"
#include "RenderTarget.h"
#include "Camera.h"
#include "Effects.h"
#include "RenderStates.h"
#include "ShadowMap.h"
#include "ModelImporter.h"
#include "StaticModel.h"
#include "SkinnedModel.h"
#include "Object3D.h"
#include "World.h"
#include "StaticObject.h"
#include "AnimatedObject.h"
#include "vld.h"
#include "Primitive.h"
#include "Editor.h"
#include "LightObject.h"
using namespace GLib;
// Set global to NULL.
GLib::Runnable* GLib::GlobalApp = nullptr;
Gwen::Renderer::DirectX11* pRenderer;
//! The program starts here.
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE prevInstance, PSTR cmdLine, int showCmd)
{
// Enable run-time memory check for debug builds.
/*#if defined(DEBUG) | defined(_DEBUG)
_CrtSetDbgFlag( _CRTDBG_ALLOC_MEM_DF | _CRTDBG_LEAK_CHECK_DF );
#endif*/
Game game(hInstance, "Graphics Demo", 1200, 800);
GLib::GlobalApp = &game;
// Init the app.
game.Init();
game.GwenInit();
return GLib::GlobalApp->Run();
}
Game::Game(HINSTANCE hInstance, string caption, int width, int height)
: Runnable(hInstance, caption, width, height)
{
mEditor = nullptr;
mEditorVisible = true;
mDrawHelp = false;
mElapsedTime = 0.0f;
SetFpsCap(100.0f);
}
Game::~Game()
{
delete mWorld;
delete mEditor;
}
void Game::Init()
{
// Important to run Systems Init() function.
Runnable::Init();
// Create the world.
mWorld = new GLib::World();
// Create and init the editor.
mEditor = new Editor(GetClientWidth(), GetClientHeight());
mEditor->Init(GetGraphics()->GetModelImporter(), mWorld);
// Go fullscreen.
SwitchScreenMode();
// Render the loading assets backround.
mLoadingAssetsBkgd = GetGraphics()->LoadTexture("textures/black.png");
mHelpScreen = GetGraphics()->LoadTexture("textures/help_screen.png");
mPressH = GetGraphics()->LoadTexture("textures/press_h.png");
RenderLoadingScreen(GetGraphics());
// Init the world.
mWorld->Init(GetGraphics());
mWorld->AddItemSelectedListender(&Editor::OnItemSelected, mEditor);
mEditor->UpdateWorldTree();
// Connect the graphics light list to the one in World.
GetGraphics()->SetLightList(mWorld->GetLights());
// Set the fog color.
GetGraphics()->SetFogColor(XMFLOAT4(0.4f, 0.4f, 0.4f, 1.0f));
}
void Game::GwenInit()
{
}
void Game::Update(GLib::Input* pInput, float dt)
{
mElapsedTime += dt;
// Toggle editors visibility?
if(pInput->KeyPressed(VK_SPACE))
mEditorVisible = !mEditorVisible;
// Display the help screen?
if(pInput->KeyPressed('H')) {
mElapsedTime = 9999; // > 6
mDrawHelp = !mDrawHelp;
}
// Change the camera movement speed.
if(pInput->KeyPressed('1'))
GLib::GetCamera()->SetMoveSpeed(0.1f);
else if(pInput->KeyPressed('2'))
GLib::GetCamera()->SetMoveSpeed(0.6);
else if(pInput->KeyPressed('3'))
GLib::GetCamera()->SetMoveSpeed(1.6f);
else if(pInput->KeyPressed('4'))
GLib::GetCamera()->SetMoveSpeed(2.0f);
mWorld->Update(dt);
mEditor->Update(pInput, dt);
// Close the program.
if(pInput->KeyPressed(VK_ESCAPE))
PostQuitMessage(0);
}
void Game::Draw(GLib::Graphics* pGraphics)
{
// Clear the render target and depth/stencil.
pGraphics->ClearScene();
// Draw all objects.
mWorld->Draw(pGraphics);
pGraphics->DrawBillboards();
if(mEditorVisible)
mEditor->Draw(pGraphics);
if(mElapsedTime < 6.0f)
pGraphics->DrawScreenQuad(mPressH, 600, 100, 164, 24);
if(mDrawHelp)
pGraphics->DrawScreenQuad(mHelpScreen, 600, 400, 735, 735);
// Present the backbuffer.
pGraphics->Present();
// Unbind the SRVs from the pipeline so they can be used as DSVs instead.
ID3D11ShaderResourceView *const nullSRV[4] = {NULL, NULL, NULL, NULL};
pGraphics->GetContext()->PSSetShaderResources(0, 4, nullSRV);
Effects::BasicFX->Apply(GetD3DContext());
//Effects::BuildShadowMapFX->Apply(GetD3DContext());
}
//! Called when the window gets resized.
void Game::OnResize(int width, int height)
{
mEditor->OnResize(width, height);
}
LRESULT Game::MsgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
// Toggle screen mode?
if(msg == WM_CHAR) {
if(wParam == 'f')
SwitchScreenMode();
}
if(mEditor != nullptr)
mEditor->MsgProc(hwnd, msg, wParam, lParam);
return Runnable::MsgProc(hwnd, msg, wParam, lParam);
}
void Game::RenderLoadingScreen(GLib::Graphics* pGraphics)
{
pGraphics->ClearScene();
pGraphics->DrawScreenQuad(mLoadingAssetsBkgd, 600, 400, 1200, 800);
pGraphics->Present();
}