]> 4ch.mooo.com Git - 16.git/blob - 16/adplug/adplug/src/adl.h
wwww~
[16.git] / 16 / adplug / adplug / src / adl.h
1 /*
2  * Adplug - Replayer for many OPL2/OPL3 audio file formats.
3  * Copyright (C) 1999 - 2007 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  * adl.h - ADL player adaption by Simon Peter <dn.tlp@gmx.net>
20  */
21
22 #ifndef H_ADPLUG_ADLPLAYER
23 #define H_ADPLUG_ADLPLAYER
24
25 #include <inttypes.h>
26
27 #include "player.h"
28
29 class AdlibDriver;
30
31 class CadlPlayer: public CPlayer
32 {
33  public:
34   static CPlayer *factory(Copl *newopl);
35
36   CadlPlayer(Copl *newopl);
37   ~CadlPlayer();
38
39   bool load(const std::string &filename, const CFileProvider &fp);
40   bool update();
41   void rewind(int subsong = -1);
42
43   // refresh rate is fixed at 72Hz
44   float getrefresh()
45     {
46       return 72.0f;
47     }
48
49   unsigned int getsubsongs();
50   unsigned int getsubsong() { return cursubsong; }
51   std::string gettype() { return std::string("Westwood ADL"); }
52
53  private:
54   int numsubsongs, cursubsong;
55
56   AdlibDriver *_driver;
57
58   uint8_t _trackEntries[120];
59   uint8_t *_soundDataPtr;
60   int _sfxPlayingSound;
61
62   uint8_t _sfxPriority;
63   uint8_t _sfxFourthByteOfSong;
64
65   int _numSoundTriggers;
66   const int *_soundTriggers;
67
68   static const int _kyra1NumSoundTriggers;
69   static const int _kyra1SoundTriggers[];
70
71   bool init();
72   void process();
73   void playTrack(uint8_t track);
74   void playSoundEffect(uint8_t track);
75   void play(uint8_t track);
76   void unk1();
77   void unk2();
78 };
79
80 #endif