359
|
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 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
|
|
25 class Csa2Loader: public CmodPlayer
|
|
26 {
|
|
27 public:
|
|
28 static CPlayer *factory(Copl *newopl);
|
|
29
|
|
30 Csa2Loader(Copl *newopl)
|
|
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
|
|
48 private:
|
|
49 struct sa2header {
|
|
50 char sadt[4];
|
|
51 unsigned char version;
|
|
52 } header;
|
|
53
|
|
54 char instname[29][17];
|
|
55 };
|