OSDN Git Service

[VM][STATE] Apply new framework to some VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / pc6001 / pc6001.h
index 7369007..4f7fa07 100644 (file)
 #define MC6847_ATTR_INV                0x01
 
 // device informations for win32
-#define USE_CART1
-#define USE_FD1
-#define USE_FD2
+#define USE_CART               1
 #if defined(_PC6601) || defined(_PC6601SR)
-#define USE_FD3
-#define USE_FD4
+#define USE_FLOPPY_DISK                4
+#else
+#define USE_FLOPPY_DISK                2
 #endif
-#define USE_TAPE1
+#define USE_TAPE               1
+#define USE_TAPE_BUTTON
 #define TAPE_PC6001
 #define NOTIFY_KEY_DOWN
 #define USE_SHIFT_NUMPAD_KEY
 
 #include "../../common.h"
 #include "../../fileio.h"
+#include "../vm_template.h"
 
 #ifdef USE_SOUND_VOLUME
 static const _TCHAR *sound_device_caption[] = {
@@ -121,6 +122,7 @@ static const _TCHAR *sound_device_caption[] = {
 };
 #endif
 
+class csp_state_utils;
 class EMU;
 class DEVICE;
 class EVENT;
@@ -153,19 +155,21 @@ class DISPLAY;
 class FLOPPY;
 #endif
 class JOYSTICK;
-class MEMORY;
+class PC6001_MEMORY;
 class PSUB;
 class SUB;
 class TIMER;
 
-class VM
+class VM : public VM_TEMPLATE
 {
 protected:
-       EMU* emu;
+       //EMU* emu;
+       //csp_state_utils *state_entry;
+
        int vdata;
        
        // devices
-       EVENT* event;
+       //EVENT* event;
        
        DEVICE* printer;
        I8255* pio_sub;
@@ -189,7 +193,7 @@ protected:
        FLOPPY* floppy;
 #endif
        JOYSTICK* joystick;
-       MEMORY* memory;
+       PC6001_MEMORY* memory;
        PSUB* psub;
        TIMER* timer;
        
@@ -261,11 +265,16 @@ public:
        bool is_tape_recording(int drv);
        int get_tape_position(int drv);
        const _TCHAR* get_tape_message(int drv);
+       void push_play(int drv);
+       void push_stop(int drv);
+       void push_fast_forward(int drv);
+       void push_fast_rewind(int drv);
+       void push_apss_forward(int drv) {}
+       void push_apss_rewind(int drv) {}
        bool is_frame_skippable();
        
        void update_config();
-       void save_state(FILEIO* state_fio);
-       bool load_state(FILEIO* state_fio);
+       bool process_state(FILEIO* state_fio, bool loading);
        
        // ----------------------------------------
        // for each device
@@ -273,9 +282,9 @@ public:
        
        // devices
        DEVICE* get_device(int id);
-       DEVICE* dummy;
-       DEVICE* first_device;
-       DEVICE* last_device;
+       //DEVICE* dummy;
+       //DEVICE* first_device;
+       //DEVICE* last_device;
        
        int sr_mode;
 };