-
Notifications
You must be signed in to change notification settings - Fork 0
/
messages.h
108 lines (105 loc) · 2.38 KB
/
messages.h
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
#define WIDTH 20
#define HEIGHT 4
char REBOOT_FORTUNES[][WIDTH*HEIGHT] = {
"A glitch in the system stops me from telling you now.",
"The internets are on fire, and don't want you to know.",
"I'm going to need at least another quarter to decide.",
"You don't believe a machine can predict your future, so what's the point?",
"Eventually my predictions will be perfect, not today."
};
#define GREET1 0
#define GREET2 1
#define BOOT 3
#define SAVE 4
#define FUTURE 5
#define GREET3 6
#define RANDOM 7
#define ACCURATE 8
#define CORRECT 9
#define WRONG 10
#define TIMEOUT 11
#define FETCHING 12
#define FREEBIE 13
#define PICK_YES 14
#define PICK_NO 15
char MESSAGES[][HEIGHT][WIDTH+1] = {{
"* *",
" Contemplate your ",
" uncertainty... ",
"* *"
}, {
"* *",
" I wonder what ",
" you're wondering? ",
"* *"
}, {
"* *",
" WiFi Error, ",
" restart. ",
"* *"
}, {
" ",
" Hello :) ",
" ",
" "
}, {
"* *",
" Our meeting is ",
" being saved. ",
"* *"
}, {
"* *",
" Future fortunes ",
" now adjusted. ",
"* *"
}, {
"* Use buttons to *",
" answer questions. ",
" ",
"<<< NO YES >>> "
}, {
" Random choice. ",
" ",
" _====_ ",
" q 8( 0..0 )8 p "
}, {
" ",
" Was your fortune ",
" on target? ",
" "
}, {
" ",
" Oh good, thanks! ",
" ",
" I'll remember. "
}, {
" ",
" Huh, ok. ",
" ",
" I'll remember. "
}, {
" ",
" Hello? ",
" ",
" Another coin? "
}, {
"! !",
" Calibrating ",
" your fortune. ",
"! !"
}, {
" A freebie!? OK ",
" ",
" _====_ ",
" q 8( 0..0 )8 p "
}, {
" ",
" You picked YES. ",
" ",
" "
}, {
" ",
" You picked NO. ",
" ",
" "
}};