comparison src/adplug/core/sa2.h @ 12:3da1b8942b8b trunk

[svn] - remove src/Input src/Output src/Effect src/General src/Visualization src/Container
author nenolod
date Mon, 18 Sep 2006 03:14:20 -0700
parents src/Input/adplug/core/sa2.h@13389e613d67
children cae46214b8bf
comparison
equal deleted inserted replaced
11:cff1d04026ae 12:3da1b8942b8b
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
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 };