-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCPA.js
69 lines (62 loc) · 1.68 KB
/
CPA.js
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
var clicks = 5; // Amount of click until "time to go!"
simply.body("", true); // Clears initial screen
simply.title(' CLydE'); // Initialize "CLydE" title
var time = new Date(); // Fetch current time
var hour;
if(time.getHours() > 12){
hour = time.getHours() - 12;
} else {
hour = time.getHours();
}
var minute = time.getMinutes();
var updateTime = function() {
if (hour < 10) {
if (minute > 9) {
simply.subtitle(" 0" + hour + ":" + minute);
} else {
simply.subtitle(" 0" + hour + ":0" + minute);
}
} else {
if (minute > 9) {
simple.subtitle(" " + hour + ":" + minute);
} else {
simple.subtitle(" " + hour + ":0" + minute);
}
}
}; // updates time maintaining format
var checkAction = function() {
if (Math.abs(minute - time.getMinutes()) < clicks) {
updateTime();
} else {
simply.subtitle(" it's time to go!");
}
}; // Determins whether to update time or announce "Time to go!"
updateTime(); // Initialize time
simply.on('singleClick', function(e) {
if (e.button === 'up') {
if(minute === 59) {
minute = 0;
if (hour != 12) {
hour += 1;
} else {
hour = 1;
}
} else {
minute += 1;
}
checkAction();
} else if (e.button === 'down') {
if (minute === 0) {
minute = 59;
if (hour != 1) {
hour -= 1;
} else {
hour = 12;
}
} else {
minute -= 1;
}
checkAction();
}
}); // Handler for up and down clicks
// EOF