author | Wuzzy <Wuzzy2@mail.ru> |
Wed, 16 Jan 2019 06:56:38 +0100 | |
changeset 14629 | bca306a47060 |
parent 14393 | b6824a53d4b1 |
child 14875 | aed75d439027 |
permissions | -rw-r--r-- |
12854 | 1 |
import QtQuick 2.7 |
14164 | 2 |
import Hedgewars.Engine 1.0 |
12854 | 3 |
|
4 |
Page1Form { |
|
14392
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
5 |
property var hwEngine |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
6 |
|
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
7 |
Component { |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
8 |
id: hwEngineComponent |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
9 |
|
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
10 |
HWEngine { |
14393
b6824a53d4b1
Allow to instantiate HWEngine with different library binaries
unC0Rr
parents:
14392
diff
changeset
|
11 |
engineLibrary: "./libhedgewars_engine.so" |
14392
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
12 |
previewAcceptor: PreviewAcceptor |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
13 |
onPreviewImageChanged: previewImage.source = "image://preview/image" |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
14 |
onPreviewIsRendering: previewImage.source = "qrc:/res/iconTime.png" |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
15 |
} |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
16 |
} |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
17 |
|
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
18 |
Component.onCompleted: { |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
19 |
hwEngine = hwEngineComponent.createObject() |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
20 |
} |
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
21 |
|
14164 | 22 |
tickButton.onClicked: { |
14315
21be7838a127
Add advance_simulation() function to engine lib, some WIP on frontend
unc0rr
parents:
14175
diff
changeset
|
23 |
gameView.tick(100) |
14164 | 24 |
} |
25 |
gameButton.onClicked: { |
|
14392
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
26 |
var engineInstance = hwEngine.runQuickGame() |
14319 | 27 |
gameView.engineInstance = engineInstance |
14164 | 28 |
} |
12854 | 29 |
button1.onClicked: { |
14392
90bd2c331703
Add possibility to instantiate HWEngine objects from QML, reorganize work with preview
unC0Rr
parents:
14319
diff
changeset
|
30 |
hwEngine.getPreview() |
12854 | 31 |
} |
32 |
} |