Merge pull request #436 from PikalaxALT/sync_link_rfu
Sync link rfu from Emerald
This commit is contained in:
+5
-3
@@ -65,7 +65,7 @@
|
||||
#define LINKCMD_SEND_HELD_KEYS_2 0xCAFE
|
||||
#define LINKCMD_0xCCCC 0xCCCC
|
||||
|
||||
#define LINKTYPE_0x1111 0x1111 // trade
|
||||
#define LINKTYPE_TRADE 0x1111 // trade
|
||||
#define LINKTYPE_0x1122 0x1122 // trade
|
||||
#define LINKTYPE_0x1133 0x1133 // trade
|
||||
#define LINKTYPE_0x1144 0x1144 // trade
|
||||
@@ -85,6 +85,8 @@
|
||||
#define MASTER_HANDSHAKE 0x8FFF
|
||||
#define SLAVE_HANDSHAKE 0xB9A0
|
||||
|
||||
#define IsSendCmdComplete() (gSendCmd[0] == 0)
|
||||
|
||||
enum
|
||||
{
|
||||
LINK_STATE_START0,
|
||||
@@ -280,9 +282,9 @@ bool8 IsWirelessAdapterConnected(void);
|
||||
bool8 Link_PrepareCmd0xCCCC_Rfu0xA100(u8 blockRequestType);
|
||||
void LinkVSync(void);
|
||||
bool8 HandleLinkConnection(void);
|
||||
void PrepareLocalLinkPlayerBlock(void);
|
||||
void LocalLinkPlayerToBlock(void);
|
||||
void LinkPlayerFromBlock(u32 who);
|
||||
void SetLinkErrorFromRfu(u32 status, u8 lastSendQueueCount, u8 lastRecvQueueCount, u8 unk_06);
|
||||
void SetLinkErrorFromRfu(u32 status, u8 lastSendQueueCount, u8 lastRecvQueueCount, u8 isConnectionError);
|
||||
u8 sub_800A8D4(void);
|
||||
void sub_800AA24(void);
|
||||
void sub_800A900(u8 a0);
|
||||
|
||||
+106
-83
@@ -3,19 +3,56 @@
|
||||
|
||||
#include "global.h"
|
||||
#include "librfu.h"
|
||||
#include "link.h"
|
||||
#include "AgbRfu_LinkManager.h"
|
||||
|
||||
#define RFUCMD_SEND_PACKET 0x2F00
|
||||
#define RFUCMD_READY_CLOSE_LINK 0x5f00
|
||||
#define RFUCMD_READY_EXIT_STANDBY 0x6600
|
||||
#define RFUCMD_0x7700 0x7700
|
||||
#define RFUCMD_0x7800 0x7800
|
||||
#define RFUCMD_0x8800 0x8800
|
||||
#define RFUCMD_0x8900 0x8900
|
||||
#define RFUCMD_PLAYERS_LIST 0x7700
|
||||
#define RFUCMD_PLAYERS_LIST_2 0x7800
|
||||
#define RFUCMD_SEND_BLOCK_INIT 0x8800
|
||||
#define RFUCMD_SEND_BLOCK_STEP 0x8900
|
||||
#define RFUCMD_SEND_BLOCK_REQ 0xa100
|
||||
#define RFUCMD_SEND_HELD_KEYS 0xbe00
|
||||
#define RFUCMD_0xED00 0xed00
|
||||
#define RFUCMD_0xEE00 0xee00
|
||||
#define RFUCMD_PARENT_DISCONNECT 0xed00
|
||||
#define RFUCMD_CHILD_DISCONNECT 0xee00
|
||||
|
||||
#define RFU_PACKET_SIZE 6
|
||||
|
||||
#define RFU_SERIAL_7F7D 0x7F7D
|
||||
|
||||
#define RECV_QUEUE_NUM_SLOTS 20
|
||||
#define RECV_QUEUE_SLOT_LENGTH (14 * MAX_RFU_PLAYERS)
|
||||
|
||||
#define SEND_QUEUE_NUM_SLOTS 40
|
||||
#define SEND_QUEUE_SLOT_LENGTH 14
|
||||
|
||||
#define BACKUP_QUEUE_NUM_SLOTS 2
|
||||
#define BACKUP_QUEUE_SLOT_LENGTH 14
|
||||
|
||||
#define UNUSED_QUEUE_NUM_SLOTS 2
|
||||
#define UNUSED_QUEUE_SLOT_LENGTH 256
|
||||
|
||||
#define RFU_PACKET_SIZE 6
|
||||
|
||||
#define RFU_STATUS_OK 0
|
||||
#define RFU_STATUS_FATAL_ERROR 1
|
||||
#define RFU_STATUS_CONNECTION_ERROR 2
|
||||
#define RFU_STATUS_CHILD_SEND_COMPLETE 3
|
||||
#define RFU_STATUS_NEW_CHILD_DETECTED 4
|
||||
#define RFU_STATUS_JOIN_GROUP_OK 5
|
||||
#define RFU_STATUS_JOIN_GROUP_NO 6
|
||||
#define RFU_STATUS_WAIT_ACK_JOIN_GROUP 7
|
||||
#define RFU_STATUS_LEAVE_GROUP_NOTICE 8
|
||||
#define RFU_STATUS_LEAVE_GROUP 9
|
||||
#define RFU_STATUS_10 10
|
||||
#define RFU_STATUS_11 11
|
||||
#define RFU_STATUS_ACK_JOIN_GROUP 12
|
||||
|
||||
#define RFU_RECV_IDLE 0
|
||||
#define RFU_RECV_RECEIVING 1
|
||||
#define RFU_RECV_FINISHED 2
|
||||
|
||||
// RfuTgtData.gname is read as these structs.
|
||||
struct GFtgtGnameSub
|
||||
@@ -23,7 +60,7 @@ struct GFtgtGnameSub
|
||||
u16 language:4;
|
||||
u16 hasNews:1;
|
||||
u16 hasCard:1;
|
||||
u16 unk_00_6:1;
|
||||
u16 unknown:1;
|
||||
u16 isChampion:1;
|
||||
u16 hasNationalDex:1;
|
||||
u16 gameClear:1;
|
||||
@@ -53,20 +90,6 @@ struct Padded_U8
|
||||
u8 value;
|
||||
};
|
||||
|
||||
struct UnkLinkRfuStruct_02022B44
|
||||
{
|
||||
u8 fill_00[6];
|
||||
u16 unk_06;
|
||||
u8 fill_08[6];
|
||||
vu8 unk_0e;
|
||||
u8 unk_0f;
|
||||
u8 fill_10[0x54];
|
||||
u16 unk_64;
|
||||
u8 fill_66[0x1d];
|
||||
u8 unk_83;
|
||||
u8 fill_84[0x58];
|
||||
};
|
||||
|
||||
struct RfuBlockSend
|
||||
{
|
||||
/* 0x00 */ u16 next;
|
||||
@@ -79,9 +102,9 @@ struct RfuBlockSend
|
||||
/* 0x12 */ u8 receiving;
|
||||
};
|
||||
|
||||
struct UnkRfuStruct_2_Sub_124
|
||||
struct RfuRecvQueue
|
||||
{
|
||||
/* 0x000 */ u8 slots[20][70];
|
||||
/* 0x000 */ u8 slots[RECV_QUEUE_NUM_SLOTS][RECV_QUEUE_SLOT_LENGTH];
|
||||
/* 0x578 */ vu8 recv_slot;
|
||||
/* 0x579 */ vu8 send_slot;
|
||||
/* 0x57a */ vu8 count;
|
||||
@@ -90,24 +113,24 @@ struct UnkRfuStruct_2_Sub_124
|
||||
|
||||
struct RfuSendQueue
|
||||
{
|
||||
/* 0x000 */ u8 slots[40][14];
|
||||
/* 0x000 */ u8 slots[SEND_QUEUE_NUM_SLOTS][SEND_QUEUE_SLOT_LENGTH];
|
||||
/* 0x230 */ vu8 recv_slot;
|
||||
/* 0x231 */ vu8 send_slot;
|
||||
/* 0x232 */ vu8 count;
|
||||
/* 0x233 */ vu8 full;
|
||||
};
|
||||
|
||||
struct UnkRfuStruct_2_Sub_c1c
|
||||
struct RfuBackupQueue
|
||||
{
|
||||
/* 0x00 */ u8 slots[2][14];
|
||||
/* 0x00 */ u8 slots[BACKUP_QUEUE_NUM_SLOTS][BACKUP_QUEUE_SLOT_LENGTH];
|
||||
/* 0x1c */ vu8 recv_slot;
|
||||
/* 0x1d */ vu8 send_slot;
|
||||
/* 0x1e */ vu8 count;
|
||||
};
|
||||
|
||||
struct UnkRfuStruct_Sub_Unused
|
||||
struct RfuUnusedQueue
|
||||
{
|
||||
/* 0x000 */ u8 slots[2][256];
|
||||
/* 0x000 */ u8 slots[UNUSED_QUEUE_NUM_SLOTS][UNUSED_QUEUE_SLOT_LENGTH];
|
||||
/* 0x200 */ vu8 recv_slot;
|
||||
/* 0x201 */ vu8 send_slot;
|
||||
/* 0x202 */ vu8 count;
|
||||
@@ -125,57 +148,57 @@ typedef struct UnkRfuStruct_2
|
||||
/* 0x00e */ u8 unk_0e;
|
||||
/* 0x00f */ u8 unk_0f;
|
||||
/* 0x010 */ u16 linkman_param[2];
|
||||
/* 0x014 */ u8 unk_14[RFU_CHILD_MAX][14];
|
||||
/* 0x04c */ u8 unk_4c[14];
|
||||
/* 0x014 */ u8 main_UNI_recvBuffer[RFU_CHILD_MAX][14];
|
||||
/* 0x04c */ u8 lastCmdBeforeCommInterrupt[14];
|
||||
/* 0x05a */ u8 cmdA100_blockRequestType;
|
||||
/* 0x05b */ u8 unk_5b;
|
||||
/* 0x05c */ u8 unk_5c[5];
|
||||
/* 0x061 */ u8 unk_61[5];
|
||||
/* 0x066 */ u8 unk_66;
|
||||
/* 0x067 */ u8 unk_67;
|
||||
/* 0x05b */ u8 sendBlockInitDelay;
|
||||
/* 0x05c */ bool8 blockReceived[MAX_RFU_PLAYERS];
|
||||
/* 0x061 */ u8 numBlocksReceived[MAX_RFU_PLAYERS];
|
||||
/* 0x066 */ u8 idleTaskId;
|
||||
/* 0x067 */ u8 searchTaskId;
|
||||
/* 0x068 */ u8 filler_68[4];
|
||||
/* 0x06c */ struct RfuBlockSend cmd_8800_sendbuf;
|
||||
/* 0x080 */ struct RfuBlockSend cmd_8800_recvbuf[5];
|
||||
/* 0x0e4 */ u8 cmd5f00Ack[5];
|
||||
/* 0x0e9 */ u8 cmd_6600_recvd[5];
|
||||
/* 0x06c */ struct RfuBlockSend sendBlock;
|
||||
/* 0x080 */ struct RfuBlockSend recvBlock[MAX_RFU_PLAYERS];
|
||||
/* 0x0e4 */ bool8 readyCloseLink[MAX_RFU_PLAYERS];
|
||||
/* 0x0e9 */ bool8 readyExitStandby[MAX_RFU_PLAYERS];
|
||||
/* 0x0ee */ vu8 errorState;
|
||||
/* 0x0ef */ bool8 isShuttingDown;
|
||||
/* 0x0f0 */ u8 linkLossRecoveryState;
|
||||
/* 0x0f1 */ u8 unk_f1;
|
||||
/* 0x0f2 */ u16 unk_f2[6];
|
||||
/* 0x0fe */ u16 cmd_6600_timer;
|
||||
/* 0x100 */ u16 cmd_6600_count;
|
||||
/* 0x0f1 */ u8 status;
|
||||
/* 0x0f2 */ u16 packet[RFU_PACKET_SIZE];
|
||||
/* 0x0fe */ u16 resendExitStandbyTimer;
|
||||
/* 0x100 */ u16 resendExitStandbyCount;
|
||||
/* 0x102 */ u8 unk_102;
|
||||
/* 0x104 */ struct RfuTgtData unk_104;
|
||||
/* 0x124 */ struct UnkRfuStruct_2_Sub_124 unk_124;
|
||||
/* 0x104 */ struct RfuTgtData tgtData;
|
||||
/* 0x124 */ struct RfuRecvQueue recvQueue;
|
||||
/* 0x6a0 */ struct RfuSendQueue sendQueue;
|
||||
/* 0x8d4 */ struct UnkRfuStruct_2_Sub_c1c unk_c1c;
|
||||
/* 0x8f4 */ vu8 unk_c3c;
|
||||
/* 0x8d4 */ struct RfuBackupQueue backupQueue;
|
||||
/* 0x8f4 */ vu8 linkRecovered;
|
||||
/* 0x8f5 */ u8 reconnectedParentIdx;
|
||||
/* 0x8f6 */ vu8 child_slot;
|
||||
/* 0x8f7 */ u8 unk_c3f[70];
|
||||
/* 0x93d */ u8 unk_c85;
|
||||
/* 0x93e */ u8 unk_c86;
|
||||
/* 0x93f */ u8 recvCmds[5][7][2];
|
||||
/* 0x93d */ u8 sendStatus;
|
||||
/* 0x93e */ u8 recvStatus;
|
||||
/* 0x93f */ u8 recvCmds[MAX_RFU_PLAYERS][7][2];
|
||||
/* 0x985 */ u8 parentId;
|
||||
/* 0x986 */ u8 unk_cce; // childId
|
||||
/* 0x986 */ u8 multiplayerId; // childId
|
||||
/* 0x987 */ u8 unk_ccf;
|
||||
/* 0x988 */ vu8 unk_cd0;
|
||||
/* 0x989 */ u8 unk_cd1[RFU_CHILD_MAX];
|
||||
/* 0x98d */ u8 unk_cd5[RFU_CHILD_MAX];
|
||||
/* 0x991 */ u8 unk_cd9;
|
||||
/* 0x988 */ vu8 sem_UNI_SendRecv;
|
||||
/* 0x989 */ u8 partnerSendStatuses[RFU_CHILD_MAX];
|
||||
/* 0x98d */ u8 partnerRecvStatuses[RFU_CHILD_MAX];
|
||||
/* 0x991 */ u8 linkClosing;
|
||||
/* 0x992 */ u8 unk_cda;
|
||||
/* 0x993 */ vu8 unk_cdb;
|
||||
/* 0x994 */ vu8 unk_cdc;
|
||||
/* 0x993 */ volatile bool8 unk_cdb;
|
||||
/* 0x994 */ volatile bool8 unk_cdc;
|
||||
/* 0x995 */ u8 unk_cdd;
|
||||
/* 0x996 */ u8 linkPlayerIdx[RFU_CHILD_MAX];
|
||||
/* 0x99a */ u8 bm_PartnerFlags;
|
||||
/* 0x99b */ u8 bm_DisconnectSlot;
|
||||
/* 0x99c */ u8 unk_ce4;
|
||||
/* 0x99d */ u8 unk_ce5;
|
||||
/* 0x99d */ u8 bmChatLeaderMaybe;
|
||||
/* 0x99e */ u8 unionRoomChatters;
|
||||
/* 0x99f */ u8 acceptSlot_flag;
|
||||
/* 0x9a0 */ bool8 unk_ce8;
|
||||
/* 0x9a0 */ bool8 foundNewLeaderMaybe;
|
||||
/* 0x9a1 */ u8 unk_ce9;
|
||||
/* 0x9a2 */ u8 unk_cea[RFU_CHILD_MAX];
|
||||
/* 0x9a6 */ u8 unk_cee[RFU_CHILD_MAX];
|
||||
@@ -190,7 +213,7 @@ void AddTextPrinterToWindow1(const u8 *str);
|
||||
bool32 MG_PrintTextOnWindow1AndWaitButton(u8 * cmdPtr, const u8 * src);
|
||||
void LinkRfu_FatalError(void);
|
||||
void MG_DrawCheckerboardPattern(void);
|
||||
void Rfu_BeginBuildAndSendCommand5F(void);
|
||||
void Rfu_SetCloseLinkCallback(void);
|
||||
bool8 IsLinkRfuTaskFinished(void);
|
||||
void DestroyWirelessStatusIndicatorSprite(void);
|
||||
void MEvent_CreateTask_CardOrNewsWithFriend(u32 arg0);
|
||||
@@ -199,18 +222,18 @@ void MEvent_CreateTask_Leader(u32 arg0);
|
||||
void Rfu_SendPacket(void * data);
|
||||
u8 CreateTask_ListenToWireless(void);
|
||||
void LinkRfu_DestroyIdleTask(void);
|
||||
void sub_80F86F4(void);
|
||||
void InitRFUAPI(void);
|
||||
void sub_80FB128(bool32 a0);
|
||||
bool32 IsSendingKeysToRfu(void);
|
||||
void Rfu_set_zero(void);
|
||||
void ClearLinkRfuCallback(void);
|
||||
u8 GetRfuPlayerCount(void);
|
||||
void StartSendingKeysToRfu(void);
|
||||
u8 LinkRfu_GetMultiplayerId(void);
|
||||
bool32 Rfu_InitBlockSend(const u8 * src, size_t size);
|
||||
bool8 LinkRfu_PrepareCmd0xA100(u8 blockRequestType);
|
||||
bool8 Rfu_SendBlockRequest(u8 blockRequestType);
|
||||
u8 Rfu_GetBlockReceivedStatus(void);
|
||||
void Rfu_SetBlockReceivedFlag(u8 who);
|
||||
void Rfu_ResetBlockReceivedFlag(u8 who);
|
||||
void Rfu_SetBlockReceivedFlag(u8 linkPlayerId);
|
||||
void Rfu_ResetBlockReceivedFlag(u8 linkPlayerId);
|
||||
bool8 Rfu_IsMaster(void);
|
||||
void ResetLinkRfuGFLayer(void);
|
||||
bool32 LinkRfuMain1(void);
|
||||
@@ -219,34 +242,34 @@ bool32 IsRfuRecvQueueEmpty(void);
|
||||
u32 GetRfuRecvQueueLength(void);
|
||||
void LinkRfu_Shutdown(void);
|
||||
void LinkRfu_CreateIdleTask(void);
|
||||
bool8 ToggleLMANlinkRecovery(bool32 a0);
|
||||
bool8 ToggleLMANlinkRecovery(bool32 enable);
|
||||
void var_800D_set_xB(void);
|
||||
struct GFtgtGname *GetHostRFUtgtGname(void);
|
||||
void UpdateWirelessStatusIndicatorSprite(void);
|
||||
void InitRFU(void);
|
||||
bool32 RfuIsErrorStatus1or2(void);
|
||||
bool32 RfuHasErrored(void);
|
||||
|
||||
void RFU_queue_20_70_reset(struct UnkRfuStruct_2_Sub_124 *ptr);
|
||||
void RFU_queue_40_14_reset(struct RfuSendQueue *ptr);
|
||||
void RfuRecvQueue_Reset(struct RfuRecvQueue *queue);
|
||||
void RfuSendQueue_Reset(struct RfuSendQueue *queue);
|
||||
|
||||
void RfuSetErrorStatus(u8 a0, u16 msg);
|
||||
u8 RfuGetErrorStatus(void);
|
||||
void RFU_queue_20_70_recv(struct UnkRfuStruct_2_Sub_124 *q1, u8 *q2);
|
||||
bool8 RFU_queue_40_14_send(struct RfuSendQueue *q1, u8 *q2);
|
||||
bool8 RFU_queue_2_14_send(struct UnkRfuStruct_2_Sub_c1c *q1, u8 *q2);
|
||||
void RFU_queue_2_14_recv(struct UnkRfuStruct_2_Sub_c1c *q1, const u8 *q2);
|
||||
bool8 RFU_queue_20_70_send(struct UnkRfuStruct_2_Sub_124 * a0, u8 *a1);
|
||||
void RFU_queue_40_14_recv(struct RfuSendQueue * a0, u8 *a1);
|
||||
void RfuSetStatus(u8 status, u16 msg);
|
||||
u8 RfuGetStatus(void);
|
||||
void RfuRecvQueue_Enqueue(struct RfuRecvQueue *queue, u8 *src);
|
||||
bool8 RfuSendQueue_Dequeue(struct RfuSendQueue *queue, u8 *dest);
|
||||
bool8 RfuBackupQueue_Dequeue(struct RfuBackupQueue *queue, u8 *dest);
|
||||
void RfuBackupQueue_Enqueue(struct RfuBackupQueue *queue, const u8 *dest);
|
||||
bool8 RfuRecvQueue_Dequeue(struct RfuRecvQueue * queue, u8 *dest);
|
||||
void RfuSendQueue_Enqueue(struct RfuSendQueue * queue, u8 *src);
|
||||
void InitHostRFUtgtGname(struct GFtgtGname *data, u8 activity, bool32 started, s32 child_sprite_genders);
|
||||
void UpdateGameData_GroupLockedIn(bool8 started);
|
||||
bool32 RfuSerialNumberIsValid(u32 a0);
|
||||
bool8 sub_80FC1B0(void);
|
||||
bool32 IsRfuSerialNumberValid(u32 serialNo);
|
||||
bool8 IsRfuRecoveringFromLinkLoss(void);
|
||||
bool8 LmanAcceptSlotFlagIsNotZero(void);
|
||||
void LinkRfu_StopManagerAndFinalizeSlots(void);
|
||||
bool32 sub_80FA5D4(void);
|
||||
bool32 sub_80FC1CC(void);
|
||||
bool32 WaitRfuState(bool32 a0);
|
||||
bool32 TrainerIdAndNameStillInPartnersList(u16 trainerId, const u8 *trainerName);
|
||||
bool32 CheckTrainerHasLeftByIdAndName(u16 trainerId, const u8 *trainerName);
|
||||
void SendByteToPartnerByIdAndName(u8 a0, u16 a1, const u8 *a2);
|
||||
u32 WaitSendByteToPartnerByIdAndName(u16 a0, const u8 *a1);
|
||||
void SetHostRFUtgtGname(u8 activity, u32 child_sprite_genders, u32 a2);
|
||||
@@ -254,7 +277,7 @@ void InitializeRfuLinkManager_LinkLeader(u32 availSlots);
|
||||
void RequestDisconnectSlotByTrainerNameAndId(const u8 *trainerName, u16 trainerId);
|
||||
void LinkRfu3_SetGnameUnameFromStaticBuffers(struct GFtgtGname *gname, u8 *uname);
|
||||
void InitializeRfuLinkManager_JoinGroup(void);
|
||||
void LinkRfuNIsend8(void);
|
||||
void SendLeaveGroupNotice(void);
|
||||
void CreateTask_RfuReconnectWithParent(const u8 *src, u16 trainerId);
|
||||
void UpdateGameDataWithActivitySpriteGendersFlag(u8 activity, u32 child_sprite_genders, u32 started);
|
||||
void RecordMixTrainerNames(void);
|
||||
@@ -271,8 +294,8 @@ void sub_80FC114(const u8 *name, struct GFtgtGname *structPtr, u8 a2);
|
||||
bool32 PlayerHasMetTrainerBefore(u16 id, u8 *name);
|
||||
bool8 LinkRfu_GetNameIfCompatible(struct GFtgtGname *gname, u8 *uname, u8 idx);
|
||||
bool8 LinkRfu_GetNameIfSerial7F7D(struct GFtgtGname *gname, u8 *uname, u8 idx);
|
||||
bool32 GetRfuUnkCE8(void);
|
||||
void sub_80FA4A8(void);
|
||||
bool32 RfuHasFoundNewLeader(void);
|
||||
void Rfu_UnionRoomChat_StopLinkManager(void);
|
||||
void sub_80FB9D0(void);
|
||||
void sub_80FB030(u32 a0);
|
||||
void ClearRecvCommands(void);
|
||||
|
||||
+2
-2
@@ -516,7 +516,7 @@ u8 CreateTask_ReestablishLinkInCableClubRoom(void)
|
||||
gLinkType = LINKTYPE_MULTI_BATTLE;
|
||||
break;
|
||||
case USING_TRADE_CENTER:
|
||||
gLinkType = LINKTYPE_0x1111;
|
||||
gLinkType = LINKTYPE_TRADE;
|
||||
break;
|
||||
case USING_RECORD_CORNER:
|
||||
gLinkType = LINKTYPE_0x3322;
|
||||
@@ -859,7 +859,7 @@ static void Task_StartWirelessCableClubTrade(u8 taskId)
|
||||
case 0:
|
||||
ScriptContext2_Enable();
|
||||
FadeScreen(FADE_TO_BLACK, 0);
|
||||
Rfu_set_zero();
|
||||
ClearLinkRfuCallback();
|
||||
data[0]++;
|
||||
break;
|
||||
case 1:
|
||||
|
||||
+9
-9
@@ -226,7 +226,7 @@ bool8 IsWirelessAdapterConnected(void)
|
||||
return FALSE;
|
||||
|
||||
SetWirelessCommType1();
|
||||
sub_80F86F4();
|
||||
InitRFUAPI();
|
||||
sub_80FB128(TRUE);
|
||||
if (rfu_LMAN_REQBN_softReset_and_checkID() == RFU_ID)
|
||||
{
|
||||
@@ -378,7 +378,7 @@ void OpenLink(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
sub_80F86F4();
|
||||
InitRFUAPI();
|
||||
}
|
||||
gReceivedRemoteLinkPlayers = FALSE;
|
||||
for (i = 0; i < MAX_LINK_PLAYERS; i++)
|
||||
@@ -749,7 +749,7 @@ void ClearLinkCallback_2(void)
|
||||
{
|
||||
if (gWirelessCommType)
|
||||
{
|
||||
Rfu_set_zero();
|
||||
ClearLinkRfuCallback();
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1003,7 +1003,7 @@ bool8 Link_PrepareCmd0xCCCC_Rfu0xA100(u8 blockRequestType)
|
||||
{
|
||||
if (gWirelessCommType == 1)
|
||||
{
|
||||
return LinkRfu_PrepareCmd0xA100(blockRequestType);
|
||||
return Rfu_SendBlockRequest(blockRequestType);
|
||||
}
|
||||
if (gLinkCallback == NULL)
|
||||
{
|
||||
@@ -1309,7 +1309,7 @@ void Link_StartSend5FFFwithParam(u16 a0)
|
||||
{
|
||||
if (gWirelessCommType == 1)
|
||||
{
|
||||
Rfu_BeginBuildAndSendCommand5F();
|
||||
Rfu_SetCloseLinkCallback();
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1326,7 +1326,7 @@ void SetCloseLinkCallback(void)
|
||||
{
|
||||
if (gWirelessCommType == 1)
|
||||
{
|
||||
Rfu_BeginBuildAndSendCommand5F();
|
||||
Rfu_SetCloseLinkCallback();
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -1441,12 +1441,12 @@ static void CheckErrorStatus(void)
|
||||
}
|
||||
}
|
||||
|
||||
void SetLinkErrorFromRfu(u32 status, u8 lastSendQueueCount, u8 lastRecvQueueCount, u8 unk_06)
|
||||
void SetLinkErrorFromRfu(u32 status, u8 lastSendQueueCount, u8 lastRecvQueueCount, u8 isConnectionError)
|
||||
{
|
||||
sLinkErrorBuffer.status = status;
|
||||
sLinkErrorBuffer.lastSendQueueCount = lastSendQueueCount;
|
||||
sLinkErrorBuffer.lastRecvQueueCount = lastRecvQueueCount;
|
||||
sLinkErrorBuffer.unk_06 = unk_06;
|
||||
sLinkErrorBuffer.unk_06 = isConnectionError;
|
||||
}
|
||||
|
||||
void CB2_LinkError(void)
|
||||
@@ -1619,7 +1619,7 @@ bool8 HasLinkErrorOccurred(void)
|
||||
return gLinkErrorOccurred;
|
||||
}
|
||||
|
||||
void PrepareLocalLinkPlayerBlock(void)
|
||||
void LocalLinkPlayerToBlock(void)
|
||||
{
|
||||
struct LinkPlayerBlock * block;
|
||||
|
||||
|
||||
+504
-449
File diff suppressed because it is too large
Load Diff
+322
-176
@@ -13,22 +13,83 @@ static const u16 gWirelessLinkIconPalette[] = INCBIN_U16("graphics/interface/wir
|
||||
static const u32 gWirelessLinkIconPic[] = INCBIN_U32("graphics/interface/wireless_link_icon.4bpp.lz");
|
||||
|
||||
static const u8 sWireless_ASCIItoRSETable[] = {
|
||||
0xff, 0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x37,
|
||||
EOS,
|
||||
0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x37,
|
||||
0x38, 0x39, 0x3a, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
|
||||
0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47,
|
||||
0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d, 0x4e, 0x4f,
|
||||
0x00, 0xab, 0xb5, 0xb6, 0xb1, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0xb2, 0xf1, 0x00, 0xae, 0xad, 0xba,
|
||||
0xa1, 0xa2, 0xa3, 0xa4, 0xa5, 0xa6, 0xa7, 0xa8,
|
||||
0xa9, 0xaa, 0x00, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f,
|
||||
0x00, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0, 0xc1,
|
||||
0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8, 0xc9,
|
||||
0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0, 0xd1,
|
||||
0xd2, 0xd3, 0xd4, 0xf2, 0xf3, 0xf4, 0xf5, 0xf6,
|
||||
0x00, 0xd5, 0xd6, 0xd7, 0xd8, 0xd9, 0xda, 0xdb,
|
||||
0xdc, 0xdd, 0xde, 0xdf, 0xe0, 0xe1, 0xe2, 0xe3,
|
||||
0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,
|
||||
0xec, 0xed, 0xee, 0x2d, 0x2f, 0x30, 0x31, 0x32,
|
||||
[' '] = CHAR_SPACE,
|
||||
['!'] = CHAR_EXCL_MARK,
|
||||
0xb5, 0xb6, 0xb1, 0x00, 0x00, 0x00,
|
||||
0x00, 0x00, 0xb2, 0xf1, 0x00,
|
||||
['-'] = CHAR_HYPHEN,
|
||||
['.'] = CHAR_PERIOD,
|
||||
['/'] = CHAR_SLASH,
|
||||
['0'] = CHAR_0,
|
||||
['1'] = CHAR_1,
|
||||
['2'] = CHAR_2,
|
||||
['3'] = CHAR_3,
|
||||
['4'] = CHAR_4,
|
||||
['5'] = CHAR_5,
|
||||
['6'] = CHAR_6,
|
||||
['7'] = CHAR_7,
|
||||
['8'] = CHAR_8,
|
||||
['9'] = CHAR_9,
|
||||
0x00, 0x9b, 0x9c, 0x9d, 0x9e, 0x9f, 0x00,
|
||||
['A'] = CHAR_A,
|
||||
['B'] = CHAR_B,
|
||||
['C'] = CHAR_C,
|
||||
['D'] = CHAR_D,
|
||||
['E'] = CHAR_E,
|
||||
['F'] = CHAR_F,
|
||||
['G'] = CHAR_G,
|
||||
['H'] = CHAR_H,
|
||||
['I'] = CHAR_I,
|
||||
['J'] = CHAR_J,
|
||||
['K'] = CHAR_K,
|
||||
['L'] = CHAR_L,
|
||||
['M'] = CHAR_M,
|
||||
['N'] = CHAR_N,
|
||||
['O'] = CHAR_O,
|
||||
['P'] = CHAR_P,
|
||||
['Q'] = CHAR_Q,
|
||||
['R'] = CHAR_R,
|
||||
['S'] = CHAR_S,
|
||||
['T'] = CHAR_T,
|
||||
['U'] = CHAR_U,
|
||||
['V'] = CHAR_V,
|
||||
['W'] = CHAR_W,
|
||||
['X'] = CHAR_X,
|
||||
['Y'] = CHAR_Y,
|
||||
['Z'] = CHAR_Z,
|
||||
0xf2, 0xf3, 0xf4, 0xf5, 0xf6, 0x00,
|
||||
['a'] = CHAR_a,
|
||||
['b'] = CHAR_b,
|
||||
['c'] = CHAR_c,
|
||||
['d'] = CHAR_d,
|
||||
['e'] = CHAR_e,
|
||||
['f'] = CHAR_f,
|
||||
['g'] = CHAR_g,
|
||||
['h'] = CHAR_h,
|
||||
['i'] = CHAR_i,
|
||||
['j'] = CHAR_j,
|
||||
['k'] = CHAR_k,
|
||||
['l'] = CHAR_l,
|
||||
['m'] = CHAR_m,
|
||||
['n'] = CHAR_n,
|
||||
['o'] = CHAR_o,
|
||||
['p'] = CHAR_p,
|
||||
['q'] = CHAR_q,
|
||||
['r'] = CHAR_r,
|
||||
['s'] = CHAR_s,
|
||||
['t'] = CHAR_t,
|
||||
['u'] = CHAR_u,
|
||||
['v'] = CHAR_v,
|
||||
['w'] = CHAR_w,
|
||||
['x'] = CHAR_x,
|
||||
['y'] = CHAR_y,
|
||||
['z'] = CHAR_z,
|
||||
0x2d, 0x2f, 0x30, 0x31, 0x32,
|
||||
0x33, 0x34, 0x35, 0x36, 0x50, 0x00, 0x01, 0x02,
|
||||
0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a,
|
||||
0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x11, 0x12,
|
||||
@@ -48,53 +109,118 @@ static const u8 sWireless_ASCIItoRSETable[] = {
|
||||
};
|
||||
|
||||
static const u8 sWireless_RSEtoASCIITable[] = {
|
||||
0x20, 0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c,
|
||||
0x8d, 0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94,
|
||||
0x95, 0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c,
|
||||
0x9d, 0x9e, 0x9f, 0xa0, 0xe0, 0xe1, 0xe2, 0xe3,
|
||||
0xe4, 0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb,
|
||||
0xec, 0xed, 0xee, 0xef, 0xf0, 0x7b, 0xf1, 0x7c,
|
||||
0x7d, 0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x07,
|
||||
0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f,
|
||||
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17,
|
||||
0x18, 0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f,
|
||||
0x84, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7,
|
||||
0xb8, 0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf,
|
||||
0xc0, 0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7,
|
||||
0xc8, 0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf,
|
||||
0xd0, 0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7,
|
||||
0xd8, 0xd9, 0xda, 0xdb, 0xdc, 0xa6, 0xdd, 0xa7,
|
||||
0xa8, 0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xf2,
|
||||
0xf3, 0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa,
|
||||
0xfb, 0xfc, 0xfd, 0xfe, 0xff, 0x01, 0x02, 0x03,
|
||||
0x04, 0x05, 0x06, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f,
|
||||
0xaf, 0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36,
|
||||
0x37, 0x38, 0x39, 0x21, 0xdf, 0xa1, 0xb0, 0xa5,
|
||||
0xde, 0x24, 0x2a, 0xa2, 0xa3, 0x22, 0x23, 0x20,
|
||||
0xa4, 0x20, 0x2f, 0x41, 0x42, 0x43, 0x44, 0x45,
|
||||
0x46, 0x47, 0x48, 0x49, 0x4a, 0x4b, 0x4c, 0x4d,
|
||||
0x4e, 0x4f, 0x50, 0x51, 0x52, 0x53, 0x54, 0x55,
|
||||
0x56, 0x57, 0x58, 0x59, 0x5a, 0x61, 0x62, 0x63,
|
||||
0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,
|
||||
0x6c, 0x6d, 0x6e, 0x6f, 0x70, 0x71, 0x72, 0x73,
|
||||
0x74, 0x75, 0x76, 0x77, 0x78, 0x79, 0x7a, 0x20,
|
||||
0x20, 0x2b, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f, 0x20,
|
||||
0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x20, 0x00
|
||||
[CHAR_SPACE] = ' ',
|
||||
0x86, 0x87, 0x88, 0x89, 0x8a, 0x8b, 0x8c, 0x8d,
|
||||
0x8e, 0x8f, 0x90, 0x91, 0x92, 0x93, 0x94, 0x95,
|
||||
0x96, 0x97, 0x98, 0x99, 0x9a, 0x9b, 0x9c, 0x9d,
|
||||
0x9e, 0x9f, 0xa0, 0xe0, 0xe1, 0xe2, 0xe3, 0xe4,
|
||||
0xe5, 0xe6, 0xe7, 0xe8, 0xe9, 0xea, 0xeb, 0xec,
|
||||
0xed, 0xee, 0xef, 0xf0, 0x7b, 0xf1, 0x7c, 0x7d,
|
||||
0x7e, 0x7f, 0x80, 0x81, 0x82, 0x83, 0x07, 0x08,
|
||||
0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10,
|
||||
0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18,
|
||||
0x19, 0x1a, 0x1b, 0x1c, 0x1d, 0x1e, 0x1f, 0x84,
|
||||
0xb1, 0xb2, 0xb3, 0xb4, 0xb5, 0xb6, 0xb7, 0xb8,
|
||||
0xb9, 0xba, 0xbb, 0xbc, 0xbd, 0xbe, 0xbf, 0xc0,
|
||||
0xc1, 0xc2, 0xc3, 0xc4, 0xc5, 0xc6, 0xc7, 0xc8,
|
||||
0xc9, 0xca, 0xcb, 0xcc, 0xcd, 0xce, 0xcf, 0xd0,
|
||||
0xd1, 0xd2, 0xd3, 0xd4, 0xd5, 0xd6, 0xd7, 0xd8,
|
||||
0xd9, 0xda, 0xdb, 0xdc, 0xa6, 0xdd, 0xa7, 0xa8,
|
||||
0xa9, 0xaa, 0xab, 0xac, 0xad, 0xae, 0xf2, 0xf3,
|
||||
0xf4, 0xf5, 0xf6, 0xf7, 0xf8, 0xf9, 0xfa, 0xfb,
|
||||
0xfc, 0xfd, 0xfe, 0xff, 0x01, 0x02, 0x03, 0x04,
|
||||
0x05, 0x06, 0x3b, 0x3c, 0x3d, 0x3e, 0x3f, 0xaf,
|
||||
[CHAR_0] = '0',
|
||||
[CHAR_1] = '1',
|
||||
[CHAR_2] = '2',
|
||||
[CHAR_3] = '3',
|
||||
[CHAR_4] = '4',
|
||||
[CHAR_5] = '5',
|
||||
[CHAR_6] = '6',
|
||||
[CHAR_7] = '7',
|
||||
[CHAR_8] = '8',
|
||||
[CHAR_9] = '9',
|
||||
[CHAR_EXCL_MARK] = '!',
|
||||
0xdf, 0xa1, 0xb0, 0xa5, 0xde, 0x24, 0x2a,
|
||||
0xa2, 0xa3, 0x22, 0x23, 0x20, 0xa4, 0x20,
|
||||
[CHAR_SLASH] = '/',
|
||||
[CHAR_A] = 'A',
|
||||
[CHAR_B] = 'B',
|
||||
[CHAR_C] = 'C',
|
||||
[CHAR_D] = 'D',
|
||||
[CHAR_E] = 'E',
|
||||
[CHAR_F] = 'F',
|
||||
[CHAR_G] = 'G',
|
||||
[CHAR_H] = 'H',
|
||||
[CHAR_I] = 'I',
|
||||
[CHAR_J] = 'J',
|
||||
[CHAR_K] = 'K',
|
||||
[CHAR_L] = 'L',
|
||||
[CHAR_M] = 'M',
|
||||
[CHAR_N] = 'N',
|
||||
[CHAR_O] = 'O',
|
||||
[CHAR_P] = 'P',
|
||||
[CHAR_Q] = 'Q',
|
||||
[CHAR_R] = 'R',
|
||||
[CHAR_S] = 'S',
|
||||
[CHAR_T] = 'T',
|
||||
[CHAR_U] = 'U',
|
||||
[CHAR_V] = 'V',
|
||||
[CHAR_W] = 'W',
|
||||
[CHAR_X] = 'X',
|
||||
[CHAR_Y] = 'Y',
|
||||
[CHAR_Z] = 'Z',
|
||||
[CHAR_a] = 'a',
|
||||
[CHAR_b] = 'b',
|
||||
[CHAR_c] = 'c',
|
||||
[CHAR_d] = 'd',
|
||||
[CHAR_e] = 'e',
|
||||
[CHAR_f] = 'f',
|
||||
[CHAR_g] = 'g',
|
||||
[CHAR_h] = 'h',
|
||||
[CHAR_i] = 'i',
|
||||
[CHAR_j] = 'j',
|
||||
[CHAR_k] = 'k',
|
||||
[CHAR_l] = 'l',
|
||||
[CHAR_m] = 'm',
|
||||
[CHAR_n] = 'n',
|
||||
[CHAR_o] = 'o',
|
||||
[CHAR_p] = 'p',
|
||||
[CHAR_q] = 'q',
|
||||
[CHAR_r] = 'r',
|
||||
[CHAR_s] = 's',
|
||||
[CHAR_t] = 't',
|
||||
[CHAR_u] = 'u',
|
||||
[CHAR_v] = 'v',
|
||||
[CHAR_w] = 'w',
|
||||
[CHAR_x] = 'x',
|
||||
[CHAR_y] = 'y',
|
||||
[CHAR_z] = 'z',
|
||||
0x20, 0x20, 0x2b, 0x5b, 0x5c, 0x5d, 0x5e, 0x5f,
|
||||
[CHAR_DYNAMIC_PLACEHOLDER] = ' ',
|
||||
[CHAR_KEYPAD_ICON] = ' ',
|
||||
[CHAR_EXTRA_EMOJI] = ' ',
|
||||
[CHAR_PROMPT_SCROLL] = ' ',
|
||||
[CHAR_PROMPT_CLEAR] = ' ',
|
||||
[EXT_CTRL_CODE_BEGIN] = ' ',
|
||||
[PLACEHOLDER_BEGIN] = ' ',
|
||||
[CHAR_NEWLINE] = ' ',
|
||||
[EOS] = 0
|
||||
};
|
||||
|
||||
static const struct OamData sWirelessStatusIndicatorOamData =
|
||||
{
|
||||
.y = 0,
|
||||
.affineMode = ST_OAM_AFFINE_OFF,
|
||||
.objMode = ST_OAM_OBJ_NORMAL,
|
||||
.bpp = ST_OAM_4BPP,
|
||||
.shape = SPRITE_SHAPE(16x16),
|
||||
.x = 0,
|
||||
.size = SPRITE_SIZE(16x16),
|
||||
.tileNum = 0,
|
||||
.priority = 0,
|
||||
.paletteNum = 0,
|
||||
};
|
||||
{
|
||||
.y = 0,
|
||||
.affineMode = ST_OAM_AFFINE_OFF,
|
||||
.objMode = ST_OAM_OBJ_NORMAL,
|
||||
.bpp = ST_OAM_4BPP,
|
||||
.shape = SPRITE_SHAPE(16x16),
|
||||
.x = 0,
|
||||
.size = SPRITE_SIZE(16x16),
|
||||
.tileNum = 0,
|
||||
.priority = 0,
|
||||
.paletteNum = 0,
|
||||
};
|
||||
|
||||
static const union AnimCmd sWirelessStatusIndicatorAnim0[] = {
|
||||
// 3 bars
|
||||
@@ -154,23 +280,25 @@ static const struct SpritePalette sWirelessStatusIndicatorSpritePalette = {
|
||||
};
|
||||
|
||||
static const struct SpriteTemplate sWirelessStatusIndicatorSpriteTemplate = {
|
||||
0xD431,
|
||||
0xD432,
|
||||
&sWirelessStatusIndicatorOamData,
|
||||
sWirelessStatusIndicatorAnims,
|
||||
NULL,
|
||||
gDummySpriteAffineAnimTable,
|
||||
SpriteCallbackDummy
|
||||
.tileTag = 0xD431,
|
||||
.paletteTag = 0xD432,
|
||||
.oam = &sWirelessStatusIndicatorOamData,
|
||||
.anims = sWirelessStatusIndicatorAnims,
|
||||
.images = NULL,
|
||||
.affineAnims = gDummySpriteAffineAnimTable,
|
||||
.callback = SpriteCallbackDummy
|
||||
};
|
||||
|
||||
void RFU_queue_20_70_reset(struct UnkRfuStruct_2_Sub_124 *queue)
|
||||
// A bunch of FIFO queues
|
||||
|
||||
void RfuRecvQueue_Reset(struct RfuRecvQueue *queue)
|
||||
{
|
||||
s32 i;
|
||||
s32 j;
|
||||
|
||||
for (i = 0; i < 20; i++)
|
||||
for (i = 0; i < RECV_QUEUE_NUM_SLOTS; i++)
|
||||
{
|
||||
for (j = 0; j < 70; j++)
|
||||
for (j = 0; j < RECV_QUEUE_SLOT_LENGTH; j++)
|
||||
{
|
||||
queue->slots[i][j] = 0;
|
||||
}
|
||||
@@ -178,124 +306,124 @@ void RFU_queue_20_70_reset(struct UnkRfuStruct_2_Sub_124 *queue)
|
||||
queue->send_slot = 0;
|
||||
queue->recv_slot = 0;
|
||||
queue->count = 0;
|
||||
queue->full = 0;
|
||||
queue->full = FALSE;
|
||||
}
|
||||
|
||||
void RFU_queue_40_14_reset(struct RfuSendQueue *ptr)
|
||||
void RfuSendQueue_Reset(struct RfuSendQueue *queue)
|
||||
{
|
||||
s32 i;
|
||||
s32 j;
|
||||
|
||||
for (i = 0; i < 40; i++)
|
||||
for (i = 0; i < SEND_QUEUE_NUM_SLOTS; i++)
|
||||
{
|
||||
for (j = 0; j < 14; j++)
|
||||
for (j = 0; j < SEND_QUEUE_SLOT_LENGTH; j++)
|
||||
{
|
||||
ptr->slots[i][j] = 0;
|
||||
queue->slots[i][j] = 0;
|
||||
}
|
||||
}
|
||||
ptr->send_slot = 0;
|
||||
ptr->recv_slot = 0;
|
||||
ptr->count = 0;
|
||||
ptr->full = 0;
|
||||
queue->send_slot = 0;
|
||||
queue->recv_slot = 0;
|
||||
queue->count = 0;
|
||||
queue->full = FALSE;
|
||||
}
|
||||
|
||||
static void RFU_queue_2_256_reset(struct UnkRfuStruct_Sub_Unused *ptr)
|
||||
static void RfuUnusedQueue_Reset(struct RfuUnusedQueue *queue)
|
||||
{
|
||||
s32 i;
|
||||
s32 j;
|
||||
|
||||
for (i = 0; i < 2; i++)
|
||||
for (i = 0; i < UNUSED_QUEUE_NUM_SLOTS; i++)
|
||||
{
|
||||
for (j = 0; j < 256; j++)
|
||||
for (j = 0; j < UNUSED_QUEUE_SLOT_LENGTH; j++)
|
||||
{
|
||||
ptr->slots[i][j] = 0;
|
||||
queue->slots[i][j] = 0;
|
||||
}
|
||||
}
|
||||
ptr->send_slot = 0;
|
||||
ptr->recv_slot = 0;
|
||||
ptr->count = 0;
|
||||
ptr->full = 0;
|
||||
queue->send_slot = 0;
|
||||
queue->recv_slot = 0;
|
||||
queue->count = 0;
|
||||
queue->full = FALSE;
|
||||
}
|
||||
|
||||
void RFU_queue_20_70_recv(struct UnkRfuStruct_2_Sub_124 *queue, u8 *data)
|
||||
void RfuRecvQueue_Enqueue(struct RfuRecvQueue *queue, u8 *src)
|
||||
{
|
||||
s32 i;
|
||||
u16 imeBak;
|
||||
u8 count;
|
||||
|
||||
if (queue->count < 20)
|
||||
if (queue->count < RECV_QUEUE_NUM_SLOTS)
|
||||
{
|
||||
imeBak = REG_IME;
|
||||
REG_IME = 0;
|
||||
count = 0;
|
||||
for (i = 0; i < 70; i += 14)
|
||||
for (i = 0; i < RECV_QUEUE_SLOT_LENGTH; i += RECV_QUEUE_SLOT_LENGTH / MAX_RFU_PLAYERS)
|
||||
{
|
||||
if (data[i] == 0 && data[i + 1] == 0)
|
||||
if (src[i] == 0 && src[i + 1] == 0)
|
||||
{
|
||||
count++;
|
||||
}
|
||||
}
|
||||
if (count != 5)
|
||||
if (count != MAX_RFU_PLAYERS)
|
||||
{
|
||||
for (i = 0; i < 70; i++)
|
||||
for (i = 0; i < RECV_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
queue->slots[queue->recv_slot][i] = data[i];
|
||||
queue->slots[queue->recv_slot][i] = src[i];
|
||||
}
|
||||
queue->recv_slot++;
|
||||
queue->recv_slot %= 20;
|
||||
queue->recv_slot %= RECV_QUEUE_NUM_SLOTS;
|
||||
queue->count++;
|
||||
for (i = 0; i < 70; i++)
|
||||
for (i = 0; i < RECV_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
data[i] = 0;
|
||||
src[i] = 0;
|
||||
}
|
||||
}
|
||||
REG_IME = imeBak;
|
||||
}
|
||||
else
|
||||
{
|
||||
queue->full = 1;
|
||||
queue->full = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
void RFU_queue_40_14_recv(struct RfuSendQueue *queue, u8 *data)
|
||||
void RfuSendQueue_Enqueue(struct RfuSendQueue *queue, u8 *src)
|
||||
{
|
||||
s32 i;
|
||||
u16 imeBak;
|
||||
|
||||
if (queue->count < 40)
|
||||
if (queue->count < SEND_QUEUE_NUM_SLOTS)
|
||||
{
|
||||
imeBak = REG_IME;
|
||||
REG_IME = 0;
|
||||
for (i = 0; i < 14; i++)
|
||||
for (i = 0; i < SEND_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
if (data[i] != 0)
|
||||
if (src[i] != 0)
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (i != 14)
|
||||
if (i != SEND_QUEUE_SLOT_LENGTH)
|
||||
{
|
||||
for (i = 0; i < 14; i++)
|
||||
for (i = 0; i < SEND_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
queue->slots[queue->recv_slot][i] = data[i];
|
||||
queue->slots[queue->recv_slot][i] = src[i];
|
||||
}
|
||||
queue->recv_slot++;
|
||||
queue->recv_slot %= 40;
|
||||
queue->recv_slot %= SEND_QUEUE_NUM_SLOTS;
|
||||
queue->count++;
|
||||
for (i = 0; i < 14; i++)
|
||||
for (i = 0; i < SEND_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
data[i] = 0;
|
||||
src[i] = 0;
|
||||
}
|
||||
}
|
||||
REG_IME = imeBak;
|
||||
}
|
||||
else
|
||||
{
|
||||
queue->full = 1;
|
||||
queue->full = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
bool8 RFU_queue_20_70_send(struct UnkRfuStruct_2_Sub_124 *queue, u8 *dest)
|
||||
bool8 RfuRecvQueue_Dequeue(struct RfuRecvQueue *queue, u8 *dest)
|
||||
{
|
||||
u16 imeBak;
|
||||
s32 i;
|
||||
@@ -304,63 +432,63 @@ bool8 RFU_queue_20_70_send(struct UnkRfuStruct_2_Sub_124 *queue, u8 *dest)
|
||||
REG_IME = 0;
|
||||
if (queue->recv_slot == queue->send_slot || queue->full)
|
||||
{
|
||||
for (i = 0; i < 70; i++)
|
||||
for (i = 0; i < RECV_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
dest[i] = 0;
|
||||
}
|
||||
REG_IME = imeBak;
|
||||
return FALSE;
|
||||
}
|
||||
for (i = 0; i < 70; i++)
|
||||
for (i = 0; i < RECV_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
dest[i] = queue->slots[queue->send_slot][i];
|
||||
}
|
||||
queue->send_slot++;
|
||||
queue->send_slot %= 20;
|
||||
queue->send_slot %= RECV_QUEUE_NUM_SLOTS;
|
||||
queue->count--;
|
||||
REG_IME = imeBak;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
bool8 RFU_queue_40_14_send(struct RfuSendQueue *queue, u8 *dest)
|
||||
bool8 RfuSendQueue_Dequeue(struct RfuSendQueue *queue, u8 *dest)
|
||||
{
|
||||
s32 i;
|
||||
u16 imeBak;
|
||||
|
||||
if (queue->recv_slot == queue->send_slot || queue->full != 0)
|
||||
if (queue->recv_slot == queue->send_slot || queue->full)
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
imeBak = REG_IME;
|
||||
REG_IME = 0;
|
||||
for (i = 0; i < 14; i++)
|
||||
for (i = 0; i < SEND_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
dest[i] = queue->slots[queue->send_slot][i];
|
||||
}
|
||||
queue->send_slot++;
|
||||
queue->send_slot %= 40;
|
||||
queue->send_slot %= SEND_QUEUE_NUM_SLOTS;
|
||||
queue->count--;
|
||||
REG_IME = imeBak;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
void RFU_queue_2_14_recv(struct UnkRfuStruct_2_Sub_c1c *queue, const u8 *data)
|
||||
void RfuBackupQueue_Enqueue(struct RfuBackupQueue *queue, const u8 *dest)
|
||||
{
|
||||
s32 i;
|
||||
|
||||
if (data[1] == 0)
|
||||
if (dest[1] == 0)
|
||||
{
|
||||
RFU_queue_2_14_send(queue, NULL);
|
||||
RfuBackupQueue_Dequeue(queue, NULL);
|
||||
}
|
||||
else
|
||||
{
|
||||
for (i = 0; i < 14; i++)
|
||||
for (i = 0; i < BACKUP_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
queue->slots[queue->recv_slot][i] = data[i];
|
||||
queue->slots[queue->recv_slot][i] = dest[i];
|
||||
}
|
||||
queue->recv_slot++;
|
||||
queue->recv_slot %= 2;
|
||||
if (queue->count < 2)
|
||||
queue->recv_slot %= BACKUP_QUEUE_NUM_SLOTS;
|
||||
if (queue->count < BACKUP_QUEUE_NUM_SLOTS)
|
||||
{
|
||||
queue->count++;
|
||||
}
|
||||
@@ -371,7 +499,7 @@ void RFU_queue_2_14_recv(struct UnkRfuStruct_2_Sub_c1c *queue, const u8 *data)
|
||||
}
|
||||
}
|
||||
|
||||
bool8 RFU_queue_2_14_send(struct UnkRfuStruct_2_Sub_c1c *queue, u8 *dest)
|
||||
bool8 RfuBackupQueue_Dequeue(struct RfuBackupQueue *queue, u8 *dest)
|
||||
{
|
||||
s32 i;
|
||||
|
||||
@@ -381,38 +509,38 @@ bool8 RFU_queue_2_14_send(struct UnkRfuStruct_2_Sub_c1c *queue, u8 *dest)
|
||||
}
|
||||
if (dest != NULL)
|
||||
{
|
||||
for (i = 0; i < 14; i++)
|
||||
for (i = 0; i < BACKUP_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
dest[i] = queue->slots[queue->send_slot][i];
|
||||
}
|
||||
}
|
||||
queue->send_slot++;
|
||||
queue->send_slot %= 2;
|
||||
queue->send_slot %= BACKUP_QUEUE_NUM_SLOTS;
|
||||
queue->count--;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void RFU_queue_2_256_recv(struct UnkRfuStruct_Sub_Unused *queue, u8 *data)
|
||||
static void RfuUnusedQueue_Dequeue(struct RfuUnusedQueue *queue, u8 *dest)
|
||||
{
|
||||
s32 i;
|
||||
|
||||
if (queue->count < 2)
|
||||
if (queue->count < UNUSED_QUEUE_NUM_SLOTS)
|
||||
{
|
||||
for (i = 0; i < 256; i++)
|
||||
for (i = 0; i < UNUSED_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
queue->slots[queue->recv_slot][i] = data[i];
|
||||
queue->slots[queue->recv_slot][i] = dest[i];
|
||||
}
|
||||
queue->recv_slot++;
|
||||
queue->recv_slot %= 2;
|
||||
queue->recv_slot %= UNUSED_QUEUE_NUM_SLOTS;
|
||||
queue->count++;
|
||||
}
|
||||
else
|
||||
{
|
||||
queue->full = 1;
|
||||
queue->full = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
static bool8 RFU_queue_2_256_send(struct UnkRfuStruct_Sub_Unused *queue, u8 *send)
|
||||
static bool8 RfuUnusedQueue_Enqueue(struct RfuUnusedQueue *queue, u8 *dest)
|
||||
{
|
||||
s32 i;
|
||||
|
||||
@@ -420,16 +548,17 @@ static bool8 RFU_queue_2_256_send(struct UnkRfuStruct_Sub_Unused *queue, u8 *sen
|
||||
{
|
||||
return FALSE;
|
||||
}
|
||||
for (i = 0; i < 256; i++)
|
||||
for (i = 0; i < UNUSED_QUEUE_SLOT_LENGTH; i++)
|
||||
{
|
||||
send[i] = queue->slots[queue->send_slot][i];
|
||||
dest[i] = queue->slots[queue->send_slot][i];
|
||||
}
|
||||
queue->send_slot++;
|
||||
queue->send_slot %= 2;
|
||||
queue->send_slot %= UNUSED_QUEUE_NUM_SLOTS;
|
||||
queue->count--;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
UNUSED
|
||||
static void sub_80FC9B8(u8 *q1, u8 mode)
|
||||
{
|
||||
s32 i;
|
||||
@@ -476,26 +605,26 @@ static void sub_80FC9B8(u8 *q1, u8 mode)
|
||||
}
|
||||
}
|
||||
|
||||
static void PkmnStrToASCII(u8 *q1, const u8 *q2)
|
||||
static void PkmnStrToASCII(u8 *dest, const u8 *src)
|
||||
{
|
||||
s32 i;
|
||||
|
||||
for (i = 0; q2[i] != EOS; i++)
|
||||
for (i = 0; src[i] != EOS; i++)
|
||||
{
|
||||
q1[i] = sWireless_RSEtoASCIITable[q2[i]];
|
||||
dest[i] = sWireless_RSEtoASCIITable[src[i]];
|
||||
}
|
||||
q1[i] = 0;
|
||||
dest[i] = 0;
|
||||
}
|
||||
|
||||
static void ASCIIToPkmnStr(u8 *q1, const u8 *q2)
|
||||
static void ASCIIToPkmnStr(u8 *dest, const u8 *src)
|
||||
{
|
||||
s32 i;
|
||||
|
||||
for (i = 0; q2[i] != 0; i++)
|
||||
for (i = 0; src[i] != 0; i++)
|
||||
{
|
||||
q1[i] = sWireless_ASCIItoRSETable[q2[i]];
|
||||
dest[i] = sWireless_ASCIItoRSETable[src[i]];
|
||||
}
|
||||
q1[i] = EOS;
|
||||
dest[i] = EOS;
|
||||
}
|
||||
|
||||
static u8 GetConnectedChildStrength(u8 maxFlags)
|
||||
@@ -552,7 +681,7 @@ void InitHostRFUtgtGname(struct GFtgtGname *data, u8 activity, bool32 started, s
|
||||
data->unk_00.version = GAME_VERSION;
|
||||
data->unk_00.hasNews = FALSE;
|
||||
data->unk_00.hasCard = FALSE;
|
||||
data->unk_00.unk_00_6 = 0;
|
||||
data->unk_00.unknown = FALSE;
|
||||
data->unk_00.isChampion = FlagGet(FLAG_SYS_CAN_LINK_WITH_RS);
|
||||
data->unk_00.hasNationalDex = IsNationalPokedexEnabled();
|
||||
data->unk_00.gameClear = FlagGet(FLAG_SYS_GAME_CLEAR);
|
||||
@@ -572,7 +701,7 @@ bool8 LinkRfu_GetNameIfCompatible(struct GFtgtGname *gname, u8 *uname, u8 idx)
|
||||
if (lman.parent_child == MODE_PARENT)
|
||||
{
|
||||
retVal = TRUE;
|
||||
if (RfuSerialNumberIsValid(gRfuLinkStatus->partner[idx].serialNo) && ((gRfuLinkStatus->getNameFlag >> idx) & 1))
|
||||
if (IsRfuSerialNumberValid(gRfuLinkStatus->partner[idx].serialNo) && ((gRfuLinkStatus->getNameFlag >> idx) & 1))
|
||||
{
|
||||
memcpy(gname, &gRfuLinkStatus->partner[idx].gname, RFU_GAME_NAME_LENGTH);
|
||||
memcpy(uname, gRfuLinkStatus->partner[idx].uname, RFU_USER_NAME_LENGTH);
|
||||
@@ -586,7 +715,7 @@ bool8 LinkRfu_GetNameIfCompatible(struct GFtgtGname *gname, u8 *uname, u8 idx)
|
||||
else
|
||||
{
|
||||
retVal = FALSE;
|
||||
if (RfuSerialNumberIsValid(gRfuLinkStatus->partner[idx].serialNo))
|
||||
if (IsRfuSerialNumberValid(gRfuLinkStatus->partner[idx].serialNo))
|
||||
{
|
||||
memcpy(gname, &gRfuLinkStatus->partner[idx].gname, RFU_GAME_NAME_LENGTH);
|
||||
memcpy(uname, gRfuLinkStatus->partner[idx].uname, RFU_USER_NAME_LENGTH);
|
||||
@@ -609,7 +738,7 @@ bool8 LinkRfu_GetNameIfCompatible(struct GFtgtGname *gname, u8 *uname, u8 idx)
|
||||
bool8 LinkRfu_GetNameIfSerial7F7D(struct GFtgtGname *gname, u8 *uname, u8 idx)
|
||||
{
|
||||
bool8 retVal = FALSE;
|
||||
if (gRfuLinkStatus->partner[idx].serialNo == 0x7F7D)
|
||||
if (gRfuLinkStatus->partner[idx].serialNo == RFU_SERIAL_7F7D)
|
||||
{
|
||||
memcpy(gname, gRfuLinkStatus->partner[idx].gname, RFU_GAME_NAME_LENGTH);
|
||||
memcpy(uname, gRfuLinkStatus->partner[idx].uname, RFU_USER_NAME_LENGTH);
|
||||
@@ -629,37 +758,46 @@ void LinkRfu3_SetGnameUnameFromStaticBuffers(struct GFtgtGname *gname, u8 *uname
|
||||
memcpy(uname, gHostRFUtgtUnameBuffer, RFU_USER_NAME_LENGTH);
|
||||
}
|
||||
|
||||
#define sNextAnimNum data[0]
|
||||
#define sSavedAnimNum data[1]
|
||||
#define sCurrAnimNum data[2]
|
||||
#define sFrameDelay data[3]
|
||||
#define sFrameIdx data[4]
|
||||
#define sTileStart data[6]
|
||||
#define sValidator data[7]
|
||||
#define STATUS_INDICATOR_ACTIVE 0x1234 // Used to validate active indicator
|
||||
|
||||
void CreateWirelessStatusIndicatorSprite(u8 x, u8 y)
|
||||
{
|
||||
u8 sprId;
|
||||
|
||||
if (x == 0 && y == 0)
|
||||
{
|
||||
x = 0xE7;
|
||||
y = 0x08;
|
||||
x = 231;
|
||||
y = 8;
|
||||
}
|
||||
if (gRfuLinkStatus->parentChild == MODE_PARENT)
|
||||
{
|
||||
sprId = CreateSprite(&sWirelessStatusIndicatorSpriteTemplate, x, y, 0);
|
||||
gSprites[sprId].data[7] = 0x1234;
|
||||
gSprites[sprId].data[6] = GetSpriteTileStartByTag(sWirelessStatusIndicatorSpriteSheet.tag);
|
||||
gSprites[sprId].sValidator = STATUS_INDICATOR_ACTIVE;
|
||||
gSprites[sprId].sTileStart = GetSpriteTileStartByTag(sWirelessStatusIndicatorSpriteSheet.tag);
|
||||
gSprites[sprId].invisible = TRUE;
|
||||
gWirelessStatusIndicatorSpriteId = sprId;
|
||||
}
|
||||
else
|
||||
{
|
||||
gWirelessStatusIndicatorSpriteId = CreateSprite(&sWirelessStatusIndicatorSpriteTemplate, x, y, 0);
|
||||
gSprites[gWirelessStatusIndicatorSpriteId].data[7] = 0x1234;
|
||||
gSprites[gWirelessStatusIndicatorSpriteId].data[6] = GetSpriteTileStartByTag(sWirelessStatusIndicatorSpriteSheet.tag);
|
||||
gSprites[gWirelessStatusIndicatorSpriteId].sValidator = STATUS_INDICATOR_ACTIVE;
|
||||
gSprites[gWirelessStatusIndicatorSpriteId].sTileStart = GetSpriteTileStartByTag(sWirelessStatusIndicatorSpriteSheet.tag);
|
||||
gSprites[gWirelessStatusIndicatorSpriteId].invisible = TRUE;
|
||||
}
|
||||
}
|
||||
|
||||
void DestroyWirelessStatusIndicatorSprite(void)
|
||||
{
|
||||
if (gSprites[gWirelessStatusIndicatorSpriteId].data[7] == 0x1234)
|
||||
if (gSprites[gWirelessStatusIndicatorSpriteId].sValidator == STATUS_INDICATOR_ACTIVE)
|
||||
{
|
||||
gSprites[gWirelessStatusIndicatorSpriteId].data[7] = 0;
|
||||
gSprites[gWirelessStatusIndicatorSpriteId].sValidator = 0;
|
||||
DestroySprite(&gSprites[gWirelessStatusIndicatorSpriteId]);
|
||||
gMain.oamBuffer[125] = gDummyOamData;
|
||||
CpuCopy16(&gDummyOamData, (struct OamData *)OAM + 125, sizeof(struct OamData));
|
||||
@@ -693,17 +831,17 @@ static u8 GetParentSignalStrength(void)
|
||||
|
||||
static void SetAndRestartWirelessStatusIndicatorAnim(struct Sprite *sprite, s32 signalStrengthAnimNum)
|
||||
{
|
||||
if (sprite->data[2] != signalStrengthAnimNum)
|
||||
if (sprite->sCurrAnimNum != signalStrengthAnimNum)
|
||||
{
|
||||
sprite->data[2] = signalStrengthAnimNum;
|
||||
sprite->data[3] = 0;
|
||||
sprite->data[4] = 0;
|
||||
sprite->sCurrAnimNum = signalStrengthAnimNum;
|
||||
sprite->sFrameDelay = 0;
|
||||
sprite->sFrameIdx = 0;
|
||||
}
|
||||
}
|
||||
|
||||
void UpdateWirelessStatusIndicatorSprite(void)
|
||||
{
|
||||
if (gWirelessStatusIndicatorSpriteId != 0xFF && gSprites[gWirelessStatusIndicatorSpriteId].data[7] == 0x1234)
|
||||
if (gWirelessStatusIndicatorSpriteId != 0xFF && gSprites[gWirelessStatusIndicatorSpriteId].sValidator == STATUS_INDICATOR_ACTIVE)
|
||||
{
|
||||
struct Sprite *sprite = &gSprites[gWirelessStatusIndicatorSpriteId];
|
||||
u8 signalStrength = RFU_LINK_ICON_LEVEL4_MAX;
|
||||
@@ -722,57 +860,65 @@ void UpdateWirelessStatusIndicatorSprite(void)
|
||||
{
|
||||
signalStrength = GetParentSignalStrength();
|
||||
}
|
||||
if (sub_80FC1B0() == TRUE)
|
||||
if (IsRfuRecoveringFromLinkLoss() == TRUE)
|
||||
{
|
||||
sprite->data[0] = 4;
|
||||
sprite->sNextAnimNum = 4;
|
||||
}
|
||||
else if (signalStrength <= RFU_LINK_ICON_LEVEL1_MAX)
|
||||
{
|
||||
sprite->data[0] = 3;
|
||||
sprite->sNextAnimNum = 3;
|
||||
}
|
||||
else if (signalStrength >= RFU_LINK_ICON_LEVEL2_MIN && signalStrength <= RFU_LINK_ICON_LEVEL2_MAX)
|
||||
{
|
||||
sprite->data[0] = 2;
|
||||
sprite->sNextAnimNum = 2;
|
||||
}
|
||||
else if (signalStrength >= RFU_LINK_ICON_LEVEL3_MIN && signalStrength <= RFU_LINK_ICON_LEVEL3_MAX)
|
||||
{
|
||||
sprite->data[0] = 1;
|
||||
sprite->sNextAnimNum = 1;
|
||||
}
|
||||
else if (signalStrength >= RFU_LINK_ICON_LEVEL4_MIN)
|
||||
{
|
||||
sprite->data[0] = 0;
|
||||
sprite->sNextAnimNum = 0;
|
||||
}
|
||||
if (sprite->data[0] != sprite->data[1])
|
||||
if (sprite->sNextAnimNum != sprite->sSavedAnimNum)
|
||||
{
|
||||
SetAndRestartWirelessStatusIndicatorAnim(sprite, sprite->data[0]);
|
||||
sprite->data[1] = sprite->data[0];
|
||||
SetAndRestartWirelessStatusIndicatorAnim(sprite, sprite->sNextAnimNum);
|
||||
sprite->sSavedAnimNum = sprite->sNextAnimNum;
|
||||
}
|
||||
if (sprite->anims[sprite->data[2]][sprite->data[4]].frame.duration < sprite->data[3])
|
||||
if (sprite->anims[sprite->sCurrAnimNum][sprite->sFrameIdx].frame.duration < sprite->sFrameDelay)
|
||||
{
|
||||
sprite->data[4]++;
|
||||
sprite->data[3] = 0;
|
||||
if (sprite->anims[sprite->data[2]][sprite->data[4]].type == -2)
|
||||
sprite->sFrameIdx++;
|
||||
sprite->sFrameDelay = 0;
|
||||
if (sprite->anims[sprite->sCurrAnimNum][sprite->sFrameIdx].type == -2) // ANIMCMD_JUMP
|
||||
{
|
||||
sprite->data[4] = 0;
|
||||
sprite->sFrameIdx = 0;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
sprite->data[3]++;
|
||||
sprite->sFrameDelay++;
|
||||
}
|
||||
gMain.oamBuffer[125] = sWirelessStatusIndicatorOamData;
|
||||
gMain.oamBuffer[125].x = sprite->pos1.x + sprite->centerToCornerVecX;
|
||||
gMain.oamBuffer[125].y = sprite->pos1.y + sprite->centerToCornerVecY;
|
||||
gMain.oamBuffer[125].paletteNum = sprite->oam.paletteNum;
|
||||
gMain.oamBuffer[125].tileNum = sprite->data[6] + sprite->anims[sprite->data[2]][sprite->data[4]].frame.imageValue;
|
||||
gMain.oamBuffer[125].tileNum = sprite->sTileStart + sprite->anims[sprite->sCurrAnimNum][sprite->sFrameIdx].frame.imageValue;
|
||||
CpuCopy16(gMain.oamBuffer + 125, (struct OamData *)OAM + 125, sizeof(struct OamData));
|
||||
if (RfuGetErrorStatus() == 1)
|
||||
if (RfuGetStatus() == RFU_STATUS_FATAL_ERROR)
|
||||
{
|
||||
DestroyWirelessStatusIndicatorSprite();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#undef sNextAnimNum
|
||||
#undef sSavedAnimNum
|
||||
#undef sCurrAnimNum
|
||||
#undef sFrameDelay
|
||||
#undef sFrameIdx
|
||||
#undef sTileStart
|
||||
#undef sValidator
|
||||
|
||||
static void CopyTrainerRecord(struct TrainerNameRecord *dest, u32 trainerId, const u8 *name)
|
||||
{
|
||||
int i;
|
||||
|
||||
@@ -1270,7 +1270,7 @@ void task00_mystery_gift(u8 taskId)
|
||||
switch (mevent_client_do_exec(&data->curPromptWindowId))
|
||||
{
|
||||
case 6: // done
|
||||
Rfu_BeginBuildAndSendCommand5F();
|
||||
Rfu_SetCloseLinkCallback();
|
||||
data->prevPromptWindowId = data->curPromptWindowId;
|
||||
data->state = 13;
|
||||
break;
|
||||
@@ -1633,7 +1633,7 @@ void task00_mystery_gift(u8 taskId)
|
||||
}
|
||||
break;
|
||||
case 33:
|
||||
Rfu_BeginBuildAndSendCommand5F();
|
||||
Rfu_SetCloseLinkCallback();
|
||||
StringCopy(gStringVar1, gLinkPlayers[1].name);
|
||||
data->state = 34;
|
||||
break;
|
||||
|
||||
@@ -1882,7 +1882,7 @@ static int sub_81497A8(void)
|
||||
|
||||
static bool32 sub_8149804(void)
|
||||
{
|
||||
return !Rfu.unk_124.count && !Rfu.sendQueue.count;
|
||||
return !Rfu.recvQueue.count && !Rfu.sendQueue.count;
|
||||
}
|
||||
|
||||
static int sub_8149834(u8 *arg0)
|
||||
|
||||
+27
-25
@@ -861,7 +861,9 @@ static void Task_TryBecomeLinkLeader(u8 taskId)
|
||||
}
|
||||
break;
|
||||
case 11:
|
||||
switch (UnionRoomHandleYesNo(&data->textState, TrainerIdAndNameStillInPartnersList(ReadAsU16(data->field_0->arr[data->playerCount].gname_uname.gname.unk_00.playerTrainerId), data->field_0->arr[data->playerCount].gname_uname.uname)))
|
||||
switch (UnionRoomHandleYesNo(&data->textState, CheckTrainerHasLeftByIdAndName(
|
||||
ReadAsU16(data->field_0->arr[data->playerCount].gname_uname.gname.unk_00.playerTrainerId),
|
||||
data->field_0->arr[data->playerCount].gname_uname.uname)))
|
||||
{
|
||||
case 0:
|
||||
LoadWirelessStatusIndicatorSpriteGfx();
|
||||
@@ -928,7 +930,7 @@ static void Task_TryBecomeLinkLeader(u8 taskId)
|
||||
else if (val == 2)
|
||||
{
|
||||
// Disconnect
|
||||
RfuSetErrorStatus(0, 0);
|
||||
RfuSetStatus(RFU_STATUS_OK, 0);
|
||||
data->state = 4;
|
||||
}
|
||||
break;
|
||||
@@ -1027,7 +1029,7 @@ static void Task_TryBecomeLinkLeader(u8 taskId)
|
||||
gSpecialVar_Result = 8;
|
||||
break;
|
||||
case 26:
|
||||
if (RfuIsErrorStatus1or2())
|
||||
if (RfuHasErrored())
|
||||
{
|
||||
data->state = 29;
|
||||
}
|
||||
@@ -1152,7 +1154,7 @@ static bool8 Leader_SetStateIfMemberListChanged(struct UnkStruct_Leader * data,
|
||||
data->state = state1;
|
||||
break;
|
||||
case UNION_ROOM_SPAWN_OUT:
|
||||
RfuSetErrorStatus(0, 0);
|
||||
RfuSetStatus(RFU_STATUS_OK, 0);
|
||||
RedrawListMenu(data->listTaskId);
|
||||
data->state = state2;
|
||||
return TRUE;
|
||||
@@ -1387,7 +1389,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
if (gReceivedRemoteLinkPlayers)
|
||||
{
|
||||
sPlayerCurrActivity = data->field_0->arr[data->leaderId].gname_uname.gname.activity;
|
||||
RfuSetErrorStatus(0, 0);
|
||||
RfuSetStatus(RFU_STATUS_OK, 0);
|
||||
switch (sPlayerCurrActivity)
|
||||
{
|
||||
case ACTIVITY_BATTLE:
|
||||
@@ -1407,7 +1409,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
}
|
||||
}
|
||||
|
||||
switch (RfuGetErrorStatus())
|
||||
switch (RfuGetStatus())
|
||||
{
|
||||
case 1:
|
||||
data->state = 12;
|
||||
@@ -1421,7 +1423,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
GetGroupLeaderSentAnOKMessage(gStringVar4, sPlayerCurrActivity);
|
||||
if (PrintOnTextbox(&data->textState, gStringVar4))
|
||||
{
|
||||
RfuSetErrorStatus(7, 0);
|
||||
RfuSetStatus(RFU_STATUS_WAIT_ACK_JOIN_GROUP, 0);
|
||||
StringCopy(gStringVar1, sUnionRoomActivityStringPtrs[sPlayerCurrActivity]);
|
||||
StringExpandPlaceholders(gStringVar4, gUnknown_8457700);
|
||||
}
|
||||
@@ -1432,7 +1434,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
{
|
||||
if (PrintOnTextbox(&data->textState, gStringVar4))
|
||||
{
|
||||
RfuSetErrorStatus(12, 0);
|
||||
RfuSetStatus(RFU_STATUS_ACK_JOIN_GROUP, 0);
|
||||
data->delayBeforePrint = 0;
|
||||
}
|
||||
}
|
||||
@@ -1443,7 +1445,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
break;
|
||||
}
|
||||
|
||||
if (!RfuGetErrorStatus() && JOY_NEW(B_BUTTON))
|
||||
if (!RfuGetStatus() && JOY_NEW(B_BUTTON))
|
||||
data->state = 7;
|
||||
break;
|
||||
case 7:
|
||||
@@ -1451,10 +1453,10 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
data->state = 8;
|
||||
break;
|
||||
case 8:
|
||||
switch (UnionRoomHandleYesNo(&data->textState, RfuGetErrorStatus()))
|
||||
switch (UnionRoomHandleYesNo(&data->textState, RfuGetStatus()))
|
||||
{
|
||||
case 0:
|
||||
LinkRfuNIsend8();
|
||||
SendLeaveGroupNotice();
|
||||
data->state = 9;
|
||||
RedrawListMenu(data->listTaskId);
|
||||
break;
|
||||
@@ -1470,7 +1472,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
}
|
||||
break;
|
||||
case 9:
|
||||
if (RfuGetErrorStatus())
|
||||
if (RfuGetStatus())
|
||||
data->state = 6;
|
||||
break;
|
||||
case 10:
|
||||
@@ -1494,7 +1496,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
break;
|
||||
case 13:
|
||||
DestroyWirelessStatusIndicatorSprite();
|
||||
if (PrintOnTextbox(&data->textState, gUnknown_8457754[RfuGetErrorStatus()]))
|
||||
if (PrintOnTextbox(&data->textState, gUnknown_8457754[RfuGetStatus()]))
|
||||
{
|
||||
gSpecialVar_Result = 6;
|
||||
data->state = 23;
|
||||
@@ -1507,7 +1509,7 @@ static void Task_TryJoinLinkGroup(u8 taskId)
|
||||
break;
|
||||
case 15:
|
||||
DestroyWirelessStatusIndicatorSprite();
|
||||
if (PrintOnTextbox(&data->textState, gUnknown_8457754[RfuGetErrorStatus()]))
|
||||
if (PrintOnTextbox(&data->textState, gUnknown_8457754[RfuGetStatus()]))
|
||||
{
|
||||
gSpecialVar_Result = 8;
|
||||
data->state = 23;
|
||||
@@ -2180,7 +2182,7 @@ static void Task_MEvent_Leader(u8 taskId)
|
||||
}
|
||||
else if (val == 2)
|
||||
{
|
||||
RfuSetErrorStatus(0, 0);
|
||||
RfuSetStatus(RFU_STATUS_OK, 0);
|
||||
data->state = 2;
|
||||
}
|
||||
break;
|
||||
@@ -2228,7 +2230,7 @@ static void Task_MEvent_Leader(u8 taskId)
|
||||
}
|
||||
break;
|
||||
case 15:
|
||||
if (RfuGetErrorStatus() == 1 || RfuGetErrorStatus() == 2)
|
||||
if (RfuGetStatus() == 1 || RfuGetStatus() == 2)
|
||||
{
|
||||
data->state = 13;
|
||||
}
|
||||
@@ -2370,7 +2372,7 @@ static void Task_CardOrNewsWithFriend(u8 taskId)
|
||||
data->state = 10;
|
||||
}
|
||||
|
||||
switch (RfuGetErrorStatus())
|
||||
switch (RfuGetStatus())
|
||||
{
|
||||
case 1:
|
||||
case 2:
|
||||
@@ -2379,7 +2381,7 @@ static void Task_CardOrNewsWithFriend(u8 taskId)
|
||||
break;
|
||||
case 5:
|
||||
AddTextPrinterToWindow1(gUnknown_84576AC);
|
||||
RfuSetErrorStatus(0, 0);
|
||||
RfuSetStatus(RFU_STATUS_OK, 0);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
@@ -2396,7 +2398,7 @@ static void Task_CardOrNewsWithFriend(u8 taskId)
|
||||
data->state++;
|
||||
break;
|
||||
case 9:
|
||||
if (MG_PrintTextOnWindow1AndWaitButton(&data->textState, gUnknown_8457838[RfuGetErrorStatus()]))
|
||||
if (MG_PrintTextOnWindow1AndWaitButton(&data->textState, gUnknown_8457838[RfuGetStatus()]))
|
||||
{
|
||||
DestroyWirelessStatusIndicatorSprite();
|
||||
DestroyTask(taskId);
|
||||
@@ -2535,7 +2537,7 @@ static void Task_CardOrNewsOverWireless(u8 taskId)
|
||||
data->state = 12;
|
||||
}
|
||||
|
||||
switch (RfuGetErrorStatus())
|
||||
switch (RfuGetStatus())
|
||||
{
|
||||
case 1:
|
||||
case 2:
|
||||
@@ -2544,7 +2546,7 @@ static void Task_CardOrNewsOverWireless(u8 taskId)
|
||||
break;
|
||||
case 5:
|
||||
AddTextPrinterToWindow1(gUnknown_845777C);
|
||||
RfuSetErrorStatus(0, 0);
|
||||
RfuSetStatus(RFU_STATUS_OK, 0);
|
||||
break;
|
||||
}
|
||||
break;
|
||||
@@ -2837,7 +2839,7 @@ static void Task_RunUnionRoom(u8 taskId)
|
||||
break;
|
||||
case 25:
|
||||
UR_RunTextPrinters_CheckPrinter0Active();
|
||||
switch (RfuGetErrorStatus())
|
||||
switch (RfuGetStatus())
|
||||
{
|
||||
case 4:
|
||||
HandleCancelTrade(TRUE);
|
||||
@@ -3032,7 +3034,7 @@ static void Task_RunUnionRoom(u8 taskId)
|
||||
}
|
||||
break;
|
||||
case 21:
|
||||
switch (RfuGetErrorStatus())
|
||||
switch (RfuGetStatus())
|
||||
{
|
||||
case 4:
|
||||
HandleCancelTrade(TRUE);
|
||||
@@ -3054,7 +3056,7 @@ static void Task_RunUnionRoom(u8 taskId)
|
||||
taskData[3]++;
|
||||
break;
|
||||
case 22:
|
||||
if (RfuIsErrorStatus1or2())
|
||||
if (RfuHasErrored())
|
||||
{
|
||||
playerGender = GetUnionRoomPlayerGender(taskData[1], data->field_0);
|
||||
UpdateGameDataWithActivitySpriteGendersFlag(ACTIVITY_PLYRTALK | IN_UNION_ROOM, 0, TRUE);
|
||||
@@ -3073,7 +3075,7 @@ static void Task_RunUnionRoom(u8 taskId)
|
||||
data->recvActivityRequest[0] = 0;
|
||||
break;
|
||||
case 12:
|
||||
if (RfuIsErrorStatus1or2())
|
||||
if (RfuHasErrored())
|
||||
{
|
||||
HandleCancelTrade(FALSE);
|
||||
data->state = 2;
|
||||
|
||||
+12
-12
@@ -324,7 +324,7 @@ static void ChatEntryRoutine_Join(void)
|
||||
sWork->routineState++;
|
||||
// fall through
|
||||
case 1:
|
||||
if (IsLinkTaskFinished() && !GetRfuUnkCE8())
|
||||
if (IsLinkTaskFinished() && !RfuHasFoundNewLeader())
|
||||
{
|
||||
if (SendBlock(0, sWork->sendMessageBuffer, sizeof(sWork->sendMessageBuffer)))
|
||||
sWork->routineState++;
|
||||
@@ -527,14 +527,14 @@ static void ChatEntryRoutine_AskQuitChatting(void)
|
||||
sWork->routineState = 3;
|
||||
break;
|
||||
case 0:
|
||||
sub_80FA4A8();
|
||||
Rfu_UnionRoomChat_StopLinkManager();
|
||||
PrepareSendBuffer_Disband(sWork->sendMessageBuffer);
|
||||
sWork->routineState = 4;
|
||||
break;
|
||||
}
|
||||
break;
|
||||
case 4:
|
||||
if (IsLinkTaskFinished() && !GetRfuUnkCE8() && SendBlock(0, sWork->sendMessageBuffer, sizeof(sWork->sendMessageBuffer)))
|
||||
if (IsLinkTaskFinished() && !RfuHasFoundNewLeader() && SendBlock(0, sWork->sendMessageBuffer, sizeof(sWork->sendMessageBuffer)))
|
||||
{
|
||||
if (sWork->multiplayerId == 0)
|
||||
sWork->routineState = 6;
|
||||
@@ -577,15 +577,15 @@ static void ChatEntryRoutine_ExitChat(void)
|
||||
}
|
||||
break;
|
||||
case 3:
|
||||
if (IsLinkTaskFinished() && !GetRfuUnkCE8() && SendBlock(0, sWork->sendMessageBuffer, sizeof(sWork->sendMessageBuffer)))
|
||||
if (IsLinkTaskFinished() && !RfuHasFoundNewLeader() && SendBlock(0, sWork->sendMessageBuffer, sizeof(sWork->sendMessageBuffer)))
|
||||
sWork->routineState++;
|
||||
break;
|
||||
case 4:
|
||||
if ((GetBlockReceivedStatus() & 1) && !GetRfuUnkCE8())
|
||||
if ((GetBlockReceivedStatus() & 1) && !RfuHasFoundNewLeader())
|
||||
sWork->routineState++;
|
||||
break;
|
||||
case 5:
|
||||
if (IsLinkTaskFinished() && !GetRfuUnkCE8())
|
||||
if (IsLinkTaskFinished() && !RfuHasFoundNewLeader())
|
||||
{
|
||||
SetCloseLinkCallback();
|
||||
sWork->exitDelayTimer = 0;
|
||||
@@ -620,7 +620,7 @@ static void ChatEntryRoutine_Drop(void)
|
||||
}
|
||||
break;
|
||||
case 1:
|
||||
if (!RunDisplaySubtask(0) && IsLinkTaskFinished() && !GetRfuUnkCE8())
|
||||
if (!RunDisplaySubtask(0) && IsLinkTaskFinished() && !RfuHasFoundNewLeader())
|
||||
{
|
||||
SetCloseLinkCallback();
|
||||
sWork->exitDelayTimer = 0;
|
||||
@@ -666,7 +666,7 @@ static void ChatEntryRoutine_Disbanded(void)
|
||||
}
|
||||
break;
|
||||
case 2:
|
||||
if (RunDisplaySubtask(0) != TRUE && IsLinkTaskFinished() && !GetRfuUnkCE8())
|
||||
if (RunDisplaySubtask(0) != TRUE && IsLinkTaskFinished() && !RfuHasFoundNewLeader())
|
||||
{
|
||||
SetCloseLinkCallback();
|
||||
sWork->exitDelayTimer = 0;
|
||||
@@ -704,7 +704,7 @@ static void ChatEntryRoutine_SendMessage(void)
|
||||
sWork->routineState++;
|
||||
// fall through
|
||||
case 1:
|
||||
if (IsLinkTaskFinished() == TRUE && !GetRfuUnkCE8() && SendBlock(0, sWork->sendMessageBuffer, sizeof(sWork->sendMessageBuffer)))
|
||||
if (IsLinkTaskFinished() == TRUE && !RfuHasFoundNewLeader() && SendBlock(0, sWork->sendMessageBuffer, sizeof(sWork->sendMessageBuffer)))
|
||||
sWork->routineState++;
|
||||
break;
|
||||
case 2:
|
||||
@@ -1355,7 +1355,7 @@ static void Task_ReceiveChatMessage(u8 taskId)
|
||||
}
|
||||
|
||||
tBlockReceivedStatus = GetBlockReceivedStatus();
|
||||
if (!tBlockReceivedStatus && GetRfuUnkCE8())
|
||||
if (!tBlockReceivedStatus && RfuHasFoundNewLeader())
|
||||
return;
|
||||
|
||||
tI = 0;
|
||||
@@ -1409,7 +1409,7 @@ static void Task_ReceiveChatMessage(u8 taskId)
|
||||
// You're the leader, and the person who left is not you
|
||||
if (GetLinkPlayerCount() == 2)
|
||||
{
|
||||
sub_80FA4A8();
|
||||
Rfu_UnionRoomChat_StopLinkManager();
|
||||
sWork->exitType = CHATEXIT_LEADER_LAST;
|
||||
DestroyTask(taskId);
|
||||
return;
|
||||
@@ -1433,7 +1433,7 @@ static void Task_ReceiveChatMessage(u8 taskId)
|
||||
DestroyTask(taskId);
|
||||
break;
|
||||
case 2:
|
||||
if (!GetRfuUnkCE8())
|
||||
if (!RfuHasFoundNewLeader())
|
||||
{
|
||||
if (sWork->multiplayerId == 0)
|
||||
sub_80FB030(sWork->linkPlayerCount);
|
||||
|
||||
Reference in New Issue
Block a user