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  * adplug.h - AdPlug main header file, by Simon Peter <dn.tlp@gmx.net>
20  */
21 
22 #ifndef H_ADPLUG_ADPLUG
23 #define H_ADPLUG_ADPLUG
24 
25 #include <string>
26 
27 #include "player.h"
28 #include "opl.h"
29 #include "fprovide.h"
30 #include "players.h"
31 #include "database.h"
32 
33 class CAdPlug
34 {
35   friend CPlayer::CPlayer(Copl *newopl);
36 
37 public:
38   static const CPlayers players;
39 
40   static CPlayer *factory(const std::string &fn, Copl *opl,
41 			  const CPlayers &pl = players,
42 			  const CFileProvider &fp = CProvider_Filesystem());
43 
44   static void set_database(CAdPlugDatabase *db);
45   static std::string get_version();
46   static void debug_output(const std::string &filename);
47 
48 private:
49   static CAdPlugDatabase *database;
50   static const CPlayerDesc allplayers[];
51 
52   static const CPlayers &init_players(const CPlayerDesc pd[]);
53 };
54 
55 #endif
56