mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
71 lines
2.3 KiB
C++
71 lines
2.3 KiB
C++
#ifndef _MEMORYMAP_H_
|
|
#define _MEMORYMAP_H_
|
|
|
|
#include "Types.h"
|
|
#include <boost/function.hpp>
|
|
#include <map>
|
|
|
|
enum MEMORYMAP_ENDIANESS
|
|
{
|
|
MEMORYMAP_ENDIAN_LSBF,
|
|
MEMORYMAP_ENDIAN_MSBF,
|
|
};
|
|
|
|
class CMemoryMap
|
|
{
|
|
public:
|
|
typedef boost::function<void (uint32)> WriteNotifyHandlerType;
|
|
typedef boost::function<uint32 (uint32, uint32)> MemoryMapHandlerType;
|
|
|
|
virtual ~CMemoryMap();
|
|
uint8 GetByte(uint32);
|
|
virtual uint16 GetHalf(uint32) = 0;
|
|
virtual uint32 GetWord(uint32) = 0;
|
|
virtual void SetByte(uint32, uint8);
|
|
virtual void SetHalf(uint32, uint16) = 0;
|
|
virtual void SetWord(uint32, uint32) = 0;
|
|
void InsertReadMap(uint32, uint32, void*, unsigned char);
|
|
void InsertReadMap(uint32, uint32, const MemoryMapHandlerType&, unsigned char);
|
|
void InsertWriteMap(uint32, uint32, void*, unsigned char);
|
|
void InsertWriteMap(uint32, uint32, const MemoryMapHandlerType&, unsigned char);
|
|
void SetWriteNotifyHandler(WriteNotifyHandlerType);
|
|
|
|
protected:
|
|
enum MEMORYMAP_TYPE
|
|
{
|
|
MEMORYMAP_TYPE_MEMORY,
|
|
MEMORYMAP_TYPE_FUNCTION
|
|
};
|
|
|
|
struct MEMORYMAPELEMENT
|
|
{
|
|
uint32 nStart;
|
|
uint32 nEnd;
|
|
void* pPointer;
|
|
MemoryMapHandlerType handler;
|
|
MEMORYMAP_TYPE nType;
|
|
};
|
|
|
|
typedef std::map<unsigned char, MEMORYMAPELEMENT> MemoryMapListType;
|
|
|
|
WriteNotifyHandlerType m_WriteNotifyHandler;
|
|
static MEMORYMAPELEMENT* GetMap(MemoryMapListType&, uint32);
|
|
MemoryMapListType m_Read;
|
|
MemoryMapListType m_Write;
|
|
|
|
private:
|
|
static void InsertMap(MemoryMapListType&, uint32, uint32, void*, unsigned char);
|
|
static void InsertMap(MemoryMapListType&, uint32, uint32, const MemoryMapHandlerType&, unsigned char);
|
|
static void DeleteMap(MemoryMapListType&);
|
|
};
|
|
|
|
class CMemoryMap_LSBF : public CMemoryMap
|
|
{
|
|
public:
|
|
uint16 GetHalf(uint32);
|
|
uint32 GetWord(uint32);
|
|
void SetHalf(uint32, uint16);
|
|
void SetWord(uint32, uint32);
|
|
};
|
|
|
|
#endif
|