ScummVM API documentation
followpathlight.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 STARK_MOVEMENT_FOLLOW_PATH_LIGHT_H
23 #define STARK_MOVEMENT_FOLLOW_PATH_LIGHT_H
24 
25 #include "engines/stark/movement/movement.h"
26 
27 namespace Stark {
28 
29 namespace Resources {
30 class Light;
31 class Path;
32 }
33 
37 class FollowPathLight : public Movement {
38 public:
40  virtual ~FollowPathLight();
41 
42  // Movement API
43  void start() override;
44  void onGameLoop() override;
45  void stop(bool force = false) override;
46  uint32 getType() const override;
47  void saveLoad(ResourceSerializer *serializer) override;
48 
50  void setPath(Resources::Path *path);
51 
53  void setLight(Resources::Light *light);
54 
56  void setSpeed(float speed);
57 
58 private:
59  Resources::Path *_path;
60  Resources::Light *_light;
61  float _speed;
62 
63  float _position;
64  bool _previouslyEnabled;
65 };
66 
67 } // End of namespace Stark
68 
69 #endif // STARK_MOVEMENT_FOLLOW_PATH_LIGHT_H
Definition: followpathlight.h:37
Definition: path.h:45
Definition: item.h:139
Path
Definition: game.h:75
Definition: console.h:27
Definition: movement.h:38
Definition: light.h:46
Definition: stateprovider.h:51