2016-03-20 17:00:00 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
* REminiscence - Flashback interpreter
|
2018-01-20 17:00:00 +01:00
|
|
|
* Copyright (C) 2005-2018 Gregory Montoir (cyx@users.sourceforge.net)
|
2015-08-02 18:00:00 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef MOD_PLAYER_H__
|
|
|
|
#define MOD_PLAYER_H__
|
|
|
|
|
|
|
|
#include "intern.h"
|
|
|
|
|
|
|
|
struct FileSystem;
|
|
|
|
struct Mixer;
|
2016-03-20 17:00:00 +01:00
|
|
|
struct ModPlayer_impl;
|
2015-08-02 18:00:00 +02:00
|
|
|
|
|
|
|
struct ModPlayer {
|
|
|
|
|
|
|
|
static const uint16_t _periodTable[];
|
|
|
|
static const char *_modulesFiles[][2];
|
|
|
|
static const int _modulesFilesCount;
|
|
|
|
|
2016-03-20 17:00:00 +01:00
|
|
|
bool _isAmiga;
|
2015-08-02 18:00:00 +02:00
|
|
|
bool _playing;
|
|
|
|
Mixer *_mix;
|
2016-03-20 17:00:00 +01:00
|
|
|
FileSystem *_fs;
|
|
|
|
ModPlayer_impl *_impl;
|
2015-08-02 18:00:00 +02:00
|
|
|
|
2016-03-20 17:00:00 +01:00
|
|
|
ModPlayer(Mixer *mixer, FileSystem *fs);
|
|
|
|
~ModPlayer();
|
2015-08-02 18:00:00 +02:00
|
|
|
|
2016-03-20 17:00:00 +01:00
|
|
|
void play(int num);
|
2015-08-02 18:00:00 +02:00
|
|
|
void stop();
|
|
|
|
|
2016-05-09 18:00:00 +02:00
|
|
|
static bool mixCallback(void *param, int16_t *buf, int len);
|
2015-08-02 18:00:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // MOD_PLAYER_H__
|