Subversion Repositories pentevo

Rev

Rev 1134 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed | ?url?

  1. // This file is taken from the openMSX project.
  2. // The file has been modified to be built in the blueMSX environment.
  3.  
  4. #ifndef __YMF278_HH__
  5. #define __YMF278_HH__
  6.  
  7. #include "../sysdefs.h"
  8.  
  9. using namespace std;
  10.  
  11.  
  12. typedef unsigned long  EmuTime;
  13. typedef unsigned short word;
  14.  
  15.  
  16. #ifndef OPENMSX_SOUNDDEVICE
  17. #define OPENMSX_SOUNDDEVICE
  18.  
  19. #define MAX_BUFFER_SIZE 10000
  20.  
  21. class SoundDevice
  22. {
  23.         public:
  24.         SoundDevice() : internalMuted(true) {}
  25.                 void setVolume(short newVolume) {
  26.                 setInternalVolume(newVolume);
  27.         }
  28.  
  29.         protected:
  30.                 virtual void setInternalVolume(short newVolume) = 0;
  31.         void setInternalMute(bool muted) { internalMuted = muted; }
  32.         bool isInternalMuted() const { return internalMuted; }
  33.         public:
  34.                 virtual void setSampleRate(int newSampleRate, int Oversampling) = 0;
  35.                 virtual int* updateBuffer(int length) = 0;
  36.  
  37.         private:
  38.                 bool internalMuted;
  39. };
  40.  
  41. #endif
  42.  
  43.  
  44. class YMF278Slot
  45. {
  46.         public:
  47.                 YMF278Slot();
  48.                 void reset();
  49.                 int compute_rate(int val);
  50.                 unsigned int decay_rate(int num, int sample_rate);
  51.                 void envelope_next(int sample_rate);
  52.                 inline int compute_vib();
  53.                 inline int compute_am();
  54.                 void set_lfo(int newlfo);
  55.  
  56.                 short wave;             // wavetable number
  57.                 short FN;               // f-number
  58.                 char OCT;               // octave
  59.                 char PRVB;              // pseudo-reverb
  60.                 char LD;                // level direct
  61.                 char TL;                // total level
  62.                 char pan;               // panpot
  63.                 char lfo;               // LFO
  64.                 char vib;               // vibrato
  65.                 char AM;                // AM level
  66.  
  67.                 char AR;
  68.                 char D1R;
  69.                 int  DL;
  70.                 char D2R;
  71.                 char RC;                // rate correction
  72.                 char RR;
  73.  
  74.                 int step;               // fixed-point frequency step
  75.                 int stepptr;            // fixed-point pointer into the sample
  76.                 int pos;
  77.                 short sample1, sample2;
  78.  
  79.                 bool active;            // slot keyed on
  80.                 u8 bits;                // width of the samples
  81.                 int startaddr;
  82.                 int loopaddr;
  83.                 int endaddr;
  84.  
  85.                 u8 state;
  86.                 int env_vol;
  87.                 unsigned int env_vol_step;
  88.                 unsigned int env_vol_lim;
  89.  
  90.                 bool lfo_active;
  91.                 int lfo_cnt;
  92.                 int lfo_step;
  93.                 int lfo_max;
  94. };
  95.  
  96. static const int MASTER_CLK = 33868800;
  97.  
  98. class YMF278 : public SoundDevice
  99. {
  100.         public:
  101.                 YMF278(short volume, int ramSize, int romSize,
  102.                        const EmuTime &time);
  103.                 virtual ~YMF278();
  104.                 void reset(const EmuTime &time);
  105.                 void writeRegOPL4(u8 reg, u8 data, const EmuTime &time);
  106.                 u8 peekRegOPL4(u8 reg, const EmuTime &time);
  107.                 u8 readRegOPL4(u8 reg, const EmuTime &time);
  108.                 u8 peekStatus(const EmuTime &time);
  109.                 u8 readStatus(const EmuTime &time);
  110.         u8 * getRom() { return rom; }  
  111. //        void* getRam() { return ram; }       
  112.         int getRomSize() { return endRom; }
  113. //        int getRamSize() { return endRam - endRom; }
  114.                 virtual void setSampleRate(int sampleRate, int Oversampling);
  115.                 virtual void setInternalVolume(short newVolume);
  116.                 virtual int* updateBuffer(int length);
  117.        
  118.         private:
  119.                 u8 readMem(unsigned int address);
  120.                 void writeMem(unsigned int address, u8 value);
  121.                 short getSample(YMF278Slot &op);
  122.                 void advance();
  123.                 void checkMute();
  124.                 bool anyActive();
  125.                 void keyOnHelper(YMF278Slot& slot);
  126.  
  127.                 int buffer[2 * MAX_BUFFER_SIZE];
  128.                 u8* rom;
  129.                 u8* ram;
  130.  
  131.         int oplOversampling;
  132.                 double freqbase;
  133.  
  134.                 YMF278Slot slots[24];
  135.  
  136.         int ramSize;
  137.                
  138.                 unsigned int eg_cnt;    // global envelope generator counter
  139.                 unsigned int eg_timer;  // global envelope generator counter
  140.                 unsigned int eg_timer_add;              // step of eg_timer
  141.                 unsigned int eg_timer_overflow; // envelope generator timer overlfows every 1 sample (on real chip)
  142.                
  143.                 char wavetblhdr;
  144.                 char memmode;
  145.                 int memadr;
  146.  
  147.                 int fm_l, fm_r;
  148.                 int pcm_l, pcm_r;
  149.  
  150.                 unsigned int endRom;
  151.                 unsigned int endRam;
  152.  
  153.                 // precalculated attenuation values with some marging for
  154.                 // enveloppe and pan levels
  155.                 int volume[256 * 4];
  156.  
  157.                 u8 regs[256];
  158.  
  159.                 unsigned long LD_Time;
  160.                 unsigned long BUSY_Time;
  161. };
  162.  
  163. #endif
  164.  
  165.