-
Notifications
You must be signed in to change notification settings - Fork 0
/
error.cpp
121 lines (103 loc) · 4.05 KB
/
error.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
#include <asm.h>
#include <cstdlib.h>
#include <patch.h>
#include <rvl.h>
namespace demae::Error {
// TODO: It is probably way better make a GXObj class and include the function
// like that
typedef void func(int, u32, int);
constexpr u32 ERROR_STRING_ADDRESS = 0x800014a0;
/*
* CopyErrorString copies the error string from the XML is available.
* This function is inserted right before the ClearXMLObject is called in order
* to preserve the string.
*/
void CopyErrorString(int _xml_object) {
LONGCALL void *GetNode(void *buf, const char *name, void *parent)
AT(0x800c43e0);
LONGCALL void *GetChildNodeAtIndex(void *parent, int index) AT(0x800c4afc);
LONGCALL char *GetNodeValue(void *node) AT(0x800c4870);
LONGCALL void ClearXMLObject(int xml_object) AT(0x800c4a30);
LONGCALL void *GetNodeParent(void *node) AT(0x800c4b28);
u32 xml_object = *reinterpret_cast<u32 *>(0x8038a440);
// GetNode(xml_object, "response", nullptr);
void *parent = GetNode(reinterpret_cast<void *>(xml_object),
reinterpret_cast<const char *>(0x802d65b0), nullptr);
if (parent == nullptr)
return ClearXMLObject(_xml_object);
void *child = GetChildNodeAtIndex(parent, 0);
if (child == nullptr)
return ClearXMLObject(_xml_object);
void *txt_node =
GetNode(reinterpret_cast<void *>(xml_object), "error", child);
if (txt_node == nullptr)
return ClearXMLObject(_xml_object);
void *txt_node_parent = GetNodeParent(txt_node);
if (txt_node_parent == nullptr)
return ClearXMLObject(_xml_object);
char *txt = GetNodeValue(txt_node_parent);
u32 size = cstdlib::strlen(txt);
cstdlib::memcpy(reinterpret_cast<void *>(ERROR_STRING_ADDRESS), txt, size);
ClearXMLObject(_xml_object);
}
void RenderCustomError(int *gx_obj, int err) {
LONGCALL void RenderErrorBox(int *gx_obj, const wchar_t *text, int zero)
AT(0x80285bd4);
LONGCALL void SomeGXInit(int *gx_obj, int val) AT(0x8001adc0);
LONGCALL void SendToGX(int *gx_obj) AT(0x8001b4a0);
// Init the GX object
int uVar5 = reinterpret_cast<int *>(0x8034496c)[err * 3];
int uVar3 = reinterpret_cast<int *>(0x80344968)[err * 3];
gx_obj[1] = 1;
*gx_obj = 0;
gx_obj[0x5a] = *reinterpret_cast<int *>(0x804724d4);
gx_obj[2] = uVar5;
gx_obj[4] = 0;
gx_obj[0x5c] = -1;
SomeGXInit(gx_obj, uVar3);
// See if we have a custom error
char *txt = reinterpret_cast<char *>(ERROR_STRING_ADDRESS);
u32 size = cstdlib::strlen(txt);
if (size == 0) {
// Render the default error
u32 conv = reinterpret_cast<u32 *>(0x80344970)[err * 3];
if (conv != 0) {
if (*reinterpret_cast<u32 *>(0x802d5160 + gx_obj[2] * 4) == 0) {
func *f = *reinterpret_cast<func **>(
*reinterpret_cast<int *>(gx_obj[0xa0]) + 0x7c);
f(gx_obj[0xa0], conv, 0);
} else if (*reinterpret_cast<u32 *>(0x802d5160 + gx_obj[2] * 4) == 1) {
func *f = *reinterpret_cast<func **>(
*reinterpret_cast<int *>(gx_obj[0xa2]) + 0x7c);
f(gx_obj[0xa2], conv, 0);
}
}
} else {
// Convert to UTF16
void *dst = cstdlib::malloc((size + 1) * 2);
ShiftJISToUTF(dst, &size, static_cast<char *>(txt), &size);
*(reinterpret_cast<u16 *>(dst) + size) = L'\0';
// Now send to the renderer object
RenderErrorBox(reinterpret_cast<int *>(gx_obj[0xa0]),
reinterpret_cast<const wchar_t *>(dst), 0);
// Clear the string so if another error occurs in which we don't send a
// string, it will render what's in the DOL.
cstdlib::memset(txt, 0, size);
}
SendToGX(gx_obj);
}
DEMAE_DEFINE_PATCH = {
Patch::WriteASM(0x8001acb0, 1, ASM_LAMBDA(stw r0, 0x24(r1);)),
Patch::CallWithCTR(0x8001acb4, RenderCustomError),
Patch::WriteASM(0x8001acc4, 4,
ASM_LAMBDA(
// clang-format off
lwz r0,0x24(r1);
mtlr r0;
addi r1,r1,0x20;
blr;
// clang-format on
)),
Patch::WriteFunctionCall(0x800c3b60, CopyErrorString),
};
} // namespace demae::Error