OSDN Git Service

[VM][WIP] Use namespace to devices per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / pc8801 / pc8801.h
index b7c2c66..a7d8479 100644 (file)
@@ -33,8 +33,8 @@
 #if defined(_PC8801MA)
 #define SUPPORT_PC88_DICTIONARY
 #define SUPPORT_PC88_HIGH_CLOCK
-#define SUPPORT_PC88_SB2
 #define SUPPORT_PC88_OPNA
+#define SUPPORT_PC88_SB2
 #define PC88_EXRAM_BANKS       4
 #define HAS_UPD4990A
 #endif
 #define CPU_CLOCKS             3993624
 #define SCREEN_WIDTH           640
 #define SCREEN_HEIGHT          400
+#define WINDOW_HEIGHT_ASPECT   480
 #define MAX_DRIVE              2
 #define UPD765A_NO_ST1_EN_OR_FOR_RESULT7
 #if defined(_PC8801MA)
 #define PC80S31K_NO_WAIT
 #endif
-#ifdef SUPPORT_PC88_OPNA
+#if defined(SUPPORT_PC88_OPNA) || defined(SUPPORT_PC88_SB2)
 #define HAS_YM2608
 #endif
 #define Z80_MEMORY_WAIT
 #define CPU_TYPE_DEFAULT       1
 #endif
 #define USE_DIPSWITCH
-#define USE_DEVICE_TYPE                2
-#define USE_FD1
-#define USE_FD2
-#define USE_TAPE
-//#define USE_TAPE_PTR
+#define USE_JOYSTICK_TYPE      2
+#define USE_FLOPPY_DISK                2
+#define USE_TAPE               1
 #define TAPE_BINARY_ONLY
 #define NOTIFY_KEY_DOWN
+#define USE_KEY_LOCKED
 #define USE_SHIFT_NUMPAD_KEY
 #define USE_ALT_F10_KEY
 // slow enough for N88-\93ú\96{\8cêBASIC
 #define USE_AUTO_KEY           8
 #define USE_AUTO_KEY_RELEASE   10
+#define USE_AUTO_KEY_NUMPAD
 #define USE_MONITOR_TYPE       2
-#define USE_CRT_FILTER
+#define USE_SCREEN_FILTER
 #define USE_SCANLINE
-#define USE_SCREEN_ROTATE
-#define USE_ACCESS_LAMP
-#define USE_DISK_WRITE_PROTECT
-
 #ifdef SUPPORT_PC88_OPNA
-  #ifdef SUPPORT_PC88_SB2
-    #define USE_SOUND_DEVICE_TYPE      3
-  #else
-    #define USE_SOUND_DEVICE_TYPE      2
-  #endif
-#endif
-
-#if defined(SUPPORT_PC88_OPNA)
-# define USE_MULTIPLE_SOUNDCARDS 2
+#ifdef SUPPORT_PC88_SB2
+#define USE_SOUND_TYPE         6
 #else
-# define USE_MULTIPLE_SOUNDCARDS 1
+#define USE_SOUND_TYPE         2
+#endif
 #endif
+#if    defined(SUPPORT_PC88_OPNA) &&  defined(SUPPORT_PC88_SB2) &&  defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (4 + 4 + 1 + 1 + 1)
+#elif  defined(SUPPORT_PC88_OPNA) &&  defined(SUPPORT_PC88_SB2) && !defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (4 + 4 + 0 + 1 + 1)
+#elif  defined(SUPPORT_PC88_OPNA) && !defined(SUPPORT_PC88_SB2) &&  defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (4 + 0 + 1 + 1 + 1)
+#elif  defined(SUPPORT_PC88_OPNA) && !defined(SUPPORT_PC88_SB2) && !defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (4 + 0 + 0 + 1 + 1)
+#elif !defined(SUPPORT_PC88_OPNA) &&  defined(SUPPORT_PC88_SB2) &&  defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (2 + 2 + 1 + 1 + 1)
+#elif !defined(SUPPORT_PC88_OPNA) &&  defined(SUPPORT_PC88_SB2) && !defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (2 + 2 + 0 + 1 + 1)
+#elif !defined(SUPPORT_PC88_OPNA) && !defined(SUPPORT_PC88_SB2) &&  defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (2 + 0 + 1 + 1 + 1)
+#elif !defined(SUPPORT_PC88_OPNA) && !defined(SUPPORT_PC88_SB2) && !defined(SUPPORT_PC88_PCG8100)
+#define USE_SOUND_VOLUME       (2 + 0 + 0 + 1 + 1)
+#endif
+
+#define SUPPORT_TV_RENDER
+#define USE_JOYSTICK
+#define USE_MOUSE
+#define USE_PRINTER
+#define USE_PRINTER_TYPE       3
 #define USE_DEBUGGER
 #define USE_STATE
