2016-11-01 09:45:33 +01:00
|
|
|
/* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef RIVEN_STACKS_PSPIT_H
|
|
|
|
#define RIVEN_STACKS_PSPIT_H
|
|
|
|
|
|
|
|
#include "mohawk/riven_stacks/domespit.h"
|
|
|
|
|
|
|
|
namespace Mohawk {
|
|
|
|
namespace RivenStacks {
|
|
|
|
|
2016-11-01 19:19:26 +01:00
|
|
|
/**
|
|
|
|
* Prison Island
|
|
|
|
*/
|
2016-11-01 09:45:33 +01:00
|
|
|
class PSpit : public DomeSpit {
|
|
|
|
public:
|
|
|
|
PSpit(MohawkEngine_Riven *vm);
|
|
|
|
|
2016-11-05 14:47:02 +01:00
|
|
|
// RivenStack API
|
|
|
|
virtual void installCardTimer() override;
|
|
|
|
|
2016-11-01 19:19:26 +01:00
|
|
|
// External commands - Prison Elevator
|
2017-07-02 06:15:15 +02:00
|
|
|
void xpisland990_elevcombo(const ArgumentArray &args); // Param1: button
|
2016-11-01 19:19:26 +01:00
|
|
|
|
|
|
|
// External commands - Dome
|
2017-07-02 06:15:15 +02:00
|
|
|
void xpscpbtn(const ArgumentArray &args);
|
|
|
|
void xpisland290_domecheck(const ArgumentArray &args);
|
|
|
|
void xpisland25_opencard(const ArgumentArray &args);
|
|
|
|
void xpisland25_resetsliders(const ArgumentArray &args);
|
|
|
|
void xpisland25_slidermd(const ArgumentArray &args);
|
|
|
|
void xpisland25_slidermw(const ArgumentArray &args);
|
2016-11-01 19:19:26 +01:00
|
|
|
|
2016-11-05 14:47:02 +01:00
|
|
|
// Timer callbacks
|
|
|
|
void catherineIdleTimer();
|
2016-11-01 09:45:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace RivenStacks
|
|
|
|
} // End of namespace Mohawk
|
|
|
|
|
|
|
|
#endif
|