mirror of
https://github.com/zeldaret/tp
synced 2026-05-22 22:44:28 -04:00
b5d3b8c059
* Fix remaining <string> -> <cstring> for GCC compilation (#3114 follow-up) MWerks' <string> header transitively includes C string functions (memcpy, strlen, strcmp, etc.), but GCC/Clang's <string> is the C++ std::string header. These files all use C string functions and should include <cstring> instead. * Use std::isnan instead of isnan for GCC compilation GCC's <cmath> places isnan in the std namespace. Using the unqualified isnan fails to compile with GCC/Clang. * Fix cCcD_Src types: s32 -> u32 for bitmask fields cCcD_SrcObjCommonBase::mSPrm, cCcD_SrcObjTg::mType, and cCcD_SrcObjAt::mType are used as bitmasks (SetType/SetSPrm take u32, MskType/MskSPrm use u32, values like 0xFFFFFFFF are common in aggregate inits). Change from s32 to u32 to match usage. Also fix AT_TYPE_WOLF_ATTACK/AT_TYPE_UNK to use unsigned literals, and remove now-unnecessary (s32) casts on hex literals in collision source data. * Mark dummy() functions as static to avoid multiple definition errors These decomp artifact functions have the same name and signature across TUs, causing linker errors when building as a single binary.
299 lines
8.1 KiB
C++
299 lines
8.1 KiB
C++
#include "JSystem/JSystem.h" // IWYU pragma: keep
|
|
|
|
#include "JSystem/JMessage/resource.h"
|
|
#include "JSystem/JGadget/search.h"
|
|
#include "JSystem/JGadget/define.h"
|
|
#include <algorithm>
|
|
#include <cstring>
|
|
|
|
u16 JMessage::TResource::toMessageIndex_messageID(u32 uMsgID, u32 upperHalf, bool* pbValid) const {
|
|
if (!oParse_TBlock_messageID_.getRaw()) {
|
|
return 0xFFFF;
|
|
}
|
|
|
|
JUT_ASSERT(87, oParse_TBlock_messageID_.get_form()==0);
|
|
|
|
u32 uMsgValue = 0xFFFFFFFF;
|
|
bool valid = true;
|
|
|
|
u8 uFormSupplement = oParse_TBlock_messageID_.get_formSupplement();
|
|
switch (uFormSupplement) {
|
|
case 0:
|
|
if (upperHalf != 0) {
|
|
valid = false;
|
|
}
|
|
uMsgValue = uMsgID;
|
|
break;
|
|
case 1:
|
|
if (uMsgID > 0xFFFFFF || upperHalf > 0xFF) {
|
|
valid = false;
|
|
}
|
|
uMsgValue = ((uMsgID << 8) & 0xFFFFFF00) | (upperHalf & 0xFF);
|
|
break;
|
|
case 2:
|
|
if (uMsgID > 0xFFFF || upperHalf > 0xFFFF) {
|
|
valid = false;
|
|
}
|
|
uMsgValue = ((uMsgID << 16) & 0xFFFF0000) | (upperHalf & 0xFFFF);
|
|
break;
|
|
case 3:
|
|
if (uMsgID > 0xFF || upperHalf > 0xFFFFFF) {
|
|
valid = false;
|
|
}
|
|
uMsgValue = ((uMsgID << 24) & 0xFF000000) | (upperHalf & 0x00FFFFFF);
|
|
break;
|
|
case 4:
|
|
if (uMsgID != 0) {
|
|
valid = false;
|
|
}
|
|
uMsgValue = upperHalf;
|
|
break;
|
|
default:
|
|
JGADGET_WARNMSG1(122, "form-supplement unknown", uFormSupplement);
|
|
return 0xFFFF;
|
|
}
|
|
|
|
if (pbValid) {
|
|
*pbValid = valid;
|
|
}
|
|
|
|
if (uMsgValue == 0xFFFFFFFF) {
|
|
return 0xFFFF;
|
|
}
|
|
|
|
int nMsgNumber = oParse_TBlock_messageID_.get_number();
|
|
|
|
const u32* pContent = oParse_TBlock_messageID_.getContent();
|
|
JUT_ASSERT(131, pContent!=NULL);
|
|
|
|
const u32* pFirst = pContent;
|
|
const u32* pLast = pFirst + nMsgNumber;
|
|
const u32* pEntry;
|
|
|
|
if (oParse_TBlock_messageID_.get_isOrdered()) {
|
|
pEntry = std::lower_bound(pFirst, pLast, uMsgValue);
|
|
if (pEntry == pLast || *pEntry != uMsgValue) {
|
|
return 0xFFFF;
|
|
}
|
|
} else {
|
|
pEntry = std::find(pFirst, pLast, uMsgValue);
|
|
if (pEntry == pLast) {
|
|
return 0xFFFF;
|
|
}
|
|
}
|
|
|
|
int nIndex = pEntry - pFirst;
|
|
JUT_ASSERT(154, (data::MESSAGEINDEX_USER_ENUM_MIN<=nIndex)&& (nIndex<=data::MESSAGEINDEX_USER_ENUM_MAX));
|
|
return nIndex;
|
|
}
|
|
|
|
JMessage::locale::parseCharacter_function JMessage::TResourceContainer::sapfnParseCharacter_[5] = {
|
|
NULL,
|
|
JMessage::locale::parseCharacter_1Byte,
|
|
JMessage::locale::parseCharacter_2Byte,
|
|
JMessage::locale::parseCharacter_ShiftJIS,
|
|
JMessage::locale::parseCharacter_UTF8,
|
|
};
|
|
|
|
JMessage::TResourceContainer::TCResource::TCResource() {}
|
|
|
|
JMessage::TResourceContainer::TCResource::~TCResource() {
|
|
JGADGET_ASSERTWARN(173, empty());
|
|
}
|
|
JMessage::TResource* JMessage::TResourceContainer::TCResource::Get_groupID(u16 u16GroupID) {
|
|
JGadget::TContainerEnumerator<TResourceContainer::TCResource> enumerator(*this);
|
|
while (enumerator) {
|
|
const TResource* res = &(*enumerator);
|
|
if (res->getGroupID() == u16GroupID)
|
|
return (TResource*)res;
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
JMessage::TResource* JMessage::TResourceContainer::TCResource::Do_create() {
|
|
return new TResource();
|
|
}
|
|
|
|
void JMessage::TResourceContainer::TCResource::Do_destroy(JMessage::TResource* pResource) {
|
|
#if DEBUG
|
|
delete pResource;
|
|
#else
|
|
operator delete(pResource);
|
|
#endif
|
|
}
|
|
|
|
JMessage::TResourceContainer::TResourceContainer() : encodingType_(0), pfnParseCharacter_(NULL) {}
|
|
|
|
void JMessage::TResourceContainer::setEncoding(u8 e) {
|
|
if (e == 0) {
|
|
encodingType_ = e;
|
|
pfnParseCharacter_ = NULL;
|
|
} else {
|
|
JGADGET_ASSERTWARN(285, isEncodingSettable(e));
|
|
setEncoding_(e);
|
|
}
|
|
}
|
|
|
|
void JMessage::TResourceContainer::setEncoding_(u8 e) {
|
|
encodingType_ = e;
|
|
pfnParseCharacter_ = JGadget::toValueFromIndex<JMessage::locale::parseCharacter_function>(e, sapfnParseCharacter_, 5, NULL);
|
|
JUT_ASSERT(299, pfnParseCharacter_!=NULL);
|
|
}
|
|
|
|
JMessage::TParse::TParse(JMessage::TResourceContainer* pContainer) {
|
|
u8 sp8[5];
|
|
JMessage::TResourceContainer* cont;
|
|
JUT_ASSERT(324, pContainer!=NULL);
|
|
cont = pContainer;
|
|
pContainer_ = cont;
|
|
pResource_ = NULL;
|
|
sp8[0] = 0;
|
|
}
|
|
|
|
JMessage::TParse::~TParse() {}
|
|
|
|
bool JMessage::TParse::parseHeader_next(const void** ppData_inout, u32* puBlock_out, u32 param_2) {
|
|
JUT_ASSERT(343, ppData_inout!=NULL);
|
|
JUT_ASSERT(344, puBlock_out!=NULL);
|
|
|
|
const void* pData = *ppData_inout;
|
|
JUT_ASSERT(346, pData!=NULL);
|
|
|
|
data::TParse_THeader oHeader(pData);
|
|
*ppData_inout = oHeader.getContent();
|
|
*puBlock_out = oHeader.get_blockNumber();
|
|
|
|
JUT_ASSERT(350, pContainer_!=NULL);
|
|
|
|
if (memcmp(oHeader.get_signature(), &data::ga4cSignature, sizeof(data::ga4cSignature)) != 0) {
|
|
JGADGET_WARNMSG(355, "unknown signature");
|
|
return false;
|
|
}
|
|
|
|
if (oHeader.get_type() != 'bmg1') {
|
|
JGADGET_WARNMSG(360, "unknown type");
|
|
return false;
|
|
}
|
|
|
|
const u8 uEncoding = oHeader.get_encoding();
|
|
if (uEncoding != 0) {
|
|
if (!pContainer_->isEncodingSettable(uEncoding)) {
|
|
JGADGET_WARNMSG(369, "encoding not acceptable");
|
|
return false;
|
|
}
|
|
|
|
pContainer_->setEncoding(uEncoding);
|
|
}
|
|
|
|
if (param_2 & 0x10) {
|
|
return true;
|
|
}
|
|
|
|
TResourceContainer::TCResource* pResContainer = &pContainer_->resContainer_;
|
|
pResource_ = pResContainer->Do_create();
|
|
|
|
if (pResource_ == NULL) {
|
|
JGADGET_WARNMSG(384, "can't create resource");
|
|
if (param_2 & 0x20) {
|
|
return true;
|
|
} else {
|
|
return false;
|
|
}
|
|
} else {
|
|
pResContainer->Push_back(pResource_);
|
|
pResource_->setData_header(oHeader.getRaw());
|
|
return true;
|
|
}
|
|
}
|
|
|
|
bool JMessage::TParse::parseBlock_next(const void** ppData_inout, u32* puData_out, u32 param_2) {
|
|
JUT_ASSERT(401, ppData_inout!=NULL);
|
|
JUT_ASSERT(402, puData_out!=NULL);
|
|
|
|
const void* pData = *ppData_inout;
|
|
JUT_ASSERT(404, pData!=NULL);
|
|
|
|
data::TParse_TBlock oBlock(pData);
|
|
|
|
*ppData_inout = oBlock.getNext();
|
|
*puData_out = oBlock.get_size();
|
|
|
|
TResourceContainer::TCResource& rcResource = pContainer_->resContainer_;
|
|
JUT_ASSERT(412, pResource_==&*--(rcResource.end()));
|
|
|
|
u32 uType = oBlock.get_type();
|
|
switch (uType) {
|
|
case 'INF1': {
|
|
pResource_->setData_block_info(pData);
|
|
break;
|
|
}
|
|
case 'FLI1':
|
|
break;
|
|
case 'FLW1':
|
|
break;
|
|
case 'DAT1': {
|
|
pResource_->setData_block_messageText(pData);
|
|
u16 u16GroupID = pResource_->getGroupID();
|
|
|
|
if (param_2 & 0x80) {
|
|
JGadget::TLinkList<JMessage::TResource, 0>::iterator iResource(rcResource.begin());
|
|
JMessage::TResource* pResource;
|
|
while ((pResource = &*iResource) != pResource_) {
|
|
if ((u16)u16GroupID != pResource->getGroupID()) {
|
|
++iResource;
|
|
} else {
|
|
iResource = rcResource.Erase_destroy(pResource);
|
|
}
|
|
}
|
|
} else {
|
|
#if DEBUG
|
|
JMessage::TResource* pResource = rcResource.Get_groupID(u16GroupID);
|
|
if (pResource != pResource_) {
|
|
JGADGET_WARNMSG1(444, "group-ID already exist : ", u16GroupID);
|
|
}
|
|
#endif
|
|
}
|
|
break;
|
|
}
|
|
case 'STR1': {
|
|
pResource_->setData_block_stringAttribute(pData);
|
|
break;
|
|
}
|
|
case 'MID1': {
|
|
pResource_->setData_block_messageID(pData);
|
|
break;
|
|
}
|
|
default:
|
|
JGADGET_WARNMSG1(463, "unknown block : ", uType);
|
|
if (!(param_2 & 0x40)) {
|
|
return 0;
|
|
}
|
|
break;
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
int JMessage::locale::parseCharacter_1Byte(char const** ppszText) {
|
|
u8** ppuText = (u8**)ppszText;
|
|
int parse_char = **ppuText & 0xFF;
|
|
|
|
(*ppuText)++;
|
|
return parse_char;
|
|
}
|
|
|
|
int JMessage::locale::parseCharacter_2Byte(char const** ppszText) {
|
|
u8** ppuText = (u8**)ppszText;
|
|
|
|
int parse_char = **ppuText & 0xFF;
|
|
(*ppuText)++;
|
|
|
|
parse_char <<= 8;
|
|
|
|
parse_char |= **ppuText & 0xFF;
|
|
(*ppuText)++;
|
|
|
|
return parse_char;
|
|
}
|