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 83 84 85 86 87 88 89 90 91 92
|
/* REminiscence - Flashback interpreter
* Copyright (C) 2005-2011 Gregory Montoir
*
* 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 3 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, see <http://www.gnu.org/licenses/>.
*/
#ifndef SEQ_PLAYER_H__
#define SEQ_PLAYER_H__
#include "intern.h"
struct File;
struct SystemStub;
struct Mixer;
struct SeqDemuxer {
enum {
kFrameSize = 6144,
kAudioBufferSize = 882,
kBuffersCount = 30
};
bool open(File *f);
void close();
bool readHeader();
bool readFrameData();
void fillBuffer(int num, int offset, int size);
void clearBuffer(int num);
void readPalette(uint8 *dst);
void readAudioS8(uint8 *dst);
int _frameOffset;
int _audioDataOffset;
int _audioDataSize;
int _paletteDataOffset;
int _paletteDataSize;
int _videoData;
struct {
int size;
int avail;
uint8 *data;
} _buffers[kBuffersCount];
int _fileSize;
File *_f;
};
struct SeqPlayer {
enum {
kVideoWidth = 256,
kVideoHeight = 128,
kSoundPreloadSize = 4
};
static const char *_namesTable[];
struct SoundBufferQueue {
uint8 *data;
int size;
int read;
SoundBufferQueue *next;
};
SeqPlayer(SystemStub *stub, Mixer *mixer);
~SeqPlayer();
void setBackBuffer(uint8 *buf) { _buf = buf; }
void play(File *f);
bool mix(int8 *buf, int len);
static bool mixCallback(void *param, int8 *buf, int len);
SystemStub *_stub;
uint8 *_buf;
Mixer *_mix;
SeqDemuxer _demux;
int _soundQueuePreloadSize;
SoundBufferQueue *_soundQueue;
};
#endif // SEQ_PLAYER_H__
|