ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
movie.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 MEDIASTATION_MOVIE_H
23 #define MEDIASTATION_MOVIE_H
24 
25 #include "common/array.h"
26 #include "audio/audiostream.h"
27 
28 #include "mediastation/datafile.h"
29 #include "mediastation/assetheader.h"
30 #include "mediastation/bitmap.h"
31 #include "mediastation/mediascript/scriptconstants.h"
32 
33 namespace MediaStation {
34 
36 public:
37  MovieFrameHeader(Chunk &chunk);
38 
39  uint _index = 0;
40  uint _keyframeEndInMilliseconds = 0;
41 };
42 
44 public:
45  MovieFrameFooter(Chunk &chunk);
46 
47  uint _unk1 = 0;
48  uint _unk2 = 0;
49  uint _startInMilliseconds = 0;
50  uint _endInMilliseconds = 0;
51  uint _left = 0;
52  uint _top = 0;
53  uint _unk3 = 0;
54  uint _unk4 = 0;
55  uint _zIndex = 0; // TODO: This is still unconfirmed but seems likely.
56  uint _diffBetweenKeyframeAndFrameX = 0;
57  uint _diffBetweenKeyframeAndFrameY = 0;
58  uint _keyframeIndex = 0;
59  uint _unk9 = 0;
60  uint _index = 0;
61 };
62 
63 class MovieFrame : public Bitmap {
64 public:
65  MovieFrame(Chunk &chunk, MovieFrameHeader *header);
66  virtual ~MovieFrame() override;
67 
68  void setFooter(MovieFrameFooter *footer);
69  uint32 left();
70  uint32 top();
71  Common::Point topLeft();
72  Common::Rect boundingBox();
73  uint32 index();
74  uint32 startInMilliseconds();
75  uint32 endInMilliseconds();
76  uint32 keyframeEndInMilliseconds();
77  // This is called zCoordinate because zIndex is too close to "index" and
78  // that could be confusing.
79  uint32 zCoordinate();
80 
81 private:
82  MovieFrameHeader *_bitmapHeader = nullptr;
83  MovieFrameFooter *_footer = nullptr;
84 };
85 
86 enum MovieSectionType {
87  kMovieRootSection = 0x06a8,
88  kMovieFrameSection = 0x06a9,
89  kMovieFooterSection = 0x06aa
90 };
91 
92 class Movie : public Asset {
93 public:
94  Movie(AssetHeader *header);
95  virtual ~Movie() override;
96 
97  virtual void readChunk(Chunk &chunk) override;
98  virtual void readSubfile(Subfile &subfile, Chunk &chunk) override;
99 
100  virtual Operand callMethod(BuiltInMethod methodId, Common::Array<Operand> &args) override;
101  virtual void process() override;
102 
103  virtual void redraw(Common::Rect &rect) override;
104 
105 private:
106  bool _showByDefault = false;
107  bool _isShowing = false;
108  bool _isPlaying = false;
109 
114  Audio::SoundHandle _soundHandle;
115 
116  Common::Array<MovieFrame *> _framesNotYetShown;
117  Common::Array<MovieFrame *> _framesOnScreen;
118 
119  // Script method implementations.
120  void timePlay();
121  void timeStop();
122  void spatialShow();
123  void spatialHide();
124  void spatialCenterMoveTo(int x, int y);
125  void spatialMoveTo(int x, int y);
126 
127  void updateFrameState();
128  void showPersistentFrame();
129 
130  Common::Rect getFrameBoundingBox(MovieFrame *frame);
131 };
132 
133 } // End of namespace MediaStation
134 
135 #endif
Definition: asset.h:33
Definition: datafile.h:39
Definition: bitmap.h:40
Definition: rect.h:144
Definition: movie.h:92
Definition: asset.h:37
Definition: movie.h:35
Definition: bitmap.h:52
Definition: operand.h:35
Definition: mixer.h:49
Definition: rect.h:45
Definition: assetheader.h:162
Definition: datafile.h:65
Definition: movie.h:63