113 lines
2.8 KiB
Text
113 lines
2.8 KiB
Text
|
/*
|
||
|
* This file is part of libsidplayfp, a SID player engine.
|
||
|
*
|
||
|
* Copyright 2011-2014 Leandro Nini <drfiemost@users.sourceforge.net>
|
||
|
* Copyright 2007-2010 Antti Lankila
|
||
|
* Copyright 2000-2001 Simon White
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
#ifndef SIDEMU_H
|
||
|
#define SIDEMU_H
|
||
|
|
||
|
#include <string>
|
||
|
|
||
|
#include "sidplayfp/SidConfig.h"
|
||
|
#include "sidplayfp/siddefs.h"
|
||
|
#include "sidplayfp/event.h"
|
||
|
|
||
|
#include "c64/c64sid.h"
|
||
|
|
||
|
#include "sidcxx11.h"
|
||
|
|
||
|
class sidbuilder;
|
||
|
class EventContext;
|
||
|
|
||
|
/**
|
||
|
* Inherit this class to create a new SID emulation.
|
||
|
*/
|
||
|
class sidemu : public libsidplayfp::c64sid
|
||
|
{
|
||
|
public:
|
||
|
/**
|
||
|
* Buffer size. 5000 is roughly 5 ms at 96 kHz
|
||
|
*/
|
||
|
enum
|
||
|
{
|
||
|
OUTPUTBUFFERSIZE = 5000
|
||
|
};
|
||
|
|
||
|
private:
|
||
|
sidbuilder* const m_builder;
|
||
|
|
||
|
protected:
|
||
|
static std::string m_credit;
|
||
|
|
||
|
protected:
|
||
|
static const char ERR_UNSUPPORTED_FREQ[];
|
||
|
static const char ERR_INVALID_SAMPLING[];
|
||
|
static const char ERR_INVALID_CHIP[];
|
||
|
|
||
|
protected:
|
||
|
EventContext *m_context;
|
||
|
|
||
|
event_clock_t m_accessClk;
|
||
|
|
||
|
short *m_buffer;
|
||
|
int m_bufferpos;
|
||
|
|
||
|
bool m_status;
|
||
|
bool m_locked;
|
||
|
|
||
|
std::string m_error;
|
||
|
|
||
|
public:
|
||
|
sidemu(sidbuilder *builder) :
|
||
|
m_builder(builder),
|
||
|
m_context(nullptr),
|
||
|
m_buffer(nullptr),
|
||
|
m_bufferpos(0),
|
||
|
m_status(true),
|
||
|
m_locked(false),
|
||
|
m_error("N/A") {}
|
||
|
virtual ~sidemu() {}
|
||
|
|
||
|
virtual void clock() = 0;
|
||
|
|
||
|
/// Set execution environment and lock sid to it
|
||
|
virtual bool lock(EventContext *env);
|
||
|
|
||
|
/// Unlock sid
|
||
|
virtual void unlock();
|
||
|
|
||
|
// Standard SID functions
|
||
|
virtual void voice(unsigned int num, bool mute) = 0;
|
||
|
virtual void model(SidConfig::sid_model_t model) = 0;
|
||
|
|
||
|
virtual void sampling(float systemfreq SID_UNUSED, float outputfreq SID_UNUSED,
|
||
|
SidConfig::sampling_method_t method SID_UNUSED, bool fast SID_UNUSED) {}
|
||
|
|
||
|
const char* error() const { return m_error.c_str(); }
|
||
|
|
||
|
sidbuilder* builder() const { return m_builder; }
|
||
|
|
||
|
int bufferpos() const { return m_bufferpos; }
|
||
|
void bufferpos(int pos) { m_bufferpos = pos; }
|
||
|
short *buffer() const { return m_buffer; }
|
||
|
};
|
||
|
|
||
|
#endif // SIDEMU_H
|