OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz700 / mz700.cpp
index 83804d0..f4aa492 100644 (file)
@@ -54,7 +54,7 @@
 // initialize
 // ----------------------------------------------------------------------------
 
-VM::VM(EMU* parent_emu) : emu(parent_emu)
+VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
 {
 #if defined(_MZ800)
        boot_mode = config.boot_mode;
@@ -384,9 +384,13 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
 #endif
 
        // 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();
        }
+       decl_state();
 }
 
 VM::~VM()
@@ -535,13 +539,13 @@ void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
 void VM::play_tape(int drv, const _TCHAR* file_path)
 {
        drec->play_tape(file_path);
-       drec->set_remote(true);
+//     drec->set_remote(true);
 }
 
 void VM::rec_tape(int drv, const _TCHAR* file_path)
 {
        drec->rec_tape(file_path);
-       drec->set_remote(true);
+//     drec->set_remote(true);
 }
 
 void VM::close_tape(int drv)
@@ -550,7 +554,7 @@ void VM::close_tape(int drv)
        drec->close_tape();
        emu->unlock_vm();
 
-       drec->set_remote(false);
+       //drec->set_remote(false);
 }
 
 bool VM::is_tape_inserted(int drv)
@@ -685,31 +689,47 @@ void VM::update_config()
 
 #define STATE_VERSION  3
 
+#include "../../statesub.h"
+#include "../../qt/gui/csp_logger.h"
+extern CSP_Logger DLL_PREFIX_I *csp_logger;
+
+void VM::decl_state(void)
+{
+       state_entry = new csp_state_utils(STATE_VERSION, 0, (_TCHAR *)(_T("CSP::MZ700_SERIES_HEAD")), csp_logger);
+#if defined(_MZ800)
+       DECL_STATE_ENTRY_INT32(boot_mode);
+#endif
+       for(DEVICE* device = first_device; device; device = device->next_device) {
+               device->decl_state();
+       }
+}
+
 void VM::save_state(FILEIO* state_fio)
 {
-       state_fio->FputUint32(STATE_VERSION);
-       
+       if(state_entry != NULL) {
+               state_entry->save_state(state_fio);
+       }
        for(DEVICE* device = first_device; device; device = device->next_device) {
                device->save_state(state_fio);
        }
-#if defined(_MZ800)
-       state_fio->FputInt32(boot_mode);
-#endif
 }
 
 bool VM::load_state(FILEIO* state_fio)
 {
-       if(state_fio->FgetUint32() != STATE_VERSION) {
+       bool mb = false;
+       if(state_entry != NULL) {
+               mb = state_entry->load_state(state_fio);
+       }
+       if(!mb) {
+               printf("INFO: HEADER DATA ERROR\n");
                return false;
        }
        for(DEVICE* device = first_device; device; device = device->next_device) {
                if(!device->load_state(state_fio)) {
+                       printf("INFO: DATA ERROR at DEVID=%d\n", device->this_device_id);
                        return false;
                }
        }
-#if defined(_MZ800)
-       boot_mode = state_fio->FgetInt32();
-#endif
        return true;
 }