-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathLinkWirelessMultiboot.hpp
1484 lines (1271 loc) · 48.3 KB
/
LinkWirelessMultiboot.hpp
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
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#ifndef LINK_WIRELESS_MULTIBOOT_H
#define LINK_WIRELESS_MULTIBOOT_H
// --------------------------------------------------------------------------
// A Wireless Multiboot tool to send small ROMs from a GBA to up to 4 slaves.
// --------------------------------------------------------------------------
// Usage:
// - 1) Include this header in your main.cpp file and add:
// LinkWirelessMultiboot* linkWirelessMultiboot =
// new LinkWirelessMultiboot();
// - 2) Send the ROM:
// LinkWirelessMultiboot::Result result = linkWirelessMultiboot->sendRom(
// romBytes, // for current ROM, use: ((const u8*)MEM_EWRAM)
// romLength, // in bytes
// "Multiboot", // game name
// "Test", // user name
// 0xFFFF, // game ID
// 2, // number of players
// [](LinkWirelessMultiboot::MultibootProgress progress) {
// // check progress.[state,connectedClients,percentage]
//
// u16 keys = ~REG_KEYS & KEY_ANY;
// return keys & KEY_START;
// // (when this returns true, the transfer will be canceled)
// }
// );
// // `result` should be LinkWirelessMultiboot::Result::SUCCESS
// - 3) (Optional) Send ROMs asynchronously:
// LinkWirelessMultiboot::Async* linkWirelessMultibootAsync =
// new LinkWirelessMultiboot::Async("Multiboot", "Test");
// interrupt_init();
// interrupt_add(INTR_VBLANK, LINK_WIRELESS_MULTIBOOT_ASYNC_ISR_VBLANK);
// interrupt_add(INTR_SERIAL, LINK_WIRELESS_MULTIBOOT_ASYNC_ISR_SERIAL);
// interrupt_add(INTR_TIMER3, LINK_WIRELESS_MULTIBOOT_ASYNC_ISR_TIMER);
// bool success = linkWirelessMultibootAsync->sendRom(
// romBytes, romLength
// );
// if (success) {
// // (monitor `playerCount()` and `getPercentage()`)
// if (!linkWirelessMultibootAsync->isSending()) {
// auto result = linkWirelessMultibootAsync->getResult();
// // `result` should be
// // LinkWirelessMultiboot::Async::GeneralResult::SUCCESS
// }
// }
// --------------------------------------------------------------------------
#ifndef LINK_DEVELOPMENT
#pragma GCC system_header
#endif
#include "_link_common.hpp"
#include "LinkRawWireless.hpp"
#include "LinkWirelessOpenSDK.hpp"
#ifndef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
/**
* @brief Enable logging.
* \warning Set `linkWirelessMultiboot->logger` and uncomment to enable!
* \warning This option #includes std::string!
*/
// #define LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
#endif
#ifndef LINK_WIRELESS_MULTIBOOT_ASYNC_DISABLE_NESTED_IRQ
/**
* @brief Disable nested IRQs (uncomment to enable).
* In the async version, SERIAL IRQs can be interrupted (once they clear their
* time-critical needs) by default, which helps prevent issues with audio
* engines. However, if something goes wrong, you can disable this behavior.
*/
// #define LINK_WIRELESS_MULTIBOOT_ASYNC_DISABLE_NESTED_IRQ
#endif
LINK_VERSION_TAG LINK_WIRELESS_MULTIBOOT_VERSION =
"vLinkWirelessMultiboot/v8.0.2";
#define LINK_WIRELESS_MULTIBOOT_MIN_ROM_SIZE (0x100 + 0xC0)
#define LINK_WIRELESS_MULTIBOOT_MAX_ROM_SIZE (256 * 1024)
#define LINK_WIRELESS_MULTIBOOT_MIN_PLAYERS 2
#define LINK_WIRELESS_MULTIBOOT_MAX_PLAYERS 5
#define LINK_WIRELESS_MULTIBOOT_ASYNC_DEFAULT_INTERVAL 50
#define LINK_WIRELESS_MULTIBOOT_ASYNC_DEFAULT_TIMER_ID 3
#define LINK_WIRELESS_MULTIBOOT_TRY(CALL) \
LINK_BARRIER; \
if ((lastResult = CALL) != Result::SUCCESS) { \
return finish(lastResult); \
}
#define LINK_WIRELESS_MULTIBOOT_TRY_SUB(CALL) \
LINK_BARRIER; \
if ((lastResult = CALL) != Result::SUCCESS) { \
return lastResult; \
}
#ifdef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
#include <string>
#define _LWMLOG_(str) logger(str)
#else
#define _LWMLOG_(str)
#endif
/**
* @brief A Multiboot tool to send small ROMs from a GBA to up to 4 slaves via
* GBA Wireless Adapter.
*/
class LinkWirelessMultiboot {
private:
using u32 = Link::u32;
using u16 = Link::u16;
using u8 = Link::u8;
using CommState = LinkWirelessOpenSDK::CommState;
using Sequence = LinkWirelessOpenSDK::SequenceNumber;
using ClientHeader = LinkWirelessOpenSDK::ClientSDKHeader;
using ClientPacket = LinkWirelessOpenSDK::ClientPacket;
using ChildrenData = LinkWirelessOpenSDK::ChildrenData;
using SendBuffer =
LinkWirelessOpenSDK::SendBuffer<LinkWirelessOpenSDK::ServerSDKHeader>;
static constexpr int HEADER_SIZE = 0xC0;
static constexpr int SETUP_TX = 1;
static constexpr int GAME_ID_MULTIBOOT_FLAG = 1 << 15;
static constexpr int FRAME_LINES = 228;
static constexpr int MAX_INFLIGHT_PACKETS = 4;
static constexpr int FINAL_CONFIRMS = 3;
static constexpr u8 CMD_START[] = {0x00, 0x54, 0x00, 0x00, 0x00, 0x02, 0x00};
static constexpr int CMD_START_SIZE = 7;
static constexpr u8 BOOTLOADER_HANDSHAKE[][6] = {
{0x00, 0x00, 0x52, 0x46, 0x55, 0x2D},
{0x4D, 0x42, 0x2D, 0x44, 0x4C, 0x00}};
static constexpr int BOOTLOADER_HANDSHAKE_SIZE = 6;
static constexpr u8 ROM_HEADER_PATCH[] = {0x52, 0x46, 0x55, 0x2D, 0x4D, 0x42,
0x4F, 0x4F, 0x54, 0x00, 0x00, 0x00};
static constexpr int ROM_HEADER_PATCH_OFFSET = 4;
static constexpr int ROM_HEADER_PATCH_SIZE = 12;
public:
#ifdef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
typedef void (*Logger)(std::string);
Logger logger = [](std::string str) {};
#endif
enum class State {
STOPPED = 0,
INITIALIZING = 1,
LISTENING = 2,
PREPARING = 3,
SENDING = 4,
CONFIRMING = 5
};
enum class Result {
SUCCESS = 0,
INVALID_SIZE = 1,
INVALID_PLAYERS = 2,
CANCELED = 3,
ADAPTER_NOT_DETECTED = 4,
BAD_HANDSHAKE = 5,
CLIENT_DISCONNECTED = 6,
FAILURE = 7
};
struct MultibootProgress {
State state = State::STOPPED;
u8 connectedClients = 0;
u8 percentage = 0;
volatile bool* ready = nullptr;
};
/**
* @brief Sends the `rom`. Once completed, the return value should be
* `LinkWirelessMultiboot::Result::SUCCESS`.
* @param rom A pointer to ROM data.
* @param romSize Size of the ROM in bytes. It must be a number between
* `448` and `262144`. It's recommended to use a ROM size that is a multiple
* of `16`, as this also ensures compatibility with Multiboot via Link Cable.
* @param gameName Game name. Maximum `14` characters + null terminator.
* @param userName User name. Maximum `8` characters + null terminator.
* @param gameId `(0 ~ 0x7FFF)` Game ID.
* @param players The number of consoles that will download the ROM.
* Once this number of players is reached, the code will start transmitting
* the ROM bytes.
* @param listener A function that will be continuously invoked. If it returns
* `true`, the transfer will be aborted. It receives a
* `LinkWirelessMultiboot::MultibootProgress` object with details.
* @param keepConnectionAlive If `true`, the adapter won't be reset after a
* successful transfer, so users can continue the session using
* `LinkWireless::restoreExistingConnection()`.
* \warning You can start the transfer before the player count is reached by
* running `*progress.ready = true;` in the `listener` callback.
* \warning Blocks the system until completion or cancellation.
*/
template <typename C>
Result sendRom(const u8* rom,
u32 romSize,
const char* gameName,
const char* userName,
const u16 gameId,
u8 players,
C listener,
bool keepConnectionAlive = false) {
LINK_READ_TAG(LINK_WIRELESS_MULTIBOOT_VERSION);
if (romSize < LINK_WIRELESS_MULTIBOOT_MIN_ROM_SIZE ||
romSize > LINK_WIRELESS_MULTIBOOT_MAX_ROM_SIZE)
return Result::INVALID_SIZE;
if (players < LINK_WIRELESS_MULTIBOOT_MIN_PLAYERS ||
players > LINK_WIRELESS_MULTIBOOT_MAX_PLAYERS)
return Result::INVALID_PLAYERS;
resetState();
_LWMLOG_("starting...");
LINK_WIRELESS_MULTIBOOT_TRY(activate())
progress.state = State::INITIALIZING;
LINK_WIRELESS_MULTIBOOT_TRY(initialize(gameName, userName, gameId, players))
_LWMLOG_("waiting for connections...");
progress.state = State::LISTENING;
LINK_WIRELESS_MULTIBOOT_TRY(waitForClients(players, listener))
_LWMLOG_("all players are connected");
progress.state = State::PREPARING;
_LWMLOG_("rom start command...");
LINK_WIRELESS_MULTIBOOT_TRY(sendRomStartCommand(listener))
_LWMLOG_("SENDING ROM!");
progress.state = State::SENDING;
LINK_WIRELESS_MULTIBOOT_TRY(sendRomBytes(rom, romSize, listener))
progress.state = State::CONFIRMING;
LINK_WIRELESS_MULTIBOOT_TRY(confirm(listener))
_LWMLOG_("SUCCESS!");
return finish(Result::SUCCESS, keepConnectionAlive);
}
/**
* @brief Turns off the adapter and deactivates the library. It returns a
* boolean indicating whether the transition to low consumption mode was
* successful.
*/
bool reset() {
bool success = linkRawWireless.bye();
linkRawWireless.deactivate();
resetState();
return success;
}
#ifdef LINK_RAW_WIRELESS_ENABLE_LOGGING
/**
* @brief Sets a logger function.
* \warning This is internal API!
*/
void _setLogger(LinkRawWireless::Logger logger) {
linkRawWireless.logger = logger;
}
#endif
private:
LinkRawWireless linkRawWireless;
LinkWirelessOpenSDK linkWirelessOpenSDK;
MultibootProgress progress;
volatile bool readyFlag = false;
volatile Result lastResult;
ClientHeader lastValidHeader;
Result activate() {
if (!linkRawWireless.activate()) {
_LWMLOG_("! adapter not detected");
return Result::ADAPTER_NOT_DETECTED;
}
_LWMLOG_("activated");
return Result::SUCCESS;
}
Result initialize(const char* gameName,
const char* userName,
const u16 gameId,
u8 players) {
if (!linkRawWireless.setup(players, SETUP_TX)) {
_LWMLOG_("! setup failed");
return Result::FAILURE;
}
_LWMLOG_("setup ok");
if (!linkRawWireless.broadcast(gameName, userName,
gameId | GAME_ID_MULTIBOOT_FLAG)) {
_LWMLOG_("! broadcast failed");
return Result::FAILURE;
}
_LWMLOG_("broadcast data set");
if (!linkRawWireless.startHost()) {
_LWMLOG_("! start host failed");
return Result::FAILURE;
}
_LWMLOG_("host started");
return Result::SUCCESS;
}
template <typename C>
Result waitForClients(u8 players, C listener) {
LinkRawWireless::PollConnectionsResponse pollResponse;
u32 currentPlayers = 1;
while ((linkRawWireless.playerCount() < players && !readyFlag) ||
linkRawWireless.playerCount() <= 1) {
if (listener(progress))
return Result::CANCELED;
if (!linkRawWireless.pollConnections(pollResponse))
return Result::FAILURE;
if (linkRawWireless.playerCount() > currentPlayers) {
currentPlayers = linkRawWireless.playerCount();
progress.connectedClients = currentPlayers - 1;
u8 lastClientNumber =
pollResponse.connectedClients[pollResponse.connectedClientsSize - 1]
.clientNumber;
LINK_WIRELESS_MULTIBOOT_TRY_SUB(
handshakeClient(lastClientNumber, listener))
}
}
readyFlag = true;
if (!linkRawWireless.endHost(pollResponse))
return Result::FAILURE;
return Result::SUCCESS;
}
template <typename C>
Result handshakeClient(u8 clientNumber, C listener) {
ClientPacket handshakePackets[2] = {ClientPacket{}, ClientPacket{}};
bool hasReceivedName = false;
_LWMLOG_("new client: " + std::to_string(clientNumber));
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeAndValidate(
clientNumber,
[this](LinkRawWireless::ReceiveDataResponse& response) {
return exchange({}, 0, 1, response);
},
[](ClientPacket packet) { return true; }, listener))
// (initial client packet received)
_LWMLOG_("handshake (1/2)...");
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeACKData(
clientNumber,
[](ClientPacket packet) {
auto header = packet.header;
return header.n == 2 && header.commState == CommState::STARTING;
},
listener))
// (n = 2, commState = 1)
_LWMLOG_("handshake (2/2)...");
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeACKData(
clientNumber,
[&handshakePackets](ClientPacket packet) {
auto header = packet.header;
bool isValid = header.n == 1 && header.phase == 0 &&
header.commState == CommState::COMMUNICATING;
if (isValid)
handshakePackets[0] = packet;
return isValid;
},
listener))
// (n = 1, commState = 2)
_LWMLOG_("receiving name...");
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeACKData(
clientNumber,
[this, &handshakePackets, &hasReceivedName](ClientPacket packet) {
auto header = packet.header;
lastValidHeader = header;
if (header.n == 1 && header.phase == 1 &&
header.commState == CommState::COMMUNICATING) {
handshakePackets[1] = packet;
hasReceivedName = true;
}
return header.commState == CommState::OFF;
},
listener))
// (commState = 0)
_LWMLOG_("validating name...");
if (!validateName(handshakePackets, hasReceivedName)) {
_LWMLOG_("! bad payload");
return Result::BAD_HANDSHAKE;
}
_LWMLOG_("draining queue...");
bool hasFinished = false;
while (!hasFinished) {
if (listener(progress))
return Result::CANCELED;
LinkRawWireless::ReceiveDataResponse response;
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchange({}, 0, 1, response))
auto childrenData = linkWirelessOpenSDK.getChildrenData(response);
hasFinished = childrenData.responses[clientNumber].packetsSize == 0;
}
// (no more client packets)
_LWMLOG_("client " + std::to_string(clientNumber) + " accepted");
return Result::SUCCESS;
}
template <typename C>
Result sendRomStartCommand(C listener) {
for (u32 i = 0; i < progress.connectedClients; i++) {
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeNewData(
i,
linkWirelessOpenSDK.createServerBuffer(
CMD_START, CMD_START_SIZE, {1, 0, CommState::STARTING}, 1 << i),
listener))
}
return Result::SUCCESS;
}
template <typename C>
Result sendRomBytes(const u8* rom, u32 romSize, C listener) {
u8 firstPagePatch[LinkWirelessOpenSDK::MAX_PAYLOAD_SERVER];
generateFirstPagePatch(rom, firstPagePatch);
progress.percentage = 0;
LinkWirelessOpenSDK::MultiTransfer<MAX_INFLIGHT_PACKETS> multiTransfer(
&linkWirelessOpenSDK);
multiTransfer.configure(romSize, progress.connectedClients);
while (!multiTransfer.hasFinished()) {
if (listener(progress))
return Result::CANCELED;
LINK_WIRELESS_MULTIBOOT_TRY_SUB(ensureAllClientsAreStillAlive())
auto sendBuffer = multiTransfer.createNextSendBuffer(
multiTransfer.getCursor() == 0 ? (const u8*)firstPagePatch : rom);
LinkRawWireless::ReceiveDataResponse response;
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchange(sendBuffer, response))
u8 newPercentage = multiTransfer.processResponse(response);
progress.percentage = newPercentage;
}
return Result::SUCCESS;
}
template <typename C>
Result confirm(C listener) {
_LWMLOG_("confirming (1/2)...");
for (u32 i = 0; i < progress.connectedClients; i++) {
LINK_WIRELESS_MULTIBOOT_TRY_SUB(
exchangeNewData(i,
linkWirelessOpenSDK.createServerBuffer(
{}, 0, {0, 0, CommState::ENDING}, 1 << i),
listener))
}
_LWMLOG_("confirming (2/2)...");
for (u32 i = 0; i < FINAL_CONFIRMS; i++) {
LinkRawWireless::ReceiveDataResponse response;
auto sendBuffer = linkWirelessOpenSDK.createServerBuffer(
{}, 0, {1, 0, CommState::OFF}, 0b1111);
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchange(sendBuffer, response))
}
return Result::SUCCESS;
}
template <typename C>
Result exchangeNewData(u8 clientNumber, SendBuffer sendBuffer, C listener) {
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeAndValidate(
clientNumber,
[this, &sendBuffer](LinkRawWireless::ReceiveDataResponse& response) {
return exchange(sendBuffer, response);
},
[&sendBuffer](ClientPacket packet) {
auto header = packet.header;
return header.isACK == 1 &&
header.sequence() == sendBuffer.header.sequence();
},
listener))
return Result::SUCCESS;
}
template <typename V, typename C>
Result exchangeACKData(u8 clientNumber, V validatePacket, C listener) {
LINK_WIRELESS_MULTIBOOT_TRY_SUB(exchangeAndValidate(
clientNumber,
[this, clientNumber](LinkRawWireless::ReceiveDataResponse& response) {
auto sendBuffer = linkWirelessOpenSDK.createServerACKBuffer(
lastValidHeader, clientNumber);
return exchange(sendBuffer, response);
},
validatePacket, listener))
return Result::SUCCESS;
}
template <typename F, typename V, typename C>
Result exchangeAndValidate(u8 clientNumber,
F sendAction,
V validatePacket,
C listener) {
while (true) {
if (listener(progress))
return Result::CANCELED;
LinkRawWireless::ReceiveDataResponse response;
LINK_WIRELESS_MULTIBOOT_TRY_SUB(sendAction(response))
auto childrenData = linkWirelessOpenSDK.getChildrenData(response);
if (isDataValid(clientNumber, childrenData, lastValidHeader,
validatePacket))
break;
}
return Result::SUCCESS;
}
Result exchange(SendBuffer& sendBuffer,
LinkRawWireless::ReceiveDataResponse& response) {
return exchange(sendBuffer.data, sendBuffer.dataSize,
sendBuffer.totalByteCount, response);
}
Result exchange(const u32* data,
u32 dataSize,
u32 _bytes,
LinkRawWireless::ReceiveDataResponse& response) {
LinkRawWireless::CommandResult remoteCommand;
bool success = false;
success =
linkRawWireless.sendDataAndWait(data, dataSize, remoteCommand, _bytes);
if (!success) {
_LWMLOG_("! sendDataAndWait failed");
return Result::FAILURE;
}
if (remoteCommand.commandId != LinkRawWireless::EVENT_DATA_AVAILABLE) {
_LWMLOG_("! expected EVENT 0x28");
_LWMLOG_("! but got " + toHex(remoteCommand.commandId));
return Result::FAILURE;
}
if (remoteCommand.dataSize > 0 &&
!areAllConnected(&remoteCommand, progress.connectedClients)) {
_LWMLOG_("! client timeout");
return Result::CLIENT_DISCONNECTED;
}
success = linkRawWireless.receiveData(response);
if (!success) {
_LWMLOG_("! receiveData failed");
return Result::FAILURE;
}
return Result::SUCCESS;
}
Result ensureAllClientsAreStillAlive() {
LinkRawWireless::SlotStatusResponse slotStatusResponse;
if (!linkRawWireless.getSlotStatus(slotStatusResponse))
return Result::FAILURE;
if (slotStatusResponse.connectedClientsSize < progress.connectedClients)
return Result::CLIENT_DISCONNECTED;
return Result::SUCCESS;
}
Result finish(Result result, bool keepConnectionAlive = false) {
if (result != Result::SUCCESS || !keepConnectionAlive)
linkRawWireless.bye();
linkRawWireless.deactivate();
resetState();
return result;
}
void resetState() {
LINK_BARRIER;
progress.state = State::STOPPED;
progress.connectedClients = 0;
progress.percentage = 0;
progress.ready = &readyFlag;
readyFlag = false;
lastValidHeader = ClientHeader{};
LINK_BARRIER;
}
#ifdef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
template <typename I>
std::string toHex(I w, size_t hex_len = sizeof(I) << 1) {
static const char* digits = "0123456789ABCDEF";
std::string rc(hex_len, '0');
for (size_t i = 0, j = (hex_len - 1) * 4; i < hex_len; ++i, j -= 4)
rc[i] = digits[(w >> j) & 0x0F];
return rc;
}
#endif
static bool validateName(ClientPacket* handshakePackets,
bool hasReceivedName) {
for (u32 i = 0; i < 2; i++) {
auto receivedPayload = handshakePackets[i].payload;
auto expectedPayload = BOOTLOADER_HANDSHAKE[i];
for (u32 j = 0; j < BOOTLOADER_HANDSHAKE_SIZE; j++) {
if (!hasReceivedName || receivedPayload[j] != expectedPayload[j])
return false;
}
}
return true;
}
static void generateFirstPagePatch(const u8* rom, u8* firstPagePatch) {
for (u32 i = 0; i < LinkWirelessOpenSDK::MAX_PAYLOAD_SERVER; i++) {
firstPagePatch[i] =
i >= ROM_HEADER_PATCH_OFFSET &&
i < ROM_HEADER_PATCH_OFFSET + ROM_HEADER_PATCH_SIZE
? ROM_HEADER_PATCH[i - ROM_HEADER_PATCH_OFFSET]
: rom[i];
}
}
template <typename V>
static bool isDataValid(u8 clientNumber,
ChildrenData& childrenData,
ClientHeader& lastReceivedHeader,
V validatePacket) {
for (u32 i = 0; i < childrenData.responses[clientNumber].packetsSize; i++) {
auto packet = childrenData.responses[clientNumber].packets[i];
auto header = packet.header;
if (validatePacket(packet)) {
lastReceivedHeader = header;
return true;
}
}
return false;
}
static bool areAllConnected(LinkRawWireless::CommandResult* remoteCommand,
u32 connectedClients) {
u8 expectedActiveChildren = 0;
for (u32 i = 0; i < connectedClients; i++)
expectedActiveChildren |= 1 << i;
u8 activeChildren = (remoteCommand->data[0] >> 8) & expectedActiveChildren;
return activeChildren == expectedActiveChildren;
}
public:
/**
* @brief [Asynchronous version] A Multiboot tool to send small ROMs from a
* GBA to up to 4 slaves via GBA Wireless Adapter.
*/
class Async : Link::AsyncMultiboot {
private:
using ServerHeader = LinkWirelessOpenSDK::ServerSDKHeader;
static constexpr auto BASE_FREQUENCY = Link::_TM_FREQ_1024;
static constexpr int FPS = 60;
static constexpr int MAX_IRQ_TIMEOUT_FRAMES = FPS * 5;
static constexpr int START_WAIT_FRAMES = 2;
public:
#ifdef LINK_WIRELESS_MULTIBOOT_ENABLE_LOGGING
Logger logger = [](std::string str){};
#endif
using GeneralResult = Link::AsyncMultiboot::Result;
enum class State {
STOPPED = 0,
INITIALIZING = 1,
STARTING = 2,
LISTENING = 3,
HANDSHAKING_CLIENT_STEP1 = 4,
HANDSHAKING_CLIENT_STEP2 = 5,
HANDSHAKING_CLIENT_STEP3 = 6,
HANDSHAKING_CLIENT_STEP4 = 7,
HANDSHAKING_CLIENT_STEP5 = 8,
ENDING_HOST = 9,
SENDING_ROM_START_COMMAND = 10,
ENSURING_CLIENTS_ALIVE = 11,
SENDING_ROM_PART = 12,
CONFIRMING_STEP1 = 13,
CONFIRMING_STEP2 = 14,
};
enum class Result {
NONE = -1,
SUCCESS = 0,
INVALID_SIZE = 1,
INVALID_PLAYERS = 2,
ADAPTER_NOT_DETECTED = 3,
INIT_FAILURE = 4,
BAD_HANDSHAKE = 5,
CLIENT_DISCONNECTED = 6,
FAILURE = 7,
IRQ_TIMEOUT = 8
};
/**
* @brief Constructs a new LinkWirelessMultiboot::Async object.
* @param gameName Game name. Maximum `14` characters + null terminator.
* @param userName User name. Maximum `8` characters + null terminator.
* @param gameId `(0 ~ 0x7FFF)` The Game ID to be broadcasted.
* @param players The number of consoles that will download the ROM.
* Once this number of players is reached, the code will start transmitting
* the ROM bytes, unless `waitForReadySignal` is `true`.
* @param waitForReadySignal Whether the code should wait for a
* `markReady()` call to start the actual transfer.
* @param keepConnectionAlive If `true`, the adapter won't be reset after
* a successful transfer, so users can continue the session using
* `LinkWireless::restoreExistingConnection()`.
* @param interval Number of *1024-cycle ticks* (61.04μs) between transfers
* *(50 = 3.052ms)*. It's the interval of Timer #`timerId`. Lower values
* will transfer faster but also consume more CPU. Some audio players
* require precise interrupt timing to avoid crashes! Use a minimum of 30.
* @param timerId `(0~3)` GBA Timer to use for waiting.
*/
explicit Async(
const char* gameName = "",
const char* userName = "",
u16 gameId = LINK_RAW_WIRELESS_MAX_GAME_ID,
u8 players = 5,
bool waitForReadySignal = false,
bool keepConnectionAlive = false,
u16 interval = LINK_WIRELESS_MULTIBOOT_ASYNC_DEFAULT_INTERVAL,
u8 timerId = LINK_WIRELESS_MULTIBOOT_ASYNC_DEFAULT_TIMER_ID)
: multiTransfer(&linkWirelessOpenSDK) {
config.gameName = gameName;
config.userName = userName;
config.gameId = gameId;
config.players = players;
config.waitForReadySignal = waitForReadySignal;
config.keepConnectionAlive = keepConnectionAlive;
config.interval = interval;
config.timerId = timerId;
}
/**
* @brief Sends the `rom`. Once completed, `getState()` should return
* `LinkWirelessMultiboot::Async::State::STOPPED` and `getResult()` should
* return `LinkWirelessMultiboot::Async::GeneralResult::SUCCESS`. Returns
* `false` if there's a pending transfer or the data is invalid.
* @param rom A pointer to ROM data.
* @param romSize Size of the ROM in bytes. It must be a number between
* `448` and `262144`. It's recommended to use a ROM size that is a multiple
* of `16`, as this also ensures compatibility with Multiboot via Link
* Cable.
*/
bool sendRom(const u8* rom, u32 romSize) override {
if (state != State::STOPPED)
return false;
if (romSize < LINK_WIRELESS_MULTIBOOT_MIN_ROM_SIZE ||
romSize > LINK_WIRELESS_MULTIBOOT_MAX_ROM_SIZE) {
result = Result::INVALID_SIZE;
return false;
}
if (config.players < LINK_WIRELESS_MULTIBOOT_MIN_PLAYERS ||
config.players > LINK_WIRELESS_MULTIBOOT_MAX_PLAYERS) {
result = Result::INVALID_PLAYERS;
return false;
}
stop();
fixedData.rom = rom;
fixedData.romSize = romSize;
fixedData.gameName = config.gameName;
fixedData.userName = config.userName;
fixedData.gameId = config.gameId;
fixedData.players = config.players;
fixedData.waitForReadySignal = config.waitForReadySignal;
fixedData.keepConnectionAlive = config.keepConnectionAlive;
fixedData.timerId = config.timerId;
generateFirstPagePatch(rom, fixedData.firstPagePatch);
_LWMLOG_("starting...");
state = State::INITIALIZING;
if (!linkRawWireless.activate()) {
_LWMLOG_("! adapter not detected");
stop(Result::ADAPTER_NOT_DETECTED);
return false;
}
_LWMLOG_("activated");
if (!linkRawWireless.setup(fixedData.players, SETUP_TX) ||
!linkRawWireless.broadcast(
fixedData.gameName, fixedData.userName,
fixedData.gameId | GAME_ID_MULTIBOOT_FLAG) ||
!linkRawWireless.startHost(false)) {
_LWMLOG_("! init failed");
stop(Result::INIT_FAILURE);
return false;
}
_LWMLOG_("host started");
state = State::STARTING;
return true;
}
/**
* @brief Turns off the adapter and deactivates the library, canceling the
* in-progress transfer, if any. It returns a boolean indicating whether
* the transition to low consumption mode was successful.
* \warning Never call this method inside an interrupt handler!
*/
bool reset() override { return stop(); }
/**
* @brief Returns whether there's an active transfer or not.
*/
[[nodiscard]] bool isSending() override { return state != State::STOPPED; }
/**
* @brief Returns the current state.
*/
[[nodiscard]] State getState() { return state; }
/**
* @brief Returns the result of the last operation. After this
* call, the result is cleared if `clear` is `true` (default behavior).
* @param clear Whether it should clear the result or not.
*/
Link::AsyncMultiboot::Result getResult(bool clear = true) override {
auto detailedResult = getDetailedResult(clear);
switch (detailedResult) {
case Result::NONE:
return Link::AsyncMultiboot::Result::NONE;
case Result::SUCCESS:
return Link::AsyncMultiboot::Result::SUCCESS;
case Result::INVALID_SIZE:
case Result::INVALID_PLAYERS:
return Link::AsyncMultiboot::Result::INVALID_DATA;
case Result::ADAPTER_NOT_DETECTED:
case Result::INIT_FAILURE:
return Link::AsyncMultiboot::Result::INIT_FAILED;
default:
return Link::AsyncMultiboot::Result::FAILURE;
}
}
/**
* @brief Returns the detailed result of the last operation. After this
* call, the result is cleared if `clear` is `true` (default behavior).
* @param clear Whether it should clear the result or not.
*/
Result getDetailedResult(bool clear = true) {
Result _result = result;
if (clear)
result = Result::NONE;
return _result;
}
/**
* @brief Returns the number of connected players (`1~5`).
*/
[[nodiscard]] u8 playerCount() override {
return 1 + dynamicData.connectedClients;
}
/**
* @brief Returns the completion percentage (0~100).
*/
[[nodiscard]] u8 getPercentage() override {
if (state == State::STOPPED || fixedData.romSize == 0)
return 0;
return dynamicData.percentage;
}
/**
* @brief Returns whether the ready mark is active or not.
*/
[[nodiscard]] bool isReady() override { return dynamicData.ready; }
/**
* @brief Marks the transfer as ready.
*/
void markReady() override {
if (state == State::STOPPED)
return;
dynamicData.ready = true;
}
/**
* @brief This method is called by the VBLANK interrupt handler.
* \warning This is internal API!
*/
void _onVBlank() {
if (state == State::STOPPED)
return;
processNewFrame();
}
/**
* @brief This method is called by the SERIAL interrupt handler.
* \warning This is internal API!
*/
void _onSerial() {
if (state == State::STOPPED || interrupt)
return;
#ifndef LINK_WIRELESS_MULTIBOOT_ASYNC_DISABLE_NESTED_IRQ
interrupt = true;
#endif
if (linkRawWireless._onSerial() > 0) {
auto response = linkRawWireless._getAsyncCommandResultRef();
#ifndef LINK_WIRELESS_MULTIBOOT_ASYNC_DISABLE_NESTED_IRQ
Link::_REG_IME = 1;
#endif
processResponse(response);
}
#ifndef LINK_WIRELESS_MULTIBOOT_ASYNC_DISABLE_NESTED_IRQ
interrupt = false;
#endif
}
/**
* @brief This method is called by the TIMER interrupt handler.
* \warning This is internal API!
*/
void _onTimer() {
if (state != State::SENDING_ROM_PART || interrupt)
return;
state = State::ENSURING_CLIENTS_ALIVE;
checkClientsAlive();
stopTimer();
}
struct Config {
const char* gameName;
const char* userName;
u16 gameId;
u8 players;
bool waitForReadySignal;
bool keepConnectionAlive;
u16 interval;
u8 timerId;
};
/**
* @brief LinkWirelessMultiboot::Async configuration.
* \warning `deactivate()` first, change the config, and `activate()` again!
*/
Config config;
private:
enum class SendState { NOT_SENDING, SEND_AND_WAIT, RECEIVE };
struct MultibootFixedData {
const u8* rom = nullptr;
u32 romSize = 0;
const char* gameName = nullptr;
const char* userName = nullptr;
u16 gameId = 0;
u8 players = 0;
bool waitForReadySignal = false;
bool keepConnectionAlive = false;
u32 interval = LINK_WIRELESS_MULTIBOOT_ASYNC_DEFAULT_INTERVAL;
u8 timerId = LINK_WIRELESS_MULTIBOOT_ASYNC_DEFAULT_TIMER_ID;
u8 firstPagePatch[LinkWirelessOpenSDK::MAX_PAYLOAD_SERVER] = {};
};
struct HandshakeClientData {
ClientPacket packets[2] = {ClientPacket{}, ClientPacket{}};
bool didReceiveName = false;
};
struct MultibootDynamicData {
u32 irqTimeout = 0;
u32 wait = 0;
u32 frameTransfers = 0;
u8 currentClient = 0;