mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 23:02:08 +00:00
84cc7cbdd2
This is to improve compile times because the MSVC compiler tends to become slow with large lists of source files in a single project. This new project is still our stripped down copy of libadl, not the original, because that project contains a large amount of baggage we do not need.
150 lines
4.7 KiB
C++
150 lines
4.7 KiB
C++
/*
|
|
* Copyright (C) 2017-2018 Vitaly Novichkov (Wohlstand)
|
|
*
|
|
* 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.1 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*/
|
|
|
|
#ifndef ONP_CHIP_BASE_H
|
|
#define ONP_CHIP_BASE_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
#if !defined(_MSC_VER) && (__cplusplus <= 199711L)
|
|
#define final
|
|
#define override
|
|
#endif
|
|
|
|
#if defined(ADLMIDI_ENABLE_HQ_RESAMPLER)
|
|
class VResampler;
|
|
#endif
|
|
|
|
#if defined(ADLMIDI_AUDIO_TICK_HANDLER)
|
|
extern void adl_audioTickHandler(void *instance, uint32_t chipId, uint32_t rate);
|
|
#endif
|
|
|
|
class OPLChipBase
|
|
{
|
|
public:
|
|
enum { nativeRate = 49716 };
|
|
protected:
|
|
uint32_t m_id;
|
|
uint32_t m_rate;
|
|
public:
|
|
OPLChipBase();
|
|
virtual ~OPLChipBase();
|
|
|
|
uint32_t chipId() const { return m_id; }
|
|
void setChipId(uint32_t id) { m_id = id; }
|
|
|
|
virtual bool canRunAtPcmRate() const = 0;
|
|
virtual bool isRunningAtPcmRate() const = 0;
|
|
virtual bool setRunningAtPcmRate(bool r) = 0;
|
|
#if defined(ADLMIDI_AUDIO_TICK_HANDLER)
|
|
virtual void setAudioTickHandlerInstance(void *instance) = 0;
|
|
#endif
|
|
|
|
virtual void setRate(uint32_t rate) = 0;
|
|
virtual uint32_t effectiveRate() const = 0;
|
|
virtual void reset() = 0;
|
|
virtual void writeReg(uint16_t addr, uint8_t data) = 0;
|
|
|
|
// extended
|
|
virtual void writePan(uint16_t addr, uint8_t data) { (void)addr; (void)data; }
|
|
|
|
virtual void nativePreGenerate() = 0;
|
|
virtual void nativePostGenerate() = 0;
|
|
virtual void nativeGenerate(int16_t *frame) = 0;
|
|
|
|
virtual void generate(int16_t *output, size_t frames) = 0;
|
|
virtual void generateAndMix(int16_t *output, size_t frames) = 0;
|
|
virtual void generate32(int32_t *output, size_t frames) = 0;
|
|
virtual void generateAndMix32(int32_t *output, size_t frames) = 0;
|
|
|
|
virtual const char* emulatorName() = 0;
|
|
private:
|
|
OPLChipBase(const OPLChipBase &c);
|
|
OPLChipBase &operator=(const OPLChipBase &c);
|
|
};
|
|
|
|
// A base class providing F-bounded generic and efficient implementations,
|
|
// supporting resampling of chip outputs
|
|
template <class T>
|
|
class OPLChipBaseT : public OPLChipBase
|
|
{
|
|
public:
|
|
OPLChipBaseT();
|
|
virtual ~OPLChipBaseT();
|
|
|
|
bool isRunningAtPcmRate() const override;
|
|
bool setRunningAtPcmRate(bool r) override;
|
|
#if defined(ADLMIDI_AUDIO_TICK_HANDLER)
|
|
void setAudioTickHandlerInstance(void *instance);
|
|
#endif
|
|
|
|
virtual void setRate(uint32_t rate) override;
|
|
uint32_t effectiveRate() const override;
|
|
virtual void reset() override;
|
|
void generate(int16_t *output, size_t frames) override;
|
|
void generateAndMix(int16_t *output, size_t frames) override;
|
|
void generate32(int32_t *output, size_t frames) override;
|
|
void generateAndMix32(int32_t *output, size_t frames) override;
|
|
private:
|
|
bool m_runningAtPcmRate;
|
|
#if defined(ADLMIDI_AUDIO_TICK_HANDLER)
|
|
void *m_audioTickHandlerInstance;
|
|
#endif
|
|
void nativeTick(int16_t *frame);
|
|
void setupResampler(uint32_t rate);
|
|
void resetResampler();
|
|
void resampledGenerate(int32_t *output);
|
|
#if defined(ADLMIDI_ENABLE_HQ_RESAMPLER)
|
|
VResampler *m_resampler;
|
|
#else
|
|
int32_t m_oldsamples[2];
|
|
int32_t m_samples[2];
|
|
int32_t m_samplecnt;
|
|
int32_t m_rateratio;
|
|
enum { rsm_frac = 10 };
|
|
#endif
|
|
// amplitude scale factors in and out of resampler, varying for chips;
|
|
// values are OK to "redefine", the static polymorphism will accept it.
|
|
enum { resamplerPreAmplify = 1, resamplerPostAttenuate = 1 };
|
|
};
|
|
|
|
// A base class which provides frame-by-frame interfaces on emulations which
|
|
// don't have a routine for it. It produces outputs in fixed size buffers.
|
|
// Fast register updates will suffer some latency because of buffering.
|
|
template <class T, unsigned Buffer = 256>
|
|
class OPLChipBaseBufferedT : public OPLChipBaseT<T>
|
|
{
|
|
public:
|
|
OPLChipBaseBufferedT()
|
|
: OPLChipBaseT<T>(), m_bufferIndex(0) {}
|
|
virtual ~OPLChipBaseBufferedT()
|
|
{}
|
|
public:
|
|
void reset() override;
|
|
void nativeGenerate(int16_t *frame) override;
|
|
protected:
|
|
virtual void nativeGenerateN(int16_t *output, size_t frames) = 0;
|
|
private:
|
|
unsigned m_bufferIndex;
|
|
int16_t m_buffer[2 * Buffer];
|
|
};
|
|
|
|
#include "opl_chip_base.tcc"
|
|
|
|
#endif // ONP_CHIP_BASE_H
|