aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Horn2004-09-18 22:42:45 +0000
committerMax Horn2004-09-18 22:42:45 +0000
commit768133d6e6e4432d599fcf1261193334227b2033 (patch)
treed9ab4bce2466c4808f83244bd8ae4840f0468c70
parente74a3c9a2bdaead10b130e09e7a9cdf2fac17d55 (diff)
downloadscummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.tar.gz
scummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.tar.bz2
scummvm-rg350-768133d6e6e4432d599fcf1261193334227b2033.zip
Rename some member vars to avoid _ followed by an uppercase letter. More of those are left in the code, though (and I am not really sure whether we want to change that, so far we had no problems caused by this)
svn-id: r15175
-rw-r--r--scumm/charset.cpp6
-rw-r--r--scumm/cursor.cpp2
-rw-r--r--scumm/debugger.cpp2
-rw-r--r--scumm/gfx.cpp12
-rw-r--r--scumm/intern.h2
-rw-r--r--scumm/nut_renderer.cpp6
-rw-r--r--scumm/object.cpp4
-rw-r--r--scumm/resource.cpp18
-rw-r--r--scumm/saveload.cpp4
-rw-r--r--scumm/script_v5.cpp2
-rw-r--r--scumm/script_v6.cpp2
-rw-r--r--scumm/script_v6he.cpp2
-rw-r--r--scumm/script_v7he.cpp70
-rw-r--r--scumm/scumm.cpp26
-rw-r--r--scumm/scumm.h12
-rw-r--r--scumm/smush/smush_font.cpp2
-rw-r--r--scumm/string.cpp6
17 files changed, 89 insertions, 89 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp
index a3e5755ea4..47e3c4ff71 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -82,7 +82,7 @@ void CharsetRendererV3::setCurID(byte id) {
// do spacing for variable width old-style font
int CharsetRendererClassic::getCharWidth(byte chr) {
- if (chr >= 0x80 && _vm->_CJKMode)
+ if (chr >= 0x80 && _vm->_useCJKMode)
return 6;
int spacing = 0;
@@ -1043,7 +1043,7 @@ void CharsetRendererClassic::printChar(int chr) {
int offsX, offsY;
VirtScreen *vs;
const byte *charPtr;
- int is2byte = (chr >= 0x80 && _vm->_CJKMode) ? 1 : 0;
+ int is2byte = (chr >= 0x80 && _vm->_useCJKMode) ? 1 : 0;
checkRange(_vm->_numCharsets - 1, 1, _curId, "Printing with bad charset %d");
@@ -1318,7 +1318,7 @@ void CharsetRendererNut::printChar(int chr) {
int width = _current->getCharWidth(chr);
int height = _current->getCharHeight(chr);
- if (chr >= 256 && _vm->_CJKMode)
+ if (chr >= 256 && _vm->_useCJKMode)
width = 16;
shadow.right = _left + width + 2;
diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp
index 36af18967b..1600b1a7c4 100644
--- a/scumm/cursor.cpp
+++ b/scumm/cursor.cpp
@@ -148,7 +148,7 @@ void ScummEngine::setCursorFromBuffer(byte *ptr, int width, int height, int pitc
}
void ScummEngine_v7he::setCursorFromImg(uint img, uint room, uint imgindex) {
- _Win32ResExtractor->setCursor(img);
+ _win32ResExtractor->setCursor(img);
}
void ScummEngine_v6::setCursorFromImg(uint img, uint room, uint imgindex) {
diff --git a/scumm/debugger.cpp b/scumm/debugger.cpp
index 422ed1f13f..815ac7699d 100644
--- a/scumm/debugger.cpp
+++ b/scumm/debugger.cpp
@@ -494,7 +494,7 @@ bool ScummDebugger::Cmd_Object(int argc, const char **argv) {
} else if (!strcmp(argv[2], "state")) {
_vm->putState(obj, atoi(argv[3]));
//is BgNeedsRedraw enough?
- _vm->_BgNeedsRedraw = true;
+ _vm->_bgNeedsRedraw = true;
} else if (!strcmp(argv[2], "name")) {
DebugPrintf("Name of object %d: %s\n", obj, _vm->getObjOrActorName(obj));
} else {
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp
index c07869887d..474d7cc3e2 100644
--- a/scumm/gfx.cpp
+++ b/scumm/gfx.cpp
@@ -571,7 +571,7 @@ void ScummEngine::redrawBGAreas() {
byte *room = getResourceAddress(rtRoomImage, _roomResource) + _IM00_offs;
if (findResource(MKID('BMAP'), room) != NULL) {
if (_fullRedraw) {
- _BgNeedsRedraw = false;
+ _bgNeedsRedraw = false;
gdi.drawBMAPBg(room, &virtscr[0], _screenStartStrip, _screenWidth);
}
cont = false;
@@ -582,13 +582,13 @@ void ScummEngine::redrawBGAreas() {
if (!cont) {
drawRoomObjects(val);
- _BgNeedsRedraw = false;
+ _bgNeedsRedraw = false;
return;
}
}
// Redraw parts of the background which are marked as dirty.
- if (!_fullRedraw && _BgNeedsRedraw) {
+ if (!_fullRedraw && _bgNeedsRedraw) {
for (i = 0; i != gdi._numStrips; i++) {
if (testGfxUsageBit(_screenStartStrip + i, USAGE_BIT_DIRTY)) {
redrawBGStrip(i, 1);
@@ -605,7 +605,7 @@ void ScummEngine::redrawBGAreas() {
val = 1;
redrawBGStrip(0, 1);
} else if (_fullRedraw != 0 || diff != 0) {
- _BgNeedsRedraw = false;
+ _bgNeedsRedraw = false;
redrawBGStrip(0, gdi._numStrips);
}
} else {
@@ -616,14 +616,14 @@ void ScummEngine::redrawBGAreas() {
val = 1;
redrawBGStrip(0, 1);
} else if (_fullRedraw != 0 || camera._cur.x != camera._last.x) {
- _BgNeedsRedraw = false;
+ _bgNeedsRedraw = false;
_flashlight.isDrawn = false;
redrawBGStrip(0, gdi._numStrips);
}
}
drawRoomObjects(val);
- _BgNeedsRedraw = false;
+ _bgNeedsRedraw = false;
}
void ScummEngine::redrawBGStrip(int start, int num) {
diff --git a/scumm/intern.h b/scumm/intern.h
index 3c4891c47c..7937df621b 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -616,7 +616,7 @@ protected:
const char *desc;
};
- Win32ResExtractor *_Win32ResExtractor;
+ Win32ResExtractor *_win32ResExtractor;
const OpcodeEntryV7he *_opcodesV7he;
diff --git a/scumm/nut_renderer.cpp b/scumm/nut_renderer.cpp
index e991dca2c0..0930ae9397 100644
--- a/scumm/nut_renderer.cpp
+++ b/scumm/nut_renderer.cpp
@@ -204,7 +204,7 @@ int NutRenderer::getCharWidth(byte c) {
return 0;
}
- if (c >= 0x80 && _vm->_CJKMode) {
+ if (c >= 0x80 && _vm->_useCJKMode) {
if (_vm->_gameId == GID_CMI)
return 8;
if (_vm->_gameId == GID_DIG)
@@ -225,7 +225,7 @@ int NutRenderer::getCharHeight(byte c) {
return 0;
}
- if (c >= 0x80 && _vm->_CJKMode) {
+ if (c >= 0x80 && _vm->_useCJKMode) {
if (_vm->_gameId == GID_CMI)
return 16;
if (_vm->_gameId == GID_DIG)
@@ -265,7 +265,7 @@ void NutRenderer::drawShadowChar(const Graphics::Surface &s, int c, int x, int y
y += offsetY[i];
color = cTable[i];
- if (c >= 256 && _vm->_CJKMode)
+ if (c >= 256 && _vm->_useCJKMode)
draw2byte(s, c, x, y, color);
else
drawChar(s, (byte)c, x, y, color);
diff --git a/scumm/object.cpp b/scumm/object.cpp
index 5b78bfe568..cc1d85f740 100644
--- a/scumm/object.cpp
+++ b/scumm/object.cpp
@@ -430,7 +430,7 @@ void ScummEngine::drawObject(int obj, int arg) {
int x, a, numstrip;
int tmp;
- if (_BgNeedsRedraw)
+ if (_bgNeedsRedraw)
arg = 0;
if (od.obj_nr == 0)
@@ -924,7 +924,7 @@ void ScummEngine::markObjectRectAsDirty(int obj) {
setGfxUsageBit(strip, USAGE_BIT_DIRTY);
}
}
- _BgNeedsRedraw = true;
+ _bgNeedsRedraw = true;
return;
}
}
diff --git a/scumm/resource.cpp b/scumm/resource.cpp
index 821b339b3d..45e08eb28c 100644
--- a/scumm/resource.cpp
+++ b/scumm/resource.cpp
@@ -350,8 +350,8 @@ void ScummEngine::readRoomsOffsets() {
return;
if (_heversion >= 70) { // Windows titles
- num = READ_LE_UINT16(_HEV7RoomOffsets);
- ptr = _HEV7RoomOffsets + 2;
+ num = READ_LE_UINT16(_heV7RoomOffsets);
+ ptr = _heV7RoomOffsets + 2;
for (i = 0; i < num; i++) {
_roomFileOffsets[i] = READ_LE_UINT32(ptr);
ptr += 4;
@@ -563,8 +563,8 @@ void ScummEngine::readIndexFile() {
case MKID('DLFL'):
i = _fileHandle.readUint16LE();
_fileHandle.seek(-2, SEEK_CUR);
- _HEV7RoomOffsets = (byte *)calloc(2 + (i * 4), 1);
- _fileHandle.read(_HEV7RoomOffsets, (2 + (i * 4)) );
+ _heV7RoomOffsets = (byte *)calloc(2 + (i * 4), 1);
+ _fileHandle.read(_heV7RoomOffsets, (2 + (i * 4)) );
break;
case MKID('DIRM'):
@@ -701,7 +701,7 @@ void ScummEngine::readResTypeList(int id, uint32 tag, const char *name) {
res.roomoffs[id][i] = _fileHandle.readUint32LE();
if (id == rtRoom && _heversion >= 70)
- _HEV7RoomIntOffsets[i] = res.roomoffs[id][i];
+ _heV7RoomIntOffsets[i] = res.roomoffs[id][i];
}
if (_heversion >= 70) {
@@ -735,7 +735,7 @@ void ScummEngine::allocResTypeData(int id, uint32 tag, int num, const char *name
res.globsize[id] = (uint32 *)calloc(num, sizeof(uint32));
if (id == rtRoom)
- _HEV7RoomIntOffsets = (uint32 *)calloc(num, sizeof(uint32));
+ _heV7RoomIntOffsets = (uint32 *)calloc(num, sizeof(uint32));
}
}
@@ -832,7 +832,7 @@ int ScummEngine::loadResource(int type, int idx) {
if (_version == 8)
fileOffs = 8;
else if (_heversion >= 70)
- fileOffs = _HEV7RoomIntOffsets[idx];
+ fileOffs = _heV7RoomIntOffsets[idx];
else
fileOffs = 0;
} else {
@@ -2186,8 +2186,8 @@ void ScummEngine::freeResources() {
free(res.globsize[i]);
}
if (_heversion >= 70) {
- free(_HEV7RoomIntOffsets);
- free(_HEV7RoomOffsets);
+ free(_heV7RoomIntOffsets);
+ free(_heV7RoomOffsets);
}
}
diff --git a/scumm/saveload.cpp b/scumm/saveload.cpp
index d7e4085a2a..ebaa6fde8f 100644
--- a/scumm/saveload.cpp
+++ b/scumm/saveload.cpp
@@ -538,7 +538,7 @@ void ScummEngine::saveOrLoad(Serializer *s, uint32 savegameVersion) {
MKLINE(ScummEngine, _switchRoomEffect, sleByte, VER(8)),
MKLINE(ScummEngine, _newEffect, sleByte, VER(8)),
MKLINE(ScummEngine, _switchRoomEffect2, sleByte, VER(8)),
- MKLINE(ScummEngine, _BgNeedsRedraw, sleByte, VER(8)),
+ MKLINE(ScummEngine, _bgNeedsRedraw, sleByte, VER(8)),
// The state of palManipulate is stored only since V10
MKLINE(ScummEngine, _palManipStart, sleByte, VER(10)),
@@ -718,7 +718,7 @@ void ScummEngine::saveOrLoad(Serializer *s, uint32 savegameVersion) {
s->saveLoadArrayOf(vm.slot, NUM_SCRIPT_SLOT, sizeof(vm.slot[0]), scriptSlotEntries);
if (_heversion >= 71)
- s->saveLoadArrayOf(_WizPolygons, _WizNumPolygons, sizeof(_WizPolygons[0]), polygonEntries);
+ s->saveLoadArrayOf(_wizPolygons, _wizNumPolygons, sizeof(_wizPolygons[0]), polygonEntries);
s->saveLoadArrayOf(_objs, _numLocalObjects, sizeof(_objs[0]), objectEntries);
if (s->isLoading() && savegameVersion < VER(13)) {
// Since roughly v13 of the save games, the objs storage has changed a bit
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp
index 017f9baaee..b4d486d902 100644
--- a/scumm/script_v5.cpp
+++ b/scumm/script_v5.cpp
@@ -2073,7 +2073,7 @@ void ScummEngine_v5::o5_setState() {
state = getVarOrDirectByte(PARAM_2);
putState(obj, state);
markObjectRectAsDirty(obj);
- if (_BgNeedsRedraw)
+ if (_bgNeedsRedraw)
clearDrawObjectQueue();
}
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp
index b35bbfbabb..ebe31323f4 100644
--- a/scumm/script_v6.cpp
+++ b/scumm/script_v6.cpp
@@ -1064,7 +1064,7 @@ void ScummEngine_v6::o6_setState() {
putState(obj, state);
markObjectRectAsDirty(obj);
- if (_BgNeedsRedraw)
+ if (_bgNeedsRedraw)
clearDrawObjectQueue();
}
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index 3346ff76ac..bd08a57b36 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -398,7 +398,7 @@ void ScummEngine_v6he::o6he_setState() {
putState(obj, state);
markObjectRectAsDirty(obj);
- if (_BgNeedsRedraw)
+ if (_bgNeedsRedraw)
clearDrawObjectQueue();
}
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index 7b30c77ea5..f75fdca2c2 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -937,46 +937,46 @@ void ScummEngine::polygonStore(int id, bool flag, int vert1x, int vert1y, int ve
int vert2y, int vert3x, int vert3y, int vert4x, int vert4y) {
int i;
- for (i = 0; i < _WizNumPolygons; i++)
- if (_WizPolygons[i].id == 0)
+ for (i = 0; i < _wizNumPolygons; i++)
+ if (_wizPolygons[i].id == 0)
break;
- if (i == _WizNumPolygons) {
+ if (i == _wizNumPolygons) {
error("ScummEngine::polygonStore: out of polygon slot, max = %d",
- _WizNumPolygons);
+ _wizNumPolygons);
}
- _WizPolygons[i].vert[0].x = vert1x;
- _WizPolygons[i].vert[0].y = vert1y;
- _WizPolygons[i].vert[1].x = vert2x;
- _WizPolygons[i].vert[1].y = vert2y;
- _WizPolygons[i].vert[2].x = vert3x;
- _WizPolygons[i].vert[2].y = vert3y;
- _WizPolygons[i].vert[3].x = vert4x;
- _WizPolygons[i].vert[3].y = vert4y;
- _WizPolygons[i].vert[4].x = vert1x;
- _WizPolygons[i].vert[4].y = vert1y;
- _WizPolygons[i].id = id;
- _WizPolygons[i].numVerts = 5;
- _WizPolygons[i].flag = flag;
-
- _WizPolygons[i].bound.left = 10000;
- _WizPolygons[i].bound.top = 10000;
- _WizPolygons[i].bound.right = -10000;
- _WizPolygons[i].bound.bottom = -10000;
+ _wizPolygons[i].vert[0].x = vert1x;
+ _wizPolygons[i].vert[0].y = vert1y;
+ _wizPolygons[i].vert[1].x = vert2x;
+ _wizPolygons[i].vert[1].y = vert2y;
+ _wizPolygons[i].vert[2].x = vert3x;
+ _wizPolygons[i].vert[2].y = vert3y;
+ _wizPolygons[i].vert[3].x = vert4x;
+ _wizPolygons[i].vert[3].y = vert4y;
+ _wizPolygons[i].vert[4].x = vert1x;
+ _wizPolygons[i].vert[4].y = vert1y;
+ _wizPolygons[i].id = id;
+ _wizPolygons[i].numVerts = 5;
+ _wizPolygons[i].flag = flag;
+
+ _wizPolygons[i].bound.left = 10000;
+ _wizPolygons[i].bound.top = 10000;
+ _wizPolygons[i].bound.right = -10000;
+ _wizPolygons[i].bound.bottom = -10000;
for (int j = 0; j < 5; j++) {
- _WizPolygons[i].bound.left = MIN(_WizPolygons[i].bound.left, _WizPolygons[i].vert[j].x);
- _WizPolygons[i].bound.top = MIN(_WizPolygons[i].bound.top, _WizPolygons[i].vert[j].y);
- _WizPolygons[i].bound.right = MAX(_WizPolygons[i].bound.right, _WizPolygons[i].vert[j].x);
- _WizPolygons[i].bound.bottom = MAX(_WizPolygons[i].bound.bottom, _WizPolygons[i].vert[j].y);
+ _wizPolygons[i].bound.left = MIN(_wizPolygons[i].bound.left, _wizPolygons[i].vert[j].x);
+ _wizPolygons[i].bound.top = MIN(_wizPolygons[i].bound.top, _wizPolygons[i].vert[j].y);
+ _wizPolygons[i].bound.right = MAX(_wizPolygons[i].bound.right, _wizPolygons[i].vert[j].x);
+ _wizPolygons[i].bound.bottom = MAX(_wizPolygons[i].bound.bottom, _wizPolygons[i].vert[j].y);
}
}
void ScummEngine_v7he::polygonErase(int fromId, int toId) {
- for (int i = 0; i < _WizNumPolygons; i++) {
- if (_WizPolygons[i].id >= fromId && _WizPolygons[i].id <= toId)
- memset(&_WizPolygons[i], 0, sizeof(WizPolygon));
+ for (int i = 0; i < _wizNumPolygons; i++) {
+ if (_wizPolygons[i].id >= fromId && _wizPolygons[i].id <= toId)
+ memset(&_wizPolygons[i], 0, sizeof(WizPolygon));
}
}
@@ -988,10 +988,10 @@ void ScummEngine_v7he::o70he_polygonHit() {
}
int ScummEngine_v7he::polygonHit(int id, int x, int y) {
- for (int i = 0; i < _WizNumPolygons; i++) {
- if ((!id || _WizPolygons[i].id == id) && _WizPolygons[i].bound.contains(x, y)) {
- if (polygonContains(_WizPolygons[i], x, y)) {
- return _WizPolygons[i].id;
+ for (int i = 0; i < _wizNumPolygons; i++) {
+ if ((!id || _wizPolygons[i].id == id) && _wizPolygons[i].bound.contains(x, y)) {
+ if (polygonContains(_wizPolygons[i], x, y)) {
+ return _wizPolygons[i].id;
}
}
}
@@ -1000,8 +1000,8 @@ int ScummEngine_v7he::polygonHit(int id, int x, int y) {
}
bool ScummEngine_v7he::polygonDefined(int id) {
- for (int i = 0; i < _WizNumPolygons; i++)
- if (_WizPolygons[i].id == id)
+ for (int i = 0; i < _wizNumPolygons; i++)
+ if (_wizPolygons[i].id == id)
return true;
return false;
diff --git a/scumm/scumm.cpp b/scumm/scumm.cpp
index fdb42985fd..d063b25e6d 100644
--- a/scumm/scumm.cpp
+++ b/scumm/scumm.cpp
@@ -616,7 +616,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
_IM00_offs = 0;
_PALS_offs = 0;
_fullRedraw = false;
- _BgNeedsRedraw = false;
+ _bgNeedsRedraw = false;
_screenEffectFlag = false;
_completeScreenRedraw = false;
memset(&_cursor, 0, sizeof(_cursor));
@@ -681,8 +681,8 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
_costumeRenderer = NULL;
_2byteFontPtr = 0;
_V1_talkingActor = 0;
- _WizNumPolygons = 200; // Used as constant in original
- _WizPolygons = NULL;
+ _wizNumPolygons = 200; // Used as constant in original
+ _wizPolygons = NULL;
_actorClipOverride.top = 0;
_actorClipOverride.bottom = 479;
@@ -973,7 +973,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
loadLanguageBundle();
// Load CJK font
- _CJKMode = false;
+ _useCJKMode = false;
if ((_gameId == GID_DIG || _gameId == GID_CMI) && (_language == Common::KO_KOR || _language == Common::JA_JPN || _language == Common::ZH_TWN)) {
File fp;
const char *fontFile = NULL;
@@ -994,7 +994,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
}
if (fontFile && fp.open(fontFile)) {
debug(2, "Loading CJK Font");
- _CJKMode = true;
+ _useCJKMode = true;
fp.seek(2, SEEK_CUR);
_2byteWidth = fp.readByte();
_2byteHeight = fp.readByte();
@@ -1024,7 +1024,7 @@ ScummEngine::ScummEngine(GameDetector *detector, OSystem *syst, const ScummGameS
_2byteHeight = 16;
//use FM Towns font rom, since game files don't have kanji font resources
if (fp.open("fmt_fnt.rom")) {
- _CJKMode = true;
+ _useCJKMode = true;
debug(2, "Loading FM Towns Kanji rom");
_2byteFontPtr = new byte[((_2byteWidth + 7) / 8) * _2byteHeight * numChar];
fp.read(_2byteFontPtr, ((_2byteWidth + 7) / 8) * _2byteHeight * numChar);
@@ -1117,7 +1117,7 @@ ScummEngine_v6::ScummEngine_v6(GameDetector *detector, OSystem *syst, const Scum
ScummEngine_v7he::ScummEngine_v7he(GameDetector *detector, OSystem *syst, const ScummGameSettings &gs, uint8 md5sum[16])
: ScummEngine_v6he(detector, syst, gs, md5sum) {
- _Win32ResExtractor = new Win32ResExtractor(this);
+ _win32ResExtractor = new Win32ResExtractor(this);
}
void ScummEngine::go() {
@@ -1397,10 +1397,10 @@ void ScummEngine::scummInit() {
_keyDownMap[i] = false;
if (_heversion >= 70) {
- if (_WizPolygons)
- free (_WizPolygons);
+ if (_wizPolygons)
+ free (_wizPolygons);
- _WizPolygons = (WizPolygon *)calloc(_WizNumPolygons, sizeof(WizPolygon));
+ _wizPolygons = (WizPolygon *)calloc(_wizNumPolygons, sizeof(WizPolygon));
}
initScummVars();
@@ -1808,7 +1808,7 @@ load_game:
if (_version > 3)
CHARSET_1();
- if (camera._cur.x != camera._last.x || _BgNeedsRedraw || _fullRedraw
+ if (camera._cur.x != camera._last.x || _bgNeedsRedraw || _fullRedraw
|| ((_features & GF_NEW_CAMERA) && camera._cur.y != camera._last.y)) {
redrawBGAreas();
}
@@ -2343,8 +2343,8 @@ void ScummEngine::startScene(int room, Actor *a, int objectNr) {
stopCycle(0);
_sound->processSoundQues();
- if (_heversion >= 70 && _WizPolygons) {
- memset(_WizPolygons, 0, _WizNumPolygons * sizeof(WizPolygon));
+ if (_heversion >= 70 && _wizPolygons) {
+ memset(_wizPolygons, 0, _wizNumPolygons * sizeof(WizPolygon));
}
for (i = 0; i < _numRoomVariables; i++)
diff --git a/scumm/scumm.h b/scumm/scumm.h
index b649539525..f4b34a570d 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -664,12 +664,12 @@ protected:
byte _resourceMapper[128];
uint32 _allocatedSize;
byte _expire_counter;
- byte *_HEV7RoomOffsets;
- uint32 *_HEV7RoomIntOffsets;
+ byte *_heV7RoomOffsets;
+ uint32 *_heV7RoomIntOffsets;
const byte *_resourceLastSearchBuf; // FIXME: need to put it to savefile?
uint32 _resourceLastSearchSize; // FIXME: need to put it to savefile?
- int _WizNumPolygons;
- WizPolygon *_WizPolygons;
+ int _wizNumPolygons;
+ WizPolygon *_wizPolygons;
void allocateArrays();
void openRoom(int room);
@@ -914,7 +914,7 @@ protected:
StripTable *_roomStrips;
//ender: fullscreen
- bool _fullRedraw, _BgNeedsRedraw;
+ bool _fullRedraw, _bgNeedsRedraw;
bool _screenEffectFlag, _completeScreenRedraw;
struct {
@@ -1190,7 +1190,7 @@ public:
void translateText(const byte *text, byte *trans_buff); // Used by class ScummDialog
// Somewhat hackish stuff for 2 byte support (Chinese/Japanese/Korean)
- bool _CJKMode;
+ bool _useCJKMode;
int _2byteHeight;
int _2byteWidth;
byte *get2byteCharPtr(int idx);
diff --git a/scumm/smush/smush_font.cpp b/scumm/smush/smush_font.cpp
index f3fe868a48..188dfd6773 100644
--- a/scumm/smush/smush_font.cpp
+++ b/scumm/smush/smush_font.cpp
@@ -146,7 +146,7 @@ void SmushFont::drawSubstring(const char *str, byte *buffer, int dst_width, int
x = 0;
for (int i = 0; str[i] != 0; i++) {
- if ((byte)str[i] >= 0x80 && _vm->_CJKMode) {
+ if ((byte)str[i] >= 0x80 && _vm->_useCJKMode) {
x += draw2byte(buffer, dst_width, x, y, (byte)str[i] + 256 * (byte)str[i+1]);
i++;
} else
diff --git a/scumm/string.cpp b/scumm/string.cpp
index a5a377574f..2cdd673c69 100644
--- a/scumm/string.cpp
+++ b/scumm/string.cpp
@@ -344,7 +344,7 @@ void ScummEngine::CHARSET_1() {
} else {
_charset->_left = _charset->_nextLeft;
_charset->_top = _charset->_nextTop;
- if (c & 0x80 && _CJKMode)
+ if (c & 0x80 && _useCJKMode)
if (_language == 6 && ((c > 0x84 && c < 0x88) || (c > 0x9f && c < 0xe0) || (c > 0xea && c <= 0xff)))
c = 0x20; //not in S-JIS
else
@@ -477,7 +477,7 @@ void ScummEngine::drawString(int a, const byte *msg) {
_charset->_blitAlso = true;
}
}
- if (c >= 0x80 && _CJKMode)
+ if (c >= 0x80 && _useCJKMode)
c += buf[i++] * 256;
_charset->printChar(c);
_charset->_blitAlso = false;
@@ -719,7 +719,7 @@ void ScummEngine::drawBlastTexts() {
if (c != 0 && c != 0xFF) {
_charset->_left = _charset->_nextLeft;
_charset->_top = _charset->_nextTop;
- if (c >= 0x80 && _CJKMode)
+ if (c >= 0x80 && _useCJKMode)
c += *buf++ * 256;
_charset->printChar(c);
_charset->_nextLeft = _charset->_left;