forked from afska/gba-link-connection
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinkUniversal.h
457 lines (388 loc) · 12 KB
/
LinkUniversal.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
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
#ifndef LINK_UNIVERSAL_H
#define LINK_UNIVERSAL_H
// --------------------------------------------------------------------------
// A multiplayer connection for the Link Cable and the Wireless Adapter.
// --------------------------------------------------------------------------
// Usage:
// - 1) Include this header in your main.cpp file and add:
// LinkUniversal* linkUniversal = new LinkUniversal();
// - 2) Add the required interrupt service routines: (*)
// irq_init(NULL);
// irq_add(II_VBLANK, LINK_UNIVERSAL_ISR_VBLANK);
// irq_add(II_SERIAL, LINK_UNIVERSAL_ISR_SERIAL);
// irq_add(II_TIMER3, LINK_UNIVERSAL_ISR_TIMER);
// - 3) Initialize the library with:
// linkUniversal->activate();
// - 4) Sync:
// linkUniversal->sync();
// // (put this line at the start of your game loop)
// - 5) Send/read messages by using:
// bool isConnected = linkUniversal->isConnected();
// u8 playerCount = linkUniversal->playerCount();
// u8 currentPlayerId = linkUniversal->currentPlayerId();
// linkUniversal->send(0x1234);
// if (isConnected && linkUniversal->canRead(!currentPlayerId)) {
// u16 message = linkUniversal->read(!currentPlayerId);
// // ...
// }
// --------------------------------------------------------------------------
// (*) libtonc's interrupt handler sometimes ignores interrupts due to a bug.
// That can cause packet loss. You might want to use libugba's instead.
// (see examples)
// --------------------------------------------------------------------------
// `send(...)` restrictions:
// - 0xFFFF and 0x0 are reserved values, so don't use them!
// (they mean 'disconnected' and 'no data' respectively)
// --------------------------------------------------------------------------
#include <tonc_core.h>
#include "LinkCable.h"
#include "LinkWireless.h"
#define LINK_UNIVERSAL_MAX_PLAYERS LINK_CABLE_MAX_PLAYERS
#define LINK_UNIVERSAL_DISCONNECTED LINK_CABLE_DISCONNECTED
#define LINK_UNIVERSAL_NO_DATA LINK_CABLE_NO_DATA
#define LINK_UNIVERSAL_MAX_ROOM_NUMBER 32000
#define LINK_UNIVERSAL_INIT_WAIT_FRAMES 10
#define LINK_UNIVERSAL_SWITCH_WAIT_FRAMES 25
#define LINK_UNIVERSAL_SWITCH_WAIT_FRAMES_RANDOM 10
#define LINK_UNIVERSAL_BROADCAST_SEARCH_WAIT_FRAMES 10
#define LINK_UNIVERSAL_SERVE_WAIT_FRAMES 60
#define LINK_UNIVERSAL_SERVE_WAIT_FRAMES_RANDOM 30
static volatile char LINK_UNIVERSAL_VERSION[] = "LinkUniversal/v5.0.2";
void LINK_UNIVERSAL_ISR_VBLANK();
void LINK_UNIVERSAL_ISR_SERIAL();
void LINK_UNIVERSAL_ISR_TIMER();
class LinkUniversal {
public:
enum State { INITIALIZING, WAITING, CONNECTED };
enum Mode { LINK_CABLE, LINK_WIRELESS };
enum Protocol { AUTODETECT, CABLE, WIRELESS_AUTO, WIRELESS_CLIENT };
struct CableOptions {
LinkCable::BaudRate baudRate;
u32 timeout;
u32 remoteTimeout;
u16 interval;
u8 sendTimerId;
};
struct WirelessOptions {
bool retransmission;
u32 maxPlayers;
u32 timeout;
u32 remoteTimeout;
u16 interval;
u8 sendTimerId;
};
explicit LinkUniversal(
Protocol protocol = AUTODETECT,
std::string gameName = "",
CableOptions cableOptions =
CableOptions{
LinkCable::BaudRate::BAUD_RATE_1, LINK_CABLE_DEFAULT_TIMEOUT,
LINK_CABLE_DEFAULT_REMOTE_TIMEOUT, LINK_CABLE_DEFAULT_INTERVAL,
LINK_CABLE_DEFAULT_SEND_TIMER_ID},
WirelessOptions wirelessOptions = WirelessOptions{
true, LINK_WIRELESS_MAX_PLAYERS, LINK_WIRELESS_DEFAULT_TIMEOUT,
LINK_WIRELESS_DEFAULT_REMOTE_TIMEOUT, LINK_WIRELESS_DEFAULT_INTERVAL,
LINK_WIRELESS_DEFAULT_SEND_TIMER_ID}) {
this->linkCable = new LinkCable(
cableOptions.baudRate, cableOptions.timeout, cableOptions.remoteTimeout,
cableOptions.interval, cableOptions.sendTimerId);
this->linkWireless = new LinkWireless(
wirelessOptions.retransmission, true, wirelessOptions.maxPlayers,
wirelessOptions.timeout, wirelessOptions.remoteTimeout,
wirelessOptions.interval, wirelessOptions.sendTimerId);
this->config.protocol = protocol;
this->config.gameName = gameName;
}
bool isActive() { return isEnabled; }
void activate() {
reset();
isEnabled = true;
}
void deactivate() {
isEnabled = false;
linkCable->deactivate();
linkWireless->deactivate();
}
void setProtocol(Protocol protocol) { this->config.protocol = protocol; }
Protocol getProtocol() { return this->config.protocol; }
bool isConnected() { return state == CONNECTED; }
u8 playerCount() {
return mode == LINK_CABLE ? linkCable->playerCount()
: linkWireless->playerCount();
}
u8 currentPlayerId() {
return mode == LINK_CABLE ? linkCable->currentPlayerId()
: linkWireless->currentPlayerId();
}
void sync() {
if (!isEnabled)
return;
u16 keys = ~REG_KEYS & KEY_ANY;
__qran_seed += keys;
__qran_seed += REG_RCNT;
__qran_seed += REG_SIOCNT;
switch (state) {
case INITIALIZING: {
waitCount++;
if (waitCount > LINK_UNIVERSAL_INIT_WAIT_FRAMES)
start();
break;
};
case WAITING: {
if (mode == LINK_CABLE) {
// Cable, waiting...
if (isConnectedCable()) {
state = CONNECTED;
goto connected;
}
} else {
// Wireless, waiting...
if (isConnectedWireless()) {
state = CONNECTED;
goto connected;
} else {
if (!autoDiscoverWirelessConnections())
waitCount = switchWait;
if (isConnectedWireless())
goto connected;
}
}
waitCount++;
if (waitCount > switchWait)
toggleMode();
break;
}
case CONNECTED: {
connected:
if (mode == LINK_CABLE) {
// Cable, connected...
if (!isConnectedCable()) {
toggleMode();
break;
}
receiveCableMessages();
} else {
// Wireless, connected...
if (!isConnectedWireless()) {
toggleMode();
break;
}
receiveWirelessMessages();
}
break;
}
}
if (mode == LINK_CABLE)
linkCable->consume();
}
bool canRead(u8 playerId) { return !incomingMessages[playerId].isEmpty(); }
u16 read(u8 playerId) { return incomingMessages[playerId].pop(); }
void send(u16 data) {
if (data == LINK_CABLE_DISCONNECTED || data == LINK_CABLE_NO_DATA)
return;
if (mode == LINK_CABLE)
linkCable->send(data);
else
linkWireless->send(data);
}
State getState() { return state; }
Mode getMode() { return mode; }
LinkWireless::State getWirelessState() { return linkWireless->getState(); }
~LinkUniversal() {
delete linkCable;
delete linkWireless;
}
u32 _getWaitCount() { return waitCount; }
u32 _getSubWaitCount() { return subWaitCount; }
void _onVBlank() {
if (mode == LINK_CABLE)
linkCable->_onVBlank();
else
linkWireless->_onVBlank();
}
void _onSerial() {
if (mode == LINK_CABLE)
linkCable->_onSerial();
else
linkWireless->_onSerial();
}
void _onTimer() {
if (mode == LINK_CABLE)
linkCable->_onTimer();
else
linkWireless->_onTimer();
}
private:
struct Config {
Protocol protocol;
std::string gameName;
};
LinkCable::U16Queue incomingMessages[LINK_UNIVERSAL_MAX_PLAYERS];
LinkCable* linkCable;
LinkWireless* linkWireless;
Config config;
State state = INITIALIZING;
Mode mode = LINK_CABLE;
u32 waitCount = 0;
u32 switchWait = 0;
u32 subWaitCount = 0;
u32 serveWait = 0;
bool isEnabled = false;
void receiveCableMessages() {
for (u32 i = 0; i < LINK_UNIVERSAL_MAX_PLAYERS; i++) {
while (linkCable->canRead(i))
incomingMessages[i].push(linkCable->read(i));
}
}
void receiveWirelessMessages() {
LinkWireless::Message messages[LINK_WIRELESS_MAX_TRANSFER_LENGTH];
linkWireless->receive(messages);
for (u32 i = 0; i < LINK_WIRELESS_MAX_TRANSFER_LENGTH; i++) {
auto message = messages[i];
if (message.packetId == LINK_WIRELESS_END)
break;
incomingMessages[message.playerId].push(message.data);
}
}
bool autoDiscoverWirelessConnections() {
switch (linkWireless->getState()) {
case LinkWireless::State::NEEDS_RESET:
case LinkWireless::State::AUTHENTICATED: {
subWaitCount = 0;
linkWireless->getServersAsyncStart();
break;
}
case LinkWireless::State::SEARCHING: {
waitCount = 0;
subWaitCount++;
if (subWaitCount >= LINK_UNIVERSAL_BROADCAST_SEARCH_WAIT_FRAMES) {
if (!tryConnectOrServeWirelessSession())
return false;
}
break;
}
case LinkWireless::State::CONNECTING: {
if (!linkWireless->keepConnecting())
return false;
break;
}
case LinkWireless::State::SERVING: {
waitCount = 0;
subWaitCount++;
if (subWaitCount > serveWait)
return false;
break;
}
case LinkWireless::State::CONNECTED: {
// (should not happen)
break;
}
}
return true;
}
bool tryConnectOrServeWirelessSession() {
LinkWireless::Server servers[LINK_WIRELESS_MAX_SERVERS];
if (!linkWireless->getServersAsyncEnd(servers))
return false;
u32 maxRandomNumber = 0;
u32 serverIndex = 0;
for (u32 i = 0; i < LINK_WIRELESS_MAX_SERVERS; i++) {
auto server = servers[i];
if (server.id == LINK_WIRELESS_END)
break;
u32 randomNumber = std::stoi(server.userName);
if (server.gameName == config.gameName &&
randomNumber > maxRandomNumber) {
maxRandomNumber = randomNumber;
serverIndex = i;
}
}
if (maxRandomNumber > 0) {
if (!linkWireless->connect(servers[serverIndex].id))
return false;
} else {
if (config.protocol == WIRELESS_CLIENT)
return false;
subWaitCount = 0;
serveWait = LINK_UNIVERSAL_SERVE_WAIT_FRAMES +
qran_range(1, LINK_UNIVERSAL_SERVE_WAIT_FRAMES_RANDOM);
u32 randomNumber = qran_range(1, LINK_UNIVERSAL_MAX_ROOM_NUMBER);
if (!linkWireless->serve(config.gameName, std::to_string(randomNumber)))
return false;
}
return true;
}
bool isConnectedCable() { return linkCable->isConnected(); }
bool isConnectedWireless() { return linkWireless->isConnected(); }
void reset() {
switch (config.protocol) {
case AUTODETECT:
case CABLE: {
setMode(LINK_CABLE);
break;
}
case WIRELESS_AUTO:
case WIRELESS_CLIENT: {
setMode(LINK_WIRELESS);
break;
}
}
}
void stop() {
if (mode == LINK_CABLE)
linkCable->deactivate();
else
linkWireless->deactivate();
}
void toggleMode() {
switch (config.protocol) {
case AUTODETECT: {
setMode(mode == LINK_CABLE ? LINK_WIRELESS : LINK_CABLE);
break;
}
case CABLE: {
setMode(LINK_CABLE);
break;
}
case WIRELESS_AUTO:
case WIRELESS_CLIENT: {
setMode(LINK_WIRELESS);
break;
}
}
}
void setMode(Mode mode) {
stop();
this->state = INITIALIZING;
this->mode = mode;
resetState();
}
void start() {
if (mode == LINK_CABLE)
linkCable->activate();
else
linkWireless->activate();
state = WAITING;
resetState();
}
void resetState() {
waitCount = 0;
switchWait = LINK_UNIVERSAL_SWITCH_WAIT_FRAMES +
qran_range(1, LINK_UNIVERSAL_SWITCH_WAIT_FRAMES_RANDOM);
subWaitCount = 0;
serveWait = 0;
for (u32 i = 0; i < LINK_UNIVERSAL_MAX_PLAYERS; i++)
incomingMessages[i].clear();
}
};
extern LinkUniversal* linkUniversal;
inline void LINK_UNIVERSAL_ISR_VBLANK() {
linkUniversal->_onVBlank();
}
inline void LINK_UNIVERSAL_ISR_SERIAL() {
linkUniversal->_onSerial();
}
inline void LINK_UNIVERSAL_ISR_TIMER() {
linkUniversal->_onTimer();
}
#endif // LINK_UNIVERSAL_H