OSDN Git Service

[VM][STATE] Use namespace {VMNAME} to separate per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz5500 / mz5500.cpp
index 6317d09..e8548f2 100644 (file)
 #include "../i8237.h"
 #include "../i8255.h"
 #include "../i8259.h"
-#if defined(HAS_I286) || defined(HAS_I186)
+//#if defined(HAS_I286) || defined(HAS_I186)
 #include "../i286.h"
-#else
-#include "../i86.h"
-#endif
+//#else
+//#include "../i86.h"
+//#endif
 #include "../io.h"
 #include "../ls393.h"
 #include "../mz1p17.h"
 
 #include "display.h"
 #include "keyboard.h"
-#include "memory.h"
+#include "./memory.h"
 #include "sysport.h"
 
+using MZ5500::DISPLAY;
+using MZ5500::KEYBOARD;
+using MZ5500::MEMORY;
+using MZ5500::SYSPORT;
+
 // ----------------------------------------------------------------------------
 // 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;
@@ -56,9 +61,9 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        event = new EVENT(this, emu);   // must be 2nd device
        dummy->set_device_name(_T("1st Dummy"));
        
-       if(config.printer_device_type == 0) {
+       if(config.printer_type == 0) {
                printer = new PRNFILE(this, emu);
-       } else if(config.printer_device_type == 1) {
+       } else if(config.printer_type == 1) {
                printer = new MZ1P17(this, emu);
        } else {
                printer = dummy;
@@ -66,11 +71,11 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        dma = new I8237(this, emu);
        pio = new I8255(this, emu);
        pic = new I8259(this, emu);
-#if defined(HAS_I286) || defined(HAS_I186)
+//#if defined(HAS_I286) || defined(HAS_I186)
        cpu = new I286(this, emu);
-#else
-       cpu = new I86(this, emu);
-#endif
+//#else
+//     cpu = new I86(this, emu);
+//#endif
        io = new IO(this, emu);
        div = new LS393(this, emu);
        not_data0 = new NOT(this, emu);
@@ -117,11 +122,11 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        event->set_context_sound(fdc->get_context_noise_head_down());
        event->set_context_sound(fdc->get_context_noise_head_up());
        
-       if(config.printer_device_type == 0) {
+       if(config.printer_type == 0) {
                PRNFILE *prnfile = (PRNFILE *)printer;
                prnfile->set_context_busy(not_busy, SIG_NOT_INPUT, 1);
                prnfile->set_context_ack(pio, SIG_I8255_PORT_C, 0x40);
-       } else if(config.printer_device_type == 1) {
+       } else if(config.printer_type == 1) {
                MZ1P17 *mz1p17 = (MZ1P17 *)printer;
                mz1p17->mode = MZ1P17_MODE_MZ1;
                mz1p17->set_context_busy(not_busy, SIG_NOT_INPUT, 1);
@@ -231,6 +236,9 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        io->set_iomap_range_r(0x270, 0x27f, sysport);
        
        // 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();
        }
@@ -319,12 +327,6 @@ void VM::draw_screen()
        display->draw_screen();
 }
 
-uint32_t VM::get_access_lamp_status()
-{
-       uint32_t status = fdc->read_signal(0);
-       return (status & (1 | 4)) ? 1 : (status & (2 | 8)) ? 2 : 0;
-}
-
 // ----------------------------------------------------------------------------
 // soud manager
 // ----------------------------------------------------------------------------
@@ -375,6 +377,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
 // ----------------------------------------------------------------------------
@@ -404,6 +416,11 @@ bool VM::is_floppy_disk_protected(int drv)
        return fdc->is_disk_protected(drv);
 }
 
+uint32_t VM::is_floppy_disk_accessed()
+{
+       return fdc->read_signal(0);
+}
+
 bool VM::is_frame_skippable()
 {
        return event->is_frame_skippable();
@@ -416,27 +433,38 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  4
+#define STATE_VERSION  5
 
-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;
 }
-