LMMS
Loading...
Searching...
No Matches
sa2.h
Go to the documentation of this file.
1/*
2 * Adplug - Replayer for many OPL2/OPL3 audio file formats.
3 * Copyright (C) 1999 - 2003 Simon Peter, <dn.tlp@gmx.net>, et al.
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
18 *
19 * sa2.h - SAdT2 Loader by Simon Peter <dn.tlp@gmx.net>
20 * SAdT Loader by Mamiya <mamiya@users.sourceforge.net>
21 */
22
23#include "protrack.h"
24
26{
27public:
28 static CPlayer *factory(Copl *newopl);
29
31 : CmodPlayer(newopl)
32 { }
33
34 bool load(const std::string &filename, const CFileProvider &fp);
35
36 std::string gettype();
37 std::string gettitle();
38 unsigned int getinstruments()
39 { return 31; }
40 std::string getinstrument(unsigned int n)
41 {
42 if(n < 29)
43 return std::string(instname[n],1,16);
44 else
45 return std::string("-broken-");
46 }
47
48private:
49 struct sa2header {
50 char sadt[4];
51 unsigned char version;
53
54 char instname[29][17];
55};
Definition fprovide.h:29
CPlayer(Copl *newopl)
Definition player.cpp:34
CmodPlayer(Copl *newopl)
Definition protrack.cpp:45
Definition opl.h:26
std::string getinstrument(unsigned int n)
Definition sa2.h:40
struct Csa2Loader::sa2header header
char instname[29][17]
Definition sa2.h:54
static CPlayer * factory(Copl *newopl)
Definition sa2.cpp:30
Csa2Loader(Copl *newopl)
Definition sa2.h:30
unsigned int getinstruments()
Definition sa2.h:38
std::string gettype()
Definition sa2.cpp:230
std::string gettitle()
Definition sa2.cpp:238
bool load(const std::string &filename, const CFileProvider &fp)
Definition sa2.cpp:35
static char filename[]
Definition features.c:5
Definition sa2.h:49
char sadt[4]
Definition sa2.h:50
unsigned char version
Definition sa2.h:51
int n
Definition crypt.c:458