Mercurial > audlegacy-plugins
comparison src/console/Vgm_Emu_Impl.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/console/Vgm_Emu_Impl.h@13389e613d67 |
children | fb513e10174e |
comparison
equal
deleted
inserted
replaced
11:cff1d04026ae | 12:3da1b8942b8b |
---|---|
1 | |
2 // Game_Music_Emu 0.3.0 | |
3 | |
4 #ifndef VGM_EMU_IMPL_H | |
5 #define VGM_EMU_IMPL_H | |
6 | |
7 #include "Dual_Resampler.h" | |
8 #include "Classic_Emu.h" | |
9 #include "Ym2413_Emu.h" | |
10 #include "Ym2612_Emu.h" | |
11 #include "Sms_Apu.h" | |
12 | |
13 template<class Emu> | |
14 class Ym_Emu : public Emu { | |
15 protected: | |
16 int last_time; | |
17 short* out; | |
18 enum { disabled_time = -1 }; | |
19 public: | |
20 Ym_Emu() : last_time( disabled_time ), out( NULL ) { } | |
21 void enable( bool b ) { last_time = b ? 0 : disabled_time; } | |
22 bool enabled() const { return last_time != disabled_time; } | |
23 void begin_frame( short* p ); | |
24 int run_until( int time ); | |
25 }; | |
26 | |
27 class Vgm_Emu_Impl : public Classic_Emu, private Dual_Resampler { | |
28 public: | |
29 typedef Classic_Emu::sample_t sample_t; | |
30 typedef BOOST::uint8_t byte; | |
31 | |
32 protected: | |
33 enum { stereo = 2 }; | |
34 | |
35 typedef int vgm_time_t; | |
36 | |
37 enum { fm_time_bits = 12 }; | |
38 typedef int fm_time_t; | |
39 long fm_time_offset; | |
40 int fm_time_factor; | |
41 fm_time_t to_fm_time( vgm_time_t ) const; | |
42 | |
43 enum { blip_time_bits = 12 }; | |
44 int blip_time_factor; | |
45 blip_time_t to_blip_time( vgm_time_t ) const; | |
46 | |
47 byte const* data; | |
48 byte const* loop_begin; | |
49 byte const* data_end; | |
50 void update_fm_rates( long* ym2413_rate, long* ym2612_rate ) const; | |
51 | |
52 vgm_time_t vgm_time; | |
53 byte const* pos; | |
54 blip_time_t run_commands( vgm_time_t ); | |
55 int play_frame( blip_time_t blip_time, int sample_count, sample_t* buf ); | |
56 | |
57 byte const* pcm_data; | |
58 byte const* pcm_pos; | |
59 int dac_amp; | |
60 int dac_disabled; // -1 if disabled | |
61 void write_pcm( vgm_time_t, int amp ); | |
62 | |
63 Ym_Emu<Ym2612_Emu> ym2612; | |
64 Ym_Emu<Ym2413_Emu> ym2413; | |
65 | |
66 Blip_Buffer blip_buf; | |
67 Sms_Apu psg; | |
68 Blip_Synth<blip_med_quality,1> dac_synth; | |
69 | |
70 friend class Vgm_Emu; | |
71 }; | |
72 | |
73 #endif | |
74 |