2001-12-27 19:54:36 +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
|
|
|
|
//
|
2009-01-01 18:13:40 +00:00
|
|
|
// Copyright (c) 1995-2009 by Bradford W. Mott and the Stella team
|
2001-12-27 19:54:36 +00:00
|
|
|
//
|
|
|
|
// See the file "license" for information on usage and redistribution of
|
|
|
|
// this file, and for a DISCLAIMER OF ALL WARRANTIES.
|
|
|
|
//
|
2009-05-13 13:55:40 +00:00
|
|
|
// $Id$
|
2001-12-27 19:54:36 +00:00
|
|
|
//============================================================================
|
|
|
|
|
|
|
|
#ifndef CARTRIDGE_HXX
|
|
|
|
#define CARTRIDGE_HXX
|
|
|
|
|
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
|
|
|
#include <fstream>
|
2009-06-16 17:17:33 +00:00
|
|
|
#include <sstream>
|
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
|
|
|
|
2001-12-27 19:54:36 +00:00
|
|
|
class Cartridge;
|
|
|
|
class System;
|
2006-11-08 00:09:53 +00:00
|
|
|
class Properties;
|
|
|
|
class Settings;
|
2001-12-27 19:54:36 +00:00
|
|
|
|
|
|
|
#include "bspf.hxx"
|
2009-06-03 14:49:42 +00:00
|
|
|
#include "Array.hxx"
|
2001-12-27 19:54:36 +00:00
|
|
|
#include "Device.hxx"
|
|
|
|
|
|
|
|
/**
|
|
|
|
A cartridge is a device which contains the machine code for a
|
|
|
|
game and handles any bankswitching performed by the cartridge.
|
|
|
|
|
|
|
|
@author Bradford W. Mott
|
2009-05-13 13:55:40 +00:00
|
|
|
@version $Id$
|
2001-12-27 19:54:36 +00:00
|
|
|
*/
|
|
|
|
class Cartridge : public Device
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
/**
|
|
|
|
Create a new cartridge object allocated on the heap. The
|
|
|
|
type of cartridge created depends on the properties object.
|
|
|
|
|
2006-11-08 00:09:53 +00:00
|
|
|
@param image A pointer to the ROM image
|
|
|
|
@param size The size of the ROM image
|
2009-06-16 17:17:33 +00:00
|
|
|
@param md5 The md5sum for the given ROM image (can be updated)
|
|
|
|
@param name The name of the ROM (can be updated)
|
|
|
|
@param type The bankswitch type of the ROM image
|
2006-11-08 00:09:53 +00:00
|
|
|
@param settings The settings associated with the system
|
|
|
|
@return Pointer to the new cartridge object allocated on the heap
|
2001-12-27 19:54:36 +00:00
|
|
|
*/
|
2009-06-16 17:17:33 +00:00
|
|
|
static Cartridge* create(const uInt8* image, uInt32 size, string& md5,
|
|
|
|
string& name, string type, Settings& settings);
|
2001-12-27 19:54:36 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Create a new cartridge
|
|
|
|
*/
|
|
|
|
Cartridge();
|
|
|
|
|
|
|
|
/**
|
|
|
|
Destructor
|
|
|
|
*/
|
|
|
|
virtual ~Cartridge();
|
|
|
|
|
2006-12-28 18:31:27 +00:00
|
|
|
/**
|
|
|
|
Query some information about this cartridge.
|
|
|
|
*/
|
|
|
|
static const string& about() { return myAboutString; }
|
|
|
|
|
2007-01-14 16:17:57 +00:00
|
|
|
/**
|
|
|
|
Save the internal (patched) ROM image.
|
|
|
|
|
|
|
|
@param out The output file stream to save the image
|
|
|
|
*/
|
|
|
|
bool save(ofstream& out);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Lock/unlock bankswitching capability.
|
|
|
|
*/
|
2008-03-28 23:29:14 +00:00
|
|
|
void lockBank() { myBankLocked = true; }
|
|
|
|
void unlockBank() { myBankLocked = false; }
|
2005-10-12 03:32:28 +00:00
|
|
|
|
2009-06-03 14:49:42 +00:00
|
|
|
public:
|
Added support for accessing/modifying extended RAM (aka SuperChip) from
the debugger RAM UI. A scrollbar is now present, which can scroll
through each 128 byte 'bank'. Labels indicate the current readport,
so you can distinguish between different areas of RAM. For now,
F4SC, F6SC, F8SC, and FASC have been converted, but I'm looking into the
other schemes now.
The RAM UI takes care of all read/write port issues. From the POV of
the UI, the RAM can be treated as zero-page; translation is done
behind the scene. Searching/comparing and change-tracking are also
supported.
The 'ram' command in the debugger prompt now reflects all RAM, and
readport/writeport addresses are shown, making it easier to use the
command withot having to look up the offsets.
Debugger width has been bumped to 1050 pixels wide to accomodate the
new functionality. We'll see how much trouble this causes ...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1747 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2009-06-02 17:25:14 +00:00
|
|
|
/**
|
2009-06-03 14:49:42 +00:00
|
|
|
The following list contains addressable areas of ROM that are mapped
|
|
|
|
to RAM (usually Superchip, but there are other types). Since such
|
|
|
|
RAM is normally mapped in at different addresses for read and write
|
|
|
|
ports, read and write offsets must be considered.
|
Added support for accessing/modifying extended RAM (aka SuperChip) from
the debugger RAM UI. A scrollbar is now present, which can scroll
through each 128 byte 'bank'. Labels indicate the current readport,
so you can distinguish between different areas of RAM. For now,
F4SC, F6SC, F8SC, and FASC have been converted, but I'm looking into the
other schemes now.
The RAM UI takes care of all read/write port issues. From the POV of
the UI, the RAM can be treated as zero-page; translation is done
behind the scene. Searching/comparing and change-tracking are also
supported.
The 'ram' command in the debugger prompt now reflects all RAM, and
readport/writeport addresses are shown, making it easier to use the
command withot having to look up the offsets.
Debugger width has been bumped to 1050 pixels wide to accomodate the
new functionality. We'll see how much trouble this causes ...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1747 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2009-06-02 17:25:14 +00:00
|
|
|
|
2009-06-03 14:49:42 +00:00
|
|
|
@return List of addressable RAM areas (can be empty)
|
Added support for accessing/modifying extended RAM (aka SuperChip) from
the debugger RAM UI. A scrollbar is now present, which can scroll
through each 128 byte 'bank'. Labels indicate the current readport,
so you can distinguish between different areas of RAM. For now,
F4SC, F6SC, F8SC, and FASC have been converted, but I'm looking into the
other schemes now.
The RAM UI takes care of all read/write port issues. From the POV of
the UI, the RAM can be treated as zero-page; translation is done
behind the scene. Searching/comparing and change-tracking are also
supported.
The 'ram' command in the debugger prompt now reflects all RAM, and
readport/writeport addresses are shown, making it easier to use the
command withot having to look up the offsets.
Debugger width has been bumped to 1050 pixels wide to accomodate the
new functionality. We'll see how much trouble this causes ...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1747 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2009-06-02 17:25:14 +00:00
|
|
|
*/
|
2009-06-03 14:49:42 +00:00
|
|
|
struct RamArea {
|
|
|
|
uInt16 start; uInt16 size; uInt16 roffset; uInt16 woffset;
|
|
|
|
};
|
|
|
|
typedef Common::Array<RamArea> RamAreaList;
|
|
|
|
const RamAreaList& ramAreas() { return myRamAreaList; }
|
Added support for accessing/modifying extended RAM (aka SuperChip) from
the debugger RAM UI. A scrollbar is now present, which can scroll
through each 128 byte 'bank'. Labels indicate the current readport,
so you can distinguish between different areas of RAM. For now,
F4SC, F6SC, F8SC, and FASC have been converted, but I'm looking into the
other schemes now.
The RAM UI takes care of all read/write port issues. From the POV of
the UI, the RAM can be treated as zero-page; translation is done
behind the scene. Searching/comparing and change-tracking are also
supported.
The 'ram' command in the debugger prompt now reflects all RAM, and
readport/writeport addresses are shown, making it easier to use the
command withot having to look up the offsets.
Debugger width has been bumped to 1050 pixels wide to accomodate the
new functionality. We'll see how much trouble this causes ...
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1747 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2009-06-02 17:25:14 +00:00
|
|
|
|
2007-01-14 16:17:57 +00:00
|
|
|
public:
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
// The following methods are cart-specific and must be implemented
|
|
|
|
// in derived classes.
|
|
|
|
//////////////////////////////////////////////////////////////////////
|
|
|
|
/**
|
|
|
|
Set the specified bank.
|
|
|
|
*/
|
|
|
|
virtual void bank(uInt16 bank) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Get the current bank.
|
|
|
|
|
|
|
|
@return The current bank, or -1 if bankswitching not supported
|
|
|
|
*/
|
|
|
|
virtual int bank() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Query the number of banks supported by the cartridge.
|
|
|
|
*/
|
|
|
|
virtual int bankCount() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Patch the cartridge ROM.
|
|
|
|
|
|
|
|
@param address The ROM address to patch
|
|
|
|
@param value The value to place into the address
|
|
|
|
@return Success or failure of the patch operation
|
|
|
|
*/
|
|
|
|
virtual bool patch(uInt16 address, uInt8 value) = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
Access the internal ROM image for this cartridge.
|
|
|
|
|
|
|
|
@param size Set to the size of the internal ROM image data
|
|
|
|
@return A pointer to the internal ROM image data
|
|
|
|
*/
|
|
|
|
virtual uInt8* getImage(int& size) = 0;
|
|
|
|
|
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
|
|
|
/**
|
|
|
|
Save the current state of this device to the given Serializer.
|
|
|
|
|
|
|
|
@param out The Serializer object to use
|
|
|
|
@return False on any errors, else true
|
|
|
|
*/
|
|
|
|
virtual bool save(Serializer& out) const = 0;
|
|
|
|
|
|
|
|
/**
|
OK, this looks like a huge update, but it's only because of some Serializer
class reworking. Serializer class now handles read/write of state from
files as well as in-memory streams. As a result, Deserializer class has
been removed.
Added state rewinding to the debugger. For now, this is limited to 100
levels of undo, with a new state generated each time a step/trace/frame/
scanline advance is performed. The undo level is 'rolling', in that it
remembers the last 100 levels (so you lose the oldest states when you
start adding more than 100). For now, this is tied to the 'Alt-r' key
in the debugger. Still TODO is add a button for it, and clean up some
TIA output issues when rewinding.
Added support for 6K version of Supercharger ROMs (this fixes issues
with the 6K version of Cubis).
Cleaned up the Serializable infrastructure, making sure that all
classes that need to implement it actually do so now.
Fixed issue with editable widgets in the UI, where pressing Enter
on the keypad wasn't actually being registered.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1849 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2009-08-05 16:05:34 +00:00
|
|
|
Load the current state of this device from the given Serializer.
|
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
|
|
|
|
OK, this looks like a huge update, but it's only because of some Serializer
class reworking. Serializer class now handles read/write of state from
files as well as in-memory streams. As a result, Deserializer class has
been removed.
Added state rewinding to the debugger. For now, this is limited to 100
levels of undo, with a new state generated each time a step/trace/frame/
scanline advance is performed. The undo level is 'rolling', in that it
remembers the last 100 levels (so you lose the oldest states when you
start adding more than 100). For now, this is tied to the 'Alt-r' key
in the debugger. Still TODO is add a button for it, and clean up some
TIA output issues when rewinding.
Added support for 6K version of Supercharger ROMs (this fixes issues
with the 6K version of Cubis).
Cleaned up the Serializable infrastructure, making sure that all
classes that need to implement it actually do so now.
Fixed issue with editable widgets in the UI, where pressing Enter
on the keypad wasn't actually being registered.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1849 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2009-08-05 16:05:34 +00:00
|
|
|
@param in The Serializer object to use
|
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
|
|
|
@return False on any errors, else true
|
|
|
|
*/
|
OK, this looks like a huge update, but it's only because of some Serializer
class reworking. Serializer class now handles read/write of state from
files as well as in-memory streams. As a result, Deserializer class has
been removed.
Added state rewinding to the debugger. For now, this is limited to 100
levels of undo, with a new state generated each time a step/trace/frame/
scanline advance is performed. The undo level is 'rolling', in that it
remembers the last 100 levels (so you lose the oldest states when you
start adding more than 100). For now, this is tied to the 'Alt-r' key
in the debugger. Still TODO is add a button for it, and clean up some
TIA output issues when rewinding.
Added support for 6K version of Supercharger ROMs (this fixes issues
with the 6K version of Cubis).
Cleaned up the Serializable infrastructure, making sure that all
classes that need to implement it actually do so now.
Fixed issue with editable widgets in the UI, where pressing Enter
on the keypad wasn't actually being registered.
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1849 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
2009-08-05 16:05:34 +00:00
|
|
|
virtual bool load(Serializer& in) = 0;
|
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
|
|
|
|
*/
|
|
|
|
virtual string name() const = 0;
|
|
|
|
|
2005-10-12 03:32:28 +00:00
|
|
|
protected:
|
2009-06-03 14:49:42 +00:00
|
|
|
/**
|
|
|
|
Add the given area to the RamArea list for this cart.
|
|
|
|
|
|
|
|
@param start The beginning of the RAM area (0x0000 - 0x2000)
|
|
|
|
@param size Total number of bytes of area
|
|
|
|
@param roffset Offset to use when reading from RAM (read port)
|
|
|
|
@param woffset Offset to use when writing to RAM (write port)
|
|
|
|
*/
|
|
|
|
void registerRamArea(uInt16 start, uInt16 size, uInt16 roffset, uInt16 woffset);
|
2005-06-27 04:45:52 +00:00
|
|
|
|
2001-12-27 19:54:36 +00:00
|
|
|
private:
|
2009-06-16 17:17:33 +00:00
|
|
|
/**
|
|
|
|
Get an image pointer and size for a ROM that is part of a larger,
|
|
|
|
multi-ROM image.
|
|
|
|
|
|
|
|
@param image A pointer to the ROM image
|
|
|
|
@param size The size of the ROM image
|
|
|
|
@param numroms The number of ROMs in the multicart
|
|
|
|
@param md5 The md5sum for the specific cart in the ROM image
|
|
|
|
@param id The ID for the specific cart in the ROM image
|
|
|
|
@param settings The settings associated with the system
|
|
|
|
@return The bankswitch type for the specific cart in the ROM image
|
|
|
|
*/
|
|
|
|
static string createFromMultiCart(const uInt8*& image, uInt32& size,
|
|
|
|
uInt32 numroms, string& md5, string& id, Settings& settings);
|
|
|
|
|
2001-12-27 19:54:36 +00:00
|
|
|
/**
|
|
|
|
Try to auto-detect the bankswitching type of the cartridge
|
|
|
|
|
2006-12-31 02:16:37 +00:00
|
|
|
@param image A pointer to the ROM image
|
|
|
|
@param size The size of the ROM image
|
2001-12-27 19:54:36 +00:00
|
|
|
@return The "best guess" for the cartridge type
|
|
|
|
*/
|
|
|
|
static string autodetectType(const uInt8* image, uInt32 size);
|
|
|
|
|
2006-12-24 17:13:10 +00:00
|
|
|
/**
|
2007-06-08 12:36:52 +00:00
|
|
|
Search the image for the specified byte signature
|
|
|
|
|
|
|
|
@param image A pointer to the ROM image
|
|
|
|
@param imagesize The size of the ROM image
|
|
|
|
@param signature The byte sequence to search for
|
|
|
|
@param sigsize The number of bytes in the signature
|
2007-06-14 13:47:50 +00:00
|
|
|
@param minhits The minimum number of times a signature is to be found
|
2007-06-08 12:36:52 +00:00
|
|
|
|
2007-06-14 13:47:50 +00:00
|
|
|
@return True if the signature was found at least 'minhits' time, else false
|
2006-12-24 17:13:10 +00:00
|
|
|
*/
|
2007-06-14 13:47:50 +00:00
|
|
|
static bool searchForBytes(const uInt8* image, uInt32 imagesize,
|
|
|
|
const uInt8* signature, uInt32 sigsize,
|
|
|
|
uInt32 minhits);
|
2006-12-24 17:13:10 +00:00
|
|
|
|
|
|
|
/**
|
2006-12-26 00:39:44 +00:00
|
|
|
Returns true if the image is probably a SuperChip (256 bytes RAM)
|
2006-12-24 17:13:10 +00:00
|
|
|
*/
|
|
|
|
static bool isProbablySC(const uInt8* image, uInt32 size);
|
|
|
|
|
2003-02-17 04:59:54 +00:00
|
|
|
/**
|
2005-07-09 15:19:24 +00:00
|
|
|
Returns true if the image is probably a 3F bankswitching cartridge
|
2003-02-17 04:59:54 +00:00
|
|
|
*/
|
|
|
|
static bool isProbably3F(const uInt8* image, uInt32 size);
|
|
|
|
|
2005-07-09 15:19:24 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably a 3E bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbably3E(const uInt8* image, uInt32 size);
|
|
|
|
|
2006-12-26 00:39:44 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably a E0 bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablyE0(const uInt8* image, uInt32 size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns true if the image is probably a E7 bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablyE7(const uInt8* image, uInt32 size);
|
|
|
|
|
2009-04-05 18:59:56 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably a EF bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablyEF(const uInt8* image, uInt32 size);
|
|
|
|
|
2007-06-08 12:36:52 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably a UA bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablyUA(const uInt8* image, uInt32 size);
|
|
|
|
|
2007-10-12 14:45:10 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably a 4A50 bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbably4A50(const uInt8* image, uInt32 size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns true if the image is probably a SB bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablySB(const uInt8* image, uInt32 size);
|
|
|
|
|
2008-02-27 20:13:55 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably a 0840 bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbably0840(const uInt8* image, uInt32 size);
|
|
|
|
|
2007-06-08 12:36:52 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably a CV bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablyCV(const uInt8* image, uInt32 size);
|
|
|
|
|
|
|
|
/**
|
|
|
|
Returns true if the image is probably an FE bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablyFE(const uInt8* image, uInt32 size);
|
|
|
|
|
2009-06-12 21:47:03 +00:00
|
|
|
/**
|
|
|
|
Returns true if the image is probably an X07 bankswitching cartridge
|
|
|
|
*/
|
|
|
|
static bool isProbablyX07(const uInt8* image, uInt32 size);
|
|
|
|
|
2009-06-03 14:49:42 +00:00
|
|
|
protected:
|
|
|
|
// If myBankLocked is true, ignore attempts at bankswitching. This is used
|
|
|
|
// by the debugger, when disassembling/dumping ROM.
|
|
|
|
bool myBankLocked;
|
|
|
|
|
2001-12-27 19:54:36 +00:00
|
|
|
private:
|
2009-06-03 14:49:42 +00:00
|
|
|
// Contains RamArea entries for those carts with accessible RAM.
|
|
|
|
RamAreaList myRamAreaList;
|
|
|
|
|
2006-12-28 18:31:27 +00:00
|
|
|
// Contains info about this cartridge in string format
|
|
|
|
static string myAboutString;
|
|
|
|
|
2001-12-27 19:54:36 +00:00
|
|
|
// Copy constructor isn't supported by cartridges so make it private
|
|
|
|
Cartridge(const Cartridge&);
|
|
|
|
|
|
|
|
// Assignment operator isn't supported by cartridges so make it private
|
|
|
|
Cartridge& operator = (const Cartridge&);
|
|
|
|
};
|
|
|
|
|
2007-01-14 16:17:57 +00:00
|
|
|
#endif
|