OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / vm / yalky / yalky.cpp
index baa3fcd..30e5849 100644 (file)
@@ -16,6 +16,7 @@
 #include "../i8080.h"
 #include "../i8155.h"
 #include "../memory.h"
+#include "../noise.h"
 
 #ifdef USE_DEBUGGER
 #include "../debugger.h"
 // initialize
 // ----------------------------------------------------------------------------
 
-VM::VM(EMU* parent_emu) : emu(parent_emu)
+VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
 {
-       config.tape_sound = false;
-       config.wave_shaper = false;
+       config.sound_play_tape = false;
+       config.wave_shaper[0] = false;
        
        // create devices
        first_device = last_device = NULL;
        dummy = new DEVICE(this, emu);  // must be 1st device
        event = new EVENT(this, emu);   // must be 2nd device
-#if defined(_USE_QT)
        dummy->set_device_name(_T("1st Dummy"));
-#endif 
        
        drec = new DATAREC(this, emu);
+       drec->set_context_noise_play(new NOISE(this, emu));
+       drec->set_context_noise_stop(new NOISE(this, emu));
+       drec->set_context_noise_fast(new NOISE(this, emu));
        cpu = new I8080(this, emu);     // 8085
        pio = new I8155(this, emu);     // 8156
        memory = new MEMORY(this, emu);
-#if defined(_USE_QT)
-       cpu->set_device_name(_T("CPU(i8080)"));
-#endif 
        
        io = new IO(this, emu);
-#if defined(_USE_QT)
-       io->set_device_name(_T("I/O"));
-#endif 
        
        // set contexts
        event->set_context_cpu(cpu);
        event->set_context_sound(drec);
-#if defined(USE_SOUND_FILES)
-       drec->load_sound_data(DATAREC_SNDFILE_EJECT,     _T("CMTEJECT.WAV"));
-       drec->load_sound_data(DATAREC_SNDFILE_RELAY_ON,  _T("RELAY_ON.WAV"));
-       drec->load_sound_data(DATAREC_SNDFILE_RELAY_OFF, _T("RELAYOFF.WAV"));
-#endif
+       event->set_context_sound(drec->get_context_noise_play());
+       event->set_context_sound(drec->get_context_noise_stop());
+       event->set_context_sound(drec->get_context_noise_fast());
        
        drec->set_context_ear(io, SIG_IO_DREC_EAR, 1);
        cpu->set_context_sod(drec, SIG_DATAREC_MIC, 1);
@@ -92,9 +86,13 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        memory->set_memory_rw(0x6000, 0x60ff, ram);     // 8156
        
        // 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()
@@ -189,17 +187,13 @@ int VM::get_sound_buffer_ptr()
 #ifdef USE_SOUND_VOLUME
 void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
 {
-#if defined(USE_SOUND_FILES)
        if(ch == 0) {
                drec->set_volume(0, decibel_l, decibel_r);
        } else if(ch == 1) {
-               for(int i = 0; i < DATAREC_SNDFILE_END; i++) {
-                       drec->set_volume(i + 2, decibel_l, decibel_r);
-               }
+               drec->get_context_noise_play()->set_volume(0, decibel_l, decibel_r);
+               drec->get_context_noise_stop()->set_volume(0, decibel_l, decibel_r);
+               drec->get_context_noise_fast()->set_volume(0, decibel_l, decibel_r);
        }
-#else
-       drec->set_volume(0, decibel_l, decibel_r);
-#endif
 }
 #endif
 
@@ -207,7 +201,7 @@ void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
 // user interface
 // ----------------------------------------------------------------------------
 
-void VM::play_tape(const _TCHAR* file_path)
+void VM::play_tape(int drv, const _TCHAR* file_path)
 {
        if(drec->play_tape(file_path)) {
                drec->set_remote(true);
@@ -215,7 +209,7 @@ void VM::play_tape(const _TCHAR* file_path)
        }
 }
 
-void VM::rec_tape(const _TCHAR* file_path)
+void VM::rec_tape(int drv, const _TCHAR* file_path)
 {
        if(drec->rec_tape(file_path)) {
                drec->set_remote(true);
@@ -223,55 +217,57 @@ void VM::rec_tape(const _TCHAR* 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);
 }
 
-bool VM::is_tape_inserted()
+bool VM::is_tape_inserted(int drv)
 {
        return drec->is_tape_inserted();
 }
 
-bool VM::is_tape_playing()
+bool VM::is_tape_playing(int drv)
 {
        return drec->is_tape_playing();
 }
 
-bool VM::is_tape_recording()
+bool VM::is_tape_recording(int drv)
 {
        return drec->is_tape_recording();
 }
 
-int VM::get_tape_position()
+int VM::get_tape_position(int drv)
 {
        return drec->get_tape_position();
 }
 
-void VM::push_play()
+const _TCHAR* VM::get_tape_message(int drv)
+{
+       return drec->get_message();
+}
+
+void VM::push_play(int drv)
 {
        drec->set_ff_rew(0);
        drec->set_remote(true);
 }
 
-void VM::push_stop()
+void VM::push_stop(int drv)
 {
        drec->set_remote(false);
 }
 
-void VM::push_fast_forward()
+void VM::push_fast_forward(int drv)
 {
        drec->set_ff_rew(1);
        drec->set_remote(true);
 }
 
-void VM::push_fast_rewind()
+void VM::push_fast_rewind(int drv)
 {
        drec->set_ff_rew(-1);
        drec->set_remote(true);
@@ -289,22 +285,48 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  2
+#define STATE_VERSION  4
+
+#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::YALKY_HEAD")), csp_logger);
+       DECL_STATE_ENTRY_1D_ARRAY(ram, sizeof(ram));
+       DECL_STATE_ENTRY_1D_ARRAY(vram, sizeof(vram));
+       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(vram, sizeof(vram), 1);
+       //state_fio->Fwrite(ram, sizeof(ram), 1);
+       //state_fio->Fwrite(vram, sizeof(vram), 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) {
@@ -312,8 +334,8 @@ bool VM::load_state(FILEIO* state_fio)
                        return false;
                }
        }
-       state_fio->Fread(ram, sizeof(ram), 1);
-       state_fio->Fread(vram, sizeof(vram), 1);
+       //state_fio->Fread(ram, sizeof(ram), 1);
+       //state_fio->Fread(vram, sizeof(vram), 1);
        return true;
 }