-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsquircle.cpp
1275 lines (960 loc) · 41.7 KB
/
squircle.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
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
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/****************************************************************************
**
** Copyright (C) 2016 The Qt Company Ltd.
** Contact: https://www.qt.io/licensing/
**
** This file is part of the demonstration applications of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** Commercial License Usage
** Licensees holding valid commercial Qt licenses may use this file in
** accordance with the commercial license agreement provided with the
** Software or, alternatively, in accordance with the terms contained in
** a written agreement between you and The Qt Company. For licensing terms
** and conditions see https://www.qt.io/terms-conditions. For further
** information use the contact form at https://www.qt.io/contact-us.
**
** BSD License Usage
** Alternatively, you may use this file under the terms of the BSD license
** as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of The Qt Company Ltd nor the names of its
** contributors may be used to endorse or promote products derived
** from this software without specific prior written permission.
**
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
**
** $QT_END_LICENSE$
**
****************************************************************************/
#include "squircle.h"
#include <QOpenGLShaderProgram>
#include <QtCore/QRunnable>
#include <QOpenGLBuffer>
#include "shaderClass.h"
#include "vao.h"
#include "vbo.h"
#include "ebo.h"
#include "stb_image.h"
#include <QFile>
#include "texture.h"
#include "glm/glm.hpp"
#include "glm/gtc/matrix_transform.hpp"
#include "glm/gtc/type_ptr.hpp"
#include "camera.h"
#include <QQuickRenderControl>
#include <QApplication>
#include <QSignalMapper>
#include "keyreceiver.h"
#include <QShortcut>
#include "mesh.h"
#include "model.h"
#include <vector>
#include <QString>
#include <QMessageBox>
#include <QTimer>
#include <QOpenGLContext>
#include <QQuickRenderTarget>
#include <QPen>
#include <QQuickView>
//! [7]
Squircle::Squircle(): m_t(0), m_renderer(nullptr)
{
connect(this, &QQuickItem::windowChanged, this, &Squircle::handleWindowChanged);
setFlag(QQuickItem::ItemHasContents, true);
setAcceptHoverEvents(true);
setAcceptedMouseButtons(Qt::AllButtons);
setFlag(ItemAcceptsInputMethod, true);
QCoreApplication::instance()->installEventFilter(this);
}
//! [7]
//! [8]
void Squircle::setT(qreal t)
{
if (t == m_t)
return;
m_t = t;
emit tChanged();
if (window())
window()->update();
}
//! [8]
void Squircle::init(int board_length, Colour player_colour, int difficulty) {
this->board_length = board_length;
this->player_colour = player_colour;
aiplay = new AIPlay(this, player_colour, difficulty);
}
void Squircle::changeMouseSensitivity(int val) {
if(m_renderer && m_renderer->camera) {
m_renderer->camera->sensitivity = val;
}
}
void Squircle::changeMoveSpeed(int val) {
if(m_renderer && m_renderer->camera) {
m_renderer->camera->speed = val/10.0f;
}
}
//! [1]
void Squircle::handleWindowChanged(QQuickWindow *win)
{
if (win) {
connect(win, &QQuickWindow::beforeSynchronizing, this, &Squircle::sync, Qt::DirectConnection);
connect(win, &QQuickWindow::sceneGraphInvalidated, this, &Squircle::cleanup, Qt::DirectConnection);
//! [1]
//! [3]
// Ensure we start with cleared to black. The squircle's blend mode relies on this.
win->setColor(Qt::black);
}
}
//! [3]
//! [6]
void Squircle::cleanup()
{
delete m_renderer;
m_renderer = nullptr;
delete aiplay;
}
class CleanupJob : public QRunnable
{
public:
CleanupJob(SquircleRenderer *renderer) : m_renderer(renderer) { }
void run() override { delete m_renderer; }
private:
SquircleRenderer *m_renderer;
};
void Squircle::releaseResources()
{
window()->scheduleRenderJob(new CleanupJob(m_renderer), QQuickWindow::BeforeSynchronizingStage);
m_renderer = nullptr;
}
void Squircle::set_button_colour(int button_index, Colour c) {
if(m_renderer) {
m_renderer->set_button_colour(button_index, c);
}
}
SquircleRenderer::SquircleRenderer(): m_t(0), m_program(0) {
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
model = new Model(":/models/cube_robot/robot.dae");
model_table = new Model(":/models/table/table.dae");
model_ball = new Model(":/models/sphere/sphere.dae");
model_red_blocks = new Model(":/models/hexagon3D/red_blocks.dae");
model_blue_blocks = new Model(":/models/hexagon3D/blue_blocks.dae");
model_neutral_hexagon = new Model(":/models/hexagon3D/hexagon3D_blender.dae");
model_red_hexagon = new Model(":/models/hexagon3D/hexagon3D_blender_red.dae");
model_blue_hexagon = new Model(":/models/hexagon3D/hexagon3D_blender_blue.dae");
#endif
}
AIPlay::AIPlay(Squircle* squircle, Colour player_colour, int difficulty)
{
this->squircle = squircle;
this->player_colour = player_colour;
switch(difficulty){
case 0:
mc_trials = 50;
break;
case 1:
mc_trials = 200;
break;
case 2:
mc_trials = 1000;
break;
default:
mc_trials= 50;
}
start_game();
set_move();
}
void AIPlay::handleResults(const QString &str) {
destroy_thread_manager();
int move_int = str.toInt();
QPair<int,int> move_pair = board->convert_index_to_location(move_int, board->get_length());
if(board->is_legal(move_pair.first, move_pair.second, switch_turn(player_colour))) {
board->make_move(move_pair.first, move_pair.second, switch_turn(player_colour));
set_button_colour(board->convert_location_to_index(move_pair.first, move_pair.second), switch_turn(player_colour));
turn = switch_turn(turn);
}
else {
std::cout << "AI making illegal move. Should not be here" << std::endl;
}
Colour winner = board->has_winner(false);
if(winner != Colour::EMPTY) {
if(player_colour == winner) {
QMessageBox msg_box(this);
msg_box.setInformativeText("You Win!");
msg_box.exec();
std::cout << "You Win!" << std::endl;
end_game();
}
else {
QMessageBox msg_box(this);
msg_box.setInformativeText("You Lose!");
msg_box.exec();
std::cout << "You Lose!" << std::endl;
end_game();
}
}
else {
//std::cout << *board << std::endl;
set_enable_buttons(true);
}
}
void AIPlay::set_button_colour(int button_index, Colour c) {
squircle->set_button_colour(button_index,c);
}
void AIPlay::set_enable_buttons(bool b) {
squircle->set_enable_buttons(b);
}
// Passing on the method for enabling/disabling the buttons on the board
void Squircle::set_enable_buttons(bool b) {
this->hex_buttons_enabled = b;
if(m_renderer){
m_renderer->set_enable_buttons(b);
}
}
void SquircleRenderer::set_enable_buttons(bool b) {
this->hex_buttons_enabled = b;
}
SquircleRenderer::~SquircleRenderer()
{
//delete m_program;
//delete m_window;
#ifdef Q_OS_WIN
d3d11ShaderProgram->Delete();
camera->Delete();
// Might need more deletions (meshes, textures)
#endif
//remove the rigidbodies from the dynamics world and delete them
for (int i=dynamicsWorld->getNumCollisionObjects()-1; i>=0 ;i--) {
btCollisionObject* obj = dynamicsWorld->getCollisionObjectArray()[i];
btRigidBody* body = btRigidBody::upcast(obj);
if (body && body->getMotionState()) {
delete body->getMotionState();
}
dynamicsWorld->removeCollisionObject(obj);
delete obj;
}
for(int j=0; j< collisionShapes.size(); j++) {
btCollisionShape* shape = collisionShapes[j];
collisionShapes[j] = 0;
delete shape;
}
//delete dynamics world
delete dynamicsWorld;
//delete solver
delete solver;
//delete broadphase
delete overlappingPairCache;
//delete dispatcher
delete dispatcher;
aiplay->destroy_thread_manager();
delete model;
delete model_table;
delete model_ball;
delete model_red_blocks;
delete model_blue_blocks;
delete model_blue_hexagon;
delete model_red_hexagon;
delete model_neutral_hexagon;
delete camera;
for (int i=0; i< models_neutral_hexagon.size(); i++) {
HexagonObjectPointer* pointer = models_neutral_hexagon[i];
models_neutral_hexagon[i] = 0;
if(pointer)
delete pointer;
}
for(int k=0; k< board_length*board_length; k++) {
delete models_neutral_hexagon[k];
}
}
//! [6]
//! [9]
void Squircle::sync()
{
if (!m_renderer) {
m_renderer = new SquircleRenderer();
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
connect(window(), &QQuickWindow::beforeRendering, m_renderer, &SquircleRenderer::init, Qt::DirectConnection);
connect(window(), &QQuickWindow::beforeRenderPassRecording, m_renderer, &SquircleRenderer::paint, Qt::DirectConnection);
//m_renderer->squircle = this;
#endif
#ifdef Q_OS_WIN
connect(window(), &QQuickWindow::beforeRendering, m_renderer, &SquircleRenderer::frameStart, Qt::DirectConnection);
connect(window(), &QQuickWindow::beforeRenderPassRecording, m_renderer, &SquircleRenderer::mainPassRecordingStart, Qt::DirectConnection);
#endif
m_renderer->hex_buttons_enabled = this->hex_buttons_enabled;
m_renderer->player_colour = this->player_colour;
m_renderer->aiplay = this->aiplay;
}
m_viewportSize = window()->size() * window()->devicePixelRatio();
m_renderer->mouse_viewportSize = window()->size();
m_renderer->setViewportSize(window()->size() * window()->devicePixelRatio());
m_renderer->setT(m_t);
m_renderer->setWindow(window());
m_renderer->board_length = this->board_length;
QPointF point = this->mapFromGlobal(QCursor::pos());
m_renderer->screenPosX = this->mapFromGlobal(this->position()).toPoint().x();
m_renderer->screenPosY = this->mapFromGlobal(this->position()).toPoint().y();
m_renderer->mouseX = point.x();
m_renderer->mouseY = point.y();
mouseX = point.x();
mouseY = point.y();
this->fps_title = m_renderer->fps_title;
}
//! [9]
#ifdef Q_OS_WIN
void SquircleRenderer::frameStart()
{
QSGRendererInterface *rif = m_window->rendererInterface();
// We are not prepared for anything other than running with the RHI and its D3D11 backend.
Q_ASSERT(rif->graphicsApi() == QSGRendererInterface::Direct3D11Rhi);
m_device = reinterpret_cast<ID3D11Device *>(rif->getResource(m_window, QSGRendererInterface::DeviceResource));
Q_ASSERT(m_device);
m_context = reinterpret_cast<ID3D11DeviceContext *>(rif->getResource(m_window, QSGRendererInterface::DeviceContextResource));
Q_ASSERT(m_context);
if (!m_initialized) {
D3D11Init();
}
init();
}
void SquircleRenderer::mainPassRecordingStart()
{
m_window->beginExternalCommands();
m_window->setColor(QColor(125,125,125,255));
camera->Inputs(this->screenPosX, this->screenPosY, this->mouseX, this->mouseY, this->press_key_esc, this->press_key_w, this->press_key_a, this->press_key_s, this->press_key_d, this->left_mouse_click);
camera->updateMatrix(45.0f, 0.1f, 1000.0f);
D3D11_VIEWPORT v;
v.TopLeftX = 0;
v.TopLeftY = 0;
v.Width = m_viewportSize.width();
v.Height = m_viewportSize.height();
v.MinDepth = 0;
v.MaxDepth = 1;
m_context->RSSetViewports(1, &v);
d3d11ShaderProgram->mainPass();
if(hex_buttons_enabled) {
pick_object();
}
float deltaTime = 0.0167;
float max_age = 1.0f;
// Steps through the physics simulation with deltaTime and determines which (ball) rigidbodies are past the max_age (and deletes them)s
dynamicsWorld->stepSimulation(deltaTime,1);
//std::cout << movingRigidBodies.size() << std::endl;
//int count = 0;
auto j=movingRigidBodiesAge.begin();
for(auto i=movingRigidBodies.begin(); i != movingRigidBodies.end();) {
btRigidBody* body = *i;
double age = *j;
if(age + deltaTime > max_age) {
if(body && body->getMotionState()) {
delete body->getMotionState();
}
if(body && body->getCollisionShape()) {
delete body->getCollisionShape();
}
movingRigidBodies.erase(i);
movingRigidBodiesAge.erase(j);
dynamicsWorld->removeRigidBody(body);
continue;
}
else {
*j = *j + deltaTime;
}
// Calculates the position and orientation of the physics object and applies them to the opengl object
btTransform transform;
body->getMotionState()->getWorldTransform(transform);
btVector3 position = transform.getOrigin();
btQuaternion orientation = transform.getRotation();
glm::quat ori(orientation.w(), orientation.x(), orientation.y(), orientation.z());
glm::vec3 pos(position.x(),position.y(),position.z());
glm::mat4 trans = glm::mat4(1.0f);
glm::mat4 rot = glm::mat4(1.0f);
glm::mat4 sca = glm::mat4(1.0f);
// Use translation, rotation, and scale to change the initialized matrices
trans = glm::translate(trans, pos);
rot = glm::mat4_cast(ori);
sca = glm::scale(sca, glm::vec3(1.0));
model_ball->DrawD3D11(d3d11ShaderProgram, *camera, sca*rot*trans, true);
i++;
j++;
//count++;
}
model_table->DrawD3D11(d3d11ShaderProgram, *camera);
model->DrawD3D11(d3d11ShaderProgram, *camera); // robot model
model_red_blocks->DrawD3D11(d3d11ShaderProgram, *camera); // the two red blocks beside the board
model_blue_blocks->DrawD3D11(d3d11ShaderProgram, *camera); // the two blue blocks beside the board
for(int i=0 ; i < board_length ; i++) {
for (int j=0; j< board_length; j++){
Model* hexagon_model = models_neutral_hexagon[j+i*board_length]->hexagon_model;
glm::mat4 matrices = hexagon_matrices_meshes[i*board_length+j];
hexagon_model->DrawD3D11(d3d11ShaderProgram, *camera, matrices, false);
}
}
m_window->endExternalCommands();
}
#endif
void Squircle::keyPressEvent(QKeyEvent *event) {
QQuickItem::keyPressEvent(event);
if(event->key() == Qt::Key_W) {
m_renderer->press_key_w = 1;
event->accept();
}
else if(event->key() == Qt::Key_A) {
m_renderer->press_key_a = 1;
event->accept();
}
else if(event->key() == Qt::Key_S) {
m_renderer->press_key_s = 1;
event->accept();
}
else if(event->key() == Qt::Key_D) {
m_renderer->press_key_d = 1;
event->accept();
}
else if(event->key() == Qt::Key_Escape) {
m_renderer->press_key_esc = 1;
//#if defined(Q_OS_LINUX)
//m_renderer->camera->rubber_band_horizontal->hide();
//m_renderer->camera->rubber_band_vertical->hide();
//#endif
inPlayWindow = false; // this variable indicates whether the user has gone into the play window or not (cursor becomes cross hair and is centered on the screen when inside)
event->accept();
}
}
void Squircle::keyReleaseEvent(QKeyEvent *event) {
QQuickItem::keyReleaseEvent(event);
if(event->key() == Qt::Key_W) {
m_renderer->press_key_w = -1;
event->accept();
}
else if(event->key() == Qt::Key_A) {
m_renderer->press_key_a = -1;
event->accept();
}
else if(event->key() == Qt::Key_S) {
m_renderer->press_key_s = -1;
event->accept();
}
else if(event->key() == Qt::Key_D) {
m_renderer->press_key_d = -1;
event->accept();
}
else if(event->key() == Qt::Key_Escape) {
m_renderer->press_key_esc = -1;
event->accept();
}
}
void SquircleRenderer::trigger_mouse_click_action() {
if(!winner_declared && aiplay->turn == player_colour && currently_hovering != nullptr) { // if it is the player's turn to move, perform these actions
int index = currently_hovering->index;
if(aiplay->board->is_legal(index%board_length, index/board_length, player_colour)) {
set_button_colour(index, player_colour);
prev_hex_colour = player_colour==Colour::BLUE?model_blue_hexagon: model_red_hexagon;
aiplay->board->make_move(index%board_length, index/board_length, player_colour);
Colour winner = aiplay->board->has_winner(false);
if(winner != Colour::EMPTY) {
if(player_colour == winner) {
QMessageBox msg_box(aiplay);
msg_box.setInformativeText("You Win!");
msg_box.exec();
std::cout << "winner" << std::endl;
}
else {
QMessageBox msg_box(aiplay);
msg_box.setInformativeText("You Lose!");
msg_box.exec();
std::cout << "you lost" << std::endl;
}
winner_declared = true;
aiplay->end_game();
}
else {
aiplay->turn = aiplay->switch_turn(aiplay->turn);
aiplay->computer_move();
}
}
}
else if(winner_declared && currently_hovering != nullptr) { // if winner is declared and user presses the mouse, then reset the board
for (HexagonObjectPointer* obj : models_neutral_hexagon) {
obj->hexagon_model = model_neutral_hexagon;
}
prev_hex_colour = nullptr;
winner_declared = false;
aiplay->start_game();
aiplay->set_move();
}
else if(can_throw && !winner_declared && aiplay->turn != player_colour) { // if the user is waiting for the computer, allow the user to shoot balls from the eye view
//Shoot spheres
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
btSphereShape* ballShape = new btSphereShape(glm::length(model_ball->meshes[0].vertices[0].position)); //Calculate the radius of the ball model and plugs it into the sphere shape. Model should be centered around the origin for this to work.
#elif defined(Q_OS_WIN)
btSphereShape* ballShape = new btSphereShape(glm::length(model_ball->d3d11_meshes[0].vertices[0].position)); //Calculate the radius of the ball model and plugs it into the sphere shape. Model should be centered around the origin for this to work.
#endif
btDefaultMotionState* motionstate = new btDefaultMotionState(btTransform(
btQuaternion::getIdentity(),
btVector3(camera->Position.x,camera->Position.y, camera->Position.z)
));
double initial_velocity = 50;
btRigidBody::btRigidBodyConstructionInfo rigidBodyCI(
0.5, // mass, in kg. 0 -> Static object, will never move.
motionstate,
ballShape, // collision shape of body
btVector3(0,0,0) // local inertia
);
btRigidBody *rigidBody = new btRigidBody(rigidBodyCI);
rigidBody->setLinearVelocity(btVector3(initial_velocity*camera->Orientation.x,initial_velocity*camera->Orientation.y,initial_velocity*camera->Orientation.z));
dynamicsWorld->addRigidBody(rigidBody);
movingRigidBodies.push_back(rigidBody);
movingRigidBodiesAge.push_back(0);
QTimer::singleShot(500, this, SLOT(resetsBallThrow()));
can_throw = false;
}
}
void SquircleRenderer::resetsBallThrow() {
can_throw = true;
}
// Required for detecting key presses
void Squircle::focusInEvent(QFocusEvent *event) {
forceActiveFocus();
event->accept();
}
// Captures mouse clicks and releases
bool Squircle::eventFilter(QObject *obj, QEvent *event)
{
if(event->type() == QEvent::MouseButtonPress && ((QMouseEvent*)event)->button() == Qt::LeftButton)
{
QPoint pos = QCursor::pos();
QWidget *widget = QApplication::widgetAt(pos);
bool pos_on_rubberband=false;
//if(m_renderer->camera->rubber_band_horizontal->geometry().contains(pos) || m_renderer->camera->rubber_band_vertical->geometry().contains(pos)){
// pos_on_rubberband = true;
//}
if (pos_on_rubberband || widget != NULL){
if(pos_on_rubberband || std::string(widget->metaObject()->className()).compare("QWindowContainer") == 0) {
m_renderer->left_mouse_click = 1;
m_renderer->trigger_mouse_click_action();
//#if defined(Q_OS_LINUX)
/*m_renderer->camera->rubber_band_horizontal->setGeometry(QRect(-m_renderer->screenPosX+(m_renderer->width / 2)-10, -m_renderer->screenPosY+(m_renderer->height / 2)-1, 20, 2));
if(m_renderer->camera->rubber_band_horizontal->isHidden()) {
m_renderer->camera->rubber_band_horizontal->show();
}
m_renderer->camera->rubber_band_vertical->setGeometry(-m_renderer->screenPosX+(m_renderer->width / 2)-1, -m_renderer->screenPosY+(m_renderer->height / 2)-10, 2, 20);
if(m_renderer->camera->rubber_band_vertical->isHidden()) {
m_renderer->camera->rubber_band_vertical->show();
}*/
//#endif
inPlayWindow = true;
event->accept();
return true;
}
else {
return false;
}
}
}
else if(event->type() == QEvent::MouseButtonRelease && ((QMouseEvent*)event)->button() == Qt::LeftButton) {
if(m_renderer){
QPoint pos = QCursor::pos();
bool pos_on_rubberband=false;
//if(m_renderer->camera->rubber_band_horizontal->geometry().contains(pos) || m_renderer->camera->rubber_band_vertical->geometry().contains(pos)){
// pos_on_rubberband = true;
//}
QWidget *widget = QApplication::widgetAt(pos);
if (pos_on_rubberband || widget != NULL){
if(pos_on_rubberband || std::string(widget->metaObject()->className()).compare("QWindowContainer") == 0) {
m_renderer->left_mouse_click = -1;
event->accept();
return true;
}
else {
return false;
}
}
}
}
else if(event->type() == QEvent::MouseMove) {
//if(inPlayWindow) {
//event->accept();
//return true;
//}
}
// Other event type checks here...
return false;//the signal will be delivered other filters
}
// Sets the button to be a certain colour (on the 3d board)
void SquircleRenderer::set_button_colour(int button_index, Colour c) {
Model* model_to_assign;
if(c==Colour::BLUE) {
model_to_assign = model_blue_hexagon;
}
else if(c == Colour::RED) {
model_to_assign = model_red_hexagon;
}
else {
model_to_assign = model_neutral_hexagon;
}
models_neutral_hexagon[button_index]->hexagon_model = model_to_assign;
}
unsigned int indices[] = {
0,1,2
};
#ifdef Q_OS_WIN
void SquircleRenderer::D3D11Init() {
m_initialized = true;
d3d11ShaderProgram = new D3D11Shader(":/default/D3D11_squircle.vert", ":/default/D3D11_squircle.frag", m_device, m_context);
d3d11ShaderProgram->Activate();
model = new Model(d3d11ShaderProgram,":/models/cube_robot/robot.dae");
model_table = new Model(d3d11ShaderProgram,":/models/table/table.dae");
model_ball = new Model(d3d11ShaderProgram,":/models/sphere/sphere.dae");
model_red_blocks = new Model(d3d11ShaderProgram,":/models/hexagon3D/red_blocks.dae");
model_blue_blocks = new Model(d3d11ShaderProgram,":/models/hexagon3D/blue_blocks.dae");
model_neutral_hexagon = new Model(d3d11ShaderProgram,":/models/hexagon3D/hexagon3D_blender.dae");
model_red_hexagon = new Model(d3d11ShaderProgram,":/models/hexagon3D/hexagon3D_blender_red.dae");
model_blue_hexagon = new Model(d3d11ShaderProgram,":/models/hexagon3D/hexagon3D_blender_blue.dae");
}
#endif
//! [4]
void SquircleRenderer::init()
{
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
initializeOpenGLFunctions();
//width = m_viewportSize.width();
//height = m_viewportSize.height();
#endif
//#elif defined(Q_OS_WIN)
//Not sure why I have to do this
width = mouse_viewportSize.width();
height = mouse_viewportSize.height();
if(camera == nullptr) {
camera = new Camera(width, height, glm::vec3(0.0f, 0.0f, 2.0f));
camera->Position = glm::vec3(0,15,20);
float scale_offset=0.3f;
float x_offset = -1.8f;
float z_offset = 4.5f;
//run once code
collisionConfiguration = new btDefaultCollisionConfiguration();
//use the default collision dispatcher. For parallel processing you can use a diffent
//dispatcher (see Extras/BulletMultiThreaded)
dispatcher = new btCollisionDispatcher(collisionConfiguration);
//btDbvtBroadphase is a good general purpose broadphase. You can also try out
//btAxis3Sweep.
overlappingPairCache = new btDbvtBroadphase();
//the default constraint solver. For parallel processing you can use a different solver
//(see Extras/BulletMultiThreaded)
solver = new btSequentialImpulseConstraintSolver;
dynamicsWorld = new btDiscreteDynamicsWorld(dispatcher ,overlappingPairCache ,solver ,collisionConfiguration);
dynamicsWorld ->setGravity(btVector3(0,-9.8,0));
//Creates the ground (physics)
btCollisionShape* groundShape = new btBoxShape(btVector3(btScalar(50.), btScalar(50.), btScalar(50.)));
// btCollisionShape* groundShape = new btStaticPlaneShape(btVector3(0,1,0),50);
collisionShapes.push_back(groundShape);
btTransform groundTransform;
groundTransform.setIdentity();
groundTransform.setOrigin(btVector3(0, -50, 0));
{
btScalar mass(0.);
//rigidbody is dynamic if and only if mass is non zero, otherwise static
bool isDynamic = (mass != 0.f);
btVector3 localInertia(0, 0, 0);
if (isDynamic)
groundShape->calculateLocalInertia(mass, localInertia);
//using motionstate is recommended, it provides interpolation capabilities, and only synchronizes 'active' objects
btDefaultMotionState* myMotionState = new btDefaultMotionState(groundTransform);
btRigidBody::btRigidBodyConstructionInfo rbInfo(mass, myMotionState, groundShape, localInertia);
btRigidBody* body = new btRigidBody(rbInfo);
body->setFriction(1);
//add the body to the dynamics world
dynamicsWorld->addRigidBody(body, 10, 1);
//delete groundShape;
//delete myMotionState;
}
//Creates the board (physics and model instantiation)
for(int k=0; k< board_length*board_length; k++) {
int i=k/board_length;
int j=k%board_length;
models_neutral_hexagon.push_back(new HexagonObjectPointer(model_neutral_hexagon,k));
double position_x = x_offset + 0.85f*j*scale_offset + 0.425*i*scale_offset;
double position_y = 5.9f;
double position_z = z_offset+0.8*scale_offset*i;
glm::vec3 translation = glm::vec3(position_x, position_y, position_z);
glm::quat rotation = glm::quat(1.0f, 0.0f, 0.0f, 0.0f);
glm::vec3 scale = glm::vec3(scale_offset);
glm::mat4 trans = glm::mat4(1.0f);
glm::mat4 rot = glm::mat4(1.0f);
glm::mat4 sca = glm::mat4(1.0f);
// Use translation, rotation, and scale to change the initialized matrices
trans = glm::translate(trans, translation);
rot = glm::mat4_cast(rotation);
sca = glm::scale(sca, scale);
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
hexagon_matrices_meshes.push_back(trans * rot * sca);
#elif defined(Q_OS_WIN)
hexagon_matrices_meshes.push_back(trans * rot * sca);
#endif
//Translate position by internal matrix for mesh
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
glm::vec4 new_tmp_trans = model_neutral_hexagon->matricesMeshes[0] * glm::vec4(position_x, position_y, position_z, 1.0);
glm::vec3 new_trans = glm::vec3(new_tmp_trans.x, new_tmp_trans.y, new_tmp_trans.z);
#elif defined(Q_OS_WIN)
glm::vec4 new_tmp_trans = model_neutral_hexagon->matricesMeshes[0] * glm::vec4(position_x, position_y, position_z, 1.0);
glm::vec3 new_trans = glm::vec3(new_tmp_trans.x, new_tmp_trans.y, new_tmp_trans.z);
#endif
//for(int j=0; j< 5; j++) {
btConvexHullShape* convexHullCollisionShape = new btConvexHullShape();
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
for(int m=0; m < model_neutral_hexagon->meshes[0].vertices.size()-1;m++){
glm::vec3 position_convex_hull = model_neutral_hexagon->meshes[0].vertices[m].position;
#elif defined(Q_OS_WIN)
for(int m=0; m < model_neutral_hexagon->d3d11_meshes[0].vertices.size()-1;m++){
glm::vec3 position_convex_hull = model_neutral_hexagon->d3d11_meshes[0].vertices[m].position;
#endif
convexHullCollisionShape->addPoint(btVector3(position_convex_hull.x * scale_offset,position_convex_hull.y* scale_offset, position_convex_hull.z* scale_offset), false);
//std::cout << model_neutral_hexagon->meshes[0].vertices[m].position.x<< " " << model_neutral_hexagon->meshes[0].vertices[m].position.y << " " << model_neutral_hexagon->meshes[0].vertices[m].position.z << std::endl;
}
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
//Add last point and recalculate AABB
int lastIndex = model_neutral_hexagon->meshes[0].vertices.size()-1;
glm::vec3 last_position_convex_hull = model_neutral_hexagon->meshes[0].vertices[lastIndex].position;
#elif defined(Q_OS_WIN)
int lastIndex = model_neutral_hexagon->d3d11_meshes[0].vertices.size()-1;
glm::vec3 last_position_convex_hull = model_neutral_hexagon->d3d11_meshes[0].vertices[lastIndex].position;
#endif
convexHullCollisionShape->addPoint(btVector3(last_position_convex_hull.x* scale_offset,last_position_convex_hull.y* scale_offset, last_position_convex_hull.z* scale_offset), true);
btDefaultMotionState* motionstate = new btDefaultMotionState(btTransform(
btQuaternion::getIdentity(),
btVector3(new_tmp_trans.x, new_tmp_trans.y, new_tmp_trans.z)
));
btRigidBody::btRigidBodyConstructionInfo rigidBodyCI(
0, // mass, in kg. 0 -> Static object, will never move.
motionstate,
convexHullCollisionShape, // collision shape of body
btVector3(0,0,0) // local inertia
);
btRigidBody *rigidBody = new btRigidBody(rigidBodyCI);
rigidBody->setGravity(btVector3(0,-9.8,0));
dynamicsWorld->addRigidBody(rigidBody);
collisionShapes.push_back(convexHullCollisionShape);
btTransform worldTransform;
rigidBody->getMotionState()->getWorldTransform(worldTransform);
// Small hack : store the mesh's index "i" in Bullet's User Pointer.
// Will be used to know which object is picked.
// A real program would probably pass a "MyGameObjectPointer" instead.
rigidBody->setUserPointer((void*) models_neutral_hexagon[k]);
}