1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22 
23 #ifndef RIVEN_STACKS_PSPIT_H
24 #define RIVEN_STACKS_PSPIT_H
25 
26 #include "mohawk/riven_stacks/domespit.h"
27 
28 namespace Mohawk {
29 namespace RivenStacks {
30 
31 /**
32  * Prison Island
33  */
34 class PSpit : public DomeSpit {
35 public:
36 	PSpit(MohawkEngine_Riven *vm);
37 
38 	// RivenStack API
39 	virtual void installCardTimer() override;
40 
41 	// External commands - Prison Elevator
42 	void xpisland990_elevcombo(const ArgumentArray &args);	// Param1: button
43 
44 	// External commands - Dome
45 	void xpscpbtn(const ArgumentArray &args);
46 	void xpisland290_domecheck(const ArgumentArray &args);
47 	void xpisland25_opencard(const ArgumentArray &args);
48 	void xpisland25_resetsliders(const ArgumentArray &args);
49 	void xpisland25_slidermd(const ArgumentArray &args);
50 	void xpisland25_slidermw(const ArgumentArray &args);
51 
52 	// Timer callbacks
53 	void catherineIdleTimer();
54 };
55 
56 } // End of namespace RivenStacks
57 } // End of namespace Mohawk
58 
59 #endif
60