Duckstation/src/core/memory_card.h

95 lines
1.8 KiB
C
Raw Normal View History

2019-09-29 15:07:38 +00:00
#pragma once
#include "common/bitfield.h"
#include "controller.h"
#include "memory_card_image.h"
2019-09-29 15:07:38 +00:00
#include <array>
2019-10-27 06:45:23 +00:00
#include <memory>
#include <string>
#include <string_view>
class TimingEvent;
2019-09-29 15:07:38 +00:00
class MemoryCard final
2019-09-29 15:07:38 +00:00
{
public:
JIT optimizations and refactoring (#675) * CPU/Recompiler: Use rel32 call where possible for no-args * JitCodeBuffer: Support using preallocated buffer * CPU/Recompiler/AArch64: Use bl instead of blr for short branches * CPU/CodeCache: Allocate recompiler buffer in program space This means we don't need 64-bit moves for every call out of the recompiler. * GTE: Don't store as u16 and load as u32 * CPU/Recompiler: Add methods to emit global load/stores * GTE: Convert class to namespace * CPU/Recompiler: Call GTE functions directly * Settings: Turn into a global variable * GPU: Replace local pointers with global * InterruptController: Turn into a global pointer * System: Replace local pointers with global * Timers: Turn into a global instance * DMA: Turn into a global instance * SPU: Turn into a global instance * CDROM: Turn into a global instance * MDEC: Turn into a global instance * Pad: Turn into a global instance * SIO: Turn into a global instance * CDROM: Move audio FIFO to the heap * CPU/Recompiler: Drop ASMFunctions No longer needed since we have code in the same 4GB window. * CPUCodeCache: Turn class into namespace * Bus: Local pointer -> global pointers * CPU: Turn class into namespace * Bus: Turn into namespace * GTE: Store registers in CPU state struct Allows relative addressing on ARM. * CPU/Recompiler: Align code storage to page size * CPU/Recompiler: Fix relative branches on A64 * HostInterface: Local references to global * System: Turn into a namespace, move events out * Add guard pages * Android: Fix build
2020-07-31 07:09:18 +00:00
MemoryCard();
~MemoryCard();
2019-09-29 15:07:38 +00:00
JIT optimizations and refactoring (#675) * CPU/Recompiler: Use rel32 call where possible for no-args * JitCodeBuffer: Support using preallocated buffer * CPU/Recompiler/AArch64: Use bl instead of blr for short branches * CPU/CodeCache: Allocate recompiler buffer in program space This means we don't need 64-bit moves for every call out of the recompiler. * GTE: Don't store as u16 and load as u32 * CPU/Recompiler: Add methods to emit global load/stores * GTE: Convert class to namespace * CPU/Recompiler: Call GTE functions directly * Settings: Turn into a global variable * GPU: Replace local pointers with global * InterruptController: Turn into a global pointer * System: Replace local pointers with global * Timers: Turn into a global instance * DMA: Turn into a global instance * SPU: Turn into a global instance * CDROM: Turn into a global instance * MDEC: Turn into a global instance * Pad: Turn into a global instance * SIO: Turn into a global instance * CDROM: Move audio FIFO to the heap * CPU/Recompiler: Drop ASMFunctions No longer needed since we have code in the same 4GB window. * CPUCodeCache: Turn class into namespace * Bus: Local pointer -> global pointers * CPU: Turn class into namespace * Bus: Turn into namespace * GTE: Store registers in CPU state struct Allows relative addressing on ARM. * CPU/Recompiler: Align code storage to page size * CPU/Recompiler: Fix relative branches on A64 * HostInterface: Local references to global * System: Turn into a namespace, move events out * Add guard pages * Android: Fix build
2020-07-31 07:09:18 +00:00
static std::unique_ptr<MemoryCard> Create();
static std::unique_ptr<MemoryCard> Open(std::string_view filename);
2019-09-29 15:07:38 +00:00
const MemoryCardImage::DataArray& GetData() const { return m_data; }
const std::string& GetFilename() const { return m_filename; }
void SetFilename(std::string filename) { m_filename = std::move(filename); }
void Reset();
bool DoState(StateWrapper& sw);
2019-09-29 15:59:35 +00:00
void ResetTransferState();
bool Transfer(const u8 data_in, u8* data_out);
2019-09-29 15:07:38 +00:00
2019-09-29 15:53:47 +00:00
void Format();
2019-09-29 15:07:38 +00:00
private:
enum : u32
{
// save in three seconds, that should be long enough for everything to finish writing
SAVE_DELAY_IN_SECONDS = 5,
SAVE_DELAY_IN_SYSCLK_TICKS = MASTER_CLOCK * SAVE_DELAY_IN_SECONDS,
};
2019-09-29 15:07:38 +00:00
union FLAG
{
u8 bits;
BitField<u8, bool, 3, 1> no_write_yet;
BitField<u8, bool, 2, 1> write_error;
};
enum class State : u8
{
Idle,
2019-09-30 04:22:57 +00:00
Command,
2019-09-29 15:07:38 +00:00
ReadCardID1,
ReadCardID2,
ReadAddressMSB,
ReadAddressLSB,
ReadACK1,
ReadACK2,
ReadConfirmAddressMSB,
ReadConfirmAddressLSB,
ReadData,
ReadChecksum,
ReadEnd,
WriteCardID1,
WriteCardID2,
WriteAddressMSB,
WriteAddressLSB,
WriteData,
WriteChecksum,
WriteACK1,
WriteACK2,
WriteEnd,
};
2019-10-27 06:45:23 +00:00
bool LoadFromFile();
bool SaveIfChanged(bool display_osd_message);
void QueueFileSave();
2019-10-27 06:45:23 +00:00
std::unique_ptr<TimingEvent> m_save_event;
2019-10-27 06:45:23 +00:00
2019-09-29 15:07:38 +00:00
State m_state = State::Idle;
2020-04-25 04:58:19 +00:00
FLAG m_FLAG = {};
2019-09-29 15:07:38 +00:00
u16 m_address = 0;
u8 m_sector_offset = 0;
u8 m_checksum = 0;
u8 m_last_byte = 0;
2019-10-27 06:45:23 +00:00
bool m_changed = false;
2019-09-29 15:07:38 +00:00
MemoryCardImage::DataArray m_data{};
2019-10-27 06:45:23 +00:00
std::string m_filename;
2019-09-29 15:07:38 +00:00
};