105 lines
2.4 KiB
Plaintext
105 lines
2.4 KiB
Plaintext
|
/*
|
||
|
* This file is part of libsidplayfp, a SID player engine.
|
||
|
*
|
||
|
* Copyright 2012-2014 Leandro Nini <drfiemost@users.sourceforge.net>
|
||
|
*
|
||
|
* 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 EXTRASIDBANK_H
|
||
|
#define EXTRASIDBANK_H
|
||
|
|
||
|
#include "Bank.h"
|
||
|
#include <vector>
|
||
|
#include <algorithm>
|
||
|
|
||
|
#include "c64/c64sid.h"
|
||
|
|
||
|
#include "sidcxx11.h"
|
||
|
|
||
|
namespace libsidplayfp
|
||
|
{
|
||
|
|
||
|
/**
|
||
|
* Extra SID bank.
|
||
|
*/
|
||
|
class ExtraSidBank final : public Bank
|
||
|
{
|
||
|
private:
|
||
|
typedef std::vector<c64sid*> sids_t;
|
||
|
|
||
|
private:
|
||
|
/**
|
||
|
* Size of mapping table. Each 32 bytes another SID chip base address
|
||
|
* can be assigned to.
|
||
|
*/
|
||
|
static const int MAPPER_SIZE = 8;
|
||
|
|
||
|
private:
|
||
|
/**
|
||
|
* SID mapping table.
|
||
|
* Maps a SID chip base address to a SID
|
||
|
* or to the underlying bank.
|
||
|
*/
|
||
|
Bank *mapper[MAPPER_SIZE];
|
||
|
|
||
|
sids_t sids;
|
||
|
|
||
|
private:
|
||
|
static void resetSID(sids_t::value_type &e) { e->reset(0xf); }
|
||
|
|
||
|
static unsigned int mapperIndex(int address) { return address >> 5 & (MAPPER_SIZE - 1); }
|
||
|
|
||
|
public:
|
||
|
virtual ~ExtraSidBank() {}
|
||
|
|
||
|
void reset()
|
||
|
{
|
||
|
std::for_each(sids.begin(), sids.end(), resetSID);
|
||
|
}
|
||
|
|
||
|
void resetSIDMapper(Bank *bank)
|
||
|
{
|
||
|
for (int i = 0; i < MAPPER_SIZE; i++)
|
||
|
mapper[i] = bank;
|
||
|
}
|
||
|
|
||
|
uint8_t peek(uint_least16_t addr) override
|
||
|
{
|
||
|
return mapper[mapperIndex(addr)]->peek(addr);
|
||
|
}
|
||
|
|
||
|
void poke(uint_least16_t addr, uint8_t data) override
|
||
|
{
|
||
|
mapper[mapperIndex(addr)]->poke(addr, data);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Set SID emulation.
|
||
|
*
|
||
|
* @param s the emulation
|
||
|
* @param address the address where to put the chip
|
||
|
*/
|
||
|
void addSID(c64sid *s, int address)
|
||
|
{
|
||
|
sids.push_back(s);
|
||
|
mapper[mapperIndex(address)] = s;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|