mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 08:40:59 +00:00
Add DISABLE_HE check, around HE72+ specific version of convertMessageString()
svn-id: r23818
This commit is contained in:
parent
8cf8d040d8
commit
e8e7ff4629
@ -792,52 +792,6 @@ void ScummEngine::drawString(int a, const byte *msg) {
|
||||
_string[a].xpos = _charset->_str.right + 8; // Indy3: Fixes Grail Diary text positioning
|
||||
}
|
||||
|
||||
int ScummEngine_v72he::convertMessageToString(const byte *msg, byte *dst, int dstSize) {
|
||||
uint num = 0;
|
||||
byte chr;
|
||||
const byte *src;
|
||||
byte *end;
|
||||
|
||||
assert(dst);
|
||||
end = dst + dstSize;
|
||||
|
||||
if (msg == NULL) {
|
||||
debug(0, "Bad message in convertMessageToString, ignoring");
|
||||
return 0;
|
||||
}
|
||||
|
||||
src = msg;
|
||||
num = 0;
|
||||
|
||||
while (1) {
|
||||
chr = src[num++];
|
||||
if (_game.heversion >= 80 && src[num - 1] == '(' && (src[num] == 'p' || src[num] == 'P')) {
|
||||
// Filter out the following prefixes in subtitles
|
||||
// (pickup4)
|
||||
// (PU1)
|
||||
// (PU2)
|
||||
while (src[num++] != ')');
|
||||
continue;
|
||||
}
|
||||
if ((_game.features & GF_HE_LOCALIZED) && chr == '[') {
|
||||
while (src[num++] != ']');
|
||||
continue;
|
||||
}
|
||||
|
||||
if (chr == 0)
|
||||
break;
|
||||
|
||||
*dst++ = chr;
|
||||
|
||||
// Check for a buffer overflow
|
||||
if (dst >= end)
|
||||
error("convertMessageToString: buffer overflow!");
|
||||
}
|
||||
*dst = 0;
|
||||
|
||||
return dstSize - (end - dst);
|
||||
}
|
||||
|
||||
int ScummEngine::convertMessageToString(const byte *msg, byte *dst, int dstSize) {
|
||||
uint num = 0;
|
||||
uint32 val;
|
||||
@ -942,6 +896,54 @@ int ScummEngine::convertMessageToString(const byte *msg, byte *dst, int dstSize)
|
||||
return dstSize - (end - dst);
|
||||
}
|
||||
|
||||
#ifndef DISABLE_HE
|
||||
int ScummEngine_v72he::convertMessageToString(const byte *msg, byte *dst, int dstSize) {
|
||||
uint num = 0;
|
||||
byte chr;
|
||||
const byte *src;
|
||||
byte *end;
|
||||
|
||||
assert(dst);
|
||||
end = dst + dstSize;
|
||||
|
||||
if (msg == NULL) {
|
||||
debug(0, "Bad message in convertMessageToString, ignoring");
|
||||
return 0;
|
||||
}
|
||||
|
||||
src = msg;
|
||||
num = 0;
|
||||
|
||||
while (1) {
|
||||
chr = src[num++];
|
||||
if (_game.heversion >= 80 && src[num - 1] == '(' && (src[num] == 'p' || src[num] == 'P')) {
|
||||
// Filter out the following prefixes in subtitles
|
||||
// (pickup4)
|
||||
// (PU1)
|
||||
// (PU2)
|
||||
while (src[num++] != ')');
|
||||
continue;
|
||||
}
|
||||
if ((_game.features & GF_HE_LOCALIZED) && chr == '[') {
|
||||
while (src[num++] != ']');
|
||||
continue;
|
||||
}
|
||||
|
||||
if (chr == 0)
|
||||
break;
|
||||
|
||||
*dst++ = chr;
|
||||
|
||||
// Check for a buffer overflow
|
||||
if (dst >= end)
|
||||
error("convertMessageToString: buffer overflow!");
|
||||
}
|
||||
*dst = 0;
|
||||
|
||||
return dstSize - (end - dst);
|
||||
}
|
||||
#endif
|
||||
|
||||
int ScummEngine::convertIntMessage(byte *dst, int dstSize, int var) {
|
||||
int num;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user