aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-11-04 13:09:57 +0000
committerTravis Howell2005-11-04 13:09:57 +0000
commit549a052967c4c4d1c2d313b3eb2d520960e963e7 (patch)
treed71ab54b9946ea73178afaf61d3a9cfbd9e128b4 /scumm
parenteaf2f611f719c124e467d0b19bf24ff72065cf3c (diff)
downloadscummvm-rg350-549a052967c4c4d1c2d313b3eb2d520960e963e7.tar.gz
scummvm-rg350-549a052967c4c4d1c2d313b3eb2d520960e963e7.tar.bz2
scummvm-rg350-549a052967c4c4d1c2d313b3eb2d520960e963e7.zip
Cleanup, remove hacks.
svn-id: r19425
Diffstat (limited to 'scumm')
-rw-r--r--scumm/charset.cpp167
-rw-r--r--scumm/charset.h12
2 files changed, 82 insertions, 97 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp
index 69b8891478..abc617204c 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -298,50 +298,49 @@ int CharsetRenderer::getStringWidth(int arg, const byte *text) {
int code = (_vm->_heversion >= 80) ? 127 : 64;
while ((chr = text[pos++]) != 0) {
- if (_vm->_heversion >= 72 && chr == code) {
- chr = text[pos++];
- if (chr == 84) { // Strings of speech offset/size
- while (chr != code)
- chr = text[pos++];
- continue;
- }
- if (chr == 119) // 'Wait'
- break;
- if (chr == 104|| chr == 110) // 'Newline'
- break;
- } else if (chr == '@')
- continue;
- if (chr == '\n' || chr == '\r')
- break;
- if (chr == 254 || chr == 255) {
- //process in LE
- if (chr == 254 && checkKSCode(text[pos], chr) && _vm->_useCJKMode) {
- goto loc_avoid_ks_fe;
- }
- chr = text[pos++];
- if (chr == 3) // 'WAIT'
- break;
- if (chr == 8) { // 'Verb on next line'
- if (arg == 1)
+ if (_vm->_heversion >= 72) {
+ if (chr == code) {
+ chr = text[pos++];
+ if (chr == 84) { // Strings of speech offset/size
+ while (chr != code)
+ chr = text[pos++];
+ continue;
+ }
+ if (chr == 119) // 'Wait'
+ break;
+ if (chr == 104|| chr == 110) // 'Newline'
break;
- while (text[pos++] == ' ')
- ;
- continue;
}
- if (chr == 10 || chr == 21 || chr == 12 || chr == 13) {
- pos += 2;
+ } else {
+ if (chr == '@')
continue;
- }
- if (chr == 9 || chr == 1 || chr == 2) // 'Newline'
+ if (chr == '\n' || chr == '\r')
break;
- if (chr == 14) {
- int set = text[pos] | (text[pos + 1] << 8);
- pos += 2;
- setCurID(set);
- continue;
+ if (chr == 255 || (_vm->_version <= 6 && chr == 254)) {
+ chr = text[pos++];
+ if (chr == 3) // 'WAIT'
+ break;
+ if (chr == 8) { // 'Verb on next line'
+ if (arg == 1)
+ break;
+ while (text[pos++] == ' ')
+ ;
+ continue;
+ }
+ if (chr == 10 || chr == 21 || chr == 12 || chr == 13) {
+ pos += 2;
+ continue;
+ }
+ if (chr == 9 || chr == 1 || chr == 2) // 'Newline'
+ break;
+ if (chr == 14) {
+ int set = text[pos] | (text[pos + 1] << 8);
+ pos += 2;
+ setCurID(set);
+ continue;
+ }
}
}
-loc_avoid_ks_fe:
if ((chr & 0x80) && _vm->_useCJKMode) {
pos++;
width += _vm->_2byteWidth;
@@ -363,62 +362,60 @@ void CharsetRenderer::addLinebreaks(int a, byte *str, int pos, int maxwidth) {
int code = (_vm->_heversion >= 80) ? 127 : 64;
while ((chr = str[pos++]) != 0) {
- if (_vm->_heversion >= 72 && chr == code) {
- chr = str[pos++];
- if (chr == 84) { // Strings of speech offset/size
- while (chr != code)
- chr = str[pos++];
- continue;
- }
- if (chr == 119) // 'Wait'
- break;
- if (chr == 110) { // 'Newline'
- curw = 1;
- continue;
- }
- if (chr == 104) // 'Don't terminate with \n'
- break;
- } else if (chr == '@')
- continue;
- if (chr == 254 || chr == 255) {
- //process in LE
- if (chr == 254 && checkKSCode(str[pos], chr) && _vm->_useCJKMode) {
- goto loc_avoid_ks_fe;
- }
- chr = str[pos++];
- if (chr == 3) // 'Wait'
- break;
- if (chr == 8) { // 'Verb on next line'
- if (a == 1) {
+ if (_vm->_heversion >= 72) {
+ if (chr == code) {
+ chr = str[pos++];
+ if (chr == 84) { // Strings of speech offset/size
+ while (chr != code)
+ chr = str[pos++];
+ continue;
+ }
+ if (chr == 119) // 'Wait'
+ break;
+ if (chr == 110) { // 'Newline'
curw = 1;
- } else {
- while (str[pos] == ' ')
- str[pos++] = '@';
+ continue;
}
- continue;
- }
- if (chr == 10 || chr == 21 || chr == 12 || chr == 13) {
- pos += 2;
- continue;
- }
- if (chr == 1) { // 'Newline'
- curw = 1;
- continue;
+ if (chr == 104) // 'Don't terminate with \n'
+ break;
}
- if (chr == 2) // 'Don't terminate with \n'
- break;
- if (chr == 14) {
- int set = str[pos] | (str[pos + 1] << 8);
- pos += 2;
- setCurID(set);
+ } else {
+ if (chr == '@')
continue;
+ if (chr == 255 || (_vm->_version <= 6 && chr == 254)) {
+ chr = str[pos++];
+ if (chr == 3) // 'Wait'
+ break;
+ if (chr == 8) { // 'Verb on next line'
+ if (a == 1) {
+ curw = 1;
+ } else {
+ while (str[pos] == ' ')
+ str[pos++] = '@';
+ }
+ continue;
+ }
+ if (chr == 10 || chr == 21 || chr == 12 || chr == 13) {
+ pos += 2;
+ continue;
+ }
+ if (chr == 1) { // 'Newline'
+ curw = 1;
+ continue;
+ }
+ if (chr == 2) // 'Don't terminate with \n'
+ break;
+ if (chr == 14) {
+ int set = str[pos] | (str[pos + 1] << 8);
+ pos += 2;
+ setCurID(set);
+ continue;
+ }
}
}
-
if (chr == ' ')
lastspace = pos - 1;
-loc_avoid_ks_fe:
if ((chr & 0x80) && _vm->_useCJKMode) {
pos++;
curw += _vm->_2byteWidth;
diff --git a/scumm/charset.h b/scumm/charset.h
index 684b456aa2..ab4128eaef 100644
--- a/scumm/charset.h
+++ b/scumm/charset.h
@@ -31,18 +31,6 @@ class ScummEngine;
class NutRenderer;
struct VirtScreen;
-static inline bool checkKSCode(byte hi, byte lo) {
- //hi : xx
- //lo : yy
- if ((0xA1 > lo) || (0xFE < lo)) {
- return false;
- }
- if ((hi >= 0xB0) && (hi <= 0xC8)) {
- return true;
- }
- return false;
-}
-
static inline bool checkSJISCode(byte c) {
if ((c > 0x84 && c < 0x88) || (c > 0x9f && c < 0xe0) || (c > 0xea /* && c <= 0xff */))
return false;