-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboardview3d.cpp
75 lines (52 loc) · 1.8 KB
/
boardview3d.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
#include "boardview3d.h"
#include "ui_boardview3d.h"
#include <QtQuick>
#include "keyreceiver.h"
#include "squircle.h"
#include "customdialog.h"
#include <QtQuick/QQuickView>
BoardView3D::BoardView3D(QMainWindow* main_window, QWidget *parent) :
QWidget(parent),
ui(new Ui::BoardView3D),
main_window(main_window)
{
ui->setupUi(this);
}
// Sets the Graphics API according to platform, then creates a QQuickView object that is the 3D mode of the game
void BoardView3D::init(int board_length, int colour, int difficulty) {
qmlRegisterType<Squircle>("OpenGLUnderQML", 1, 0, "Squircle");
#if defined(Q_OS_MAC) || defined(Q_OS_LINUX)
QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGLRhi);
#elif defined(Q_OS_WIN)
QQuickWindow::setGraphicsApi(QSGRendererInterface::Direct3D11Rhi);
#endif
QQuickView* view = new QQuickView();
//base = new ContainerWidget();
QWidget* container = QWidget::createWindowContainer(view, this);
view->setResizeMode(QQuickView::SizeRootObjectToView);
view->setSource(QUrl("qrc:///scenegraph/openglunderqml/main.qml"));
squircle = view->rootObject()->findChild<Squircle *>("squircle");
squircle->init(board_length, colour==0?Colour::BLUE:Colour::RED, difficulty);
ui->verticalLayout->addWidget(container);
}
BoardView3D::~BoardView3D()
{
delete ui;
delete squircle;
//delete crosshair;
//delete base;
}
// When the '2D Mode' button is clicked, it hides current window and goes back to the main window.
void BoardView3D::on_pushButton_clicked()
{
main_window->setVisible(true);
this->hide();
}
void BoardView3D::on_mouseSensitivitySlider_valueChanged(int value)
{
squircle->changeMouseSensitivity(value);
}
void BoardView3D::on_moveSpeedSlider_valueChanged(int value)
{
squircle->changeMoveSpeed(value);
}