2002-01-18 16:02:30 +00:00
|
|
|
//============================================================================
|
|
|
|
//
|
|
|
|
// SSSS tt lll lll
|
|
|
|
// SS SS tt ll ll
|
|
|
|
// SS tttttt eeee ll ll aaaa
|
|
|
|
// SSSS tt ee ee ll ll aa
|
|
|
|
// SS tt eeeeee ll ll aaaaa -- "An Atari 2600 VCS Emulator"
|
|
|
|
// SS SS tt ee ll ll aa aa
|
|
|
|
// SSSS ttt eeeee llll llll aaaaa
|
|
|
|
//
|
2019-12-31 17:18:56 +00:00
|
|
|
// Copyright (c) 1995-2020 by Bradford W. Mott, Stephen Anthony
|
2010-04-10 21:37:23 +00:00
|
|
|
// and the Stella Team
|
2002-01-18 16:02:30 +00:00
|
|
|
//
|
2010-01-10 03:23:32 +00:00
|
|
|
// See the file "License.txt" for information on usage and redistribution of
|
2002-01-18 16:02:30 +00:00
|
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
|
|
//============================================================================
|
|
|
|
|
2009-11-08 16:46:10 +00:00
|
|
|
#ifndef CARTRIDGEF0_HXX
|
|
|
|
#define CARTRIDGEF0_HXX
|
2002-01-18 16:02:30 +00:00
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
#include "CartEnhanced.hxx"
|
2013-04-06 21:04:11 +00:00
|
|
|
#ifdef DEBUGGER_SUPPORT
|
|
|
|
#include "CartF0Widget.hxx"
|
|
|
|
#endif
|
2002-01-18 16:02:30 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Cartridge class used for Dynacom Megaboy
|
|
|
|
There are 16 4K banks.
|
|
|
|
Accessing $1FF0 switches to next bank.
|
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
@author Eckhard Stolberg, Thomas Jentzsch
|
2002-01-18 16:02:30 +00:00
|
|
|
*/
|
2020-04-03 15:08:42 +00:00
|
|
|
class CartridgeF0 : public CartridgeEnhanced
|
2002-01-18 16:02:30 +00:00
|
|
|
{
|
2013-04-06 21:04:11 +00:00
|
|
|
friend class CartridgeF0Widget;
|
|
|
|
|
2002-01-18 16:02:30 +00:00
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Create a new cartridge using the specified image
|
|
|
|
|
2010-08-19 21:48:28 +00:00
|
|
|
@param image Pointer to the ROM image
|
2012-01-02 20:31:42 +00:00
|
|
|
@param size The size of the ROM image
|
2018-12-18 13:54:40 +00:00
|
|
|
@param md5 The md5sum of the ROM image
|
2010-08-19 21:48:28 +00:00
|
|
|
@param settings A reference to the various settings (read-only)
|
2020-06-10 19:29:27 +00:00
|
|
|
@param bsSize The size specified by the bankswitching scheme
|
2002-01-18 16:02:30 +00:00
|
|
|
*/
|
2019-09-16 23:59:08 +00:00
|
|
|
CartridgeF0(const ByteBuffer& image, size_t size, const string& md5,
|
2020-06-10 19:29:27 +00:00
|
|
|
const Settings& settings, size_t bsSize = 64_KB);
|
2015-12-29 21:28:10 +00:00
|
|
|
virtual ~CartridgeF0() = default;
|
2002-01-18 16:02:30 +00:00
|
|
|
|
|
|
|
public:
|
OK, another huge commit. I need to commit this now, because things are
starting to go out of sync on my development machines. OK, where to
begin ...
Changed state file format, so older state files will no longer work. The
changes aren't finalized yet, so expect more breakage.
Added getByte() and putByte() methods to serialized data, resulting in
smaller state files (previously, 1-byte values were stored as 4-byte ints).
Totally reworked controller handling code. Controller state is now
explicitly set with an ::update() method, making it easier to serialize.
Some work is still required on the serialization stuff for more advanced
controllers.
Added a 'Serializable' interface to all carts, device, controllers, etc
that can be (de)serialized. This fixes a long-standing design issue
which I personally caused many years ago.
Console switches state (SWCHB register) is now saved to state files.
Added beginnings of movie support. Basically, this saves an initial
state file, and thereafter continuously saves controller and console
switches state. Support is still somewhat rough and there's no UI for
it, but it does successfully save and later load/play state movies.
Removed specific events for driving controllers, and have them use
joystick events instead. This has the nice side effect that
joystick direction remapping 'just works' for driving controllers too.
Fixed issues with paddle emulation seen in 'Night Driver' ROM. Related
to this, removed a hack wrt paddles when grabmouse is enabled. There's
still some work to do when using the mouse to emulate paddles, but the
Stelladaptor and real paddles work fine.
Added beginnings of TrackBall CX-22 controller emulation. It doesn't
actually do anything yet, but the class is there :)
Probably some other stuff that I'm forgetting ...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1385 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2007-10-03 21:41:19 +00:00
|
|
|
/**
|
|
|
|
Get a descriptor for the device name (used in error checking).
|
|
|
|
|
|
|
|
@return The name of the object
|
|
|
|
*/
|
2015-07-10 18:59:03 +00:00
|
|
|
string name() const override { return "CartridgeF0"; }
|
OK, another huge commit. I need to commit this now, because things are
starting to go out of sync on my development machines. OK, where to
begin ...
Changed state file format, so older state files will no longer work. The
changes aren't finalized yet, so expect more breakage.
Added getByte() and putByte() methods to serialized data, resulting in
smaller state files (previously, 1-byte values were stored as 4-byte ints).
Totally reworked controller handling code. Controller state is now
explicitly set with an ::update() method, making it easier to serialize.
Some work is still required on the serialization stuff for more advanced
controllers.
Added a 'Serializable' interface to all carts, device, controllers, etc
that can be (de)serialized. This fixes a long-standing design issue
which I personally caused many years ago.
Console switches state (SWCHB register) is now saved to state files.
Added beginnings of movie support. Basically, this saves an initial
state file, and thereafter continuously saves controller and console
switches state. Support is still somewhat rough and there's no UI for
it, but it does successfully save and later load/play state movies.
Removed specific events for driving controllers, and have them use
joystick events instead. This has the nice side effect that
joystick direction remapping 'just works' for driving controllers too.
Fixed issues with paddle emulation seen in 'Night Driver' ROM. Related
to this, removed a hack wrt paddles when grabmouse is enabled. There's
still some work to do when using the mouse to emulate paddles, but the
Stelladaptor and real paddles work fine.
Added beginnings of TrackBall CX-22 controller emulation. It doesn't
actually do anything yet, but the class is there :)
Probably some other stuff that I'm forgetting ...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1385 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2007-10-03 21:41:19 +00:00
|
|
|
|
2013-04-06 21:04:11 +00:00
|
|
|
#ifdef DEBUGGER_SUPPORT
|
|
|
|
/**
|
|
|
|
Get debugger widget responsible for accessing the inner workings
|
|
|
|
of the cart.
|
|
|
|
*/
|
2013-08-26 13:01:29 +00:00
|
|
|
CartDebugWidget* debugWidget(GuiObject* boss, const GUI::Font& lfont,
|
2015-07-10 18:59:03 +00:00
|
|
|
const GUI::Font& nfont, int x, int y, int w, int h) override
|
2013-04-06 21:04:11 +00:00
|
|
|
{
|
2013-08-26 13:01:29 +00:00
|
|
|
return new CartridgeF0Widget(boss, lfont, nfont, x, y, w, h, *this);
|
2013-04-06 21:04:11 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2020-04-04 08:53:14 +00:00
|
|
|
private:
|
2020-04-04 16:09:38 +00:00
|
|
|
bool checkSwitchBank(uInt16 address, uInt8 value = 0) override;
|
2002-01-18 16:02:30 +00:00
|
|
|
|
2020-04-04 21:04:41 +00:00
|
|
|
uInt16 hotspot() const override { return 0x1FF0; }
|
2002-01-18 16:02:30 +00:00
|
|
|
|
2020-04-03 15:08:42 +00:00
|
|
|
uInt16 getStartBank() const override { return 15; }
|
2015-12-05 01:30:17 +00:00
|
|
|
|
2015-04-26 19:02:42 +00:00
|
|
|
private:
|
|
|
|
// Following constructors and assignment operators not supported
|
|
|
|
CartridgeF0() = delete;
|
|
|
|
CartridgeF0(const CartridgeF0&) = delete;
|
|
|
|
CartridgeF0(CartridgeF0&&) = delete;
|
|
|
|
CartridgeF0& operator=(const CartridgeF0&) = delete;
|
|
|
|
CartridgeF0& operator=(CartridgeF0&&) = delete;
|
2002-01-18 16:02:30 +00:00
|
|
|
};
|
|
|
|
|
2007-01-14 16:17:57 +00:00
|
|
|
#endif
|