mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 14:18:37 +00:00
46609ad455
svn-id: r25230
81 lines
1.7 KiB
C++
81 lines
1.7 KiB
C++
/* ScummVM - Scumm Interpreter
|
|
* Copyright (C) 2006 The ScummVM project
|
|
* Based on code by madmoose
|
|
*
|
|
* 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*
|
|
* $URL$
|
|
* $Id$
|
|
*
|
|
*/
|
|
|
|
#ifndef SOUND_MODS_MODULE_H
|
|
#define SOUND_MODS_MODULE_H
|
|
|
|
#include "common/stream.h"
|
|
|
|
namespace Modules {
|
|
|
|
#include "common/pack-start.h" // START STRUCT PACKING
|
|
|
|
struct note_t {
|
|
byte sample;
|
|
byte note;
|
|
uint16 period;
|
|
uint16 effect;
|
|
};
|
|
|
|
#include "common/pack-end.h" // END STRUCT PACKING
|
|
|
|
typedef note_t pattern_t[64][4];
|
|
|
|
struct sample_t {
|
|
byte name[23];
|
|
uint16 len;
|
|
byte finetune;
|
|
byte vol;
|
|
uint16 repeat;
|
|
uint16 replen;
|
|
int8 *data;
|
|
};
|
|
|
|
class Module {
|
|
public:
|
|
byte songname[21];
|
|
|
|
static const int NUM_SAMPLES = 31;
|
|
sample_t sample[NUM_SAMPLES];
|
|
|
|
byte songlen;
|
|
byte undef;
|
|
byte songpos[128];
|
|
byte sig[4];
|
|
pattern_t *pattern;
|
|
|
|
Module();
|
|
~Module();
|
|
|
|
bool load(Common::ReadStream &stream);
|
|
static byte periodToNote(int16 period, byte finetune = 0);
|
|
static int16 noteToPeriod(byte note, byte finetune = 0);
|
|
|
|
private:
|
|
static const int16 periods[16][60];
|
|
};
|
|
|
|
} // End of namespace Modules
|
|
|
|
#endif
|