Mercurial > audlegacy-plugins
comparison src/adplug/core/player.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/player.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 - 2004 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 * player.h - Replayer base class, by Simon Peter <dn.tlp@gmx.net> | |
20 */ | |
21 | |
22 #ifndef H_ADPLUG_PLAYER | |
23 #define H_ADPLUG_PLAYER | |
24 | |
25 #include <string> | |
26 | |
27 #include "fprovide.h" | |
28 #include "opl.h" | |
29 #include "database.h" | |
30 | |
31 class CPlayer | |
32 { | |
33 public: | |
34 CPlayer(Copl *newopl); | |
35 virtual ~CPlayer(); | |
36 | |
37 /***** Operational methods *****/ | |
38 void seek(unsigned long ms); | |
39 | |
40 virtual bool load(const std::string &filename, // loads file | |
41 const CFileProvider &fp = CProvider_Filesystem()) = 0; | |
42 virtual bool update() = 0; // executes replay code for 1 tick | |
43 virtual void rewind(int subsong = -1) = 0; // rewinds to specified subsong | |
44 virtual float getrefresh() = 0; // returns needed timer refresh rate | |
45 | |
46 /***** Informational methods *****/ | |
47 unsigned long songlength(int subsong = -1); | |
48 | |
49 virtual std::string gettype() = 0; // returns file type | |
50 virtual std::string gettitle() // returns song title | |
51 { return std::string(); } | |
52 virtual std::string getauthor() // returns song author name | |
53 { return std::string(); } | |
54 virtual std::string getdesc() // returns song description | |
55 { return std::string(); } | |
56 virtual unsigned int getpatterns() // returns number of patterns | |
57 { return 0; } | |
58 virtual unsigned int getpattern() // returns currently playing pattern | |
59 { return 0; } | |
60 virtual unsigned int getorders() // returns size of orderlist | |
61 { return 0; } | |
62 virtual unsigned int getorder() // returns currently playing song position | |
63 { return 0; } | |
64 virtual unsigned int getrow() // returns currently playing row | |
65 { return 0; } | |
66 virtual unsigned int getspeed() // returns current song speed | |
67 { return 0; } | |
68 virtual unsigned int getsubsongs() // returns number of subsongs | |
69 { return 1; } | |
70 virtual unsigned int getinstruments() // returns number of instruments | |
71 { return 0; } | |
72 virtual std::string getinstrument(unsigned int n) // returns n-th instrument name | |
73 { return std::string(); } | |
74 | |
75 protected: | |
76 Copl *opl; // our OPL chip | |
77 CAdPlugDatabase *db; // AdPlug Database | |
78 | |
79 static const unsigned short note_table[12]; // standard adlib note table | |
80 static const unsigned char op_table[9]; // the 9 operators as expected by the OPL2 | |
81 }; | |
82 | |
83 #endif |