-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.qml
213 lines (189 loc) · 6.13 KB
/
Main.qml
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
import QtQuick 2.15
import QtQuick.Controls 2.15
import QtQuick.Layouts 1.15
import com.example 1.0
ApplicationWindow {
visible: true
width: 341
height: 800
title: qsTr("MainWindow")
// Variables to store calibration messages and completion flags
property string gyroCalibrationMessage: ""
property string accelCalibrationMessage: ""
property bool gyroCalibrated: false
property bool accelCalibrated: false
function addNewMovement(xValue, yValue, angle, direction) {
var formattedX = xValue.toFixed(2);
var formattedY = yValue.toFixed(2);
var formattedAngle = angle.toFixed(2);
outputArea.text += "Position: X: " + formattedX + " Y: " + formattedY + " Angle: " +
formattedAngle + " Direction: " + direction + "\n";
}
function updateAccelText(output) {
accelText.text = "Accel: " + output;
}
function updateGyroText(output) {
angleText.text = "Angle: " + output;
}
function updateStatusLabel(output) {
statusText.text = "Status: " + output;
}
function checkCalibrationCompletion() {
if (gyroCalibrated && accelCalibrated) {
updateStatusLabel(gyroCalibrationMessage + "\n" + accelCalibrationMessage);
}
}
Accelerometer {
id: accelerometer
onReadingUpdated: updateAccelText(output)
onNewAcceleration: movementDatabase.handleNewAcceleration(x, y, velocityX, velocityY, accelerometer.getXBias(), accelerometer.getYBias())
onCalibrationFinished: {
accelCalibrationMessage = "Accelerometer: " + output;
accelCalibrated = true;
checkCalibrationCompletion();
}
}
Gyroscope {
id: gyroscope
onReadingUpdated: updateGyroText(output)
onNewRotation: movementDatabase.handleNewAngle(alpha)
onCalibrationFinished: {
gyroCalibrationMessage = "Gyroscope: " + output;
gyroCalibrated = true;
checkCalibrationCompletion();
}
}
PatternDatabase {
id: patternDatabase
onAuthenticationResult: updateStatusLabel(output)
}
MovementDatabase {
id: movementDatabase
onMovementsUpdated: addNewMovement(x_pos, y_pos, angle, direction);
onNewPattern:
{
patternDatabase.addPattern(pattern)
patternDatabase.savePatternsToJson("Patterns.json")
}
onNewAttempt: patternDatabase.authenticatePattern(pattern)
}
ColumnLayout {
anchors.fill: parent
anchors.margins: 20
spacing: 10
Label {
id: statusText
Layout.preferredHeight: 51
Layout.fillWidth: true
text: qsTr("Status:")
font.family: "Segoe UI"
verticalAlignment: "AlignVCenter"
}
Label {
id: angleText
text: qsTr("Angle:")
Layout.preferredHeight: 51
Layout.fillWidth: true
font.family: "Segoe UI"
verticalAlignment: "AlignVCenter"
}
Label {
id: accelText
text: qsTr("Accel:")
Layout.preferredHeight: 51
Layout.fillWidth: true
font.family: "Segoe UI"
verticalAlignment: "AlignVCenter"
}
Label {
id: patterns
text: qsTr("Patterns:")
Layout.preferredHeight: 51
Layout.fillWidth: true
font.family: "Segoe UI"
verticalAlignment: "AlignVCenter"
}
ScrollView {
Layout.fillWidth: true
Layout.preferredHeight: 300
TextArea {
id: outputArea
wrapMode: TextArea.WrapAtWordBoundaryOrAnywhere
font.pixelSize: 12
font.bold: true
readOnly: true
}
}
Button {
id: calibration
text: qsTr("Calibration")
Layout.fillWidth: true
Layout.preferredHeight: 41
onClicked: {
// Reset calibration status
gyroCalibrated = false;
accelCalibrated = false;
gyroCalibrationMessage = "";
accelCalibrationMessage = "";
gyroscope.calibration();
accelerometer.calibration();
}
}
Button {
id: startRecordingButton
text: qsTr("Start Recording")
Layout.fillWidth: true
Layout.preferredHeight: 41
onClicked: {
if (text === "Start Recording") {
text = "Stop Recording"
accelerometer.start()
gyroscope.start()
} else {
text = "Start Recording"
accelerometer.stop()
gyroscope.stop()
movementDatabase.createNewPattern(false)
}
}
}
Button {
id: startAttemptButton
text: qsTr("Start Attempt")
Layout.fillWidth: true
Layout.preferredHeight: 41
onClicked: {
if (text === "Start Attempt") {
text = "Stop Attempt"
accelerometer.start()
gyroscope.start()
} else {
text = "Start Attempt"
accelerometer.stop()
gyroscope.stop()
movementDatabase.createNewPattern(true)
}
}
}
/*Button {
id: authenticateButton
text: qsTr("Authenticate")
Layout.fillWidth: true
Layout.preferredHeight: 41
onClicked: {
// Add your authenticate function here
}
}*/
Button {
id: resetButton
text: qsTr("Reset")
Layout.fillWidth: true
Layout.preferredHeight: 41
onClicked: {
movementDatabase.reset();
gyroscope.reset();
// accelerometer.reset();
}
}
}
}