-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquest_kk.cpp
executable file
·252 lines (201 loc) · 6.26 KB
/
quest_kk.cpp
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
#include <iostream>
#include <fstream>
#include <string>
#include "/var/www/qf2016.pro/json.hpp"
#include <wiringPiI2C.h>
#include <wiringPi.h>
using json = nlohmann::json;
using namespace std;
// адреса
const int ADRKASSA = 0x04;
const int ADRWHEEL = 0x15;
const int ADRCHEEZE = 0x06;
const int ADRLOPATKA = 0x07;
const int ADRKEGI = 0x08;
const int ADRMUSIC = 0x09;
// GPIO 7 - нога через которую запитаны вся логика красти
const int FLUSHPIN = 7;
// стартовое время квеста
const int TIMENOW = 0;
const int TIMESTART = 0;
const int TIMEPLUS = 0;
const int TIMEEND = 3600;
json CONFIG; // настройки квеста, динамичный json файл
// номера треков
const int TREKMAIN = 1;
const int TREK5MIN = 2;
const int TREKWIN = 3;
const int TREKLOOSE = 4;
const int TREKLEGEND = 8;
// путь до конфига
const string PATHJSON = "/var/www/qf2016.pro/config.json";
const string PATHJSONBACKUP = "/var/www/qf2016.pro/flushConfig.json";
void checkKassa() {
int fd = wiringPiI2CSetup(ADRKASSA);
int sendDataKassa = 0;
if( CONFIG["dollar"] == 1 and
CONFIG["order"] == 1 ) {
sendDataKassa = 1;
} else {
sendDataKassa = 0;
}
CONFIG["dollar"] = wiringPiI2CRead(fd);
wiringPiI2CWrite(fd, sendDataKassa);
}
void checkWheel() {
int fd = wiringPiI2CSetup(ADRWHEEL);
int sendDataWheel = 0;
if(CONFIG["wheel"] == 1) {
sendDataWheel = 1;
CONFIG["wheel"] = 1;
} else {
sendDataWheel = 0;
}
CONFIG["wheel"] = wiringPiI2CRead(fd);
wiringPiI2CWrite(fd, sendDataWheel);
}
void checkCheeze() {
int fd = wiringPiI2CSetup(ADRCHEEZE);
int sendData = 0;
if( CONFIG["cheeze"] == 1) {
sendData = 1;
} else {
sendData = 0;
}
CONFIG["cheeze"] = wiringPiI2CRead(fd);
wiringPiI2CWrite(fd, sendData);
}
void checkLopatka() {
int fd = wiringPiI2CSetup(ADRLOPATKA);
CONFIG["lopatka"] = wiringPiI2CRead(fd);
int sendData = 0;
if( CONFIG["lopatka"] == 1) {
sendData = 1;
} else {
sendData = 0;
}
wiringPiI2CWrite(fd, sendData);
}
void checkKegi() {
int fd = wiringPiI2CSetup(ADRKEGI);
int sendDataKegi = 0;
if( CONFIG["kegi"] == 1) {
sendDataKegi = 1;
} else {
sendDataKegi = 0;
}
wiringPiI2CWrite(fd, sendDataKegi);
CONFIG["kegi"] = wiringPiI2CRead(fd);
}
void checkRecipe() {
int fd = wiringPiI2CSetup(ADRMUSIC);
CONFIG["final"] = wiringPiI2CRead(fd);
if (CONFIG["final"] == 1) {
CONFIG["trek"] = TREKWIN;
}
}
void checkTrek() {
if (CONFIG["now"] > 45) {
CONFIG["trek"] = 1;
}
}
// Перезапуск квеста
void flushGame() {
CONFIG["status"] = "flushed";
CONFIG["now"] = TIMENOW;
CONFIG["start"] = TIMESTART;
CONFIG["plus"] = TIMEPLUS;
CONFIG["end"] = TIMEEND;
digitalWrite(FLUSHPIN, LOW);
delay(6000);
digitalWrite(FLUSHPIN, HIGH);
cout << "game is " << CONFIG["status"] << endl;
}
// Берём свежий конфиг игры
void getData () {
ifstream questConfig(PATHJSON);
if(questConfig.tellg() == 0) {
cout << "pusto!";
ifstream questConfig(PATHJSONBACKUP);
}
questConfig >> CONFIG;
questConfig.close();
}
// Сохроняем изменения в конфиг
void saveData () {
ofstream questConfig(PATHJSON);
questConfig << CONFIG << endl;
questConfig.close();
}
int main () {
// https://projects.drogon.net/raspberry-pi/wiringpi/
wiringPiSetup ();
pinMode(FLUSHPIN, OUTPUT); // flush pin
digitalWrite(FLUSHPIN, HIGH);
// Главный и бесконечный цикл игры
for(;;) {
getData();
if (CONFIG["status"] == "starting") { // Запуск игры
CONFIG["now"] = TIMENOW;
CONFIG["start"] = TIMESTART;
CONFIG["plus"] = TIMEPLUS;
CONFIG["end"] = TIMEEND;
CONFIG["wheel"] = 0;
CONFIG["trek"] = 8;
CONFIG["status"] = "playing";
saveData();
cout << "game start" << endl;
do {
ifstream questConfig (PATHJSON);
questConfig >> CONFIG;
cout << CONFIG << endl; // debug view
// опрос по i2c ардуиок
checkKassa(); // TODO можно ведь упростить
checkWheel();
checkCheeze();
checkLopatka();
checkKegi();
checkTrek();
checkRecipe();
// добавляем +1 сек к времени
int timeGame = CONFIG["now"]; // TODO мб в одну строку?
timeGame++;
CONFIG["now"] = timeGame;
time_t timeWorld;
timeWorld = time (NULL);
CONFIG["timeWorld"] = timeWorld;
// проверки на конец игры
if (CONFIG["status"] == "flush") {
flushGame();
saveData();
cout << "flushhhh" << endl;
break;
}
if (CONFIG["status"] == "end") {
CONFIG["final"] = 1;
cout << "game end" << endl;
break; // TODO вот тут сделать финал
}
// сохроняем изменения
saveData();
delay(1000);
} while (CONFIG["status"] == "playing");
CONFIG["status"] = "end";
saveData();
}
if (CONFIG["status"] == "flush") { // сброс конфига в js, тут только время
flushGame();
saveData();
} else {
time_t timeWorld;
timeWorld = time (NULL);
CONFIG["timeWorld"] = timeWorld;
cout << "go?" << endl;
cout << CONFIG["timeWorld"] << endl;
delay(100);
saveData();
}
delay(1000);
}
return 0;
}