ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
flic_decoder.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 VIDEO_FLICDECODER_H
23 #define VIDEO_FLICDECODER_H
24 
25 #include "video/video_decoder.h"
26 #include "common/list.h"
27 #include "common/rect.h"
28 #include "graphics/palette.h"
29 
30 namespace Common {
31 class SeekableReadStream;
32 }
33 
34 namespace Graphics {
35 struct PixelFormat;
36 struct Surface;
37 }
38 
39 namespace Video {
40 
50 class FlicDecoder : public VideoDecoder {
51 public:
52  FlicDecoder();
53  virtual ~FlicDecoder();
54 
55  virtual bool loadStream(Common::SeekableReadStream *stream);
56 
57  const Common::List<Common::Rect> *getDirtyRects() const;
58  void clearDirtyRects();
59  void copyDirtyRectsToBuffer(uint8 *dst, uint pitch);
60 
61 protected:
62  class FlicVideoTrack : public VideoTrack {
63  public:
64  FlicVideoTrack(Common::SeekableReadStream *stream, uint16 frameCount, uint16 width, uint16 height, bool skipHeader = false);
65  ~FlicVideoTrack();
66 
67  virtual void readHeader();
68 
69  bool endOfTrack() const;
70  virtual bool isRewindable() const { return true; }
71  virtual bool rewind();
72 
73  uint16 getWidth() const;
74  uint16 getHeight() const;
75  Graphics::PixelFormat getPixelFormat() const;
76  int getCurFrame() const { return _curFrame; }
77  int getFrameCount() const { return _frameCount; }
78  uint32 getNextFrameStartTime() const { return _nextFrameStartTime; }
79  virtual const Graphics::Surface *decodeNextFrame();
80  virtual void handleFrame();
81  const byte *getPalette() const { _dirtyPalette = false; return _palette.data(); }
82  bool hasDirtyPalette() const { return _dirtyPalette; }
83 
84  const Common::List<Common::Rect> *getDirtyRects() const { return &_dirtyRects; }
85  void clearDirtyRects() { _dirtyRects.clear(); }
86  void copyDirtyRectsToBuffer(uint8 *dst, uint pitch);
87 
88  protected:
89  Common::SeekableReadStream *_fileStream;
90  Graphics::Surface *_surface;
91 
92  int _curFrame;
93  bool _atRingFrame;
94 
95  uint32 _offsetFrame1;
96  uint32 _offsetFrame2;
97  Graphics::Palette _palette;
98  mutable bool _dirtyPalette;
99 
100  uint32 _frameCount;
101  uint32 _frameDelay, _startFrameDelay;
102  uint32 _nextFrameStartTime;
103 
104  Common::List<Common::Rect> _dirtyRects;
105 
106  void copyFrame(uint8 *data);
107  void decodeByteRun(uint8 *data);
108  void decodeDeltaFLC(uint8 *data);
109  void unpackPalette(uint8 *mem);
110  };
111 };
112 
113 } // End of namespace Video
114 
115 #endif
Definition: flic_decoder.h:62
bool hasDirtyPalette() const
Definition: flic_decoder.h:82
Definition: surface.h:67
Definition: pixelformat.h:138
Definition: stream.h:745
uint32 getNextFrameStartTime() const
Definition: flic_decoder.h:78
Definition: flic_decoder.h:50
Definition: video_decoder.h:53
int getFrameCount() const
Definition: flic_decoder.h:77
Definition: algorithm.h:29
Definition: formatinfo.h:28
void clear()
Definition: list.h:245
const byte * getPalette() const
Definition: flic_decoder.h:81
Simple class for handling a palette data.
Definition: palette.h:51
Definition: avi_frames.h:36
int getCurFrame() const
Definition: flic_decoder.h:76
virtual bool isRewindable() const
Definition: flic_decoder.h:70
Definition: video_decoder.h:589