author | Wuzzy <Wuzzy2@mail.ru> |
Mon, 26 Nov 2018 20:40:25 +0100 | |
changeset 14302 | 8d2983ff939b |
parent 14298 | 00b56ec8b7df |
child 14372 | b6824a53d4b1 |
permissions | -rw-r--r-- |
14154
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
1 |
#include "engine_instance.h" |
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
2 |
|
14298 | 3 |
#include <QDebug> |
4 |
#include <QOpenGLFunctions> |
|
5 |
#include <QSurface> |
|
6 |
||
7 |
static QOpenGLContext* currentOpenglContext = nullptr; |
|
8 |
extern "C" void (*getProcAddress(const char* fn))() { |
|
9 |
if (!currentOpenglContext) |
|
10 |
return nullptr; |
|
11 |
else |
|
12 |
return currentOpenglContext->getProcAddress(fn); |
|
13 |
} |
|
14294
21be7838a127
Add advance_simulation() function to engine lib, some WIP on frontend
unc0rr
parents:
14290
diff
changeset
|
14 |
|
14290
92e5682810d4
Prepare to have possibility to pass opengl context to engine
unc0rr
parents:
14271
diff
changeset
|
15 |
EngineInstance::EngineInstance(QObject* parent) |
14154
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
16 |
: QObject(parent), m_instance(Engine::start_engine()) {} |
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
17 |
|
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
18 |
EngineInstance::~EngineInstance() { Engine::cleanup(m_instance); } |
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
19 |
|
14290
92e5682810d4
Prepare to have possibility to pass opengl context to engine
unc0rr
parents:
14271
diff
changeset
|
20 |
void EngineInstance::sendConfig(const GameConfig& config) { |
14271
1aac8a62be6f
Implement send_ipc and read_ipc in engine lib, send_ipc in frontend
unC0Rr
parents:
14154
diff
changeset
|
21 |
for (auto b : config.config()) { |
14290
92e5682810d4
Prepare to have possibility to pass opengl context to engine
unc0rr
parents:
14271
diff
changeset
|
22 |
Engine::send_ipc(m_instance, reinterpret_cast<uint8_t*>(b.data()), |
14271
1aac8a62be6f
Implement send_ipc and read_ipc in engine lib, send_ipc in frontend
unC0Rr
parents:
14154
diff
changeset
|
23 |
static_cast<size_t>(b.size())); |
1aac8a62be6f
Implement send_ipc and read_ipc in engine lib, send_ipc in frontend
unC0Rr
parents:
14154
diff
changeset
|
24 |
} |
1aac8a62be6f
Implement send_ipc and read_ipc in engine lib, send_ipc in frontend
unC0Rr
parents:
14154
diff
changeset
|
25 |
} |
1aac8a62be6f
Implement send_ipc and read_ipc in engine lib, send_ipc in frontend
unC0Rr
parents:
14154
diff
changeset
|
26 |
|
14298 | 27 |
void EngineInstance::advance(quint32 ticks) { |
28 |
Engine::advance_simulation(m_instance, ticks); |
|
29 |
} |
|
14290
92e5682810d4
Prepare to have possibility to pass opengl context to engine
unc0rr
parents:
14271
diff
changeset
|
30 |
|
14298 | 31 |
void EngineInstance::renderFrame() { Engine::render_frame(m_instance); } |
14290
92e5682810d4
Prepare to have possibility to pass opengl context to engine
unc0rr
parents:
14271
diff
changeset
|
32 |
|
14294
21be7838a127
Add advance_simulation() function to engine lib, some WIP on frontend
unc0rr
parents:
14290
diff
changeset
|
33 |
void EngineInstance::setOpenGLContext(QOpenGLContext* context) { |
14298 | 34 |
currentOpenglContext = context; |
35 |
||
36 |
auto size = context->surface()->size(); |
|
37 |
Engine::setup_current_gl_context( |
|
38 |
m_instance, static_cast<quint16>(size.width()), |
|
39 |
static_cast<quint16>(size.height()), &getProcAddress); |
|
14294
21be7838a127
Add advance_simulation() function to engine lib, some WIP on frontend
unc0rr
parents:
14290
diff
changeset
|
40 |
} |
14290
92e5682810d4
Prepare to have possibility to pass opengl context to engine
unc0rr
parents:
14271
diff
changeset
|
41 |
|
14154
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
42 |
Engine::PreviewInfo EngineInstance::generatePreview() { |
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
43 |
Engine::PreviewInfo pinfo; |
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
44 |
|
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
45 |
Engine::generate_preview(m_instance, &pinfo); |
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
46 |
|
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
47 |
return pinfo; |
8354b390f1a2
Some refactoring of qmlfrontend. It now shows land preview generated by hedgewars-engine
unC0Rr
parents:
diff
changeset
|
48 |
} |