ScummVM API documentation
animation_effect.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 ZVISION_ANIMATION_NODE_H
23 #define ZVISION_ANIMATION_NODE_H
24 
25 #include "zvision/scripting/scripting_effect.h"
26 #include "common/path.h"
27 #include "common/rect.h"
28 #include "common/list.h"
29 
30 namespace Graphics {
31 struct Surface;
32 }
33 
34 namespace Video {
35  class VideoDecoder;
36 }
37 
38 namespace ZVision {
39 
40 class ZVision;
41 
43 public:
44  AnimationEffect(ZVision *engine, uint32 controlKey, const Common::Path &fileName, int32 mask, int32 frate, bool disposeAfterUse = true);
45  ~AnimationEffect() override;
46 
47  struct playnode {
48  Common::Rect pos;
49  int32 slot;
50  int32 start;
51  int32 stop;
52  int32 loop;
53  int32 _curFrame;
54  int32 _delay;
55  Graphics::Surface *_scaled;
56  };
57 
58 private:
60 
61  PlayNodes _playList;
62 
63  int32 _mask;
64  bool _disposeAfterUse;
65 
66  Video::VideoDecoder *_animation;
67  int32 _frmDelayOverride;
68 
69 public:
70  bool process(uint32 deltaTimeInMillis) override;
71 
72  void addPlayNode(int32 slot, int x, int y, int x2, int y2, int startFrame, int endFrame, int loops = 1);
73 
74  bool stop() override;
75 };
76 
77 } // End of namespace ZVision
78 
79 #endif
Definition: animation_effect.h:42
Definition: surface.h:67
Definition: rect.h:144
Definition: path.h:52
Definition: clock.h:29
Definition: video_decoder.h:53
Definition: scripting_effect.h:45
Definition: formatinfo.h:28
Definition: avi_frames.h:36
Definition: animation_effect.h:47