aboutsummaryrefslogtreecommitdiffstats
path: root/examples/bluetooth/heartrate_game
diff options
context:
space:
mode:
Diffstat (limited to 'examples/bluetooth/heartrate_game')
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/App.qml99
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/BluetoothAlarmDialog.qml (renamed from examples/bluetooth/heartrate_game/qml/BluetoothAlarmDialog.qml)7
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/BottomLine.qml (renamed from examples/bluetooth/heartrate_game/qml/BottomLine.qml)0
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/Connect.qml (renamed from examples/bluetooth/heartrate_game/qml/Connect.qml)68
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/GameButton.qml (renamed from examples/bluetooth/heartrate_game/qml/GameButton.qml)12
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/GamePage.qml (renamed from examples/bluetooth/heartrate_game/qml/GamePage.qml)18
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/GameSettings.qml (renamed from examples/bluetooth/heartrate_game/qml/GameSettings.qml)11
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/Main.qml71
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/Measure.qml (renamed from examples/bluetooth/heartrate_game/qml/Measure.qml)93
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/SplashScreen.qml (renamed from examples/bluetooth/heartrate_game/qml/SplashScreen.qml)19
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/Stats.qml (renamed from examples/bluetooth/heartrate_game/qml/Stats.qml)17
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/StatsLabel.qml (renamed from examples/bluetooth/heartrate_game/qml/StatsLabel.qml)1
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/TitleBar.qml (renamed from examples/bluetooth/heartrate_game/qml/TitleBar.qml)32
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/images/bt_off_to_on.png (renamed from examples/bluetooth/heartrate_game/qml/images/bt_off_to_on.png)bin6143 -> 6143 bytes
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/images/heart.png (renamed from examples/bluetooth/heartrate_game/qml/images/heart.png)bin2664 -> 2664 bytes
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/images/logo.png (renamed from examples/bluetooth/heartrate_game/qml/images/logo.png)bin31915 -> 31915 bytes
-rw-r--r--examples/bluetooth/heartrate_game/HeartRateGame/qmldir14
-rw-r--r--examples/bluetooth/heartrate_game/connectionhandler.py38
-rw-r--r--examples/bluetooth/heartrate_game/devicefinder.py31
-rw-r--r--examples/bluetooth/heartrate_game/devicehandler.py46
-rw-r--r--examples/bluetooth/heartrate_game/deviceinfo.py4
-rw-r--r--examples/bluetooth/heartrate_game/doc/heartrate_game.rst2
-rw-r--r--examples/bluetooth/heartrate_game/heartrate_game.pyproject27
-rw-r--r--examples/bluetooth/heartrate_game/heartrate_global.py28
-rw-r--r--examples/bluetooth/heartrate_game/main.py16
-rw-r--r--examples/bluetooth/heartrate_game/qml/App.qml83
-rw-r--r--examples/bluetooth/heartrate_game/qml/main.qml63
-rw-r--r--examples/bluetooth/heartrate_game/qml/qmldir1
28 files changed, 463 insertions, 338 deletions
diff --git a/examples/bluetooth/heartrate_game/HeartRateGame/App.qml b/examples/bluetooth/heartrate_game/HeartRateGame/App.qml
new file mode 100644
index 000000000..db6aa7145
--- /dev/null
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/App.qml
@@ -0,0 +1,99 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+import QtQuick
+import QtQuick.Layouts
+import HeartRateGame
+
+Item {
+ id: app
+
+ required property ConnectionHandler connectionHandler
+ required property DeviceFinder deviceFinder
+ required property DeviceHandler deviceHandler
+
+ anchors.fill: parent
+ opacity: 0.0
+
+ Behavior on opacity {
+ NumberAnimation {
+ duration: 500
+ }
+ }
+
+ property int __currentIndex: 0
+
+ TitleBar {
+ id: titleBar
+ anchors.top: parent.top
+ anchors.left: parent.left
+ anchors.right: parent.right
+ currentIndex: app.__currentIndex
+
+ onTitleClicked: (index) => {
+ if (index < app.__currentIndex)
+ app.__currentIndex = index
+ }
+ }
+
+ StackLayout {
+ id: pageStack
+ anchors.left: parent.left
+ anchors.right: parent.right
+ anchors.top: titleBar.bottom
+ anchors.bottom: parent.bottom
+ currentIndex: app.__currentIndex
+
+ Connect {
+ connectionHandler: app.connectionHandler
+ deviceFinder: app.deviceFinder
+ deviceHandler: app.deviceHandler
+
+ onShowMeasurePage: app.__currentIndex = 1
+ }
+ Measure {
+ id: measurePage
+ deviceHandler: app.deviceHandler
+
+ onShowStatsPage: app.__currentIndex = 2
+ }
+ Stats {
+ deviceHandler: app.deviceHandler
+ }
+
+ onCurrentIndexChanged: {
+ if (currentIndex === 0)
+ measurePage.close()
+ }
+ }
+
+ BluetoothAlarmDialog {
+ id: btAlarmDialog
+ anchors.fill: parent
+ visible: !app.connectionHandler.alive || permissionError
+ permissionError: !app.connectionHandler.hasPermission
+ }
+
+ Keys.onReleased: (event) => {
+ switch (event.key) {
+ case Qt.Key_Escape:
+ case Qt.Key_Back:
+ {
+ if (app.__currentIndex > 0) {
+ app.__currentIndex = app.__currentIndex - 1
+ event.accepted = true
+ } else {
+ Qt.quit()
+ }
+ break
+ }
+ default:
+ break
+ }
+ }
+
+ Component.onCompleted: {
+ forceActiveFocus()
+ app.opacity = 1.0
+ }
+}
diff --git a/examples/bluetooth/heartrate_game/qml/BluetoothAlarmDialog.qml b/examples/bluetooth/heartrate_game/HeartRateGame/BluetoothAlarmDialog.qml
index 0be61e4f8..3687b1331 100644
--- a/examples/bluetooth/heartrate_game/qml/BluetoothAlarmDialog.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/BluetoothAlarmDialog.qml
@@ -5,6 +5,9 @@ import QtQuick
Item {
id: root
+
+ property bool permissionError: false
+
anchors.fill: parent
Rectangle {
@@ -51,7 +54,9 @@ Item {
wrapMode: Text.WordWrap
font.pixelSize: GameSettings.mediumFontSize
color: GameSettings.textColor
- text: qsTr("This application cannot be used without Bluetooth. Please switch Bluetooth ON to continue.")
+ text: root.permissionError
+ ? qsTr("Bluetooth permissions are not granted. Please grant the permissions in the system settings.")
+ : qsTr("This application cannot be used without Bluetooth. Please switch Bluetooth ON to continue.")
}
GameButton {
diff --git a/examples/bluetooth/heartrate_game/qml/BottomLine.qml b/examples/bluetooth/heartrate_game/HeartRateGame/BottomLine.qml
index caebc307e..caebc307e 100644
--- a/examples/bluetooth/heartrate_game/qml/BottomLine.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/BottomLine.qml
diff --git a/examples/bluetooth/heartrate_game/qml/Connect.qml b/examples/bluetooth/heartrate_game/HeartRateGame/Connect.qml
index d9ebbdc51..ca8ef2923 100644
--- a/examples/bluetooth/heartrate_game/qml/Connect.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/Connect.qml
@@ -1,10 +1,18 @@
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+pragma ComponentBehavior: Bound
import QtQuick
-import Shared
+import HeartRateGame
GamePage {
+ id: connectPage
+
+ required property ConnectionHandler connectionHandler
+ required property DeviceFinder deviceFinder
+ required property DeviceHandler deviceHandler
+
+ signal showMeasurePage
errorMessage: deviceFinder.error
infoMessage: deviceFinder.info
@@ -12,17 +20,16 @@ GamePage {
Rectangle {
id: viewContainer
anchors.top: parent.top
- anchors.bottom:
- // only BlueZ platform has address type selection
- connectionHandler.requiresAddressType ? addressTypeButton.top : searchButton.top
- anchors.topMargin: GameSettings.fieldMargin + messageHeight
+ // only BlueZ platform has address type selection
+ anchors.bottom: connectPage.connectionHandler.requiresAddressType ? addressTypeButton.top
+ : searchButton.top
+ anchors.topMargin: GameSettings.fieldMargin + connectPage.messageHeight
anchors.bottomMargin: GameSettings.fieldMargin
anchors.horizontalCenter: parent.horizontalCenter
- width: parent.width - GameSettings.fieldMargin*2
+ width: parent.width - GameSettings.fieldMargin * 2
color: GameSettings.viewColor
radius: GameSettings.buttonRadius
-
Text {
id: title
width: parent.width
@@ -34,40 +41,43 @@ GamePage {
text: qsTr("FOUND DEVICES")
BottomLine {
- height: 1;
+ height: 1
width: parent.width
color: "#898989"
}
}
-
ListView {
id: devices
anchors.left: parent.left
anchors.right: parent.right
anchors.bottom: parent.bottom
anchors.top: title.bottom
- model: deviceFinder.devices
+ model: connectPage.deviceFinder.devices
clip: true
delegate: Rectangle {
id: box
- height:GameSettings.fieldHeight * 1.2
+
+ required property int index
+ required property var modelData
+
+ height: GameSettings.fieldHeight * 1.2
width: devices.width
color: index % 2 === 0 ? GameSettings.delegate1Color : GameSettings.delegate2Color
MouseArea {
- anchors.fill: parent
+ anchors.fill: parent
onClicked: {
- deviceFinder.connectToService(modelData.deviceAddress);
- app.showPage("Measure.qml")
+ connectPage.deviceFinder.connectToService(box.modelData.deviceAddress)
+ connectPage.showMeasurePage()
}
}
Text {
id: device
font.pixelSize: GameSettings.smallFontSize
- text: modelData.deviceName
+ text: box.modelData.deviceName
anchors.top: parent.top
anchors.topMargin: parent.height * 0.1
anchors.leftMargin: parent.height * 0.1
@@ -78,7 +88,7 @@ GamePage {
Text {
id: deviceAddress
font.pixelSize: GameSettings.smallFontSize
- text: modelData.deviceAddress
+ text: box.modelData.deviceAddress
anchors.bottom: parent.bottom
anchors.bottomMargin: parent.height * 0.1
anchors.rightMargin: parent.height * 0.1
@@ -93,23 +103,31 @@ GamePage {
id: addressTypeButton
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: searchButton.top
- anchors.bottomMargin: GameSettings.fieldMargin*0.5
+ anchors.bottomMargin: GameSettings.fieldMargin * 0.5
width: viewContainer.width
height: GameSettings.fieldHeight
- visible: connectionHandler.requiresAddressType // only required on BlueZ
+ visible: connectPage.connectionHandler.requiresAddressType // only required on BlueZ
state: "public"
- onClicked: state == "public" ? state = "random" : state = "public"
+ onClicked: state === "public" ? state = "random" : state = "public"
states: [
State {
name: "public"
- PropertyChanges { target: addressTypeText; text: qsTr("Public Address") }
- PropertyChanges { target: deviceHandler; addressType: AddressType.PUBLIC_ADDRESS }
+ PropertyChanges {
+ addressTypeText.text: qsTr("Public Address")
+ }
+ PropertyChanges {
+ connectPage.deviceHandler.addressType: DeviceHandler.PUBLIC_ADDRESS
+ }
},
State {
name: "random"
- PropertyChanges { target: addressTypeText; text: qsTr("Random Address") }
- PropertyChanges { target: deviceHandler; addressType: AddressType.RANDOM_ADDRESS }
+ PropertyChanges {
+ addressTypeText.text: qsTr("Random Address")
+ }
+ PropertyChanges {
+ connectPage.deviceHandler.addressType: DeviceHandler.RANDOM_ADDRESS
+ }
}
]
@@ -128,8 +146,8 @@ GamePage {
anchors.bottomMargin: GameSettings.fieldMargin
width: viewContainer.width
height: GameSettings.fieldHeight
- enabled: !deviceFinder.scanning
- onClicked: deviceFinder.startSearch()
+ enabled: !connectPage.deviceFinder.scanning
+ onClicked: connectPage.deviceFinder.startSearch()
Text {
anchors.centerIn: parent
diff --git a/examples/bluetooth/heartrate_game/qml/GameButton.qml b/examples/bluetooth/heartrate_game/HeartRateGame/GameButton.qml
index 3ce9d66fd..8e8760102 100644
--- a/examples/bluetooth/heartrate_game/qml/GameButton.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/GameButton.qml
@@ -2,7 +2,6 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
-import "."
Rectangle {
id: button
@@ -14,10 +13,9 @@ Rectangle {
property color pressedColor: GameSettings.buttonPressedColor
property color disabledColor: GameSettings.disabledButtonColor
- signal clicked()
+ signal clicked
- function checkColor()
- {
+ function checkColor() {
if (!button.enabled) {
button.color = disabledColor
} else {
@@ -31,10 +29,10 @@ Rectangle {
MouseArea {
id: mouseArea
anchors.fill: parent
- onPressed: checkColor()
- onReleased: checkColor()
+ onPressed: button.checkColor()
+ onReleased: button.checkColor()
onClicked: {
- checkColor()
+ button.checkColor()
button.clicked()
}
}
diff --git a/examples/bluetooth/heartrate_game/qml/GamePage.qml b/examples/bluetooth/heartrate_game/HeartRateGame/GamePage.qml
index 25a5bb3d1..249f94186 100644
--- a/examples/bluetooth/heartrate_game/qml/GamePage.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/GamePage.qml
@@ -2,10 +2,9 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
-import "."
Item {
- anchors.fill: parent
+ id: page
property string errorMessage: ""
property string infoMessage: ""
@@ -13,23 +12,14 @@ Item {
property bool hasError: errorMessage != ""
property bool hasInfo: infoMessage != ""
- function init()
- {
- }
-
- function close()
- {
- app.prevPage()
- }
-
Rectangle {
id: msg
anchors.top: parent.top
anchors.left: parent.left
anchors.right: parent.right
height: GameSettings.fieldHeight
- color: hasError ? GameSettings.errorColor : GameSettings.infoColor
- visible: hasError || hasInfo
+ color: page.hasError ? GameSettings.errorColor : GameSettings.infoColor
+ visible: page.hasError || page.hasInfo
Text {
id: error
@@ -40,7 +30,7 @@ Item {
font.pixelSize: GameSettings.smallFontSize
fontSizeMode: Text.Fit
color: GameSettings.textColor
- text: hasError ? errorMessage : infoMessage
+ text: page.hasError ? page.errorMessage : page.infoMessage
}
}
}
diff --git a/examples/bluetooth/heartrate_game/qml/GameSettings.qml b/examples/bluetooth/heartrate_game/HeartRateGame/GameSettings.qml
index f265b73c3..0fe854609 100644
--- a/examples/bluetooth/heartrate_game/qml/GameSettings.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/GameSettings.qml
@@ -41,14 +41,11 @@ Item {
property real buttonRadius: buttonHeight * 0.1
// Some help functions
- function widthForHeight(h, ss)
- {
- return h/ss.height * ss.width;
+ function widthForHeight(h, ss) {
+ return h / ss.height * ss.width
}
- function heightForWidth(w, ss)
- {
- return w/ss.width * ss.height;
+ function heightForWidth(w, ss) {
+ return w / ss.width * ss.height
}
-
}
diff --git a/examples/bluetooth/heartrate_game/HeartRateGame/Main.qml b/examples/bluetooth/heartrate_game/HeartRateGame/Main.qml
new file mode 100644
index 000000000..e26f9b004
--- /dev/null
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/Main.qml
@@ -0,0 +1,71 @@
+// Copyright (C) 2022 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+
+pragma ComponentBehavior: Bound
+import QtQuick
+import QtQuick.Window
+import HeartRateGame
+
+Window {
+ id: wroot
+ visible: true
+ width: 720 * .7
+ height: 1240 * .7
+ title: qsTr("HeartRateGame")
+ color: GameSettings.backgroundColor
+
+ required property ConnectionHandler connectionHandler
+ required property DeviceFinder deviceFinder
+ required property DeviceHandler deviceHandler
+
+ Component.onCompleted: {
+ GameSettings.wWidth = Qt.binding(function () {
+ return width
+ })
+ GameSettings.wHeight = Qt.binding(function () {
+ return height
+ })
+ }
+
+ Loader {
+ id: splashLoader
+ anchors.fill: parent
+ asynchronous: false
+ visible: true
+
+ sourceComponent: SplashScreen {
+ appIsReady: appLoader.status === Loader.Ready
+ onReadyChanged: {
+ if (ready) {
+ appLoader.visible = true
+ splashLoader.visible = false
+ splashLoader.active = false
+ }
+ }
+ }
+
+ onStatusChanged: {
+ if (status === Loader.Ready)
+ appLoader.active = true
+ }
+ }
+
+ Loader {
+ id: appLoader
+ anchors.fill: parent
+ active: false
+ asynchronous: true
+ visible: false
+
+ sourceComponent: App {
+ connectionHandler: wroot.connectionHandler
+ deviceFinder: wroot.deviceFinder
+ deviceHandler: wroot.deviceHandler
+ }
+
+ onStatusChanged: {
+ if (status === Loader.Error)
+ Qt.quit()
+ }
+ }
+}
diff --git a/examples/bluetooth/heartrate_game/qml/Measure.qml b/examples/bluetooth/heartrate_game/HeartRateGame/Measure.qml
index c434d5114..48e84e762 100644
--- a/examples/bluetooth/heartrate_game/qml/Measure.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/Measure.qml
@@ -2,49 +2,49 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
+import HeartRateGame
GamePage {
id: measurePage
+ required property DeviceHandler deviceHandler
+
errorMessage: deviceHandler.error
infoMessage: deviceHandler.info
- property real __timeCounter: 0;
+ property real __timeCounter: 0
property real __maxTimeCount: 60
property string relaxText: qsTr("Relax!\nWhen you are ready, press Start. You have %1s time to increase heartrate so much as possible.\nGood luck!").arg(__maxTimeCount)
- function close()
- {
- deviceHandler.stopMeasurement();
- deviceHandler.disconnectService();
- app.prevPage();
+ signal showStatsPage
+
+ function close() {
+ deviceHandler.stopMeasurement()
+ deviceHandler.disconnectService()
}
- function start()
- {
+ function start() {
if (!deviceHandler.measuring) {
- __timeCounter = 0;
+ __timeCounter = 0
deviceHandler.startMeasurement()
}
}
- function stop()
- {
- if (deviceHandler.measuring) {
+ function stop() {
+ if (deviceHandler.measuring)
deviceHandler.stopMeasurement()
- }
- app.showPage("Stats.qml")
+ measurePage.showStatsPage()
}
Timer {
id: measureTimer
interval: 1000
- running: deviceHandler.measuring
+ running: measurePage.deviceHandler.measuring
repeat: true
onTriggered: {
- __timeCounter++;
- if (__timeCounter >= __maxTimeCount)
+ measurePage.__timeCounter++
+ if (measurePage.__timeCounter >= measurePage.__maxTimeCount)
measurePage.stop()
}
}
@@ -56,22 +56,23 @@ GamePage {
Rectangle {
id: circle
anchors.horizontalCenter: parent.horizontalCenter
- width: Math.min(measurePage.width, measurePage.height-GameSettings.fieldHeight*4) - 2*GameSettings.fieldMargin
+ width: Math.min(measurePage.width, measurePage.height - GameSettings.fieldHeight * 4)
+ - 2 * GameSettings.fieldMargin
height: width
- radius: width*0.5
+ radius: width * 0.5
color: GameSettings.viewColor
Text {
id: hintText
anchors.centerIn: parent
- anchors.verticalCenterOffset: -parent.height*0.1
+ anchors.verticalCenterOffset: -parent.height * 0.1
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
width: parent.width * 0.8
height: parent.height * 0.6
wrapMode: Text.WordWrap
text: measurePage.relaxText
- visible: !deviceHandler.measuring
+ visible: !measurePage.deviceHandler.measuring
color: GameSettings.textColor
fontSizeMode: Text.Fit
minimumPixelSize: 10
@@ -81,33 +82,33 @@ GamePage {
Text {
id: text
anchors.centerIn: parent
- anchors.verticalCenterOffset: -parent.height*0.15
+ anchors.verticalCenterOffset: -parent.height * 0.15
font.pixelSize: parent.width * 0.45
- text: deviceHandler.hr
- visible: deviceHandler.measuring
+ text: measurePage.deviceHandler.hr
+ visible: measurePage.deviceHandler.measuring
color: GameSettings.textColor
}
Item {
id: minMaxContainer
anchors.horizontalCenter: parent.horizontalCenter
- width: parent.width*0.7
+ width: parent.width * 0.7
height: parent.height * 0.15
anchors.bottom: parent.bottom
- anchors.bottomMargin: parent.height*0.16
- visible: deviceHandler.measuring
+ anchors.bottomMargin: parent.height * 0.16
+ visible: measurePage.deviceHandler.measuring
Text {
anchors.left: parent.left
anchors.verticalCenter: parent.verticalCenter
- text: deviceHandler.minHR
+ text: measurePage.deviceHandler.minHR
color: GameSettings.textColor
font.pixelSize: GameSettings.hugeFontSize
Text {
anchors.left: parent.left
anchors.bottom: parent.top
- font.pixelSize: parent.font.pixelSize*0.8
+ font.pixelSize: parent.font.pixelSize * 0.8
color: parent.color
text: "MIN"
}
@@ -116,14 +117,14 @@ GamePage {
Text {
anchors.right: parent.right
anchors.verticalCenter: parent.verticalCenter
- text: deviceHandler.maxHR
+ text: measurePage.deviceHandler.maxHR
color: GameSettings.textColor
font.pixelSize: GameSettings.hugeFontSize
Text {
anchors.right: parent.right
anchors.bottom: parent.top
- font.pixelSize: parent.font.pixelSize*0.8
+ font.pixelSize: parent.font.pixelSize * 0.8
color: parent.color
text: "MAX"
}
@@ -140,13 +141,25 @@ GamePage {
smooth: true
antialiasing: true
- SequentialAnimation{
+ SequentialAnimation {
id: heartAnim
- running: deviceHandler.alive
+ running: measurePage.deviceHandler.alive
loops: Animation.Infinite
alwaysRunToEnd: true
- PropertyAnimation { target: heart; property: "scale"; to: 1.2; duration: 500; easing.type: Easing.InQuad }
- PropertyAnimation { target: heart; property: "scale"; to: 1.0; duration: 500; easing.type: Easing.OutQuad }
+ PropertyAnimation {
+ target: heart
+ property: "scale"
+ to: 1.2
+ duration: 500
+ easing.type: Easing.InQuad
+ }
+ PropertyAnimation {
+ target: heart
+ property: "scale"
+ to: 1.0
+ duration: 500
+ easing.type: Easing.OutQuad
+ }
}
}
}
@@ -163,13 +176,15 @@ GamePage {
height: parent.height
radius: parent.radius
color: GameSettings.sliderColor
- width: Math.min(1.0,__timeCounter / __maxTimeCount) * parent.width
+ width: Math.min(
+ 1.0,
+ measurePage.__timeCounter / measurePage.__maxTimeCount) * parent.width
}
Text {
anchors.centerIn: parent
color: "gray"
- text: (__maxTimeCount - __timeCounter).toFixed(0) + " s"
+ text: (measurePage.__maxTimeCount - measurePage.__timeCounter).toFixed(0) + " s"
font.pixelSize: GameSettings.bigFontSize
}
}
@@ -182,10 +197,10 @@ GamePage {
anchors.bottomMargin: GameSettings.fieldMargin
width: circle.width
height: GameSettings.fieldHeight
- enabled: !deviceHandler.measuring
+ enabled: !measurePage.deviceHandler.measuring
radius: GameSettings.buttonRadius
- onClicked: start()
+ onClicked: measurePage.start()
Text {
anchors.centerIn: parent
diff --git a/examples/bluetooth/heartrate_game/qml/SplashScreen.qml b/examples/bluetooth/heartrate_game/HeartRateGame/SplashScreen.qml
index 23f71f08f..2f9ac1b3f 100644
--- a/examples/bluetooth/heartrate_game/qml/SplashScreen.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/SplashScreen.qml
@@ -2,33 +2,20 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
-import "."
+import HeartRateGame
Item {
id: root
- anchors.fill: parent
property bool appIsReady: false
property bool splashIsReady: false
-
property bool ready: appIsReady && splashIsReady
- onReadyChanged: if (ready) readyToGo();
- signal readyToGo()
-
- function appReady()
- {
- appIsReady = true
- }
-
- function errorInLoadingApp()
- {
- Qt.quit()
- }
+ anchors.fill: parent
Image {
anchors.centerIn: parent
- width: Math.min(parent.height, parent.width)*0.6
+ width: Math.min(parent.height, parent.width) * 0.6
height: GameSettings.heightForWidth(width, sourceSize)
source: "images/logo.png"
}
diff --git a/examples/bluetooth/heartrate_game/qml/Stats.qml b/examples/bluetooth/heartrate_game/HeartRateGame/Stats.qml
index b818e85e4..22cdd5365 100644
--- a/examples/bluetooth/heartrate_game/qml/Stats.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/Stats.qml
@@ -2,8 +2,12 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
+import HeartRateGame
GamePage {
+ id: statsPage
+
+ required property DeviceHandler deviceHandler
Column {
anchors.centerIn: parent
@@ -18,9 +22,9 @@ GamePage {
Text {
anchors.horizontalCenter: parent.horizontalCenter
- font.pixelSize: GameSettings.giganticFontSize*3
+ font.pixelSize: GameSettings.giganticFontSize * 3
color: GameSettings.textColor
- text: (deviceHandler.maxHR - deviceHandler.minHR).toFixed(0)
+ text: (statsPage.deviceHandler.maxHR - statsPage.deviceHandler.minHR).toFixed(0)
}
Item {
@@ -30,23 +34,22 @@ GamePage {
StatsLabel {
title: qsTr("MIN")
- value: deviceHandler.minHR.toFixed(0)
+ value: statsPage.deviceHandler.minHR.toFixed(0)
}
StatsLabel {
title: qsTr("MAX")
- value: deviceHandler.maxHR.toFixed(0)
+ value: statsPage.deviceHandler.maxHR.toFixed(0)
}
StatsLabel {
title: qsTr("AVG")
- value: deviceHandler.average.toFixed(1)
+ value: statsPage.deviceHandler.average.toFixed(1)
}
-
StatsLabel {
title: qsTr("CALORIES")
- value: deviceHandler.calories.toFixed(3)
+ value: statsPage.deviceHandler.calories.toFixed(3)
}
}
}
diff --git a/examples/bluetooth/heartrate_game/qml/StatsLabel.qml b/examples/bluetooth/heartrate_game/HeartRateGame/StatsLabel.qml
index cd5cda5be..0ea4249a7 100644
--- a/examples/bluetooth/heartrate_game/qml/StatsLabel.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/StatsLabel.qml
@@ -2,7 +2,6 @@
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
import QtQuick
-import "."
Item {
height: GameSettings.fieldHeight
diff --git a/examples/bluetooth/heartrate_game/qml/TitleBar.qml b/examples/bluetooth/heartrate_game/HeartRateGame/TitleBar.qml
index b7de77c4b..016a44358 100644
--- a/examples/bluetooth/heartrate_game/qml/TitleBar.qml
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/TitleBar.qml
@@ -1,50 +1,54 @@
// Copyright (C) 2022 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+pragma ComponentBehavior: Bound
import QtQuick
-Rectangle {
+Rectangle {
id: titleBar
- anchors.top: parent.top
- anchors.left: parent.left
- anchors.right: parent.right
- height: GameSettings.fieldHeight
- color: GameSettings.viewColor
property var __titles: ["CONNECT", "MEASURE", "STATS"]
property int currentIndex: 0
signal titleClicked(int index)
+ height: GameSettings.fieldHeight
+ color: GameSettings.viewColor
+
Repeater {
model: 3
Text {
+ id: caption
+ required property int index
width: titleBar.width / 3
height: titleBar.height
x: index * width
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
- text: __titles[index]
+ text: titleBar.__titles[index]
font.pixelSize: GameSettings.tinyFontSize
- color: titleBar.currentIndex === index ? GameSettings.textColor : GameSettings.disabledTextColor
+ color: titleBar.currentIndex === index ? GameSettings.textColor
+ : GameSettings.disabledTextColor
MouseArea {
anchors.fill: parent
- onClicked: titleClicked(index)
+ onClicked: titleBar.titleClicked(caption.index)
}
}
}
-
Item {
anchors.bottom: parent.bottom
width: parent.width / 3
height: parent.height
- x: currentIndex * width
+ x: titleBar.currentIndex * width
- BottomLine{}
+ BottomLine {}
- Behavior on x { NumberAnimation { duration: 200 } }
+ Behavior on x {
+ NumberAnimation {
+ duration: 200
+ }
+ }
}
-
}
diff --git a/examples/bluetooth/heartrate_game/qml/images/bt_off_to_on.png b/examples/bluetooth/heartrate_game/HeartRateGame/images/bt_off_to_on.png
index 5ea1f3f06..5ea1f3f06 100644
--- a/examples/bluetooth/heartrate_game/qml/images/bt_off_to_on.png
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/images/bt_off_to_on.png
Binary files differ
diff --git a/examples/bluetooth/heartrate_game/qml/images/heart.png b/examples/bluetooth/heartrate_game/HeartRateGame/images/heart.png
index f2b3c0a3e..f2b3c0a3e 100644
--- a/examples/bluetooth/heartrate_game/qml/images/heart.png
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/images/heart.png
Binary files differ
diff --git a/examples/bluetooth/heartrate_game/qml/images/logo.png b/examples/bluetooth/heartrate_game/HeartRateGame/images/logo.png
index ea0af7e00..ea0af7e00 100644
--- a/examples/bluetooth/heartrate_game/qml/images/logo.png
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/images/logo.png
Binary files differ
diff --git a/examples/bluetooth/heartrate_game/HeartRateGame/qmldir b/examples/bluetooth/heartrate_game/HeartRateGame/qmldir
new file mode 100644
index 000000000..2baa74a92
--- /dev/null
+++ b/examples/bluetooth/heartrate_game/HeartRateGame/qmldir
@@ -0,0 +1,14 @@
+module HeartRateGame
+App 1.0 App.qml
+BluetoothAlarmDialog 1.0 BluetoothAlarmDialog.qml
+BottomLine 1.0 BottomLine.qml
+Connect 1.0 Connect.qml
+GameButton 1.0 GameButton.qml
+GamePage 1.0 GamePage.qml
+singleton GameSettings 1.0 GameSettings.qml
+Measure 1.0 Measure.qml
+SplashScreen 1.0 SplashScreen.qml
+Stats 1.0 Stats.qml
+StatsLabel 1.0 StatsLabel.qml
+TitleBar 1.0 TitleBar.qml
+Main 1.0 Main.qml
diff --git a/examples/bluetooth/heartrate_game/connectionhandler.py b/examples/bluetooth/heartrate_game/connectionhandler.py
index 5bd7bfbb2..7bf60bbc5 100644
--- a/examples/bluetooth/heartrate_game/connectionhandler.py
+++ b/examples/bluetooth/heartrate_game/connectionhandler.py
@@ -5,13 +5,16 @@ import sys
from PySide6.QtBluetooth import QBluetoothLocalDevice
from PySide6.QtQml import QmlElement
-from PySide6.QtCore import QObject, Property, Signal, Slot
+from PySide6.QtCore import QObject, Property, Signal, Slot, Qt
-from heartrate_global import simulator
+from heartrate_global import simulator, is_android, error_not_nuitka
+
+if is_android or sys.platform == "darwin":
+ from PySide6.QtCore import QBluetoothPermission
# To be used on the @QmlElement decorator
# (QML_IMPORT_MINOR_VERSION is optional)
-QML_IMPORT_NAME = "Shared"
+QML_IMPORT_NAME = "HeartRateGame"
QML_IMPORT_MAJOR_VERSION = 1
@@ -22,14 +25,14 @@ class ConnectionHandler(QObject):
def __init__(self, parent=None):
super().__init__(parent)
- self.m_localDevice = QBluetoothLocalDevice()
- self.m_localDevice.hostModeStateChanged.connect(self.hostModeChanged)
+ self.m_hasPermission = False
+ self.initLocalDevice()
@Property(bool, notify=deviceChanged)
def alive(self):
if sys.platform == "darwin":
return True
- if simulator:
+ if simulator():
return True
return (self.m_localDevice.isValid()
and self.m_localDevice.hostMode() != QBluetoothLocalDevice.HostPoweredOff)
@@ -46,6 +49,29 @@ class ConnectionHandler(QObject):
def address(self):
return self.m_localDevice.address().toString()
+ @Property(bool, notify=deviceChanged)
+ def hasPermission(self):
+ return self.m_hasPermission
+
@Slot(QBluetoothLocalDevice.HostMode)
def hostModeChanged(self, mode):
self.deviceChanged.emit()
+
+ def initLocalDevice(self):
+ if is_android or sys.platform == "darwin":
+ error_not_nuitka()
+ permission = QBluetoothPermission()
+ permission.setCommunicationModes(QBluetoothPermission.Access)
+ permission_status = qApp.checkPermission(permission) # noqa: F821
+ if permission_status == Qt.PermissionStatus.Undetermined:
+ qApp.requestPermission(permission, self, self.initLocalDevice) # noqa: F821
+ return
+ if permission_status == Qt.PermissionStatus.Denied:
+ return
+ elif permission_status == Qt.PermissionStatus.Granted:
+ print("[HeartRateGame] Bluetooth Permission Granted")
+
+ self.m_localDevice = QBluetoothLocalDevice()
+ self.m_localDevice.hostModeStateChanged.connect(self.hostModeChanged)
+ self.m_hasPermission = True
+ self.deviceChanged.emit()
diff --git a/examples/bluetooth/heartrate_game/devicefinder.py b/examples/bluetooth/heartrate_game/devicefinder.py
index c69f8ab89..e581d12ec 100644
--- a/examples/bluetooth/heartrate_game/devicefinder.py
+++ b/examples/bluetooth/heartrate_game/devicefinder.py
@@ -1,18 +1,22 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
+import sys
from PySide6.QtBluetooth import (QBluetoothDeviceDiscoveryAgent,
QBluetoothDeviceInfo)
from PySide6.QtQml import QmlElement
-from PySide6.QtCore import QTimer, Property, Signal, Slot
+from PySide6.QtCore import QTimer, Property, Signal, Slot, Qt
from bluetoothbaseclass import BluetoothBaseClass
from deviceinfo import DeviceInfo
-from heartrate_global import simulator
+from heartrate_global import simulator, is_android, error_not_nuitka
+
+if is_android or sys.platform == "darwin":
+ from PySide6.QtCore import QBluetoothPermission
# To be used on the @QmlElement decorator
# (QML_IMPORT_MINOR_VERSION is optional)
-QML_IMPORT_NAME = "Shared"
+QML_IMPORT_NAME = "HeartRateGame"
QML_IMPORT_MAJOR_VERSION = 1
@@ -36,20 +40,33 @@ class DeviceFinder(BluetoothBaseClass):
self.m_deviceDiscoveryAgent.finished.connect(self.scanFinished)
self.m_deviceDiscoveryAgent.canceled.connect(self.scanFinished)
#! [devicediscovery-1]
- if simulator:
+ if simulator():
self.m_demoTimer.setSingleShot(True)
self.m_demoTimer.setInterval(2000)
self.m_demoTimer.timeout.connect(self.scanFinished)
@Slot()
def startSearch(self):
+ if is_android or sys.platform == "darwin":
+ error_not_nuitka()
+ permission = QBluetoothPermission()
+ permission.setCommunicationModes(QBluetoothPermission.Access)
+ permission_status = qApp.checkPermission(permission) # noqa: F821
+ if permission_status == Qt.PermissionStatus.Undetermined:
+ qApp.requestPermission(permission, self, self.startSearch) # noqa: F82 1
+ return
+ elif permission_status == Qt.PermissionStatus.Denied:
+ return
+ elif permission_status == Qt.PermissionStatus.Granted:
+ print("[HeartRateGame] Bluetooth Permission Granted")
+
self.clearMessages()
self.m_deviceHandler.setDevice(None)
self.m_devices.clear()
self.devicesChanged.emit()
- if simulator:
+ if simulator():
self.m_demoTimer.start()
else:
#! [devicediscovery-2]
@@ -82,7 +99,7 @@ class DeviceFinder(BluetoothBaseClass):
@Slot()
def scanFinished(self):
- if simulator:
+ if simulator():
# Only for testing
for i in range(5):
self.m_devices.append(DeviceInfo(QBluetoothDeviceInfo()))
@@ -113,7 +130,7 @@ class DeviceFinder(BluetoothBaseClass):
@Property(bool, notify=scanningChanged)
def scanning(self):
- if simulator:
+ if simulator():
return self.m_demoTimer.isActive()
return self.m_deviceDiscoveryAgent.isActive()
diff --git a/examples/bluetooth/heartrate_game/devicehandler.py b/examples/bluetooth/heartrate_game/devicehandler.py
index 421102b28..df34052b8 100644
--- a/examples/bluetooth/heartrate_game/devicehandler.py
+++ b/examples/bluetooth/heartrate_game/devicehandler.py
@@ -10,7 +10,7 @@ from PySide6.QtBluetooth import (QLowEnergyCharacteristic,
QLowEnergyDescriptor,
QLowEnergyService,
QBluetoothUuid)
-from PySide6.QtQml import QmlNamedElement, QmlUncreatable
+from PySide6.QtQml import QmlElement
from PySide6.QtCore import (QByteArray, QDateTime, QRandomGenerator, QTimer,
Property, Signal, Slot, QEnum)
@@ -20,12 +20,11 @@ from heartrate_global import simulator
# To be used on the @QmlElement decorator
# (QML_IMPORT_MINOR_VERSION is optional)
-QML_IMPORT_NAME = "Shared"
+QML_IMPORT_NAME = "HeartRateGame"
QML_IMPORT_MAJOR_VERSION = 1
-@QmlNamedElement("AddressType")
-@QmlUncreatable("Enum is not a type")
+@QmlElement
class DeviceHandler(BluetoothBaseClass):
@QEnum
@@ -62,7 +61,7 @@ class DeviceHandler(BluetoothBaseClass):
self.m_demoTimer = QTimer()
- if simulator:
+ if simulator():
self.m_demoTimer.setSingleShot(False)
self.m_demoTimer.setInterval(2000)
self.m_demoTimer.timeout.connect(self.updateDemoHR)
@@ -99,27 +98,27 @@ class DeviceHandler(BluetoothBaseClass):
self.clearMessages()
self.m_currentDevice = device
- if simulator:
+ if simulator():
self.info = "Demo device connected."
return
# Disconnect and delete old connection
if self.m_control:
self.m_control.disconnectFromDevice()
- m_control = None
+ self.m_control = None
# Create new controller and connect it if device available
if self.m_currentDevice:
# Make connections
#! [Connect-Signals-1]
- self.m_control = QLowEnergyController.createCentral(self.m_currentDevice.getDevice(), self)
+ self.m_control = QLowEnergyController.createCentral(self.m_currentDevice.device(), self)
#! [Connect-Signals-1]
self.m_control.setRemoteAddressType(self.m_addressType)
#! [Connect-Signals-2]
- m_control.serviceDiscovered.connect(self.serviceDiscovered)
- m_control.discoveryFinished.connect(self.serviceScanDone)
+ self.m_control.serviceDiscovered.connect(self.serviceDiscovered)
+ self.m_control.discoveryFinished.connect(self.serviceScanDone)
self.m_control.errorOccurred.connect(self.controllerErrorOccurred)
self.m_control.connected.connect(self.controllerConnected)
@@ -167,7 +166,8 @@ class DeviceHandler(BluetoothBaseClass):
#! [Filter HeartRate service 2]
# If heartRateService found, create new service
if self.m_foundHeartRateService:
- self.m_service = self.m_control.createServiceObject(QBluetoothUuid(QBluetoothUuid.ServiceClassUuid.HeartRate), self)
+ self.m_service = self.m_control.createServiceObject(
+ QBluetoothUuid(QBluetoothUuid.ServiceClassUuid.HeartRate), self)
if self.m_service:
self.m_service.stateChanged.connect(self.serviceStateChanged)
@@ -183,14 +183,16 @@ class DeviceHandler(BluetoothBaseClass):
@Slot(QLowEnergyService.ServiceState)
def serviceStateChanged(self, switch):
if switch == QLowEnergyService.RemoteServiceDiscovering:
- self.setInfo(tr("Discovering services..."))
+ self.info = "Discovering services..."
elif switch == QLowEnergyService.RemoteServiceDiscovered:
- self.setInfo(tr("Service discovered."))
- hrChar = m_service.characteristic(QBluetoothUuid(QBluetoothUuid.CharacteristicType.HeartRateMeasurement))
+ self.info = "Service discovered."
+ hrChar = self.m_service.characteristic(
+ QBluetoothUuid(QBluetoothUuid.CharacteristicType.HeartRateMeasurement))
if hrChar.isValid():
- self.m_notificationDesc = hrChar.descriptor(QBluetoothUuid.DescriptorType.ClientCharacteristicConfiguration)
+ self.m_notificationDesc = hrChar.descriptor(
+ QBluetoothUuid.DescriptorType.ClientCharacteristicConfiguration)
if self.m_notificationDesc.isValid():
- self.m_service.writeDescriptor(m_notificationDesc,
+ self.m_service.writeDescriptor(self.m_notificationDesc,
QByteArray.fromHex(b"0100"))
else:
self.error = "HR Data not found."
@@ -209,9 +211,9 @@ class DeviceHandler(BluetoothBaseClass):
# Heart Rate
hrvalue = 0
if flags & 0x1: # HR 16 bit little endian? otherwise 8 bit
- hrvalue = struct.unpack("<H", data[1:3])
+ hrvalue = struct.unpack("<H", data[1:3])[0]
else:
- hrvalue = struct.unpack("B", data[1:2])
+ hrvalue = struct.unpack("B", data[1:2])[0]
self.addMeasurement(hrvalue)
@@ -234,7 +236,7 @@ class DeviceHandler(BluetoothBaseClass):
@Slot(QLowEnergyCharacteristic, QByteArray)
def confirmedDescriptorWrite(self, d, value):
if (d.isValid() and d == self.m_notificationDesc
- and value == QByteArray.fromHex(b"0000")):
+ and value == QByteArray.fromHex(b"0000")):
# disabled notifications . assume disconnect intent
self.m_control.disconnectFromDevice()
self.m_service = None
@@ -245,7 +247,7 @@ class DeviceHandler(BluetoothBaseClass):
# disable notifications
if (self.m_notificationDesc.isValid() and self.m_service
- and self.m_notificationDesc.value() == QByteArray.fromHex(b"0100")):
+ and self.m_notificationDesc.value() == QByteArray.fromHex(b"0100")):
self.m_service.writeDescriptor(self.m_notificationDesc,
QByteArray.fromHex(b"0000"))
else:
@@ -259,7 +261,7 @@ class DeviceHandler(BluetoothBaseClass):
@Property(bool, notify=aliveChanged)
def alive(self):
- if simulator:
+ if simulator():
return True
if self.m_service:
return self.m_service.state() == QLowEnergyService.RemoteServiceDiscovered
@@ -302,6 +304,6 @@ class DeviceHandler(BluetoothBaseClass):
self.m_sum += value
self.m_avg = float(self.m_sum) / len(self.m_measurements)
self.m_calories = ((-55.0969 + (0.6309 * self.m_avg) + (0.1988 * 94)
- + (0.2017 * 24)) / 4.184) * 60 * self.time / 3600
+ + (0.2017 * 24)) / 4.184) * 60 * self.time / 3600
self.statsChanged.emit()
diff --git a/examples/bluetooth/heartrate_game/deviceinfo.py b/examples/bluetooth/heartrate_game/deviceinfo.py
index 4ea08628f..5fd5c3270 100644
--- a/examples/bluetooth/heartrate_game/deviceinfo.py
+++ b/examples/bluetooth/heartrate_game/deviceinfo.py
@@ -25,13 +25,13 @@ class DeviceInfo(QObject):
@Property(str, notify=deviceChanged)
def deviceName(self):
- if simulator:
+ if simulator():
return "Demo device"
return self.m_device.name()
@Property(str, notify=deviceChanged)
def deviceAddress(self):
- if simulator:
+ if simulator():
return "00:11:22:33:44:55"
if sys.platform == "Darwin": # workaround for Core Bluetooth:
return self.m_device.deviceUuid().toString()
diff --git a/examples/bluetooth/heartrate_game/doc/heartrate_game.rst b/examples/bluetooth/heartrate_game/doc/heartrate_game.rst
index 0a0938cad..9d190d991 100644
--- a/examples/bluetooth/heartrate_game/doc/heartrate_game.rst
+++ b/examples/bluetooth/heartrate_game/doc/heartrate_game.rst
@@ -1,6 +1,8 @@
Bluetooth Low Energy Heart Rate Game
====================================
+.. tags:: Android
+
The Bluetooth Low Energy Heart Rate Game shows how to develop a
Bluetooth Low Energy application using the Qt Bluetooth API. The
application covers the scanning for Bluetooth Low Energy devices,
diff --git a/examples/bluetooth/heartrate_game/heartrate_game.pyproject b/examples/bluetooth/heartrate_game/heartrate_game.pyproject
index e4c40874a..94b7e3978 100644
--- a/examples/bluetooth/heartrate_game/heartrate_game.pyproject
+++ b/examples/bluetooth/heartrate_game/heartrate_game.pyproject
@@ -6,17 +6,18 @@
"devicehandler.py",
"deviceinfo.py",
"heartrate_global.py",
- "qml/main.qml",
- "qml/App.qml",
- "qml/BluetoothAlarmDialog.qml",
- "qml/BottomLine.qml",
- "qml/Connect.qml",
- "qml/GameButton.qml",
- "qml/GamePage.qml",
- "qml/GameSettings.qml",
- "qml/Measure.qml",
- "qml/SplashScreen.qml",
- "qml/Stats.qml",
- "qml/StatsLabel.qml",
- "qml/TitleBar.qml"]
+ "HeartRateGame/qmldir",
+ "HeartRateGame/Main.qml",
+ "HeartRateGame/App.qml",
+ "HeartRateGame/BluetoothAlarmDialog.qml",
+ "HeartRateGame/BottomLine.qml",
+ "HeartRateGame/Connect.qml",
+ "HeartRateGame/GameButton.qml",
+ "HeartRateGame/GamePage.qml",
+ "HeartRateGame/GameSettings.qml",
+ "HeartRateGame/Measure.qml",
+ "HeartRateGame/SplashScreen.qml",
+ "HeartRateGame/Stats.qml",
+ "HeartRateGame/StatsLabel.qml",
+ "HeartRateGame/TitleBar.qml"]
}
diff --git a/examples/bluetooth/heartrate_game/heartrate_global.py b/examples/bluetooth/heartrate_game/heartrate_global.py
index 7d95f1299..de5c37ac3 100644
--- a/examples/bluetooth/heartrate_game/heartrate_global.py
+++ b/examples/bluetooth/heartrate_game/heartrate_global.py
@@ -1,6 +1,30 @@
# Copyright (C) 2022 The Qt Company Ltd.
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
+import os
import sys
-simulator = sys.platform == "win32"
+_simulator = False
+
+
+def simulator():
+ global _simulator
+ return _simulator
+
+
+def set_simulator(s):
+ global _simulator
+ _simulator = s
+
+
+is_android = os.environ.get('ANDROID_ARGUMENT')
+
+
+def error_not_nuitka():
+ """Errors and exits for macOS if run in interpreted mode.
+ """
+ is_nuitka = "__compiled__" in globals()
+ if not is_nuitka and sys.platform == "darwin":
+ print("This example does not work on macOS when Python is run in interpreted mode."
+ "For this example to work on macOS, package the example using pyside6-deploy"
+ "For more information, read `Notes for Developer` in the documentation")
+ sys.exit(0)
diff --git a/examples/bluetooth/heartrate_game/main.py b/examples/bluetooth/heartrate_game/main.py
index a101a05bf..3cb4f0672 100644
--- a/examples/bluetooth/heartrate_game/main.py
+++ b/examples/bluetooth/heartrate_game/main.py
@@ -3,19 +3,18 @@
"""PySide6 port of the bluetooth/heartrate-game example from Qt v6.x"""
-import os
from pathlib import Path
import sys
-from argparse import ArgumentParser, Namespace, RawDescriptionHelpFormatter
+from argparse import ArgumentParser, RawDescriptionHelpFormatter
-from PySide6.QtQml import QQmlApplicationEngine, QQmlContext
+from PySide6.QtQml import QQmlApplicationEngine
from PySide6.QtGui import QGuiApplication
-from PySide6.QtCore import QCoreApplication, QLoggingCategory, QUrl
+from PySide6.QtCore import QCoreApplication, QLoggingCategory
from connectionhandler import ConnectionHandler
from devicefinder import DeviceFinder
from devicehandler import DeviceHandler
-from heartrate_global import simulator
+from heartrate_global import set_simulator
if __name__ == '__main__':
@@ -27,7 +26,7 @@ if __name__ == '__main__':
parser.add_argument("-s", "--simulator", action="store_true",
help="Use Simulator")
options = parser.parse_args()
- simulator = options.simulator
+ set_simulator(options.simulator)
if options.verbose:
QLoggingCategory.setFilterRules("qt.bluetooth* = true")
@@ -43,8 +42,9 @@ if __name__ == '__main__':
"deviceFinder": deviceFinder,
"deviceHandler": deviceHandler})
- qml_file = os.fspath(Path(__file__).resolve().parent / "qml" / "main.qml")
- engine.load(QUrl.fromLocalFile(qml_file))
+ engine.addImportPath(Path(__file__).parent)
+ engine.loadFromModule("HeartRateGame", "Main")
+
if not engine.rootObjects():
sys.exit(-1)
diff --git a/examples/bluetooth/heartrate_game/qml/App.qml b/examples/bluetooth/heartrate_game/qml/App.qml
deleted file mode 100644
index 1eb532021..000000000
--- a/examples/bluetooth/heartrate_game/qml/App.qml
+++ /dev/null
@@ -1,83 +0,0 @@
-// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-
-Item {
- id: app
- anchors.fill: parent
- opacity: 0.0
-
- Behavior on opacity { NumberAnimation { duration: 500 } }
-
- property var lastPages: []
- property int __currentIndex: 0
-
- function init()
- {
- opacity = 1.0
- showPage("Connect.qml")
- }
-
- function prevPage()
- {
- lastPages.pop()
- pageLoader.setSource(lastPages[lastPages.length-1])
- __currentIndex = lastPages.length-1;
- }
-
- function showPage(name)
- {
- lastPages.push(name)
- pageLoader.setSource(name)
- __currentIndex = lastPages.length-1;
- }
-
- TitleBar {
- id: titleBar
- currentIndex: __currentIndex
-
- onTitleClicked: (index) => {
- if (index < __currentIndex)
- pageLoader.item.close()
- }
- }
-
- Loader {
- id: pageLoader
- anchors.left: parent.left
- anchors.right: parent.right
- anchors.top: titleBar.bottom
- anchors.bottom: parent.bottom
-
- onStatusChanged: {
- if (status === Loader.Ready)
- {
- pageLoader.item.init();
- pageLoader.item.forceActiveFocus()
- }
- }
- }
-
- Keys.onReleased: (event) => {
- switch (event.key) {
- case Qt.Key_Escape:
- case Qt.Key_Back: {
- if (__currentIndex > 0) {
- pageLoader.item.close()
- event.accepted = true
- } else {
- Qt.quit()
- }
- break;
- }
- default: break;
- }
- }
-
- BluetoothAlarmDialog {
- id: btAlarmDialog
- anchors.fill: parent
- visible: !connectionHandler.alive
- }
-}
diff --git a/examples/bluetooth/heartrate_game/qml/main.qml b/examples/bluetooth/heartrate_game/qml/main.qml
deleted file mode 100644
index 44d824faf..000000000
--- a/examples/bluetooth/heartrate_game/qml/main.qml
+++ /dev/null
@@ -1,63 +0,0 @@
-// Copyright (C) 2022 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
-
-import QtQuick
-import QtQuick.Window
-import "."
-import Shared
-
-Window {
- id: wroot
- visible: true
- width: 720 * .7
- height: 1240 * .7
- title: qsTr("HeartRateGame")
- color: GameSettings.backgroundColor
-
- required property ConnectionHandler connectionHandler
- required property DeviceFinder deviceFinder
- required property AddressType deviceHandler
-
- Component.onCompleted: {
- GameSettings.wWidth = Qt.binding(function() {return width})
- GameSettings.wHeight = Qt.binding(function() {return height})
- }
-
- Loader {
- id: splashLoader
- anchors.fill: parent
- source: "SplashScreen.qml"
- asynchronous: false
- visible: true
-
- onStatusChanged: {
- if (status === Loader.Ready) {
- appLoader.setSource("App.qml");
- }
- }
- }
-
- Connections {
- target: splashLoader.item
- function onReadyToGo() {
- appLoader.visible = true
- appLoader.item.init()
- splashLoader.visible = false
- splashLoader.setSource("")
- appLoader.item.forceActiveFocus();
- }
- }
-
- Loader {
- id: appLoader
- anchors.fill: parent
- visible: false
- asynchronous: true
- onStatusChanged: {
- if (status === Loader.Ready)
- splashLoader.item.appReady()
- if (status === Loader.Error)
- splashLoader.item.errorInLoadingApp();
- }
- }
-}
diff --git a/examples/bluetooth/heartrate_game/qml/qmldir b/examples/bluetooth/heartrate_game/qml/qmldir
deleted file mode 100644
index 5e0d2b540..000000000
--- a/examples/bluetooth/heartrate_game/qml/qmldir
+++ /dev/null
@@ -1 +0,0 @@
-singleton GameSettings 1.0 GameSettings.qml