When a plugin is initialized, its mdp_t->func->init() function is called with a pointer to the the emulator's mdp_host_t struct as a parameter. (See mdp.h for more information.) This struct contains pointers to useful functions within the emulator.
Format of the mdp_host_t struct:
#include "mdp/mdp_host.h" typedef struct _mdp_host_t { /** * interfaceVersion: MDP version implemented by the emulator. */ const uint32_t interfaceVersion; const uint32_t reserved; /*! BEGIN: MDP v1.0 functions. !*/ /** * val_set(), val_get(): Set or get int values. */ int (MDP_FNCALL *val_set)(struct _mdp_t *plugin, uint32_t valID, int val); int (MDP_FNCALL *val_get)(uint32_t valID); /** * osd_printf(): Print a message to the on-screen display. */ int (MDP_FNCALL *osd_printf)(const char *msg, ...) __attribute__ ((format (printf, 1, 2))); /** * renderer_register(): Register a renderer. * renderer_unregister(): Unregister a renderer. */ int (MDP_FNCALL *renderer_register)(struct _mdp_t *plugin, mdp_render_t *renderer); int (MDP_FNCALL *renderer_unregister)(struct _mdp_t *plugin, mdp_render_t *renderer); /** * mem_read_*(): Memory read functions. * @param memID Memory ID. * @param address Address. * @param ret_value Variable to store the return value in. * @return MDP error code. */ int (MDP_FNCALL *mem_read_8) (int memID, uint32_t address, uint8_t *ret_value); int (MDP_FNCALL *mem_read_16)(int memID, uint32_t address, uint16_t *ret_value); int (MDP_FNCALL *mem_read_32)(int memID, uint32_t address, uint32_t *ret_value); /** * mem_write_*(): Memory write functions. * @param plugin Plugin requesting memory write. * @param memID Memory ID. * @param address Address. * @param data Data. * @return MDP error code. */ int (MDP_FNCALL *mem_write_8) (struct _mdp_t *plugin, int memID, uint32_t address, uint8_t data); int (MDP_FNCALL *mem_write_16)(struct _mdp_t *plugin, int memID, uint32_t address, uint16_t data); int (MDP_FNCALL *mem_write_32)(struct _mdp_t *plugin, int memID, uint32_t address, uint32_t data); /** * mem_read_block_*: Memory block read functions. * @param memID Memory ID. * @param address Starting address. * @param data Data buffer to store the data in. * @param length Length of the data. * @return MDP error code. */ int (MDP_FNCALL *mem_read_block_8) (int memID, uint32_t address, uint8_t *data, uint32_t length); int (MDP_FNCALL *mem_read_block_16)(int memID, uint32_t address, uint16_t *data, uint32_t length); int (MDP_FNCALL *mem_read_block_32)(int memID, uint32_t address, uint32_t *data, uint32_t length); /** * mem_write_block_*: Memory block write functions. * @param plugin Plugin requesting memory write. * @param memID Memory ID. * @param address Starting address. * @param data Data buffer containing the data to write. * @param length Length of the data. * @return MDP error code. */ int (MDP_FNCALL *mem_write_block_8) (struct _mdp_t *plugin, int memID, uint32_t address, uint8_t *data, uint32_t length); int (MDP_FNCALL *mem_write_block_16)(struct _mdp_t *plugin, int memID, uint32_t address, uint16_t *data, uint32_t length); int (MDP_FNCALL *mem_write_block_32)(struct _mdp_t *plugin, int memID, uint32_t address, uint32_t *data, uint32_t length); /** * mem_size_get(): Get the size of a memory block. * @param memID Memory ID. * @return Memory size, or negative on error. */ int (MDP_FNCALL *mem_size_get)(int memID); /** * mem_size_set(): Set the size of a memory block. * @param plugin Plugin requesting memory size set. * @param memID Memory ID. * @param size New memory size. * @return MDP error code. */ int (MDP_FNCALL *mem_size_set)(struct _mdp_t *plugin, int memID, unsigned int size); /** * reg_get(): Get a register value. * @param icID ID of the IC to get a register value from. * @param regID Register ID. * @param ret_value Variable to store the return value in. * @return MDP error code. */ int (MDP_FNCALL *reg_get)(int icID, int regID, uint32_t *ret_value); /** * reg_set(): Get a register value. * @param plugin Plugin requesting register set. * @param icID ID of the IC to set a register value in. * @param regID Register ID. * @param new_value New register value. * @return MDP error code. */ int (MDP_FNCALL *reg_set)(struct _mdp_t *plugin, int icID, int regID, uint32_t new_value); /** * reg_get_all(): Get all register values for a given IC. * @param icID ID of the IC to get all register values from. * @param reg_struct Pointer to register struct for this IC. * @return MDP error code. */ int (MDP_FNCALL *reg_get_all)(int icID, void *reg_struct); /** * reg_set_all(): Set all register values for a given IC. * @param plugin Plugin requesting register set. * @param icID ID of the IC to set all register values in. * @param reg_struct Pointer to register struct for this IC. * @return MDP error code. */ int (MDP_FNCALL *reg_set_all)(struct _mdp_t *plugin, int icID, void *reg_struct); /** * menu_item_add(): Add a menu item. * menu_item_remove(): Remove a menu item. * menu_item_set_text(): Set menu item text. * menu_item_get_text(): Get menu item text. * menu_item_set_checked(): Set menu item "checked" state. * menu_item_get_checked(): Get menu item "checked" state. */ int (MDP_FNCALL *menu_item_add)(struct _mdp_t *plugin, mdp_menu_handler_fn handler, int menu_id, const char *text); int (MDP_FNCALL *menu_item_remove)(struct _mdp_t *plugin, int menu_item_id); int (MDP_FNCALL *menu_item_set_text)(struct _mdp_t *plugin, int menu_item_id, const char *text); int (MDP_FNCALL *menu_item_get_text)(struct _mdp_t *plugin, int menu_item_id, char *text_buf, unsigned int size); int (MDP_FNCALL *menu_item_set_checked)(struct _mdp_t *plugin, int menu_item_id, int checked); int (MDP_FNCALL *menu_item_get_checked)(struct _mdp_t *plugin, int menu_item_id); /* Event handler functions. */ int (MDP_FNCALL *event_register)(struct _mdp_t *plugin, int event_id, mdp_event_handler_fn handler); int (MDP_FNCALL *event_unregister)(struct _mdp_t *plugin, int event_id, mdp_event_handler_fn handler); /* Window registration. */ int (MDP_FNCALL *window_register)(struct _mdp_t *plugin, void *window); int (MDP_FNCALL *window_unregister)(struct _mdp_t *plugin, void *window); void* (MDP_FNCALL *window_get_main)(void); /* Emulator control. */ int (MDP_FNCALL *emulator_control)(struct _mdp_t *plugin, MDP_EMUCTRL ctrl, void *param); /* Configuration functions. */ int (MDP_FNCALL *config_get)(struct _mdp_t *plugin, const char* key, const char* def, char *out_buf, unsigned int size); int (MDP_FNCALL *config_set)(struct _mdp_t *plugin, const char* key, const char* value); /* Directory functions. */ int (MDP_FNCALL *dir_get_default_save_path)(char* buf, unsigned int size); int (MDP_FNCALL *dir_register)(struct _mdp_t *plugin, const char *dir_name, mdp_dir_get_fn get_fn, mdp_dir_set_fn set_fn); int (MDP_FNCALL *dir_unregister)(struct _mdp_t *plugin, int dir_id); /* Compression functions. */ int (MDP_FNCALL *crc32)(const uint8_t* buf, int length, uint32_t *crc32_out); int (MDP_FNCALL *z_open)(const char* filename, mdp_z_t **z_out); int (MDP_FNCALL *z_get_file)(mdp_z_t *z_file, mdp_z_entry_t *z_entry, void *buf, size_t size); int (MDP_FNCALL *z_close)(mdp_z_t *z_file); /*! END: MDP v1.0 functions. !*/ } mdp_host_t;
Note that, unlike most other MDP structs, some fields in mdp_host_t are declared as optional. That is, they do not have to be implemented by the emulator. The "Required" field may contain one of the following three values:
Fields:
Field | Type | Required | Description |
---|---|---|---|
interfaceVersion | uint32_t | Yes |
The MDP interface version used by the emulator. Can be
generated using the
MDP_VERSION(major, minor, revision)
macro, or by using the MDP_INTERFACE_VERSION macro,
which is defined as the interface version specified in
the MDP headers being used. Plugins should check this value if they can take advantage of functions from newer versions of MDP but want to retain compatibility with older versions. |
reserved | uint32_t | N/A | Reserved. Do not use this field. |
osd_printf | Function | Yes | Prints a message to the onscreen display. This function supports printf()-style formatting. |
val_set val_get |
Function | Yes | Set/get emulator values. These values are defined in MDP_VAL. |
renderer_register renderer_unregister |
Function | Yes | Registers/unregisters a rendering plugin. See mdp_render.h for more information about renderers. |
mem_read_8 mem_read_16 mem_read_32 |
Function | No (Not NULL) | Reads a byte/word/dword from memory. Note that word and dword memory reads must be on an aligned (even) boundary. Attempting to read a word/dword on an unaligned boundary will result in an error. |
mem_write_8 mem_write_16 mem_write_32 |
Function | No (Not NULL) | Writes a byte/word/dword to memory. Note that word and dword memory write must be on an aligned (even) boundary. Attempting to write a word/dword on an unaligned boundary will result in an error. |
mem_read_block_8 mem_read_block_16 mem_read_block_32 |
Function | No (Not NULL) | Reads a block from memory. Note that word-sized and dword-sized block reads must start on an aligned (even) boundary. Also, the length parameter is in bytes/words/dwords. For example, a length of 2 in the mem_read_block_32() function will read 8 bytes. |
mem_write_block_8 mem_write_block_16 mem_write_block_32 |
Function | No (Not NULL) | Writes a block to memory. Note that word-sized and dword-sized block writes must start on an aligned (even) boundary. Also, the length parameter is in bytes/words/dwords. For example, a length of 2 in the mem_write_block_32() function will write 8 bytes. |
reg_set reg_get |
Function | No (Not NULL) | Set/get a register from an active IC. See mdp_reg.h for more information about registers. |
reg_set_all reg_get_all |
Function | No (Not NULL) | Set/get all registers from an active IC. See mdp_reg.h for more information about registers. |
menu_item_add menu_item_remove |
Function | No (NULL) | Adds or removes a menu item from the emulator's menu system. Parameters include a callback function, a menu ID (e.g. if the emulator supports more than one menu), and initial text. See MDP_MENU for a list of valid menu IDs. (Note that if a menu ID that isn't supported by the emulator is specified, it will map to the default menu.) |
menu_item_set_text menu_item_get_text |
Function | No (NULL) | Set/get the text of a menu item. If the text pointer is NULL, the menu text will be cleared. |
menu_item_set_checked menu_item_get_checked |
Function | No (NULL) | Set/get the checked state of a menu item. 0 indicates not checked; anything else indicates checked. |
event_register event_unregister |
Function | No (Not NULL) | Registers/unregisters an event handler. See mdp_event.h for more information about event handlers. |
window_register window_unregister |
Function | No (Not NULL) | Registers/unregisters a window with the emulator's window management system. |
window_get_main | Function | No (Not NULL) | Returns a pointer to the main window. This is usually of type GtkWindow* on GTK+ and HWND on Win32, except it is casted to void* in order for the MDP headers to retain OS-independence. The active UI system should be checked using the val_get() MDP host services function. |
emulator_control | Function | Yes | Executes an emulator control function. See MDP_EMUCTRL for a list of supported functions. |
config_get config_set |
Function | No (Not NULL) | Get/set configuration information. Note that these functions should be executed after the emulator has loaded its configuration or before it saves its configuration. Two events exist for this purpose; see mdp_event.h for more information. |
dir_get_default_save_path | Function | No (Not NULL) | Get the default save path for the emulator. This is used by some plugins that save configuration files separately from the main emulator configuration file. |
dir_register dir_unregister |
Function | No (NULL) | Registers/unregisters a configurable directory with the emulator. This allows the user to configure all directories in a single window. Some plugins may use this to separate certain types of dump files from the rest of the save directory. |
crc32 | Function | No (NULL) | Calculates the CRC32 of a block of memory. |
z_open | Function | No (NULL) | Opens a compressed (or uncompressed) file. If the file is compressed and the emulator supports the compression scheme used, then the compressed files can be accessed by the plugin (read-only). Note that z_open() supports multi-file archives, so the mdp_z_t struct returned by this function may include a list of multiple files. See mdp_z.h for more information about the MDP file compression structs. |
z_get_file | Function | No (NULL) | Loads a file from an archive previously opened with the z_open() function. |
z_close | Function | No (NULL) | Closes an archive previously opened with the z_open() function. |