blob: 40faa11a27835778dd69e4c7827defadc9747aa8 (
plain) (
tree)
|
|
/***************************************************************************
* Copyright (C) 2010-2013 by Ilya Kotov *
* forkotov02@hotmail.ru *
* *
* 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 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., *
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. *
***************************************************************************/
#include <QApplication>
#include <QSettings>
#include <QFile>
extern "C"{
#include <wildmidi_lib.h>
}
#include <qmmp/qmmp.h>
#include "wildmidihelper.h"
WildMidiHelper *WildMidiHelper::m_instance = 0;
WildMidiHelper::WildMidiHelper(QObject *parent) :
QObject(parent)
{
m_inited = false;
m_sample_rate = 0;
}
WildMidiHelper::~WildMidiHelper()
{
if(m_inited)
WildMidi_Shutdown();
m_instance = 0;
}
bool WildMidiHelper::initialize()
{
m_mutex.lock();
if(m_inited)
{
m_mutex.unlock();
return true;
}
QSettings settings(Qmmp::configFile(), QSettings::IniFormat);
settings.beginGroup("Midi");
unsigned short int mixer_options = 0;
QString conf_path = configFiles().isEmpty() ? QString() : configFiles().first();
conf_path = settings.value("conf_path", conf_path).toString();
if(conf_path.isEmpty() || !QFile::exists(conf_path))
{
qWarning("WildMidiHelper: invalid config path: %s", qPrintable(conf_path));
m_mutex.unlock();
return false;
}
unsigned short int sample_rate = settings.value("sample_rate", 44100).toInt();
|