1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120
|
/* 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 2
* 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, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#include "titanic/carry/hose.h"
#include "titanic/npcs/succubus.h"
#include "titanic/titanic.h"
namespace Titanic {
BEGIN_MESSAGE_MAP(CHose, CCarry)
ON_MESSAGE(DropZoneGotObjectMsg)
ON_MESSAGE(PumpingMsg)
ON_MESSAGE(UseWithCharMsg)
ON_MESSAGE(HoseConnectedMsg)
ON_MESSAGE(DropZoneLostObjectMsg)
END_MESSAGE_MAP()
CHoseStatics *CHose::_statics;
void CHose::init() {
_statics = new CHoseStatics();
}
void CHose::deinit() {
delete _statics;
}
CHose::CHose() : CCarry() {
}
void CHose::save(SimpleFile *file, int indent) {
file->writeNumberLine(1, indent);
file->writeNumberLine(_statics->_actionVal, indent);
file->writeQuotedLine(_statics->_actionTarget, indent);
file->writeQuotedLine(_unused1, indent);
CCarry::save(file, indent);
}
void CHose::load(SimpleFile *file) {
file->readNumber();
_statics->_actionVal = file->readNumber();
_statics->_actionTarget = file->readString();
_unused1 = file->readString();
CCarry::load(file);
}
bool CHose::DropZoneGotObjectMsg(CDropZoneGotObjectMsg *msg) {
_statics->_actionTarget = msg->_object->getName();
CPumpingMsg pumpingMsg;
pumpingMsg._value = _statics->_actionVal;
pumpingMsg.execute(_statics->_actionTarget);
CHoseConnectedMsg connectedMsg;
connectedMsg._connected = true;
connectedMsg.execute(this);
return true;
}
bool CHose::PumpingMsg(CPumpingMsg *msg) {
_statics->_actionVal = msg->_value;
if (!_statics->_actionTarget.empty()) {
CPumpingMsg pumpingMsg;
pumpingMsg._value = _statics->_actionVal;
pumpingMsg.execute(_statics->_actionTarget);
}
return true;
}
bool CHose::UseWithCharMsg(CUseWithCharMsg *msg) {
CSuccUBus *succubus = dynamic_cast<CSuccUBus *>(msg->_character);
if (!_statics->_actionVal && succubus) {
CHoseConnectedMsg connectedMsg(1, this);
if (connectedMsg.execute(succubus))
return true;
}
return CCarry::UseWithCharMsg(msg);
}
bool CHose::HoseConnectedMsg(CHoseConnectedMsg *msg) {
if (msg->_connected) {
CHose *hose = dynamic_cast<CHose *>(findChildInstanceOf(CHose::_type));
if (hose) {
hose->setVisible(true);
hose->petAddToInventory();
}
}
return true;
}
bool CHose::DropZoneLostObjectMsg(CDropZoneLostObjectMsg *msg) {
CPumpingMsg pumpingMsg;
pumpingMsg._value = 0;
pumpingMsg.execute(msg->_object);
return true;
}
} // End of namespace Titanic
|