1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
|
/*******************************************************************************
* Goggles Audio Player Library *
********************************************************************************
* Copyright (C) 2010-2021 by Sander Jansen. All Rights Reserved *
* --- *
* 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 3 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 General Public License for more details. *
* *
* You should have received a copy of the GNU General Public License *
* along with this program. If not, see http://www.gnu.org/licenses. *
********************************************************************************/
#include "ap_defs.h"
#include "ap_device.h"
#include "ap_utils.h"
namespace ap {
DeviceConfig:: DeviceConfig() {
}
DeviceConfig::~DeviceConfig(){
}
static const FXchar * const plugin_names[DeviceLast]={
"none",
"alsa",
"oss",
"pulse",
"jack",
"wav",
"sndio"
};
static FXbool ap_has_plugin(FXuchar device) {
#ifdef _WIN32
FXString path = FXPath::directory(FXSystem::getExecFilename()) + PATHSEPSTRING + FXSystem::dllName(FXString::value("gap_%s",plugin_names[device]));
#else
FXString path = FXPath::search(ap_get_environment("GOGGLESMM_PLUGIN_PATH",AP_PLUGIN_PATH),FXSystem::dllName(FXString::value("gap_%s",plugin_names[device])));
#endif
if (FXStat::exists(path) )
return true;
return false;
}
AlsaConfig::AlsaConfig() : device("default"), flags(0) {
}
AlsaConfig::AlsaConfig(const FXString & d,FXuint f) : device(d),flags(f) {
}
AlsaConfig::~AlsaConfig(){
}
void AlsaConfig::load(FXSettings & settings) {
device=settings.readStringEntry("alsa","device",device.text());
if (settings.readBoolEntry("alsa","use-mmap",false))
flags|=DeviceMMap;
else
flags&=~DeviceMMap;
if (settings.readBoolEntry("alsa","no-resample",false))
flags|=DeviceNoResample;
else
flags&=~DeviceNoResample;
}
void AlsaConfig::save(FXSettings & settings) const {
settings.writeStringEntry("alsa","device",device.text());
settings.writeBoolEntry("alsa","use-mmap",flags&DeviceMMap);
settings.writeBoolEntry("alsa","no-resample",flags&DeviceNoResample);
}
OSSConfig::OSSConfig() : device("/dev/dsp"), flags(0) {
}
OSSConfig::OSSConfig(const FXString & d): device(d), flags(0) {
}
OSSConfig::~OSSConfig(){
}
void OSSConfig::load(FXSettings & settings) {
device=settings.readStringEntry("oss","device",device.text());
}
void OSSConfig::save(FXSettings & settings) const {
settings.writeStringEntry("oss","device",device.text());
}
SndioConfig::SndioConfig() : device("default") {
}
SndioConfig::SndioConfig(const FXString & d): device(d) {
}
SndioConfig::~SndioConfig(){
}
void SndioConfig::load(FXSettings & settings) {
device=settings.readStringEntry("sndio","device",device.text());
}
void SndioConfig::save(FXSettings & settings) const {
settings.writeStringEntry("sndio","device",device.text());
}
OutputConfig::OutputConfig() {
#if defined(__linux__) && defined(HAVE_ALSA)
device=DeviceAlsa;
#elif defined(HAVE_OSS)
device=DeviceOSS;
#elif defined(HAVE_PULSE)
device=DevicePulse;
#elif defined(HAVE_JACK)
device=DeviceJack;
#elif defined(HAVE_SNDIO)
device=DeviceSndio;
#else
device=DeviceWav;
#endif
}
#define AP_ENABLE_PLUGIN(plugins,device) (plugins|=(1<<(device-1)))
FXuint OutputConfig::devices() {
FXuint plugins=0;
#ifdef HAVE_ALSA
if (ap_has_plugin(DeviceAlsa))
AP_ENABLE_PLUGIN(plugins,DeviceAlsa);
#endif
#ifdef HAVE_OSS
if (ap_has_plugin(DeviceOSS))
AP_ENABLE_PLUGIN(plugins,DeviceOSS);
#endif
#ifdef HAVE_PULSE
if (ap_has_plugin(DevicePulse))
AP_ENABLE_PLUGIN(plugins,DevicePulse);
#endif
#ifdef HAVE_JACK
if (ap_has_plugin(DeviceJack))
AP_ENABLE_PLUGIN(plugins,DeviceJack);
#endif
#ifdef HAVE_SNDIO
if (ap_has_plugin(DeviceSndio))
AP_ENABLE_PLUGIN(plugins,DeviceSndio);
#endif
if (ap_has_plugin(DeviceWav))
AP_ENABLE_PLUGIN(plugins,DeviceWav);
return plugins;
}
FXString OutputConfig::plugin() const {
if (device>=DeviceAlsa && device<DeviceLast)
return plugin_names[device];
else
return FXString::null;
}
void OutputConfig::load(FXSettings & settings) {
FXString output=settings.readStringEntry("engine","output",plugin_names[device]);
for (FXint i=DeviceAlsa;i<DeviceLast;i++) {
if (output==plugin_names[i]){
device=i;
break;
}
}
alsa.load(settings);
oss.load(settings);
sndio.load(settings);
}
void OutputConfig::save(FXSettings & settings) const {
/*
FXuchar major,minor;
ap_get_version(major,minor);
settings.writeIntEntry("version","major",major);
settings.writeIntEntry("version","minor",minor);
*/
if (device>=DeviceAlsa && device<DeviceLast)
settings.writeStringEntry("engine","output",plugin_names[device]);
else
settings.deleteEntry("engine","output");
alsa.save(settings);
oss.save(settings);
sndio.save(settings);
}
}
|