0a7cb3a43c
For a whole lot of configure options, I put #if...#endif around code that is specific to the option, even in files which are normally only compiled when the option is on. This allows me to create a MS Visual C++ 6.0 workspace that supports many of these options. The workspace will basically compile every file all the time, but the code for disabled options will be commented out by the #if...#endif. This may one day lead to simplification of the Makefiles and configure scripts, but for the moment I'm leaving Makefiles and configure scripts alone. Affected options: BX_SUPPORT_APIC (cpu/apic.cc) BX_SUPPORT_X86_64 (cpu/*64.cc) BX_DEBUGGER (debug/*) BX_DISASM (disasm/*) BX_WITH_nameofgui (gui/*) BX_SUPPORT_CDROM (iodev/cdrom.cc) BX_NE2K_SUPPORT (iodev/eth*.cc, iodev/ne2k.cc) BX_SUPPORT_APIC (iodev/ioapic.cc) BX_IODEBUG_SUPPORT (iodev/iodebug.cc) BX_PCI_SUPPORT (iodev/pci*.cc) BX_SUPPORT_SB16 (iodev/sb*.cc) Modified Files: cpu/apic.cc cpu/arith64.cc cpu/ctrl_xfer64.cc cpu/data_xfer64.cc cpu/fetchdecode64.cc cpu/logical64.cc cpu/mult64.cc cpu/resolve64.cc cpu/shift64.cc cpu/stack64.cc debug/Makefile.in debug/crc.cc debug/dbg_main.cc debug/lexer.l debug/linux.cc debug/parser.c debug/parser.y disasm/dis_decode.cc disasm/dis_groups.cc gui/amigaos.cc gui/beos.cc gui/carbon.cc gui/macintosh.cc gui/rfb.cc gui/sdl.cc gui/term.cc gui/win32.cc gui/wx.cc gui/wxdialog.cc gui/wxmain.cc gui/x.cc iodev/cdrom.cc iodev/eth.cc iodev/eth_arpback.cc iodev/eth_fbsd.cc iodev/eth_linux.cc iodev/eth_null.cc iodev/eth_packetmaker.cc iodev/eth_tap.cc iodev/eth_tuntap.cc iodev/eth_win32.cc iodev/ioapic.cc iodev/iodebug.cc iodev/ne2k.cc iodev/pci.cc iodev/pci2isa.cc iodev/sb16.cc iodev/soundlnx.cc iodev/soundwin.cc
228 lines
5.1 KiB
C++
228 lines
5.1 KiB
C++
/////////////////////////////////////////////////////////////////////////
|
|
// $Id: soundlnx.cc,v 1.5 2002-11-19 05:47:45 bdenney Exp $
|
|
/////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// Copyright (C) 2001 MandrakeSoft S.A.
|
|
//
|
|
// MandrakeSoft S.A.
|
|
// 43, rue d'Aboukir
|
|
// 75002 Paris - France
|
|
// http://www.linux-mandrake.com/
|
|
// http://www.mandrakesoft.com/
|
|
//
|
|
// This library is free software; you can redistribute it and/or
|
|
// modify it under the terms of the GNU Lesser General Public
|
|
// License as published by the Free Software Foundation; either
|
|
// version 2 of the License, or (at your option) any later version.
|
|
//
|
|
// This library 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
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, write to the Free Software
|
|
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
// This file (SOUNDLNX.CC) written and donated by Josef Drexler
|
|
|
|
|
|
#include "bochs.h"
|
|
#if defined(linux) && BX_SUPPORT_SB16
|
|
#define LOG_THIS bx_sb16.
|
|
|
|
#include <errno.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/soundcard.h>
|
|
|
|
bx_sound_linux_c::bx_sound_linux_c(bx_sb16_c *sb16)
|
|
:bx_sound_output_c(sb16)
|
|
{
|
|
this->sb16 = sb16;
|
|
midi = NULL;
|
|
wavedevice = NULL;
|
|
wave = -1;
|
|
}
|
|
|
|
bx_sound_linux_c::~bx_sound_linux_c()
|
|
{
|
|
// nothing for now
|
|
}
|
|
|
|
|
|
int bx_sound_linux_c::waveready()
|
|
{
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
int bx_sound_linux_c::midiready()
|
|
{
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
int bx_sound_linux_c::openmidioutput(char *device)
|
|
{
|
|
if ( (device == NULL) || (strlen(device) < 1) )
|
|
return BX_SOUND_OUTPUT_ERR;
|
|
|
|
midi = fopen(device,"w");
|
|
|
|
if (midi == NULL)
|
|
{
|
|
WRITELOG( MIDILOG(2), "Couldn't open midi output device %s: %s.",
|
|
device, strerror(errno));
|
|
return BX_SOUND_OUTPUT_ERR;
|
|
}
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
|
|
int bx_sound_linux_c::sendmidicommand(int delta, int command, int length, Bit8u data[])
|
|
{
|
|
UNUSED(delta);
|
|
// BX_PANIC(("Sendmidicommand!!");
|
|
|
|
fputc(command, midi);
|
|
fwrite(data, 1, length, midi);
|
|
fflush(midi); // to start playing immediately
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
|
|
int bx_sound_linux_c::closemidioutput()
|
|
{
|
|
fclose(midi);
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
|
|
int bx_sound_linux_c::openwaveoutput(char *device)
|
|
{
|
|
int length = strlen(device) + 1;
|
|
|
|
if (wavedevice != NULL)
|
|
delete(wavedevice);
|
|
|
|
wavedevice = new char[length];
|
|
|
|
if (wavedevice == NULL)
|
|
return BX_SOUND_OUTPUT_ERR;
|
|
|
|
strncpy(wavedevice, device, length);
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
int bx_sound_linux_c::startwaveplayback(int frequency, int bits, int stereo, int format)
|
|
{
|
|
int fmt, ret;
|
|
int signeddata = format & 1;
|
|
|
|
if ( (wavedevice == NULL) || (strlen(wavedevice) < 1) )
|
|
return BX_SOUND_OUTPUT_ERR;
|
|
|
|
if (wave == -1)
|
|
wave = open(wavedevice, O_WRONLY);
|
|
else
|
|
if ( (frequency == oldfreq) &&
|
|
(bits == oldbits) &&
|
|
(stereo == oldstereo) &&
|
|
(format == oldformat) )
|
|
return BX_SOUND_OUTPUT_OK; // nothing to do
|
|
|
|
oldfreq = frequency;
|
|
oldbits = bits;
|
|
oldstereo = stereo;
|
|
oldformat = format;
|
|
|
|
if (wave == -1)
|
|
return BX_SOUND_OUTPUT_ERR;
|
|
|
|
if (bits == 16)
|
|
if (signeddata == 1)
|
|
fmt = AFMT_S16_LE;
|
|
else
|
|
fmt = AFMT_U16_LE;
|
|
else if (bits == 8)
|
|
if (signeddata == 1)
|
|
fmt = AFMT_S8;
|
|
else
|
|
fmt = AFMT_U8;
|
|
else
|
|
return BX_SOUND_OUTPUT_ERR;
|
|
|
|
// set frequency etc.
|
|
ret = ioctl(wave, SNDCTL_DSP_RESET);
|
|
if (ret != 0)
|
|
WRITELOG( WAVELOG(4), "ioctl(SNDCTL_DSP_RESET): %s", strerror(errno));
|
|
|
|
/*
|
|
ret = ioctl(wave, SNDCTL_DSP_SETFRAGMENT, &fragment);
|
|
if (ret != 0)
|
|
WRITELOG( WAVELOG(4), "ioctl(SNDCTL_DSP_SETFRAGMENT, %d): %s",
|
|
fragment, strerror(errno));
|
|
*/
|
|
|
|
ret = ioctl(wave, SNDCTL_DSP_SETFMT, &fmt);
|
|
if (ret != 0) // abort if the format is unknown, to avoid playing noise
|
|
{
|
|
WRITELOG( WAVELOG(4), "ioctl(SNDCTL_DSP_SETFMT, %d): %s",
|
|
fmt, strerror(errno));
|
|
return BX_SOUND_OUTPUT_ERR;
|
|
}
|
|
|
|
ret = ioctl(wave, SNDCTL_DSP_STEREO, &stereo);
|
|
if (ret != 0)
|
|
WRITELOG( WAVELOG(4), "ioctl(SNDCTL_DSP_STEREO, %d): %s",
|
|
stereo, strerror(errno));
|
|
|
|
ret = ioctl(wave, SNDCTL_DSP_SPEED, &frequency);
|
|
if (ret != 0)
|
|
WRITELOG( WAVELOG(4), "ioctl(SNDCTL_DSP_SPEED, %d): %s",
|
|
frequency, strerror(errno));
|
|
|
|
// ioctl(wave, SNDCTL_DSP_GETBLKSIZE, &fragment);
|
|
// WRITELOG( WAVELOG(4), "current output block size is %d", fragment);
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
int bx_sound_linux_c::sendwavepacket(int length, Bit8u data[])
|
|
{
|
|
int ret;
|
|
|
|
ret = write(wave, data, length);
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
int bx_sound_linux_c::stopwaveplayback()
|
|
{
|
|
// ioctl(wave, SNDCTL_DSP_SYNC);
|
|
// close(wave);
|
|
// wave = -1;
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
int bx_sound_linux_c::closewaveoutput()
|
|
{
|
|
if (wavedevice != NULL)
|
|
delete(wavedevice);
|
|
|
|
if (wave != -1)
|
|
{
|
|
close(wave);
|
|
wave = -1;
|
|
}
|
|
|
|
wavedevice = NULL;
|
|
|
|
return BX_SOUND_OUTPUT_OK;
|
|
}
|
|
|
|
#endif // defined(linux)
|