RemoteVstPlugin: fixed too short arrays for preset names
[lmms.git] / plugins / sid / voice.h
blob599a77ab4a0c3494fd588c71ba7818f9f028db29
1 // ---------------------------------------------------------------------------
2 // This file is part of reSID, a MOS6581 SID emulator engine.
3 // Copyright (C) 2004 Dag Lem <resid@nimrod.no>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program 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
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 // ---------------------------------------------------------------------------
20 #ifndef __VOICE_H__
21 #define __VOICE_H__
23 #include "siddefs.h"
24 #include "wave.h"
25 #include "envelope.h"
27 class Voice
29 public:
30 Voice();
32 void set_chip_model(chip_model model);
33 void set_sync_source(Voice*);
34 void reset();
36 void writeCONTROL_REG(reg8);
38 // Amplitude modulated waveform output.
39 // Range [-2048*255, 2047*255].
40 RESID_INLINE sound_sample output();
42 protected:
43 WaveformGenerator wave;
44 EnvelopeGenerator envelope;
46 // Waveform D/A zero level.
47 sound_sample wave_zero;
49 // Multiplying D/A DC offset.
50 sound_sample voice_DC;
52 friend class cSID;
56 // ----------------------------------------------------------------------------
57 // Inline functions.
58 // The following function is defined inline because it is called every
59 // time a sample is calculated.
60 // ----------------------------------------------------------------------------
62 #if RESID_INLINING || defined(__VOICE_CC__)
64 // ----------------------------------------------------------------------------
65 // Amplitude modulated waveform output.
66 // Ideal range [-2048*255, 2047*255].
67 // ----------------------------------------------------------------------------
68 RESID_INLINE
69 sound_sample Voice::output()
71 // Multiply oscillator output with envelope output.
72 return (wave.output() - wave_zero)*envelope.output() + voice_DC;
75 #endif // RESID_INLINING || defined(__VOICE_CC__)
77 #endif // not __VOICE_H__