+#define USE_CPU_Z80
 
 #include "../../common.h"
 #include "../../fileio.h"
+#include "../vm_template.h"
+
+#ifdef USE_SOUND_VOLUME
+static const _TCHAR *sound_device_caption[] = {
+#ifdef SUPPORT_PC88_OPNA
+       _T("OPNA (FM)"), _T("OPNA (PSG)"), _T("OPNA (ADPCM)"), _T("OPNA (Rhythm)"),
+#else
+       _T("OPN (FM)"), _T("OPN (PSG)"),
+#endif
+#ifdef SUPPORT_PC88_SB2
+#ifdef SUPPORT_PC88_OPNA
+       _T("SB2 (FM)"), _T("SB2 (PSG)"), _T("SB2 (ADPCM)"), _T("SB2 (Rhythm)"),
+#else
+       _T("SB2 (FM)"), _T("SB2 (PSG)"),
+#endif
+#endif
+#ifdef SUPPORT_PC88_PCG8100
+       _T("PCG-8100"),
+#endif
+       _T("Beep"), _T("Noise (FDD)"),
+};
+#endif
 
 class EMU;
 class DEVICE;
@@ -117,6 +154,7 @@ class EVENT;
 
 class I8251;
 class I8255;
+class NOISE;
 class PCM1BIT;
 class UPD1990A;
 class YM2203;
@@ -128,17 +166,19 @@ class UPD765A;
 #ifdef SUPPORT_PC88_PCG8100
 class I8253;
 #endif
-
-class PC88;
-
-class VM
+namespace PC88DEV {
+       class PC88;
+}
+class VM : public VM_TEMPLATE
 {
 protected:
-       EMU* emu;
+       //EMU* emu;
+       //csp_state_utils* state_entry;
        
        // devices
        EVENT* pc88event;
        
+       DEVICE* pc88prn;
        I8251* pc88sio;
        I8255* pc88pio;
        PCM1BIT* pc88pcm;
@@ -147,14 +187,16 @@ protected:
 #ifdef SUPPORT_PC88_SB2
        YM2203* pc88sb2;
 #endif
+       DEVICE* dummycpu;
        Z80* pc88cpu;
-       DEVICE *dummycpu;
-   
+       
        PC80S31K* pc88sub;
        I8255* pc88pio_sub;
        UPD765A* pc88fdc_sub;
+       NOISE* pc88noise_seek;
+       NOISE* pc88noise_head_down;
+       NOISE* pc88noise_head_up;
        Z80* pc88cpu_sub;
-       
 #ifdef SUPPORT_PC88_PCG8100
        I8253* pc88pit;
        PCM1BIT* pc88pcm0;
@@ -162,7 +204,7 @@ protected:
        PCM1BIT* pc88pcm2;
 #endif
        
-       PC88* pc88;
+       PC88DEV::PC88* pc88;
        
        int boot_mode;
        
@@ -181,7 +223,7 @@ public:
        // drive virtual machine
        void reset();
        void run();
-       double frame_rate();
+       double get_frame_rate();
        
 #ifdef USE_DEBUGGER
        // debugger
@@ -190,41 +232,46 @@ public:
        
        // draw screen
        void draw_screen();
-       int access_lamp();
        
        // 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
-       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);
-       void play_tape(const _TCHAR* file_path);
-       void rec_tape(const _TCHAR* file_path);
-       void close_tape();
-       bool tape_inserted();
-       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();
+       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_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
        // ----------------------------------------
        
        // devices
        DEVICE* get_device(int id);
-       DEVICE* dummy;
-       DEVICE* first_device;
-       DEVICE* last_device;
+       //DEVICE* dummy;
+       //DEVICE* first_device;
+       //DEVICE* last_device;
 };
 
 #endif