6ResDic::ResDic(
const void *data) : m_data(reinterpret_cast<const Data *>(data)) {}
9const ResDic::NodeData *ResDic::get(
const char *pName, u32 len)
const {
10 const NodeData *c = &m_data->data[0];
11 const NodeData *x = &m_data->data[parse<u16>(c->idxLeft)];
13 while (parse<u16>(c->ref) > parse<u16>(x->ref)) {
16 u32 wd = parse<u16>(x->ref) >> 3;
17 u32 pos = parse<u16>(x->ref) & 7;
19 if (wd < len && (pName[wd] >> pos) & 1) {
20 x = &m_data->data[parse<u16>(x->idxRight)];
22 x = &m_data->data[parse<u16>(x->idxLeft)];
26 s32 stringOffset = parse<s32>(x->ofsString);
28 if (stringOffset != 0) {
30 reinterpret_cast<const char *
>(
reinterpret_cast<uintptr_t
>(m_data) + stringOffset);
32 if (std::strcmp(pName, xName) == 0) {
An abstraction of components from the nw4r and RVL libraries.