Initial commit
This commit is contained in:
136
engines/titanic/game/idle_summoner.cpp
Normal file
136
engines/titanic/game/idle_summoner.cpp
Normal file
@@ -0,0 +1,136 @@
|
||||
/* ScummVM - Graphic Adventure Engine
|
||||
*
|
||||
* ScummVM is the legal property of its developers, whose names
|
||||
* are too numerous to list here. Please refer to the COPYRIGHT
|
||||
* file distributed with this source distribution.
|
||||
*
|
||||
* This program is free software: you can redistribute it and/or modify
|
||||
* it under the terms of the GNU General Public License as published by
|
||||
* the Free Software Foundation, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
* GNU General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU General Public License
|
||||
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
*
|
||||
*/
|
||||
|
||||
#include "titanic/game/idle_summoner.h"
|
||||
|
||||
namespace Titanic {
|
||||
|
||||
BEGIN_MESSAGE_MAP(CIdleSummoner, CGameObject)
|
||||
ON_MESSAGE(EnterViewMsg)
|
||||
ON_MESSAGE(TimerMsg)
|
||||
ON_MESSAGE(ActMsg)
|
||||
ON_MESSAGE(LoadSuccessMsg)
|
||||
END_MESSAGE_MAP()
|
||||
|
||||
CIdleSummoner::CIdleSummoner() : CGameObject(), _fieldBC(360000),
|
||||
_fieldC0(60000), _fieldC4(360000), _fieldC8(60000),
|
||||
_fieldCC(0), _fieldD0(0), _timerId(0), _oldNodesCtr(0), _ticks(0) {
|
||||
}
|
||||
|
||||
void CIdleSummoner::save(SimpleFile *file, int indent) {
|
||||
file->writeNumberLine(1, indent);
|
||||
file->writeNumberLine(_fieldBC, indent);
|
||||
file->writeNumberLine(_fieldC0, indent);
|
||||
file->writeNumberLine(_fieldC4, indent);
|
||||
file->writeNumberLine(_fieldC8, indent);
|
||||
file->writeNumberLine(_fieldCC, indent);
|
||||
file->writeNumberLine(_fieldD0, indent);
|
||||
file->writeNumberLine(_timerId, indent);
|
||||
file->writeNumberLine(_oldNodesCtr, indent);
|
||||
file->writeNumberLine(_ticks, indent);
|
||||
|
||||
CGameObject::save(file, indent);
|
||||
}
|
||||
|
||||
void CIdleSummoner::load(SimpleFile *file) {
|
||||
file->readNumber();
|
||||
_fieldBC = file->readNumber();
|
||||
_fieldC0 = file->readNumber();
|
||||
_fieldC4 = file->readNumber();
|
||||
_fieldC8 = file->readNumber();
|
||||
_fieldCC = file->readNumber();
|
||||
_fieldD0 = file->readNumber();
|
||||
_timerId = file->readNumber();
|
||||
_oldNodesCtr = file->readNumber();
|
||||
_ticks = file->readNumber();
|
||||
|
||||
CGameObject::load(file);
|
||||
}
|
||||
|
||||
bool CIdleSummoner::EnterViewMsg(CEnterViewMsg *msg) {
|
||||
CActMsg actMsg("Enable");
|
||||
actMsg.execute(this);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool CIdleSummoner::TimerMsg(CTimerMsg *msg) {
|
||||
uint nodesCtr = getNodeChangedCtr();
|
||||
if (msg->_actionVal == 1 && !petDoorOrBellbotPresent()
|
||||
&& nodesCtr > 0 && nodesCtr != _oldNodesCtr) {
|
||||
|
||||
// They can only appear in the Top of the Well and the Embarkation Lobby
|
||||
if (!compareRoomNameTo("TopOfWell") && !compareRoomNameTo("EmbLobby"))
|
||||
return true;
|
||||
|
||||
// WORKAROUND: Handle special disallowed locations
|
||||
if (isBotDisallowedLocation())
|
||||
return true;
|
||||
|
||||
int region = talkGetDialRegion("BellBot", 1);
|
||||
uint delay = region == 1 ? 15000 : 120000;
|
||||
uint enterTicks = MAX(getNodeEnterTicks(), _ticks);
|
||||
|
||||
CString name;
|
||||
uint ticks = getTicksCount() - enterTicks;
|
||||
if (ticks > delay) {
|
||||
if (region == 1 || getRandomNumber(1) == 1) {
|
||||
name = "BellBot";
|
||||
} else {
|
||||
name = "DoorBot";
|
||||
}
|
||||
_oldNodesCtr = nodesCtr;
|
||||
|
||||
CRoomItem *room = getRoom();
|
||||
if (room) {
|
||||
CSummonBotQueryMsg queryMsg(name);
|
||||
if (queryMsg.execute(room)) {
|
||||
CSummonBotMsg summonMsg(name, 1);
|
||||
summonMsg.execute(room);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool CIdleSummoner::ActMsg(CActMsg *msg) {
|
||||
if (msg->_action == "Enable") {
|
||||
if (!_timerId)
|
||||
_timerId = addTimer(1, 15000, 15000);
|
||||
} else if (msg->_action == "Disable") {
|
||||
if (_timerId > 0) {
|
||||
stopAnimTimer(_timerId);
|
||||
_timerId = 0;
|
||||
}
|
||||
} else if (msg->_action == "DoorbotDismissed" || msg->_action == "BellbotDismissed") {
|
||||
_ticks = getTicksCount();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool CIdleSummoner::LoadSuccessMsg(CLoadSuccessMsg *msg) {
|
||||
_ticks = getTicksCount();
|
||||
return true;
|
||||
}
|
||||
|
||||
} // End of namespace Titanic
|
||||
Reference in New Issue
Block a user