2001-12-27 19:54:36 +00:00
|
|
|
//============================================================================
|
|
|
|
//
|
2016-12-30 00:00:30 +00:00
|
|
|
// SSSS tt lll lll
|
|
|
|
// SS SS tt ll ll
|
|
|
|
// SS tttttt eeee ll ll aaaa
|
2001-12-27 19:54:36 +00:00
|
|
|
// 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
|
|
|
|
//
|
2024-01-01 16:08:25 +00:00
|
|
|
// Copyright (c) 1995-2024 by Bradford W. Mott, Stephen Anthony
|
2010-04-10 21:37:23 +00:00
|
|
|
// and the Stella Team
|
2001-12-27 19:54:36 +00:00
|
|
|
//
|
2010-01-10 03:23:32 +00:00
|
|
|
// See the file "License.txt" for information on usage and redistribution of
|
2001-12-27 19:54:36 +00:00
|
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
#ifndef CARTRIDGE4K_HXX
|
|
|
|
#define CARTRIDGE4K_HXX
|
|
|
|
|
|
|
|
class System;
|
|
|
|
|
|
|
|
#include "bspf.hxx"
|
2020-04-07 06:24:06 +00:00
|
|
|
#include "CartEnhanced.hxx"
|
2013-04-04 21:38:22 +00:00
|
|
|
#ifdef DEBUGGER_SUPPORT
|
|
|
|
#include "Cart4KWidget.hxx"
|
|
|
|
#endif
|
2001-12-27 19:54:36 +00:00
|
|
|
|
|
|
|
/**
|
2016-12-30 00:00:30 +00:00
|
|
|
This is the standard Atari 4K cartridge. These cartridges are
|
2001-12-27 19:54:36 +00:00
|
|
|
not bankswitched.
|
|
|
|
|
2020-04-07 06:24:06 +00:00
|
|
|
@author Bradford W. Mott, Thomas Jentzsch
|
2001-12-27 19:54:36 +00:00
|
|
|
*/
|
2020-04-07 06:24:06 +00:00
|
|
|
class Cartridge4K : public CartridgeEnhanced
|
2001-12-27 19:54:36 +00:00
|
|
|
{
|
2013-04-05 13:29:54 +00:00
|
|
|
friend class Cartridge4KWidget;
|
|
|
|
|
2001-12-27 19:54:36 +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
|
2001-12-27 19:54:36 +00:00
|
|
|
*/
|
2022-12-19 23:03:19 +00:00
|
|
|
Cartridge4K(const ByteBuffer& image, size_t size, string_view md5,
|
2020-06-10 19:29:27 +00:00
|
|
|
const Settings& settings, size_t bsSize = 4_KB);
|
2020-08-17 13:08:43 +00:00
|
|
|
~Cartridge4K() override = default;
|
2001-12-27 19:54:36 +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 "Cartridge4K"; }
|
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-04 21:38:22 +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-04 21:38:22 +00:00
|
|
|
{
|
2013-08-26 13:01:29 +00:00
|
|
|
return new Cartridge4KWidget(boss, lfont, nfont, x, y, w, h, *this);
|
2013-04-04 21:38:22 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2001-12-27 19:54:36 +00:00
|
|
|
private:
|
2022-08-21 22:03:08 +00:00
|
|
|
bool checkSwitchBank(uInt16, uInt8) override { return false; }
|
2015-04-26 19:02:42 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Following constructors and assignment operators not supported
|
|
|
|
Cartridge4K() = delete;
|
|
|
|
Cartridge4K(const Cartridge4K&) = delete;
|
|
|
|
Cartridge4K(Cartridge4K&&) = delete;
|
|
|
|
Cartridge4K& operator=(const Cartridge4K&) = delete;
|
|
|
|
Cartridge4K& operator=(Cartridge4K&&) = delete;
|
2001-12-27 19:54:36 +00:00
|
|
|
};
|
|
|
|
|
2007-01-14 16:17:57 +00:00
|
|
|
#endif
|