ScummVM API documentation
pascale.h
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 modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (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, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef LASTEXPRESS_PASCALE_H
23 #define LASTEXPRESS_PASCALE_H
24 
25 #include "lastexpress/entities/entity.h"
26 
27 namespace LastExpress {
28 
29 class LastExpressEngine;
30 
31 class Pascale : public Entity {
32 public:
33  Pascale(LastExpressEngine *engine);
34  ~Pascale() override {}
35 
41  DECLARE_FUNCTION_1(draw, const char *sequence)
42 
43 
46  DECLARE_FUNCTION(callbackActionRestaurantOrSalon)
47 
48 
51  DECLARE_FUNCTION(callbackActionOnDirection)
52 
53 
58  DECLARE_FUNCTION_1(updateFromTime, uint32 time)
59 
60 
68  DECLARE_FUNCTION_NOSETUP(updatePosition)
69 
70 
75  DECLARE_VFUNCTION_1(playSound, const char *filename)
76 
77 
85  DECLARE_FUNCTION_NOSETUP(draw2)
86 
87  DECLARE_FUNCTION(welcomeSophieAndRebecca)
88  DECLARE_FUNCTION(sitSophieAndRebecca)
89  DECLARE_FUNCTION(welcomeCath)
90  DECLARE_FUNCTION(seatCath)
91 
92 
95  DECLARE_VFUNCTION(chapter1)
96 
97  DECLARE_FUNCTION(greetAugust)
98  DECLARE_FUNCTION(seatAnna)
99  DECLARE_FUNCTION(greetAnna)
100  DECLARE_FUNCTION(greetTatiana)
101 
102 
105  DECLARE_FUNCTION(servingDinner)
106 
107  DECLARE_FUNCTION(function18)
108  DECLARE_FUNCTION(function19)
109 
110 
113  DECLARE_VFUNCTION(chapter2)
114 
115 
118  DECLARE_VFUNCTION(chapter3)
119 
120 
123  DECLARE_FUNCTION(chapter3Handler)
124 
125  DECLARE_FUNCTION(abbotSeatMe3)
126  DECLARE_FUNCTION(welcomeAbbot)
127 
128 
131  DECLARE_VFUNCTION(chapter4)
132 
133 
136  DECLARE_FUNCTION(chapter4Handler)
137 
138  DECLARE_FUNCTION(meetCoudert)
139  DECLARE_FUNCTION(tellAugust)
140  DECLARE_FUNCTION(walkDownTrain)
141  DECLARE_FUNCTION(walkUpTrain)
142 
143 
146  DECLARE_VFUNCTION(chapter5)
147 
148 
151  DECLARE_FUNCTION(chapter5Handler)
152 
153  DECLARE_FUNCTION(hiding)
154 
155  DECLARE_NULL_FUNCTION()
156 };
157 
158 } // End of namespace LastExpress
159 
160 #endif // LASTEXPRESS_PASCALE_H
void updateFromTime(const SavePoint &savepoint)
Definition: lastexpress.h:69
Definition: animation.h:45
void draw2(const SavePoint &savepoint)
Definition: entity.h:919
void updatePosition(const SavePoint &savepoint, bool handleExcuseMe=false)
void draw(const SavePoint &savepoint, bool handleExcuseMe=false)
void callbackActionOnDirection(const SavePoint &savepoint)
void playSound(const SavePoint &savepoint, bool resetItem=false, SoundFlag flag=kSoundVolumeEntityDefault)
void callbackActionRestaurantOrSalon(const SavePoint &savepoint)
Definition: pascale.h:31