aboutsummaryrefslogtreecommitdiff
path: root/engines/dreamweb/stubs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/dreamweb/stubs.cpp')
-rw-r--r--engines/dreamweb/stubs.cpp74
1 files changed, 37 insertions, 37 deletions
diff --git a/engines/dreamweb/stubs.cpp b/engines/dreamweb/stubs.cpp
index dd4911618c..ebc2580158 100644
--- a/engines/dreamweb/stubs.cpp
+++ b/engines/dreamweb/stubs.cpp
@@ -456,7 +456,7 @@ static const Atmosphere g_atmosphereList[] = {
};
-void DreamGenContext::dreamweb() {
+void DreamBase::dreamweb() {
switch(engine->getLanguage()) {
case Common::EN_ANY:
case Common::EN_GRB:
@@ -649,7 +649,7 @@ bool DreamBase::quitRequested() {
return data.byte(kQuitrequested);
}
-void DreamGenContext::screenUpdate() {
+void DreamBase::screenUpdate() {
newPlace();
mainScreen();
if (quitRequested())
@@ -720,7 +720,7 @@ void DreamBase::startup() {
atmospheres();
}
-void DreamGenContext::startup1() {
+void DreamBase::startup1() {
clearPalette();
data.byte(kThroughdoor) = 0;
@@ -787,15 +787,15 @@ void DreamBase::hangOnCurs(uint16 frameCount) {
}
}
-void DreamGenContext::seeCommandTail() {
+void DreamBase::seeCommandTail() {
data.byte(kBrightness) = 1;
}
-void DreamGenContext::quickQuit() {
+void DreamBase::quickQuit() {
engine->quit();
}
-void DreamGenContext::quickQuit2() {
+void DreamBase::quickQuit2() {
engine->quit();
}
@@ -1143,7 +1143,7 @@ void DreamBase::commandOnly(uint8 command) {
data.byte(kNewtextline) = 1;
}
-bool DreamGenContext::checkIfPerson(uint8 x, uint8 y) {
+bool DreamBase::checkIfPerson(uint8 x, uint8 y) {
Common::List<People>::iterator i;
for (i = _peopleList.begin(); i != _peopleList.end(); ++i) {
People &people = *i;
@@ -1170,7 +1170,7 @@ bool DreamGenContext::checkIfPerson(uint8 x, uint8 y) {
return false;
}
-bool DreamGenContext::checkIfFree(uint8 x, uint8 y) {
+bool DreamBase::checkIfFree(uint8 x, uint8 y) {
Common::List<ObjPos>::const_iterator i;
for (i = _freeList.reverse_begin(); i != _freeList.end(); --i) {
const ObjPos &pos = *i;
@@ -1183,7 +1183,7 @@ bool DreamGenContext::checkIfFree(uint8 x, uint8 y) {
return false;
}
-bool DreamGenContext::checkIfEx(uint8 x, uint8 y) {
+bool DreamBase::checkIfEx(uint8 x, uint8 y) {
Common::List<ObjPos>::const_iterator i;
for (i = _exList.reverse_begin(); i != _exList.end(); --i) {
const ObjPos &pos = *i;
@@ -1391,7 +1391,7 @@ void DreamBase::getFlagUnderP(uint8 *flag, uint8 *flagEx) {
data.byte(kLastflag) = *flag;
}
-void DreamGenContext::walkAndExamine() {
+void DreamBase::walkAndExamine() {
if (!finishedWalking())
return;
data.byte(kCommandtype) = data.byte(kWalkexamtype);
@@ -1401,7 +1401,7 @@ void DreamGenContext::walkAndExamine() {
examineOb();
}
-void DreamGenContext::obName(uint8 command, uint8 commandType) {
+void DreamBase::obName(uint8 command, uint8 commandType) {
if (data.byte(kReasseschanges) == 0) {
if ((commandType == data.byte(kCommandtype)) && (command == data.byte(kCommand))) {
if (data.byte(kWalkandexam) == 1) {
@@ -1721,7 +1721,7 @@ void DreamBase::showIcon() {
}
}
-bool DreamGenContext::checkIfSet(uint8 x, uint8 y) {
+bool DreamBase::checkIfSet(uint8 x, uint8 y) {
Common::List<ObjPos>::const_iterator i;
for (i = _setList.reverse_begin(); i != _setList.end(); --i) {
const ObjPos &pos = *i;
@@ -1860,7 +1860,7 @@ void DreamBase::enterSymbol() {
}
}
-void DreamGenContext::zoomOnOff() {
+void DreamBase::zoomOnOff() {
if (data.word(kWatchingtime) != 0 || data.byte(kPointermode) == 2) {
blank();
return;
@@ -1898,27 +1898,27 @@ void DreamBase::sortOutMap() {
}
}
-void DreamGenContext::mainScreen() {
+void DreamBase::mainScreen() {
data.byte(kInmaparea) = 0;
if (data.byte(kWatchon) == 1) {
- RectWithCallback<DreamGenContext> mainList[] = {
- { 44,70,32,46,&DreamGenContext::look },
- { 0,50,0,180,&DreamGenContext::inventory },
- { 226,244,10,26,&DreamGenContext::zoomOnOff },
- { 226,244,26,40,&DreamGenContext::saveLoad },
- { 240,260,100,124,&DreamGenContext::madmanRun },
- { 0,320,0,200,&DreamGenContext::identifyOb },
+ RectWithCallback<DreamBase> mainList[] = {
+ { 44,70,32,46,&DreamBase::look },
+ { 0,50,0,180,&DreamBase::inventory },
+ { 226,244,10,26,&DreamBase::zoomOnOff },
+ { 226,244,26,40,&DreamBase::saveLoad },
+ { 240,260,100,124,&DreamBase::madmanRun },
+ { 0,320,0,200,&DreamBase::identifyOb },
{ 0xFFFF,0,0,0,0 }
};
checkCoords(mainList);
} else {
- RectWithCallback<DreamGenContext> mainList2[] = {
- { 44,70,32,46,&DreamGenContext::look },
- { 0,50,0,180,&DreamGenContext::inventory },
- { 226+48,244+48,10,26,&DreamGenContext::zoomOnOff },
- { 226+48,244+48,26,40,&DreamGenContext::saveLoad },
- { 240,260,100,124,&DreamGenContext::madmanRun },
- { 0,320,0,200,&DreamGenContext::identifyOb },
+ RectWithCallback<DreamBase> mainList2[] = {
+ { 44,70,32,46,&DreamBase::look },
+ { 0,50,0,180,&DreamBase::inventory },
+ { 226+48,244+48,10,26,&DreamBase::zoomOnOff },
+ { 226+48,244+48,26,40,&DreamBase::saveLoad },
+ { 240,260,100,124,&DreamBase::madmanRun },
+ { 0,320,0,200,&DreamBase::identifyOb },
{ 0xFFFF,0,0,0,0 }
};
checkCoords(mainList2);
@@ -2029,7 +2029,7 @@ void DreamBase::loadRoom() {
getDimension(&mapXstart, &mapYstart, &mapXsize, &mapYsize);
}
-void DreamGenContext::readSetData() {
+void DreamBase::readSetData() {
data.word(kCharset1) = standardLoad("DREAMWEB.C00");
void *icons1Buffer = standardLoadCPP("DREAMWEB.G00");
@@ -2068,7 +2068,7 @@ void DreamBase::findRoomInLoc() {
data.byte(kRoomnum) = roomNum;
}
-void DreamGenContext::autoLook() {
+void DreamBase::autoLook() {
if ((data.word(kMousex) != data.word(kOldx)) || (data.word(kMousey) != data.word(kOldy))) {
data.word(kLookcounter) = 1000;
return;
@@ -2082,7 +2082,7 @@ void DreamGenContext::autoLook() {
doLook();
}
-void DreamGenContext::look() {
+void DreamBase::look() {
if (data.word(kWatchingtime) || (data.byte(kPointermode) == 2)) {
blank();
return;
@@ -2095,7 +2095,7 @@ void DreamGenContext::look() {
doLook();
}
-void DreamGenContext::doLook() {
+void DreamBase::doLook() {
createPanel();
showIcon();
underTextLine();
@@ -2719,7 +2719,7 @@ void DreamBase::pickupOb(uint8 command, uint8 pos) {
transferToEx(command);
}
-void DreamGenContext::initialInv() {
+void DreamBase::initialInv() {
if (data.byte(kReallocation) != 24)
return;
@@ -2739,7 +2739,7 @@ void DreamGenContext::initialInv() {
switchRyanOff();
}
-void DreamGenContext::walkIntoRoom() {
+void DreamBase::walkIntoRoom() {
if (data.byte(kLocation) == 14 && data.byte(kMapx) == 22) {
data.byte(kDestination) = 1;
data.byte(kFinaldest) = 1;
@@ -3048,7 +3048,7 @@ void DreamBase::watchReel() {
plotReel(reelPointer);
}
-void DreamGenContext::afterNewRoom() {
+void DreamBase::afterNewRoom() {
if (data.byte(kNowinnewroom) == 0)
return; // notnew
@@ -3079,7 +3079,7 @@ void DreamGenContext::afterNewRoom() {
atmospheres();
}
-void DreamGenContext::madmanRun() {
+void DreamBase::madmanRun() {
if (data.byte(kLocation) != 14 ||
data.byte(kMapx) != 22 ||
data.byte(kPointermode) != 2 ||
@@ -3145,7 +3145,7 @@ void DreamBase::decide() {
data.byte(kTextlen) = 240;
}
-void DreamGenContext::showGun() {
+void DreamBase::showGun() {
data.byte(kAddtored) = 0;
data.byte(kAddtogreen) = 0;
data.byte(kAddtoblue) = 0;