OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / vm / fp200 / fp200.cpp
index eacb08b..7c62c22 100644 (file)
@@ -28,7 +28,7 @@
 // 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;
@@ -85,9 +85,13 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        memory->set_wait_rw(0x0000, 0xffff, 1);
        
        // 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()
@@ -211,52 +215,101 @@ void VM::key_up(int code)
 // user interface
 // ----------------------------------------------------------------------------
 
-void VM::play_tape(const _TCHAR* file_path)
+void VM::play_tape(int drv, const _TCHAR* file_path)
 {
        io->close_tape();
        drec->play_tape(file_path);
+//     drec->set_remote(true);
 }
 
-void VM::rec_tape(const _TCHAR* file_path)
+void VM::rec_tape(int drv, const _TCHAR* file_path)
 {
-       drec->close_tape();
+       emu->lock_vm();
+       drec->close_tape();
+       emu->unlock_vm();
+//     drec->set_remote(false);
        io->rec_tape(file_path);
 }
 
-void VM::close_tape()
+void VM::close_tape(int drv)
 {
-#if defined(USE_SOUND_FILES)
-       drec->write_signal(SIG_SOUNDER_ADD + DATAREC_SNDFILE_EJECT, 1, 1);
-#endif
        emu->lock_vm();
        drec->close_tape();
        emu->unlock_vm();
+//     drec->set_remote(false);
        io->close_tape();
 }
 
-bool VM::is_tape_inserted()
+bool VM::is_tape_inserted(int drv)
 {
        return drec->is_tape_inserted() || io->is_tape_inserted();
 }
 
-bool VM::is_tape_playing()
+bool VM::is_tape_playing(int drv)
+{
+       if(drec->is_tape_inserted()) {
+               return drec->is_tape_playing();
+       } else {
+               return io->is_tape_playing();
+       }
+}
+
+bool VM::is_tape_recording(int drv)
+{
+       if(drec->is_tape_inserted()) {
+               return drec->is_tape_recording();
+       } else {
+               return io->is_tape_recording();
+       }
+}
+
+int VM::get_tape_position(int drv)
+{
+       if(drec->is_tape_inserted()) {
+               return drec->get_tape_position();
+       } else {
+               return io->get_tape_position();
+       }
+}
+
+const _TCHAR* VM::get_tape_message(int drv)
 {
-       return drec->is_tape_playing();
+       if(drec->is_tape_inserted()) {
+               return drec->get_message();
+       } else {
+               return NULL;
+       }
+}
+
+void VM::push_play(int drv)
+{
+       if(drec->is_tape_inserted()) {
+               drec->set_ff_rew(0);
+               drec->set_remote(true);
+       }
 }
 
-bool VM::is_tape_recording()
+void VM::push_stop(int drv)
 {
-       return drec->is_tape_recording();
+       if(drec->is_tape_inserted()) {
+               drec->set_remote(false);
+       }
 }
 
-int VM::get_tape_position()
+void VM::push_fast_forward(int drv)
 {
-       return drec->get_tape_position();
+       if(drec->is_tape_inserted()) {
+               drec->set_ff_rew(1);
+               drec->set_remote(true);
+       }
 }
 
-const _TCHAR* VM::get_tape_message()
+void VM::push_fast_rewind(int drv)
 {
-       return drec->get_message();
+       if(drec->is_tape_inserted()) {
+               drec->set_ff_rew(-1);
+               drec->set_remote(true);
+       }
 }
 
 bool VM::is_frame_skippable()
@@ -271,21 +324,44 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  2
+#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::FP_200_HEAD")), csp_logger);
+       DECL_STATE_ENTRY_MULTI(void, ram, sizeof(ram));
+       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);
+       //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);
        }
-       state_fio->Fwrite(ram, sizeof(ram), 1);
+       //state_fio->Fwrite(ram, sizeof(ram), 1);
 }
 
 bool VM::load_state(FILEIO* state_fio)
 {
-       if(state_fio->FgetUint32() != STATE_VERSION) {
+       //if(state_fio->FgetUint32() != STATE_VERSION) {
+       //      return false;
+       //}
+       bool mb = false;
+       if(state_entry != NULL) {
+               mb = state_entry->load_state(state_fio);
+       }
+       if(!mb) {
+               emu->out_debug_log("INFO: HEADER DATA ERROR");
                return false;
        }
        for(DEVICE* device = first_device; device; device = device->next_device) {
@@ -293,7 +369,7 @@ bool VM::load_state(FILEIO* state_fio)
                        return false;
                }
        }
-       state_fio->Fread(ram, sizeof(ram), 1);
+       //state_fio->Fread(ram, sizeof(ram), 1);
        return true;
 }