-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppScreen.cpp
More file actions
386 lines (322 loc) · 10.7 KB
/
AppScreen.cpp
File metadata and controls
386 lines (322 loc) · 10.7 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
#include "AppScreen.hpp"
#include "vitiGL.hpp"
#include "App.hpp"
#include <glm/glm.hpp>
#include "vitiGEO/Ray.hpp"
#include "vitiGEO/AABB.hpp"
#include "vitiGEO/DebugInfo.hpp"
#include "vitiGL/RayTriangle.hpp"
#include "vitiGEO/Physics.hpp"
#include "vitiGEO/Constraints.hpp"
#include <bt/btBulletCollisionCommon.h>
using namespace vitiGL;
using namespace vitiGEO;
AppScreen::AppScreen(App* app, vitiGL::Window* window)
: IAppScreen{ app },
_window{ window },
_cam{ float(window->width()) / float(window->height()) },
_renderer{ window, &_scene, &_cam },
_drender{ window, &_scene, &_cam },
_fork{ _scene }
{
Physics::instance()->setDebugRenderer(glRendererBTDebug::instance());
//_fork.init();
_index = SCREEN_INDEX_APP;
RayTriangle::start();
/* create some scene elements:
bool reverse = false;
float y0 = 1.0f + 0.25f + 0.03f;
for (int y = 0; y < 24; y++) {
if (!reverse) {
for (int x = 0; x < 4; x++) {
for (int z = 0; z < 8; z++) {
std::string name = "Cuboid" + std::to_string(x) + std::to_string(y) + std::to_string(z);
_scene.addChild(new Cuboid{ "xml/block.xml" }, glm::vec3{ -15.f + 2.f * x, y0 + 0.5f * y, -1.f + 1. * z }, name);
_scene[name]->addPhysics(BodyType::cuboid, 10.0f);
//_scene[name]->physics()->body()->setGravity(btVector3(0.0f, 0.0f, 0.f));
}
}
}
else {
for (int x = 0; x < 8; x++) {
for (int z = 0; z < 4; z++) {
std::string name = "Cuboid" + std::to_string(x) + std::to_string(y) + std::to_string(z);
_scene.addChild(new Cuboid{ "xml/block.xml" }, glm::vec3{ -15.5f + 1.f * x, y0 + 0.5f * y, -.5f + 2. * z }, name);
_scene[name]->transform.rotate(90.0f, glm::vec3{ 0.0f, 1.0f, 0.0f });
_scene[name]->addPhysics(BodyType::cuboid, 10.0f);
//_scene[name]->physics()->body()->setGravity(btVector3(0.0f, 0.0f, 0.f));
}
}
}
reverse = reverse == true ? false : true;
}*/
/* constraint tests: */
//_scene["CCube1"]->transform.setScale(glm::vec3{ 2.0f, 5.0f, 0.1f });
//_scene["CCube1"]->addPhysics(BodyType::cuboid, 10.0f);
//_scene["CCube1"]->physics()->body()->setGravity(btVector3{ 0.0f, 0.0f, 0.0f });
//vitiGEO::HingeConstraint* c = new vitiGEO::HingeConstraint {
// _scene["CCube1"]->physics(), glm::vec3{ 1.1f, 0.0f, 0.0f }, glm::vec3{ 0.0f, 1.0f, 0.0f } };
//c->addMotor(3.0f, 20.0f);
//c->setMinMax(-3.1416 / 4.0f, 3.1416 / 4.0f);
/* compound object test: */
/* test: load cylinder obj model:
_scene.addChild(new Model("Models/cylinder.obj"), "Cylinder");
_scene["Cylinder"]->transform.setScale(glm::vec3{ 1.0f, 1.5f, 1.0f });
_scene["Cylinder"]->transform.setPos(glm::vec3{ -5.f, 3.0f, -5.0f });
_scene["Cylinder"]->addPhysics(BodyType::cylinder, 10.0f);
_scene.addChild(new Model("Models/cone.obj"), "Cone");
_scene["Cone"]->transform.setPos(glm::vec3{ -9.f, 3.0f, -5.0f });
_scene["Cone"]->addPhysics(BodyType::cone, 10.0f);
_scene.addChild(new Model("Models/torus.obj"), "Torus");
_scene["Torus"]->transform.setPos(glm::vec3{ -12.f, 3.0f, -7.0f });
_scene["Torus"]->addPhysics(BodyType::convexHull, 10.0f);
_scene.addChild(new Cuboid{ "xml/cube_floor.xml" }, glm::vec3{ 0.0f, 1.0f, 0.0f }, "Floor");
_scene["Floor"]->addPhysics(BodyType::cuboid, 0.0f);
_scene.addChild(new Cuboid{ "xml/cube_floorBig.xml" }, glm::vec3{ 0.0f, -10.0f, 0.0f }, "Floor2");
_scene["Floor2"]->addPhysics(BodyType::cuboid, 0.0f);
_scene.addChild(new Cuboid{ "xml/cube_floor.xml" }, glm::vec3{ 7.0f, 7.0f, 0.0f }, "Wall");
_scene["Wall"]->transform.rotateTo(45.0f, glm::vec3{ 0.0f, 0.0f, 1.0f });
_scene["Wall"]->addPhysics(BodyType::cuboid, 0.0f);
//add a directional and a point light:
dLight* dlight = new dLight{ "dlight", glm::vec3{ 0.5f, -1.0f, -0.5f } };
dlight->setProperty(lightProps::diffuse, glm::vec3{ 0.8f, 0.1f, 0.0f });
dlight->setProperty(lightProps::specular, glm::vec3{ 1.f, 0.0f, 0.0f });
_scene.addChild(dlight, "dlight");
_scene.setShadowcaster("dlight");
pLight* plight = new pLight{ &_cam };
plight->setProperty(lightProps::pos, glm::vec3{ 0.0f, 15.0f, 10.0f });
plight->setProperty(lightProps::diffuse, glm::vec3{ 10.0f, 5.0f, 0.0f });
plight->setProperty(lightProps::specular, glm::vec3{ 20.0f, 10.0f, 0.0f });
plight->setProperty(lightProps::attenuation, Attenuation::r160);
_scene.addChild(plight, "plight");
_scene.setShadowcaster("plight");
// add Skybox:
std::vector<std::string> faces;
faces.push_back("Textures/Skybox/right.jpg");
faces.push_back("Textures/Skybox/left.jpg");
faces.push_back("Textures/Skybox/top.jpg");
faces.push_back("Textures/Skybox/bottom.jpg");
faces.push_back("Textures/Skybox/back.jpg");
faces.push_back("Textures/Skybox/front.jpg");
Skybox* skybox = new Skybox(faces);
_scene.addChild(skybox, "Skybox"); */
_scene.addCamera(&_cam);
_cam.setPos(glm::vec3{ -4.0f, 8.0f, -5.0f });
//_cam.setTarget(_scene["Cuboid000"]->transform.pos());
_timer.on();
/* debug:
_scene.print();*/
//test: save scene
//SceneSaver saver{ &_scene, "scene.xml" };
//and load:
SceneLoader loader{ &_scene, &_cam, "Scenes/bug.xml" };
}
AppScreen::~AppScreen() {
}
void AppScreen::onEntry() {
SDL_SetRelativeMouseMode(SDL_TRUE);
SDL_CaptureMouse(SDL_TRUE);
Physics::instance()->startSimulation();
if (_timer.is_paused()) _timer.unpause();
}
void AppScreen::onExit() {
SDL_CaptureMouse(SDL_FALSE);
Physics::instance()->stopSimulation();
_timer.pause();
}
void AppScreen::update() {
Uint32 frameTime = _timer.frame_time();
Uint32 time = _timer.get_time();
std::string fps = "FPS: " + std::to_string(_timer.fps());
/* update all components: */
Physics::instance()->update(frameTime);
_cam.update();
updateInput();
_scene.update(frameTime);
}
void AppScreen::updateFreezed() {
Uint32 frameTime = _timer.frame_time();
Physics::instance()->update(frameTime);
updateInput();
_scene.update(frameTime);
}
void AppScreen::draw() {
_drender.draw();
}
int AppScreen::next() const {
return SCREEN_INDEX_NONE;
}
int AppScreen::previous() const {
return SCREEN_INDEX_MENU;
}
void AppScreen::updateInput() {
SDL_Event input;
while (SDL_PollEvent(&input)) {
//_fork.onSDLEvent(input, _cam);
//temporary solution for object picking:
Physics::instance()->update(_cam.pos(), _cam.dir(), input);
switch (input.type) {
case SDL_QUIT:
_state = ScreenState::exit;
break;
case SDL_KEYDOWN:
switch (input.key.keysym.sym) {
case SDLK_ESCAPE:
_state = ScreenState::previous;
break;
case SDLK_w:
_cam.move(Move::forward);
break;
case SDLK_s:
_cam.move(Move::backward);
break;
case SDLK_a:
_cam.move(Move::left);
break;
case SDLK_d:
_cam.move(Move::right);
break;
case SDLK_r:
break;
case SDLK_t:
//_scene["Wall"]->transform.rotateTo(0.0f, glm::vec3{ 0.0f, 0.0f, 1.0f });
break;
case SDLK_KP_7:
break;
case SDLK_KP_1:
//_btBodies["Cuboid"]->applyCentralImpulse(btVector3{ 0.0f, -100.0f, 0.0f });
break;
case SDLK_KP_9:
{
}
case SDLK_KP_3:
//_btBodies["Cuboid"]->applyTorque(btVector3{ 0.0f, -10.0f, 0.0f });
break;
case SDLK_KP_5:
//_scene["Cuboid"]->transform.setWorldMatrix(glm::mat4{});
break;
case SDLK_SPACE:
addCube(10.0f, _cam.pos());
break;
case SDLK_LSHIFT:
addIcosahedron(4.0f, _cam.pos());
break;
case SDLK_LALT:
addTetrahedron(1.0, _cam.pos());
break;
case SDLK_F1:
{
SceneSaver saver{ &_scene, "test.xml" };
break;
}
case SDLK_F2:
break;
case SDLK_g:
break;
case SDLK_F3:
break;
case SDLK_F4:
break;
case SDLK_F5:
_scene.print();
break;
case SDLK_F6:
break;
case SDLK_F7:
break;
case SDLK_F9:
break;
case SDLK_KP_PLUS:
break;
case SDLK_KP_MINUS:
break;
case SDLK_KP_MULTIPLY:
break;
case SDLK_KP_DIVIDE:
break;
}
break;
case SDL_MOUSEMOTION:
int dx, dy;
SDL_GetMouseState(&dx, &dy);
_cam.rotate(dx, dy);
/* reset the mouse to the screen-center:*/
_window->centerMouse();
break;
case SDL_MOUSEWHEEL:
_cam.zoom(input.wheel.y);
break;
case SDL_MOUSEBUTTONDOWN:
switch (input.button.button) {
case SDL_BUTTON_LEFT:
{
/* get the world space position of the mouse: */
glm::vec3 rayS = _cam.pos();
glm::vec3 rayDir = _cam.dir();
Physics::instance()->picker(rayS, rayDir);
}
break;
case SDL_BUTTON_RIGHT:
break;
}
}
}
}
void AppScreen::addCube(float mass, const glm::vec3& pos) {
static int i = 0;
std::string name = "Cube" + std::to_string(i++);
glm::vec3 v = _cam.dir() * 10.0f;
_scene.addChild(new Model{ "Models/unitCube/unitCube.obj" }, name);
_scene[name]->transform.setPos(pos);
_scene[name]->addPhysics(BodyType::cuboid, 10.0f, v);
/*
static int i = 0;
std::string name = "Cube" + std::to_string(i++);
glm::vec3 v = _cam.dir() * 10.0f;
_scene.addChild(new Cuboid{ "xml/cube.xml" }, pos, name);
_scene[name]->transform.setScale(glm::vec3{ 1.0f, 2.0f, 0.5f });
_scene[name]->addPhysics(BodyType::cuboid, 10.0f, v);*/
}
void AppScreen::addOctahedron(float mass, const glm::vec3 & pos) {
static int i = 0;
std::string name = "Octahedron" + std::to_string(i++);
glm::vec3 v = _cam.dir() * 10.0f;
_scene.addChild(new Octahedron{ "xml/cubeSmall.xml" }, pos, name);
_scene[name]->addPhysics(BodyType::convexHull, mass, v);
}
void AppScreen::addTetrahedron(float mass, const glm::vec3& pos) {
static int i = 0;
std::string name = "Tetrahedron" + std::to_string(i++);
glm::vec3 v = _cam.dir() * 10.0f;
_scene.addChild(new Tetrahedron{ "xml/cubeTiny.xml" }, pos, name);
_scene[name]->addPhysics(BodyType::convexHull, mass, v);
}
void AppScreen::addIcosahedron(float mass, const glm::vec3 & pos) {
static int i = 0;
std::string name = "Icosahedron" + std::to_string(i++);
glm::vec3 v = _cam.dir() * 10.0f;
_scene.addChild(new Icosahedron{ "xml/cubeTiny.xml" }, pos, name);
_scene[name]->transform.setScale(glm::vec3{ 2.0f, 2.0f, 2.0f }
);
_scene[name]->addPhysics(BodyType::sphere, mass, v);
_scene[name]->physics()->setRollingFriction(0.3f);
}
void AppScreen::addChain(const glm::vec3 & startPos, int counter, float distance, const glm::vec3& scale) {
static int j{ 0 };
j++;
/* create the cubes and add them to the scene: */
std::vector<PhysicObject*> objs;
for (size_t i = 0; i < counter; i++) {
float mass;
mass = (i == 0) ? 0.0f : 5.0f;
std::string name = "ChainCube" + std::to_string(j) + "/" + std::to_string(i);
glm::vec3 pos = { startPos.x, startPos.y - (i * scale.y + distance), startPos.z };
_scene.addChild(new Model{ "Models/cylinder.obj" }, name, "root");
_scene[name]->transform.setPos(pos);
_scene[name]->transform.setScale(scale);
_scene[name]->addPhysics(BodyType::cylinder, mass);
objs.push_back(_scene[name]->physics());
}
/* now make the chain: */
CuboidChain* chain = new CuboidChain{ objs, distance };
}