forked from DreamLife-Jianwei/HWVD
-
Notifications
You must be signed in to change notification settings - Fork 1
/
SpaceClock.qml
478 lines (461 loc) · 12.8 KB
/
SpaceClock.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
import QtQuick 2.15
Rectangle{
id:space
property real lowLiquidTemp: 50
property real highLiquidTemp: 1
property real lowPumpRpm: 3000
property real highPumpRpm: 1
height:320
width:320
anchors.fill:parent
Connections {
target: AppController
function onDraw() {
var date = new Date();
time.text = Qt.formatDateTime(date,"hh:mm")
seconds.text = Qt.formatDateTime(date,"ss")
}
}
Connections{
target:DeviceConnection
function onPumpSpeedChanged(speed : int) {
if(speed > space.highPumpRpm) {
space.highPumpRpm = speed;
}
if(speed < space.lowPumpRpm) {
space.lowPumpRpm = speed;
}
pumpSpeedLabel.text = lowPumpRpm + " - " + highPumpRpm;
}
function onPumpDutyChanged(duty : int){
fanSpeedReset.start();
}
function onLiquidTemperatureChanged(temp : real) {
liquidTemp.text = temp.toFixed() + "°C"
if(temp > space.highLiquidTemp) {
space.highLiquidTemp = temp;
highTemp.text = space.highLiquidTemp.toFixed() + "°"
}
if(temp < space.lowLiquidTemp) {
space.lowLiquidTemp = temp;
lowTemp.text = space.lowLiquidTemp.toFixed() + "°"
}
}
}
Timer{
id:fanSpeedReset
interval:1600
repeat:false
property int bounce:0
onTriggered: {
++bounce;
if(bounce >= 4){
bounce = 0;
}else {
space.lowPumpRpm = 3000
space.highPumpRpm = 1
fanSpeedReset.start();
}
}
}
FontLoader {
id: clockFont
source:"fonts/DigifaceWide.ttf"
}
Image { // Watch Root UX item
id: back
source: "images/back.png"
fillMode:Image.PreserveAspectFit
anchors.centerIn: parent
width:360
height:360
Image{
id:shipIcon
source:"images/other6.png"
width:32
height:28
fillMode:Image.Stretch
smooth:true
anchors{
top:parent.top
topMargin:44
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: -48
}
}
Text{
id:fanDuty
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 18
font.bold: true
font.letterSpacing: 1
text:DeviceConnection.fanDuty + "%"
anchors{
top:parent.top
topMargin:69
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: -66
}
}
AnimatedImage {
id: astronaut
anchors.centerIn: parent
anchors.verticalCenterOffset: 18
width: 108
height: 120
fillMode:Image.PreserveAspectFit
source: "images/astronaut.gif"
speed: (40/AppController.frameDelay) + .125
playing:true
}
Image{
id:fanIcon
source:"images/cpu.fan.png"
width:24
height:24
fillMode:Image.PreserveAspectFit
anchors.centerIn:parent
smooth:true
anchors.verticalCenterOffset: 75
anchors.horizontalCenterOffset: 46
}
Text{
id:fanRpm
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:3
font.pixelSize: 22
font.bold:true
font.letterSpacing: 1
text: DeviceConnection.fanSpeed
anchors{
left:fanIcon.right
verticalCenter: fanIcon.verticalCenter
verticalCenterOffset:2
}
}
Image{
id:heartIcon
source:"images/heart.png"
width:36
height:36
fillMode:Image.PreserveAspectFit
smooth:true
anchors
{
left:parent.left
bottom:parent.bottom
bottomMargin: 86
leftMargin:54
}
}
Text{
id:pumpDuty
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 20
font.bold:true
text:DeviceConnection.pumpDuty
anchors{
left:heartIcon.right
verticalCenter: heartIcon.verticalCenter
}
}
Text{
id:pumpSpeedLabel
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 12
anchors{
bottom:heartIcon.top
bottomMargin:-2
horizontalCenter: heartIcon.horizontalCenter
horizontalCenterOffset: 6
}
}
Text{
id:liquidTemp
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 13
font.letterSpacing: 1
anchors{
top:parent.top
topMargin:70
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: -4
}
}
Text{
id:tempHeader
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 14
font.letterSpacing: 1
font.weight: Font.Light
text: "晴天"
anchors{
top:parent.top
topMargin:52
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: -4
}
}
Text{
id:airQuality
horizontalAlignment: Text.AlignLeft
color:"#333333"
font.pixelSize: 14
font.letterSpacing: -2
font.weight: Font.Light
text: "空气优质"
anchors{
top:parent.top
topMargin:34
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: 6
}
}
Text{
id:highTemp
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 13
font.letterSpacing: 1
anchors{
top:parent.top
topMargin:54
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset:32
}
}
Image{
id:upArrow
source:"images/arrow.png"
rotation:180
height:15
smooth:true
fillMode: Image.PreserveAspectFit
anchors{
verticalCenter: highTemp.verticalCenter
left: highTemp.right
}
}
Text{
id:lowTemp
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 13
font.letterSpacing: 1
anchors{
top:parent.top
topMargin:71
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: 32
}
}
Image{
id:downArrow
source:"images/arrow.png"
height:15
smooth:true
fillMode: Image.PreserveAspectFit
anchors{
verticalCenter: lowTemp.verticalCenter
left: lowTemp.right
}
}
Image{
id:waterDrop
source:"images/water-drop.png"
height:24
fillMode: Image.PreserveAspectFit
anchors{
top: upArrow.top
topMargin:5
left: upArrow.right
leftMargin:5
}
rotation:10
}
}
Text {
id:time
y:62
text: "00:00"
anchors.horizontalCenter: parent.horizontalCenter
anchors.horizontalCenterOffset: -24
verticalAlignment: Text.AlignVCenter
font.family: clockFont.name
font.letterSpacing: -2
font.weight: Font.Light
font.pixelSize: 58
}
Text{
id:seconds
y:92
text: "00"
x:232
font.family: clockFont.name
font.letterSpacing: -1
font.weight: Font.Bold
font.pixelSize: 32
}
Text{
id:cpuLabel
anchors{
bottom:parent.bottom
left:parent.left
leftMargin:56
bottomMargin:52
}
color:"#333333"
font.pixelSize:12
font.letterSpacing: -1
text:"CPU %"
}
Rectangle{
height:12
width:80
radius:10
anchors{
verticalCenter: cpuContainer.verticalCenter
left:cpuContainer.right
leftMargin:-4
}
Rectangle{
color:"#f3ce78"
height:12
radius:4
border.color: "#c4a63b"
width:4+ (cpuContainer.cpuLoad/100 * 76);
anchors{
verticalCenter: parent.verticalCenter
left:parent.left
}
}
}
Rectangle{
id: cpuContainer
radius:6
color:"#515151"
width:28
height:18
anchors{
verticalCenter: cpuLabel.verticalCenter
verticalCenterOffset: 4
left: parent.left
leftMargin: 94
}
property real cpuLoad: 0.0
onCpuLoadChanged: {
cpuLoadText.text = this.cpuLoad.toFixed(1).padStart(4,'0');
}
Text{
id:cpuLoadText
anchors.fill: parent
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
font.pixelSize: 9
text: "0.0"
color:"white"
}
}
Text{
id:cpuLabelSide
rotation:90
property real cpuTemp: 0
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 12
font.letterSpacing: 1
text: "CPU"
font.bold: true
anchors{
bottom:parent.bottom
bottomMargin:46
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset:51
}
}
Text{
id:tempLabel
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 12
font.letterSpacing: 1
text: "Temp"
font.bold: true
anchors{
bottom:parent.bottom
bottomMargin:24
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset:50
}
}
Text{
id:cpuTemp
property real cpuTemp: 0
onCpuTempChanged: {
this.text = this.cpuTemp.toFixed(1) + "°C";
}
horizontalAlignment: Text.AlignLeft
color:"#333333"
leftPadding:2
font.pixelSize: 18
font.letterSpacing: 1
text:"0.0"
anchors{
bottom:parent.bottom
bottomMargin:12
horizontalCenter: parent.horizontalCenter
horizontalCenterOffset: -2
}
}
Connections{
id:systemWatch
target:SystemMonitor
function connect() {
let loads = SystemMonitor.sensorsByType("Load", "cpu");
let temps = SystemMonitor.sensorsByType("Temperature", "cpu");
if(temps.length > 0) {
SystemMonitor.connectOn(temps[0], cpuTemp, "cpuTemp")
}
if(loads.length){
SystemMonitor.connectOn(loads[0], cpuContainer, "cpuLoad")
}
systemWatch.connected = true;
}
function release(){
SystemMonitor.releaseAll(cpuTemp);
SystemMonitor.releaseAll(cpuContainer);
}
property bool connected:false
function onSensorsReady() {
if(this.connected) {
systemWatch.release();
}
systemWatch.connect();
}
}
Component.onCompleted: {
var temp = DeviceConnection.liquidTemperature.toFixed() + "°";
liquidTemp.text = temp + "C";
lowTemp.text = temp;
highTemp.text = temp;
AppController.setFrameDelay(185);
if(SystemMonitor.isReady()) {
systemWatch.connect();
}
}
}