Epple-II/src/apple2.h

88 lines
2.2 KiB
C++

/*
epple2
Copyright (C) 2008 by Christopher A. Mosher <cmosher01@gmail.com>
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/>.
*/
#ifndef APPLE2_H
#define APPLE2_H
#include "timable.h"
#include "slots.h"
#include "videomode.h"
#include "keyboard.h"
#include "KeyRepeatHandler.h"
#include "addressbus.h"
#include "memory.h"
#include "memoryrandomaccess.h"
#include "picturegenerator.h"
#include "textcharacters.h"
#include "video.h"
#include "abstractcpu.h"
#include "cpu.h"
#include "paddles.h"
#include "paddlebuttonstates.h"
#include "speakerclicker.h"
#include "analogtv.h"
#include "powerupreset.h"
#include "cassettein.h"
#include "cassetteout.h"
#include "Emu6502.h"
#include <filesystem>
class Emulator;
class ScreenImage;
class Apple2 : public Timable
{
Slots slts;
VideoMode videoMode;
Keyboard kbd;
KeyRepeatHandler keyrepeater;
Paddles paddles;
SpeakerClicker speaker;
Memory rom;
MemoryRandomAccess ram;
CassetteIn cassetteIn;
CassetteOut cassetteOut;
AddressBus addressBus;
PictureGenerator picgen;
TextCharacters textRows;
Video video;
std::filesystem::path transistors;
AbstractCpu* cpu;
PowerUpReset powerUpReset;
int revision;
public:
Apple2(KeypressQueue& keypresses, PaddleButtonStates& paddleButtonStates, AnalogTV& tv, KeyboardBufferMode& buffered, ScreenImage& gui);
~Apple2();
void useEpple2Cpu();
void useVisual6502Cpu();
void powerOn();
void powerOff();
void reset();
virtual void tick();
KeyRepeatHandler &rept() { return this->keyrepeater; }
friend class Emulator;
};
#endif