179 lines
4.8 KiB
C++
179 lines
4.8 KiB
C++
/*
|
|
* Copyright (C) 2002-2004 The DOSBox Team
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <math.h>
|
|
#include "dosbox.h"
|
|
#include "inout.h"
|
|
#include "mixer.h"
|
|
#include "pic.h"
|
|
#include "hardware.h"
|
|
#include "setup.h"
|
|
/*
|
|
Thanks to vdmsound for nice simple way to implement this
|
|
*/
|
|
|
|
# define logerror
|
|
|
|
#ifdef _MSC_VER
|
|
/* Disable recurring warnings */
|
|
# pragma warning ( disable : 4018 )
|
|
# pragma warning ( disable : 4244 )
|
|
#endif
|
|
|
|
struct __MALLOCPTR {
|
|
void* m_ptr;
|
|
|
|
__MALLOCPTR(void) : m_ptr(NULL) { }
|
|
__MALLOCPTR(void* src) : m_ptr(src) { }
|
|
void* operator=(void* rhs) { return (m_ptr = rhs); }
|
|
operator int*() const { return (int*)m_ptr; }
|
|
operator int**() const { return (int**)m_ptr; }
|
|
operator char*() const { return (char*)m_ptr; }
|
|
};
|
|
|
|
namespace OPL2 {
|
|
#define HAS_YM3812 1
|
|
#include "fmopl.c"
|
|
void TimerOver(Bitu val){
|
|
YM3812TimerOver(val>>8,val & 0xff);
|
|
}
|
|
void TimerHandler(int channel,double interval_Sec) {
|
|
PIC_AddEvent(TimerOver,1000000*interval_Sec,channel);
|
|
}
|
|
}
|
|
#undef OSD_CPU_H
|
|
#undef TL_TAB_LEN
|
|
namespace THEOPL3 {
|
|
#define HAS_YMF262 1
|
|
#include "ymf262.c"
|
|
void TimerOver(Bitu val){
|
|
YMF262TimerOver(val>>8,val & 0xff);
|
|
}
|
|
void TimerHandler(int channel,double interval_Sec) {
|
|
PIC_AddEvent(TimerOver,1000000*interval_Sec,channel);
|
|
}
|
|
}
|
|
|
|
#define OPL2_INTERNAL_FREQ 3600000 // The OPL2 operates at 3.6MHz
|
|
#define OPL3_INTERNAL_FREQ 14400000 // The OPL3 operates at 14.4MHz
|
|
|
|
static struct {
|
|
bool active;
|
|
OPL_Mode mode;
|
|
MIXER_Channel * chan;
|
|
Bit32u last_used;
|
|
Bit16s mixbuf[2][128];
|
|
} opl;
|
|
|
|
static void OPL_CallBack(Bit8u *stream, Bit32u len) {
|
|
/* Check for size to update and check for 1 ms updates to the opl registers */
|
|
/* Calculate teh machine ms we are at now */
|
|
|
|
/* update 1 ms of data */
|
|
Bitu i;
|
|
switch(opl.mode) {
|
|
case OPL_opl2:
|
|
OPL2::YM3812UpdateOne(0,(OPL2::INT16 *)stream,len);
|
|
break;
|
|
case OPL_opl3:
|
|
THEOPL3::YMF262UpdateOne(0,(OPL2::INT16 *)stream,len);
|
|
break;
|
|
case OPL_dualopl2:
|
|
OPL2::YM3812UpdateOne(0,(OPL2::INT16 *)opl.mixbuf[0],len);
|
|
OPL2::YM3812UpdateOne(1,(OPL2::INT16 *)opl.mixbuf[1],len);
|
|
for (i=0;i<len;i++) {
|
|
((Bit16u *)stream)[i*2+0]=opl.mixbuf[0][i];
|
|
((Bit16u *)stream)[i*2+1]=opl.mixbuf[1][i];
|
|
}
|
|
break;
|
|
|
|
}
|
|
if ((PIC_Ticks-opl.last_used)>1000) {
|
|
MIXER_Enable(opl.chan,false);
|
|
opl.active=false;
|
|
}
|
|
}
|
|
|
|
Bit8u OPL_Read(Bit32u port) {
|
|
Bitu addr=port & 3;
|
|
switch (opl.mode) {
|
|
case OPL_opl2:
|
|
return OPL2::YM3812Read(0,addr);
|
|
case OPL_dualopl2:
|
|
return OPL2::YM3812Read(addr>>1,addr);
|
|
case OPL_opl3:
|
|
return THEOPL3::YMF262Read(0,addr);
|
|
}
|
|
return 0xff;
|
|
}
|
|
|
|
void OPL_Write(Bit32u port,Bit8u val) {
|
|
opl.last_used=PIC_Ticks;
|
|
if (!opl.active) {
|
|
opl.active=true;
|
|
MIXER_Enable(opl.chan,true);
|
|
}
|
|
Bitu addr=port & 3;
|
|
switch (opl.mode) {
|
|
case OPL_opl2:
|
|
OPL2::YM3812Write(0,addr,val);
|
|
break;
|
|
case OPL_opl3:
|
|
THEOPL3::YMF262Write(0,addr,val);
|
|
break;
|
|
case OPL_dualopl2:
|
|
OPL2::YM3812Write(addr>>1,addr,val);
|
|
break;
|
|
}
|
|
}
|
|
|
|
void OPL_Init(Section* sec,Bitu base,OPL_Mode oplmode,Bitu rate) {
|
|
Bitu i;
|
|
Section_prop * section=static_cast<Section_prop *>(sec);
|
|
if (OPL2::YM3812Init(2,OPL2_INTERNAL_FREQ,rate)) {
|
|
E_Exit("Can't create OPL2 Emulator");
|
|
};
|
|
OPL2::YM3812SetTimerHandler(0,OPL2::TimerHandler,0);
|
|
OPL2::YM3812SetTimerHandler(1,OPL2::TimerHandler,256);
|
|
if (THEOPL3::YMF262Init(1,OPL3_INTERNAL_FREQ,rate)) {
|
|
E_Exit("Can't create OPL3 Emulator");
|
|
};
|
|
THEOPL3::YMF262SetTimerHandler(0,THEOPL3::TimerHandler,0);
|
|
for (i=0;i<4;i++) {
|
|
IO_RegisterWriteHandler(0x388+i,OPL_Write,"OPL Write");
|
|
IO_RegisterReadHandler(0x388+i,OPL_Read,"OPL read");
|
|
IO_RegisterWriteHandler(base+i,OPL_Write,"OPL Write");
|
|
IO_RegisterReadHandler(base+i,OPL_Read,"OPL read");
|
|
}
|
|
IO_RegisterWriteHandler(base+8,OPL_Write,"OPL Write");
|
|
IO_RegisterWriteHandler(base+9,OPL_Write,"OPL Write");
|
|
IO_RegisterReadHandler(base+8,OPL_Read,"OPL read");
|
|
IO_RegisterReadHandler(base+9,OPL_Read,"OPL read");
|
|
|
|
|
|
opl.active=false;
|
|
opl.last_used=0;
|
|
opl.mode=oplmode;
|
|
|
|
opl.chan=MIXER_AddChannel(OPL_CallBack,rate,"ADLIB");
|
|
MIXER_SetMode(opl.chan,(opl.mode>OPL_opl2) ? MIXER_16STEREO : MIXER_16MONO);
|
|
MIXER_Enable(opl.chan,false);
|
|
};
|
|
|