OSDN Git Service

[VM][WIP] Use namespace to devices per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz80k / mz80k.cpp
index a1b59c2..6a9dee0 100644 (file)
 #include "mz80fio.h"
 #endif
 
+using MZ80::KEYBOARD;
+using MZ80::MEMORY;
+using MZ80::PRINTER;
+#if defined(SUPPORT_MZ80AIF)
+using MZ80::MZ80AIF;
+#elif defined(SUPPORT_MZ80FIO)
+using MZ80::MZ80FIO;
+#endif
+
 // ----------------------------------------------------------------------------
 // initialize
 // ----------------------------------------------------------------------------
 
-VM::VM(EMU* parent_emu) : emu(parent_emu)
+VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
 {
        // create devices
        first_device = last_device = NULL;
@@ -133,7 +142,7 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        pio->set_context_port_c(drec, SIG_DATAREC_TRIG, 8, 0);
        counter->set_context_1qa(pcm, SIG_PCM1BIT_SIGNAL, 1);
        // Sound:: Force realtime rendering. This is temporally fix. 20161024 K.O
-       pcm->set_realtime_render(true);
+       //pcm->set_realtime_render(true);
        
        keyboard->set_context_pio(pio);
        memory->set_context_ctc(ctc);
@@ -147,9 +156,9 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        mz80fio->set_context_fdc(fdc);
 #endif
        
-       if(config.printer_device_type == 0) {  
+       if(config.printer_type == 0) {  
                printer->set_context_prn(new PRNFILE(this, emu));
-       } else if(config.printer_device_type == 1) {
+       } else if(config.printer_type == 1) {
                MZ1P17 *mz1p17 = new MZ1P17(this, emu);
                mz1p17->mode = MZ1P17_MODE_MZ80P4;
                printer->set_context_prn(mz1p17);
@@ -179,20 +188,12 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        io->set_iomap_range_rw(0xfe, 0xff, printer);
        
        // initialize all devices
+#if defined(__GIT_REPO_VERSION)
+       strncpy(_git_revision, __GIT_REPO_VERSION, sizeof(_git_revision) - 1);
+#endif
        for(DEVICE* device = first_device; device; device = device->next_device) {
                device->initialize();
        }
-#if defined(SUPPORT_MZ80AIF)
-       for(int i = 0; i < MAX_DRIVE; i++) {
-               fdc->set_drive_type(i, DRIVE_TYPE_2DD);
-       }
-#elif defined(SUPPORT_MZ80FIO)
-       for(int i = 0; i < MAX_DRIVE; i++) {
-               fdc->set_drive_type(i, DRIVE_TYPE_2D);
-//             fdc->set_drive_mfm(i, false);
-       }
-#endif
-
 }
 
 VM::~VM()
@@ -204,6 +205,20 @@ VM::~VM()
                delete device;
                device = next_device;
        }
+#if defined(SUPPORT_MZ80AIF)
+       for(int drv = 0; drv < MAX_DRIVE; drv++) {
+//             if(config.drive_type) {
+                       fdc->set_drive_type(drv, DRIVE_TYPE_2DD);
+//             } else {
+//                     fdc->set_drive_type(drv, DRIVE_TYPE_2D);
+//             }
+       }
+#elif defined(SUPPORT_MZ80FIO)
+       for(int drv = 0; drv < MAX_DRIVE; drv++) {
+               fdc->set_drive_type(drv, DRIVE_TYPE_2D);
+//             fdc->set_drive_mfm(drv, false);
+       }
+#endif
 }
 
 DEVICE* VM::get_device(int id)
@@ -320,6 +335,16 @@ void VM::key_up(int code)
 //     keyboard->key_up(code);
 }
 
+bool VM::get_caps_locked()
+{
+       return keyboard->get_caps_locked();
+}
+
+bool VM::get_kana_locked()
+{
+       return keyboard->get_kana_locked();
+}
+
 // ----------------------------------------------------------------------------
 // user interface
 // ----------------------------------------------------------------------------
@@ -328,6 +353,18 @@ void VM::key_up(int code)
 void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
 {
        fdc->open_disk(drv, file_path, bank);
+       
+#if defined(SUPPORT_MZ80AIF)
+       if(fdc->get_media_type(drv) == MEDIA_TYPE_2DD) {
+               if(fdc->get_drive_type(drv) == DRIVE_TYPE_2D) {
+                       fdc->set_drive_type(drv, DRIVE_TYPE_2DD);
+               }
+       } else if(fdc->get_media_type(drv) == MEDIA_TYPE_2D) {
+               if(fdc->get_drive_type(drv) == DRIVE_TYPE_2DD) {
+                       fdc->set_drive_type(drv, DRIVE_TYPE_2D);
+               }
+       }
+#endif
 }
 
 void VM::close_floppy_disk(int drv)
@@ -360,13 +397,13 @@ uint32_t VM::is_floppy_disk_accessed()
 void VM::play_tape(int drv, const _TCHAR* file_path)
 {
        drec->play_tape(file_path);
-       drec->write_signal(SIG_DATAREC_REMOTE, 1, 1);
+//     drec->set_remote(true);
 }
 
 void VM::rec_tape(int drv, const _TCHAR* file_path)
 {
        drec->rec_tape(file_path);
-       drec->write_signal(SIG_DATAREC_REMOTE, 1, 1);
+//     drec->set_remote(true);
 }
 
 void VM::close_tape(int drv)
@@ -374,8 +411,7 @@ void VM::close_tape(int drv)
        emu->lock_vm();
        drec->close_tape();
        emu->unlock_vm();
-
-       drec->write_signal(SIG_DATAREC_REMOTE, 0, 0);
+//     drec->set_remote(false);
 }
 
 bool VM::is_tape_inserted(int drv)
@@ -438,27 +474,38 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  6
+#define STATE_VERSION  7
 
-void VM::save_state(FILEIO* state_fio)
+bool VM::process_state(FILEIO* state_fio, bool loading)
 {
-       state_fio->FputUint32(STATE_VERSION);
-       
-       for(DEVICE* device = first_device; device; device = device->next_device) {
-               device->save_state(state_fio);
-       }
-}
-
-bool VM::load_state(FILEIO* state_fio)
-{
-       if(state_fio->FgetUint32() != STATE_VERSION) {
+       if(!state_fio->StateCheckUint32(STATE_VERSION)) {
                return false;
        }
-       for(DEVICE* device = first_device; device; device = device->next_device) {
-               if(!device->load_state(state_fio)) {
+       for(DEVICE* device = first_device; device; device = device->next_device) {
+               // Note: typeid(foo).name is fixed by recent ABI.Not dec 6.
+               // const char *name = typeid(*device).name();
+               //       But, using get_device_name() instead of typeid(foo).name() 20181008 K.O
+               const char *name = device->get_device_name();
+               int len = strlen(name);
+               
+               if(!state_fio->StateCheckInt32(len)) {
+                       if(loading) {
+                               printf("Class name len Error: DEVID=%d EXPECT=%s\n", device->this_device_id, name);
+                       }
                        return false;
                }
-       }
+               if(!state_fio->StateCheckBuffer(name, len, 1)) {
+                       if(loading) {
+                               printf("Class name Error: DEVID=%d EXPECT=%s\n", device->this_device_id, name);
+                       }
+                       return false;
+               }
+               if(!device->process_state(state_fio, loading)) {
+                       if(loading) {
+                               printf("Data loading Error: DEVID=%d\n", device->this_device_id);
+                       }
+                       return false;
+               }
+       }
        return true;
 }
-