mirror of
https://github.com/OpenRCT2/OpenRCT2
synced 2026-01-23 14:54:30 +01:00
add basic support for localisation object string overriding
This commit is contained in:
@@ -10,6 +10,9 @@ extern "C" {
|
||||
#include "LanguagePack.h"
|
||||
#include <SDL.h>
|
||||
|
||||
constexpr rct_string_id ObjectOverrideBase = 0x6000;
|
||||
constexpr int ObjectOverrideMaxStringCount = 4;
|
||||
|
||||
LanguagePack *LanguagePack::FromFile(int id, const utf8 *path)
|
||||
{
|
||||
assert(path != NULL);
|
||||
@@ -50,9 +53,30 @@ LanguagePack::LanguagePack(int id, const utf8 *text)
|
||||
_id = id;
|
||||
_stringData = NULL;
|
||||
_currentGroup = NULL;
|
||||
_currentObjectOverride = NULL;
|
||||
|
||||
auto reader = UTF8StringReader(text);
|
||||
while (reader.CanRead()) {
|
||||
ParseLine(&reader);
|
||||
}
|
||||
|
||||
_stringData = _stringDataSB.GetString();
|
||||
|
||||
size_t stringDataBaseAddress = (size_t)_stringData;
|
||||
for (size_t i = 0; i < _strings.size(); i++) {
|
||||
_strings[i] = (utf8*)(stringDataBaseAddress + (size_t)_strings[i]);
|
||||
}
|
||||
for (size_t i = 0; i < _objectOverrides.size(); i++) {
|
||||
for (int j = 0; j < ObjectOverrideMaxStringCount; j++) {
|
||||
const utf8 **strPtr = &(_objectOverrides[i].strings[j]);
|
||||
if (*strPtr != NULL) {
|
||||
*strPtr = (utf8*)(stringDataBaseAddress + (size_t)*strPtr);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Destruct the string builder to free memory
|
||||
_stringDataSB = StringBuilder();
|
||||
}
|
||||
|
||||
LanguagePack::~LanguagePack()
|
||||
@@ -61,11 +85,100 @@ LanguagePack::~LanguagePack()
|
||||
SafeFree(_currentGroup);
|
||||
}
|
||||
|
||||
const utf8 *LanguagePack::GetString(int stringId) const {
|
||||
if (stringId >= ObjectOverrideBase) {
|
||||
int offset = stringId - ObjectOverrideBase;
|
||||
int ooIndex = offset / ObjectOverrideMaxStringCount;
|
||||
int ooStringIndex = offset % ObjectOverrideMaxStringCount;
|
||||
|
||||
if (_objectOverrides.size() > (size_t)ooIndex) {
|
||||
return _objectOverrides[ooIndex].strings[ooStringIndex];
|
||||
} else {
|
||||
return NULL;
|
||||
}
|
||||
} else {
|
||||
if (_strings.size() > (size_t)stringId) {
|
||||
return _strings[stringId];
|
||||
} else {
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
rct_string_id LanguagePack::GetObjectOverrideStringId(const char *objectIdentifier, int index)
|
||||
{
|
||||
assert(objectIdentifier != NULL);
|
||||
assert(index < ObjectOverrideMaxStringCount);
|
||||
|
||||
int ooIndex = 0;
|
||||
for (const ObjectOverride &objectOverride : _objectOverrides) {
|
||||
if (strncmp(objectOverride.name, objectIdentifier, 8) == 0) {
|
||||
if (objectOverride.strings[index] == NULL) {
|
||||
return STR_NONE;
|
||||
}
|
||||
return ObjectOverrideBase + (ooIndex * ObjectOverrideMaxStringCount) + index;
|
||||
}
|
||||
ooIndex++;
|
||||
}
|
||||
|
||||
return STR_NONE;
|
||||
}
|
||||
|
||||
LanguagePack::ObjectOverride *LanguagePack::GetObjectOverride(const char *objectIdentifier)
|
||||
{
|
||||
assert(objectIdentifier != NULL);
|
||||
|
||||
for (size_t i = 0; i < _objectOverrides.size(); i++) {
|
||||
ObjectOverride *oo = &_objectOverrides[i];
|
||||
if (strncmp(oo->name, objectIdentifier, 8) == 0) {
|
||||
return oo;
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Parsing
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Partial support to open a uncompiled language file which parses tokens and converts them to the corresponding character
|
||||
// code. Due to resource strings (strings in scenarios and objects) being written to the original game's string table,
|
||||
// get_string will use those if the same entry in the loaded language is empty.
|
||||
//
|
||||
// Unsure at how the original game decides which entries to write resource strings to, but this could affect adding new
|
||||
// strings for the time being. Further investigation is required.
|
||||
//
|
||||
// When reading the language files, the STR_XXXX part is read and XXXX becomes the string id number. Everything after the colon
|
||||
// and before the new line will be saved as the string. Tokens are written with inside curly braces {TOKEN}.
|
||||
// Use # at the beginning of a line to leave a comment.
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
static bool IsWhitespace(int codepoint)
|
||||
{
|
||||
return codepoint == '\t' || codepoint == ' ' || codepoint == '\r' || codepoint == '\n';
|
||||
}
|
||||
|
||||
static bool IsNewLine(int codepoint)
|
||||
{
|
||||
return codepoint == '\r' || codepoint == '\n';
|
||||
}
|
||||
|
||||
static void SkipWhitespace(IStringReader *reader)
|
||||
{
|
||||
int codepoint;
|
||||
while (reader->TryPeek(&codepoint)) {
|
||||
if (codepoint == '\t' || codepoint == ' ' || codepoint == '\r' || codepoint == '\n') {
|
||||
if (IsWhitespace(codepoint)) {
|
||||
reader->Skip();
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void SkipNewLine(IStringReader *reader)
|
||||
{
|
||||
int codepoint;
|
||||
while (reader->TryPeek(&codepoint)) {
|
||||
if (IsNewLine(codepoint)) {
|
||||
reader->Skip();
|
||||
} else {
|
||||
break;
|
||||
@@ -90,19 +203,23 @@ void LanguagePack::ParseLine(IStringReader *reader)
|
||||
SkipWhitespace(reader);
|
||||
|
||||
int codepoint;
|
||||
if (!reader->TryPeek(&codepoint))
|
||||
return;
|
||||
|
||||
switch (codepoint) {
|
||||
case '#':
|
||||
if (reader->TryPeek(&codepoint)) {
|
||||
switch (codepoint) {
|
||||
case '#':
|
||||
SkipToEndOfLine(reader);
|
||||
break;
|
||||
case '[':
|
||||
ParseGroup(reader);
|
||||
break;
|
||||
case '\r':
|
||||
case '\n':
|
||||
break;
|
||||
default:
|
||||
ParseString(reader);
|
||||
break;
|
||||
}
|
||||
SkipToEndOfLine(reader);
|
||||
break;
|
||||
case '[':
|
||||
ParseGroup(reader);
|
||||
break;
|
||||
default:
|
||||
ParseString(reader);
|
||||
break;
|
||||
SkipNewLine(reader);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -116,8 +233,10 @@ void LanguagePack::ParseGroup(IStringReader *reader)
|
||||
|
||||
// Read string up to ] or line end
|
||||
bool closedCorrectly = false;
|
||||
while (reader->TryRead(&codepoint)) {
|
||||
if (codepoint == '\n' || codepoint == '\r') break;
|
||||
while (reader->TryPeek(&codepoint)) {
|
||||
if (IsNewLine(codepoint)) break;
|
||||
|
||||
reader->Skip();
|
||||
if (codepoint == ']') {
|
||||
closedCorrectly = true;
|
||||
break;
|
||||
@@ -127,11 +246,129 @@ void LanguagePack::ParseGroup(IStringReader *reader)
|
||||
|
||||
if (closedCorrectly) {
|
||||
SafeFree(_currentGroup);
|
||||
_currentGroup = sb.GetString();
|
||||
|
||||
while (sb.GetLength() < 8) {
|
||||
sb.Append(' ');
|
||||
}
|
||||
if (sb.GetLength() == 8) {
|
||||
_currentGroup = sb.GetString();
|
||||
_currentObjectOverride = GetObjectOverride(_currentGroup);
|
||||
if (_currentObjectOverride == NULL) {
|
||||
_objectOverrides.push_back(ObjectOverride());
|
||||
_currentObjectOverride = &_objectOverrides[_objectOverrides.size() - 1];
|
||||
memset(_currentObjectOverride, 0, sizeof(ObjectOverride));
|
||||
memcpy(_currentObjectOverride->name, _currentGroup, 8);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void LanguagePack::ParseString(IStringReader *reader)
|
||||
{
|
||||
auto sb = StringBuilder();
|
||||
int codepoint;
|
||||
|
||||
// Parse string identifier
|
||||
while (reader->TryPeek(&codepoint)) {
|
||||
if (IsNewLine(codepoint)) {
|
||||
// Unexpected new line, ignore line entirely
|
||||
return;
|
||||
} else if (!IsWhitespace(codepoint) && codepoint != ':') {
|
||||
reader->Skip();
|
||||
sb.Append(codepoint);
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
SkipWhitespace(reader);
|
||||
|
||||
// Parse a colon
|
||||
if (!reader->TryPeek(&codepoint) || codepoint != ':') {
|
||||
// Expected a colon, ignore line entirely
|
||||
return;
|
||||
}
|
||||
reader->Skip();
|
||||
|
||||
// Validate identifier
|
||||
const utf8 *identifier = sb.GetBuffer();
|
||||
|
||||
int stringId;
|
||||
if (_currentGroup == NULL) {
|
||||
if (sscanf(identifier, "STR_%4d", &stringId) != 1) {
|
||||
// Ignore line entirely
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
if (strcmp(identifier, "STR_NAME") == 0) { stringId = 0; }
|
||||
else if (strcmp(identifier, "STR_DESC") == 0) { stringId = 1; }
|
||||
|
||||
else if (strcmp(identifier, "STR_SCNR") == 0) { stringId = 0; }
|
||||
else if (strcmp(identifier, "STR_PARK") == 0) { stringId = 1; }
|
||||
else if (strcmp(identifier, "STR_DTLS") == 0) { stringId = 2; }
|
||||
else {
|
||||
// Ignore line entirely
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
// Rest of the line is the actual string
|
||||
sb.Clear();
|
||||
while (reader->TryPeek(&codepoint) && !IsNewLine(codepoint)) {
|
||||
if (codepoint == '{') {
|
||||
uint32 token;
|
||||
if (!ParseToken(reader, &token)) {
|
||||
// Syntax error or unknown token, ignore line entirely
|
||||
return;
|
||||
} else {
|
||||
sb.Append((int)token);
|
||||
}
|
||||
} else {
|
||||
reader->Skip();
|
||||
sb.Append(codepoint);
|
||||
}
|
||||
}
|
||||
|
||||
// Append a null terminator for the benefit of the last string
|
||||
_stringDataSB.Append(0);
|
||||
|
||||
// Get the relative offset to the string (add the base offset when we extract the string properly)
|
||||
utf8 *relativeOffset = (utf8*)_stringDataSB.GetLength();
|
||||
|
||||
if (_currentGroup == NULL) {
|
||||
// Make sure the list is big enough to contain this string id
|
||||
while (_strings.size() <= (size_t)stringId) {
|
||||
_strings.push_back(NULL);
|
||||
}
|
||||
|
||||
_strings[stringId] = relativeOffset;
|
||||
} else {
|
||||
_currentObjectOverride->strings[stringId] = relativeOffset;
|
||||
}
|
||||
|
||||
_stringDataSB.Append(sb.GetBuffer());
|
||||
}
|
||||
|
||||
bool LanguagePack::ParseToken(IStringReader *reader, uint32 *token)
|
||||
{
|
||||
auto sb = StringBuilder();
|
||||
int codepoint;
|
||||
|
||||
// Skip open brace
|
||||
reader->Skip();
|
||||
|
||||
while (reader->TryPeek(&codepoint)) {
|
||||
if (IsNewLine(codepoint)) return false;
|
||||
if (IsWhitespace(codepoint)) return false;
|
||||
|
||||
reader->Skip();
|
||||
|
||||
if (codepoint == '}') break;
|
||||
|
||||
sb.Append(codepoint);
|
||||
}
|
||||
|
||||
const utf8 *tokenName = sb.GetBuffer();
|
||||
*token = format_get_code(tokenName);
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user