OSDN Git Service

[VM][General] Apply Upstream 2018-10-07.Still WIP.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz80k / mz80k.h
index faa459f..530c5bc 100644 (file)
@@ -38,6 +38,7 @@
 #define CPU_CLOCKS             2000000
 #define SCREEN_WIDTH           320
 #define SCREEN_HEIGHT          200
+#define WINDOW_HEIGHT_ASPECT   240
 #if defined(SUPPORT_MZ80AIF)
 #define HAS_MB8866
 #define MAX_DRIVE              4
 #define HAS_T3444M
 #define MAX_DRIVE              4
 #endif
+#define PRINTER_STROBE_RISING_EDGE
 
 // device informations for win32
 #define USE_DIPSWITCH
-#define USE_TAPE
-//#define USE_TAPE_PTR
-#define USE_TAPE_BUTTON
-#define NOTIFY_KEY_DOWN
-#define USE_SHIFT_NUMPAD_KEY
-#define USE_ALT_F10_KEY
+#define USE_TAPE               1
+#define USE_KEY_LOCKED
 #define USE_AUTO_KEY           5
 #define USE_AUTO_KEY_RELEASE   6
 #define USE_AUTO_KEY_NO_CAPS
+#if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
+#define USE_SOUND_VOLUME       4
+#else
+#define USE_SOUND_VOLUME       3
+#endif
+#define USE_PRINTER
+#define USE_PRINTER_TYPE       4
 #define USE_DEBUGGER
 #define USE_STATE
+#if defined(SUPPORT_MZ80AIF)
+#define USE_DRIVE_TYPE         2
+#endif
 #if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
-#define USE_FD1
-#define USE_FD2
-#define USE_FD3
-#define USE_FD4
-#define USE_ACCESS_LAMP
-#define USE_CRT_MONITOR_4_3 1
-//#define USE_DISK_WRITE_PROTECT
+#define USE_FLOPPY_DISK                4
 #endif
 #if defined(_MZ80K)
 #define USE_MONITOR_TYPE       2
 #endif
-#define USE_CRT_MONITOR_4_3 1
+#define USE_CPU_Z80
 
 #include "../../common.h"
 #include "../../fileio.h"
+#include "../vm_template.h"
+
+#ifdef USE_SOUND_VOLUME
+static const _TCHAR *sound_device_caption[] = {
+       _T("Beep"), _T("CMT (Signal)"),
+#if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
+       _T("Noise (FDD)"),
+#endif
+       _T("Noise (CMT)"),
+};
+#endif
 
 class EMU;
 class DEVICE;
@@ -90,26 +103,33 @@ class LS393;
 class PCM1BIT;
 class Z80;
 
-class KEYBOARD;
-class MEMORY;
-
+namespace MZ80 {
+       class KEYBOARD;
+       class MEMORY;
+       class PRINTER;
+}
 #if defined(SUPPORT_MZ80AIF)
 class MB8877;
 class IO;
-class MZ80AIF;
+namespace MZ80 {
+       class MZ80AIF;
+}
 #elif defined(SUPPORT_MZ80FIO)
-class T3444A;
 class IO;
-class MZ80FIO;
+class T3444A;
+namespace MZ80 {
+       class MZ80FIO;
+}
 #endif
 
-class VM
+class VM : public VM_TEMPLATE
 {
 protected:
-       EMU* emu;
+       //EMU* emu;
+       //csp_state_utils* state_entry;
        
        // devices
-       EVENT* event;
+       //EVENT* event;
        
 #if defined(_MZ1200) || defined(_MZ80A)
        AND* and_int;
@@ -121,17 +141,18 @@ protected:
        PCM1BIT* pcm;
        Z80* cpu;
        
-       KEYBOARD* keyboard;
-       MEMORY* memory;
+       MZ80::KEYBOARD* keyboard;
+       MZ80::MEMORY* memory;
+       MZ80::PRINTER* printer;
        
 #if defined(SUPPORT_MZ80AIF)
        MB8877* fdc;
        IO* io;
-       MZ80AIF* mz80aif;
+       MZ80::MZ80AIF* mz80aif;
 #elif defined(SUPPORT_MZ80FIO)
        T3444A* fdc;
        IO* io;
-       MZ80FIO* mz80fio;
+       MZ80::MZ80FIO* mz80fio;
 #endif
        
 public:
@@ -149,6 +170,10 @@ public:
        // drive virtual machine
        void reset();
        void run();
+       double get_frame_rate()
+       {
+               return FRAMES_PER_SEC;
+       }
        
 #ifdef USE_DEBUGGER
        // debugger
@@ -157,45 +182,48 @@ public:
        
        // draw screen
        void draw_screen();
-#if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
-       int access_lamp();
-#endif
        
        // sound generation
        void initialize_sound(int rate, int samples);
-       uint16* create_sound(int* extra_frames);
-       int sound_buffer_ptr();
+       uint16_t* create_sound(int* extra_frames);
+       int get_sound_buffer_ptr();
+#ifdef USE_SOUND_VOLUME
+       void set_sound_device_volume(int ch, int decibel_l, int decibel_r);
+#endif
        
        // notify key
        void key_down(int code, bool repeat);
        void key_up(int code);
+       bool get_caps_locked();
+       bool get_kana_locked();
        
        // user interface
 #if defined(SUPPORT_MZ80AIF) || defined(SUPPORT_MZ80FIO)
-       void open_disk(int drv, const _TCHAR* file_path, int bank);
-       void close_disk(int drv);
-       bool disk_inserted(int drv);
-       void set_disk_protected(int drv, bool value);
-       bool get_disk_protected(int drv);
-#endif
-       void play_tape(const _TCHAR* file_path);
-       void rec_tape(const _TCHAR* file_path);
-       void close_tape();
-       bool tape_inserted();
-       bool tape_playing();
-       bool tape_recording();
-       int tape_position();
-       void push_play();
-       void push_stop();
-       void push_fast_forward();
-       void push_fast_rewind();
-       void push_apss_forward() {}
-       void push_apss_rewind() {}
-       bool now_skip();
+       void open_floppy_disk(int drv, const _TCHAR* file_path, int bank);
+       void close_floppy_disk(int drv);
+       bool is_floppy_disk_inserted(int drv);
+       void is_floppy_disk_protected(int drv, bool value);
+       bool is_floppy_disk_protected(int drv);
+       uint32_t is_floppy_disk_accessed();
+#endif
+       void play_tape(int drv, const _TCHAR* file_path);
+       void rec_tape(int drv, const _TCHAR* file_path);
+       void close_tape(int drv);
+       bool is_tape_inserted(int drv);
+       bool is_tape_playing(int drv);
+       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
@@ -203,9 +231,9 @@ public:
        
        // devices
        DEVICE* get_device(int id);
-       DEVICE* dummy;
-       DEVICE* first_device;
-       DEVICE* last_device;
+       //DEVICE* dummy;
+       //DEVICE* first_device;
+       //DEVICE* last_device;
 };
 
 #endif