-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathopentilt.ino
774 lines (643 loc) · 22.5 KB
/
opentilt.ino
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
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
//#define DEBUG
#include <avr/wdt.h>
#include <avr/sleep.h>
#include <AcceleroMMA7361.h>
#include <SPI.h>
#include <nRF24L01.h>
#include <RF24.h>
#include <TimedButton.h>
#include <Entropy.h>
#include "color.h"
#include "shiv.h"
#include "debug.h"
#include "opentilt.h"
#define HW_REV2 // Hardware revision
#define CA_LED
// XXX master should send its value to the slaves
const float shock_dead = 4;
// To start the game
const float shock_shake = 20;
const int shakes_start = 5;
const int time_shake = 100;
const int time_shock = 300;
const int timeout_shake = 500;
const float vertical_shock = 25;
const int max_players = 32; // 4 bytes of SRAM per player!
const int max_teams = 3; // 4 bytes of SRAM per team!
const int long_press_on = 300;
const int long_press_off = 1000;
const int timeout = 1000;
const int time_start = 4000;
const int broadcast_repeat = 15;
const int broadcast_delay = 0;
const int unicast_tries = 15;
const int unicast_delay = 0;
const int delay_main_loop = 2;
const int time_heartbeat_master = 1000;
const int time_heartbeat_min = 400;
const int time_heartbeat_max = 800;
const int time_master_gone = 4500;
const int time_client_gone = 6 * time_heartbeat_max + 100;
const int time_error_delay = 1000;
const Color color_setup1 = gray50;
const Color color_setup2 = white;
const Color color_setup3 = orange;
const Color color_master = cyan;
const Blink blink_invite = { 500, 500 };
const Color color_error = red;
const Blink blink_error = { 300, 200 };
const Color color_hello = black;
const Color color_player[max_teams] = { blue, yellow, magenta };
const Blink blink_paired = { 1000, 1000 };
const Blink blink_start = { 200, 200 };
const Color color_dead = firebrick;
const Color color_lose = color_dead;
const Blink blink_lose = { 200, 2000 };
const Color color_win = lightgreen;
const Blink blink_win = { 200, 200 };
const Color color_single = white; // single player mode
#ifdef HW_REV1
const int pin_button = 2; // interrupt
const int pin_led_r = 3; // pwm
const int pin_led_g = 5; // pwm
const int pin_led_b = 6; // pwm
const int pin_power = 7; // powers 3.3V LDO for mma7361 and nrf24l01+
const int pin_rf_ce = 8;
const int pin_rf_cs = 10; // mosi = 11, miso = 12, clk = 13
const int pin_acc_x = A6; // non-nano doesn't have A6+A7
const int pin_acc_y = A7;
const int pin_acc_z = A5;
#endif
#ifdef HW_REV2
const int pin_button = 2; // interrupt
const int pin_led_r = 5; // pwm
const int pin_led_g = 6; // pwm
const int pin_led_b = 9; // pwm
const int pin_power = 7; // powers 3.3V LDO for mma7361 and nrf24l01+
const int pin_rf_ce = 8;
const int pin_rf_cs = 10; // mosi = 11, miso = 12, clk = 13
const int pin_acc_x = A0; // non-nano doesn't have A6+A7
const int pin_acc_y = A1;
const int pin_acc_z = A2;
#endif
const float shock_dead2 = shock_dead * shock_dead;
const float shock_shake2 = shock_shake * shock_shake;
static int time_heartbeat = time_heartbeat_max;
static int channel = 125;
static unsigned long master = 0x69690000L;
static unsigned long broadcast = 0x96969696L;
static bool received = 0;
static Payload payload;
static Param param; // for sending
static long int my_addr;
static unsigned int me;
static bool am_master = false;
static unsigned long prefix;
static signed long blinksync = 0;
static struct {
AcceleroMMA7361 acc;
float shock2;
int dx, dy, dz, dt;
unsigned int shakes;
void init() {
// Negative pin numbers are ignored by hacked library
acc.begin(-1, -1, -1, -1, pin_acc_x, pin_acc_y, pin_acc_z);
acc.setSensitivity(HIGH);
update();
}
void update() {
static int oldx = 0, oldy = 0, oldz = 0;
static unsigned long oldt;
int x = acc.getXAccel();
int y = acc.getYAccel();
int z = acc.getZAccel();
unsigned long t = millis();
dx = x - oldx, dy = y - oldy, dz = z - oldz, dt = t - oldt;
oldx = x; oldy = y; oldz = z; oldt = t;
}
bool shock_3d(float threshold2) {
float shock2 = (float) (dx*dx + dy*dy + dz*dz) / dt;
return shock2 > threshold2;
}
bool vertical_shock(float threshold) {
static unsigned long last_vertical_shock = 0;
if (millis() - last_vertical_shock < time_shock) return false;
float shock = (float) abs(dy) / dt;
if (shock > threshold) {
shakes = 0;
last_vertical_shock = millis();
return true;
}
return false;
}
bool shake() {
static unsigned long last_shake = 0;
if (shock_3d(shock_shake2) && last_shake < millis() - time_shake) {
last_shake = millis();
if (++shakes >= shakes_start) {
shakes = 0;
return true;
}
}
if (last_shake < millis() - timeout_shake) shakes = 0;
return false;
}
} motion;
RF24 rf(pin_rf_ce, pin_rf_cs);
TimedButton button(pin_button);
void led(Color color) {
#ifdef CA_LED
analogWrite(pin_led_r, 255 - color.r);
analogWrite(pin_led_g, 255 - color.g);
analogWrite(pin_led_b, 255 - color.b);
#else
// Common cathode. Assume lame LED with weak red.
analogWrite(pin_led_r, color.r);
analogWrite(pin_led_g, color.g >> 1);
analogWrite(pin_led_b, color.b >> 1);
#endif
}
void led_error(int blinks) {
unsigned int once = blink_error.on + blink_error.off,
total = blinks * once - blink_error.off,
interval = total + time_error_delay;
unsigned long now = millis() + blinksync;
led( now % interval < total
&& now % interval % once < blink_error.on
? color_error
: off
);
}
void led_blink(Blink pattern, Color c1, Color c2 = off) {
unsigned long now = millis() + blinksync;
unsigned int interval = pattern.on + pattern.off;
led(now % interval < pattern.on ? c1 : c2);
}
void pin2_isr() {
sleep_disable();
detachInterrupt(0);
}
void power_down() {
led(off);
digitalWrite(pin_power, LOW);
pinMode(pin_rf_ce, INPUT);
digitalWrite(pin_rf_ce, LOW);
pinMode(pin_rf_cs, INPUT);
digitalWrite(pin_rf_cs, LOW);
AGAIN:
wdt_disable();
sleep_enable();
attachInterrupt(0, pin2_isr, LOW);
set_sleep_mode(SLEEP_MODE_PWR_DOWN);
ADCSRA = 0; // disable ADC
PRR = B10010111;
cli(); sleep_bod_disable(); sei();
sleep_cpu();
sleep_disable();
// ADCSRA |= (1<<ADEN); // enable ADC
delay(5); // workaround: sometimes millis() is 0...
unsigned long min_time = millis() + long_press_on;
delay(10); // for more reliable readings
while (digitalRead(pin_button) == LOW && millis() < min_time);
if (millis() < min_time) goto AGAIN;
reset();
}
void reset() {
wdt_enable(WDTO_30MS);
while (42);
}
extern int __bss_end;
extern void *__brkval;
int get_free_memory() {
int free_memory;
if((int)__brkval == 0)
free_memory = ((int)&free_memory) - ((int)&__bss_end);
else free_memory = ((int)&free_memory) - ((int)__brkval);
return free_memory;
}
void setup() {
#ifdef DEBUG
Serial.begin(115200);
debug_begin();
#endif
pinMode(pin_power, OUTPUT);
pinMode(pin_led_r, OUTPUT);
pinMode(pin_led_g, OUTPUT);
pinMode(pin_led_b, OUTPUT);
led(color_setup1);
digitalWrite(pin_power, HIGH);
Entropy.Initialize();
motion.init();
rf.begin();
rf.setChannel(channel);
rf.setPayloadSize(sizeof(Payload));
time_heartbeat = Entropy.random(time_heartbeat_min, time_heartbeat_max);
// POST
if (! rf.isPVariant()) {
D("No nRF24L01+ detected.");
digitalWrite(pin_power, LOW);
for (;;) led_error(error_no_radio);
}
}
enum state_enum {
CLIENT_COMM_ERROR,
CLIENT_HELLO, CLIENT_CONFIG, CLIENT_PAIRED,
MASTER_SETUP, MASTER_INVITE, MASTER_GAME_SETUP,
GAME_START, GAME, GAME_OVER
} state = CLIENT_HELLO;
int oldstate = -1;
bool send(unsigned long destination, uint8_t msg, union Param param) {
int i;
bool ok, is_broadcast = (destination == broadcast);
static Payload p;
p.seq++;
p.msg = msg;
p.param = param;
D("SEND to=%08lx seq=%d msg=%d", destination, p.seq, p.msg);
rf.openWritingPipe(destination);
rf.stopListening();
if (msg == msg_heartbeat) p.param.heartbeat.time = millis();
ok = rf.write(&p, sizeof(p), is_broadcast);
if (is_broadcast) {
for (i = 1; i < broadcast_repeat; i++) {
delay(broadcast_delay);
if (msg == msg_heartbeat) p.param.heartbeat.time = millis();
rf.write(&p, sizeof(p), is_broadcast);
}
}
if (!is_broadcast) rf.openReadingPipe(0, broadcast);
rf.startListening();
zero(param);
return ok;
}
bool master_loop() {
static int num_players = 1;
static unsigned long wait_until = 0;
static unsigned long alive[ max_players ];
static unsigned long next_heartbeat = millis() + time_heartbeat;
static int teams = 1;
int i;
if (millis() > next_heartbeat) {
send(broadcast, msg_heartbeat, param);
next_heartbeat = millis() + time_heartbeat;
}
switch (state) {
case CLIENT_COMM_ERROR:
case CLIENT_HELLO:
case CLIENT_CONFIG:
case CLIENT_PAIRED:
break;
case MASTER_SETUP: {
led(color_master);
prefix = 0x96000000L + (Entropy.random(0xFFFF) << 8);
broadcast = prefix + 0xff;
time_heartbeat = time_heartbeat_master;
rf.openReadingPipe(0, broadcast);
rf.openReadingPipe(1, master);
rf.startListening();
D("I am master! prefix=%08lx free=%d", prefix, get_free_memory());
wait_until = 0;
state = MASTER_INVITE;
break;
}
case MASTER_INVITE: {
if (received && payload.msg == msg_hello) {
delay(10);
param.config.id = num_players;
int team = num_players % teams;
param.config.color = color_player[ teams - team - 1 ];
param.config.prefix = prefix;
send(
master + payload.param.hello.id,
msg_config,
param
);
num_players++;
led(color_hello);
wait_until = millis() + 500;
}
if (millis() >= wait_until) {
led_blink(blink_paired, color_player[teams - 1], color_master);
}
if (motion.vertical_shock(vertical_shock)) {
if (num_players > teams || (teams == max_teams && num_players > 1)) {
led(color_error);
wait_until = millis() + 1000;
break;
}
teams++;
if (teams > max_teams) teams = 1;
led(color_player[teams - 1]);
wait_until = millis() + 1000;
break;
}
if (motion.shake()) {
state = MASTER_GAME_SETUP;
param.config.id = 0;
param.config.color =
num_players == 1
? color_single
: color_player[ teams - 1 ];
payload.msg = msg_config;
payload.param = param;
return true;
}
break;
}
case MASTER_GAME_SETUP: {
master = prefix + 0x00;
rf.openReadingPipe(1, master);
rf.startListening();
param.start_game.time = time_start;
send(
broadcast,
msg_start_game,
param
);
for (i = 0; i < num_players; i++)
alive[i] = millis() + time_start + time_heartbeat_max;
payload.msg = msg_start_game;
payload.param = param;
state = CLIENT_PAIRED;
return true;
}
case GAME:
case GAME_START: {
if (motion.shake()) {
state = MASTER_GAME_SETUP;
break;
}
if (received && payload.msg == msg_status) {
int id = payload.param.status.id;
if (payload.param.status.alive) {
if (alive[id]) {
alive[ payload.param.status.id ] = millis();
} else {
// In case you hadn't noticed, you were already dead.
// (e.g. communication timeout)
D("%d says they're alive. They're not.", id);
send(prefix + id, msg_you_die, param);
}
} else {
alive[ id ] = 0;
}
}
if (num_players < 2) break; // No winners in single player :)
unsigned char num_alive = 0;
unsigned char num_alive_per_team[ max_teams ];
memset(num_alive_per_team, 0, sizeof(num_alive_per_team));
unsigned char survivor;
unsigned char surviving_team;
for (i = 0; i < num_players; i++) {
if (i ? (alive[i] > millis() - time_client_gone) : alive[i]) {
num_alive++;
num_alive_per_team[ i % teams ]++;
survivor = i;
surviving_team = i % teams;
} else if (alive[i]) {
D("%d timed out: seen=%d uptime=%d", alive[i], millis());
alive[i] = 0;
}
}
if (teams == 1 && num_alive == 1) {
if (survivor == 0) { // that's me!
send(broadcast, msg_game_over, param);
payload.msg = msg_game_over_you_win;
return true; // client_loop will set state = G_O_SETUP.
} else {
send(prefix + survivor, msg_game_over_you_win, param);
send(broadcast, msg_game_over, param);
state = GAME_OVER;
}
} else if (teams > 1) {
int num_teams_alive = 0;
for (i = 0; i < teams; i++) {
if (num_alive_per_team[i]) num_teams_alive++;
D("team %d alive %d", i, num_alive_per_team[i]);
}
if (num_teams_alive == 1) {
for (i = surviving_team; i < num_players; i += teams) {
send(prefix + i, msg_game_over_you_win, param);
}
send(broadcast, msg_game_over, param);
// Hack: just send these again in case some were not rcvd.
for (i = surviving_team; i < num_players; i += teams) {
send(prefix + i, msg_game_over_you_win, param);
}
if (surviving_team == 0) { // includes me!
payload.msg = msg_game_over_you_win;
return true;
}
state = GAME_OVER;
}
}
break;
}
case GAME_OVER: {
if (motion.shake()) {
state = MASTER_GAME_SETUP;
}
break;
}
}
return false;
}
bool client_loop() {
static Color my_color;
static unsigned long wait_until;
static bool have_config = false;
static bool alive;
static unsigned long heartbeat_received;
static unsigned long next_heartbeat;
if (received) {
switch (payload.msg) {
case msg_config: {
if (have_config) break;
me = payload.param.config.id;
my_color = payload.param.config.color;
if (!am_master) {
prefix = payload.param.config.prefix;
broadcast = prefix + 0xff;
rf.openReadingPipe(0, broadcast);
rf.openReadingPipe(1, prefix + me);
rf.startListening();
}
D("I am player %d. prefix=%08lx, free=%d",
me, prefix, get_free_memory());
have_config = true;
heartbeat_received = millis();
break;
}
case msg_heartbeat: {
heartbeat_received = millis();
blinksync = payload.param.heartbeat.time - millis();
D("My time: %ld, HB time: %ld, Blinksync: %ld",
millis(), payload.param.heartbeat.time, blinksync);
break;
}
case msg_start_game: {
master = prefix + 0x00;
if (state == GAME_START || !have_config) break;
state = GAME_START;
alive = true;
wait_until = millis() + payload.param.start_game.time;
break;
}
}
}
if (!am_master && state >= CLIENT_PAIRED) {
if (millis() > heartbeat_received + time_master_gone) {
D("Master heartbeat timed out.");
state = CLIENT_COMM_ERROR;
}
if (millis() > next_heartbeat && state >= GAME_START) {
next_heartbeat = millis() + time_heartbeat;
param.status.id = me;
param.status.alive = alive;
send(master, msg_status, param);
}
}
switch (state) {
case MASTER_SETUP:
case MASTER_INVITE:
case MASTER_GAME_SETUP:
break;
case CLIENT_COMM_ERROR: {
led_error(error_master_gone);
// No heartbeats at all anymore: power down
// New heartbeat received: rejoin game when new round starts
if (millis() > heartbeat_received + 30000) power_down();
if (received && payload.msg == msg_start_game) {
state = GAME_START;
wait_until = millis() + payload.param.start_game.time;
}
break;
}
case CLIENT_HELLO: {
led(color_setup1);
bool ok = false;
rf.setRetries(15, 15); // maximum values
me = Entropy.random(0xFFFF);
my_addr = master + me;
// random is slow
wait_until = Entropy.random(500);
wait_until += millis();
led(color_setup2);
rf.openReadingPipe(0, broadcast); // needed, but why?
rf.openReadingPipe(1, my_addr);
rf.startListening();
param.hello.id = me;
while (!ok && millis() < wait_until)
ok = send(master, msg_hello, param);
if (ok) {
wait_until = millis() + timeout;
state = CLIENT_CONFIG;
} else {
am_master = true;
state = MASTER_SETUP;
}
rf.setRetries(unicast_delay, unicast_tries);
break;
}
case CLIENT_CONFIG: {
led(color_setup3);
if (millis() >= wait_until) state = CLIENT_HELLO; // retry
if (have_config) state = CLIENT_PAIRED;
break;
}
case CLIENT_PAIRED: {
led_blink(blink_paired, my_color);
break;
}
case GAME_START: {
led_blink(blink_start, my_color);
if (millis() > wait_until) {
alive = true;
state = GAME;
}
break;
}
case GAME: {
if (received && payload.msg == msg_game_over_you_win) {
alive = true;
state = GAME_OVER;
break;
} else if (received && payload.msg == msg_game_over) {
alive = false;
state = GAME_OVER;
break;
} else if (received && payload.msg == msg_you_die) {
alive = false;
break;
}
led(alive ? my_color : color_dead);
if (alive && motion.shock_3d(shock_dead2)) {
alive = false;
param.status.id = me;
param.status.alive = alive;
// XXX ugly.
if (am_master) {
payload.msg = msg_status;
payload.param = param;
return true;
} else {
send(master, msg_status, param);
}
}
break;
}
case GAME_OVER: {
if (am_master && millis() % 5000 < 500) {
led(color_master);
} else {
if (alive) led_blink(blink_win, color_win);
else led_blink(blink_lose, color_lose);
}
if (received && payload.msg == msg_game_over_you_win) {
alive = true;
} else if (received && payload.msg == msg_start_game) {
state = GAME_START;
wait_until = millis() + payload.param.start_game.time;
}
break;
}
}
return false;
}
void loop() {
static int previous_broadcast = -1;
if (state != oldstate) {
D("State changed from %d to %d.", oldstate, state);
oldstate = state;
}
if (button.down(long_press_off)) {
led(off); // visual feedback
while (button.down());
delay(1000); // XXX debounce
power_down();
}
motion.update();
// If received is already 1, it's because we're master and sending a
// message to ourselves :)
while (!received && rf.available()) {
zero(payload);
rf.read(&payload, sizeof(payload));
received = 1;
if (payload.msg < 100) {
// broadcasts; skip duplicates
if (payload.seq == previous_broadcast) received = 0;
previous_broadcast = payload.seq;
}
if (received) D("RECEIVED: seq=%d msg=%d", payload.seq, payload.msg);
}
if (!received) {
received = client_loop();
} else if (payload.msg < 100 || payload.msg >= 200) {
// don't overwrite 'received' if mesage is for master.
received = client_loop();
}
if (am_master) received = master_loop();
else received = 0;
delay(delay_main_loop);
}
// vim: ft=cpp