1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
/* ScummVM - Kyrandia Interpreter
* Copyright (C) 2003-2004 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*
* $Header$
*
*/
#ifndef MOVIES_H
#define MOVIES_H
#include "resource.h"
namespace Kyra {
// a generic movie
class Movie {
public:
virtual ~Movie() {}
virtual const uint8* loadFrame(uint16 frame, uint16* width = 0, uint16* height = 0) = 0;
virtual uint16 countFrames(void) { return _frameCount; }
virtual bool hasPalette(void) { return (_ownPalette != 0); }
virtual Palette* palette(void) { return _ownPalette; }
protected:
uint16 _frameCount;
Palette* _ownPalette;
};
// movie format for Kyrandia 1
// there is also a new WSA Format for Kyrandia 2
// which i will implement in future
class WSAMovieV1 : public Movie {
public:
WSAMovieV1(uint8* data, uint32 size);
~WSAMovieV1();
const uint8* loadFrame(uint16 frame, uint16* width, uint16* height);
protected:
uint8* _buffer;
#pragma START_PACK_STRUCTS
struct WSAHeader {
uint16 _numFrames; // All right
uint16 _width; // should be right
uint16 _height; // should be right
uint8 _xPos; // could be wrong
uint8 _yPos; // could be wrong
uint16 _delta; // could be wrong
uint16 _type; // should be right
} GCC_PACK _wsaHeader;
#pragma END_PACK_STRUCTS
uint32* _offsetTable;
uint8* _currentFrame;
uint16 _prefetchedFrame;
};
} // end of namespace Kyra
#endif
|