OSDN Git Service

[VM] Apply VM_TEMPLATE to all VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / m5 / m5.cpp
index 948eb3e..999cac0 100644 (file)
@@ -15,6 +15,7 @@
 #include "../datarec.h"
 #include "../io.h"
 #include "../memory.h"
+#include "../noise.h"
 #include "../sn76489an.h"
 #include "../tms9918a.h"
 #include "../z80.h"
 // 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;
        dummy = new DEVICE(this, emu);  // must be 1st device
        event = new EVENT(this, emu);   // must be 2nd device
+       dummy->set_device_name(_T("1st Dummy"));
        
        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));
        io = new IO(this, emu);
        memory = new MEMORY(this, emu);
        psg = new SN76489AN(this, emu);
@@ -48,11 +53,13 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        
        cmt = new CMT(this, emu);
        key = new KEYBOARD(this, emu);
-       
        // set contexts
        event->set_context_cpu(cpu);
        event->set_context_sound(psg);
        event->set_context_sound(drec);
+       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(cmt, SIG_CMT_IN, 1);
        drec->set_context_end(cmt, SIG_CMT_EOT, 1);
@@ -101,6 +108,7 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        for(DEVICE* device = first_device; device; device = device->next_device) {
                device->initialize();
        }
+       decl_state();
        inserted = false;
 }
 
@@ -177,17 +185,17 @@ void VM::initialize_sound(int rate, int samples)
        event->initialize_sound(rate, samples);
        
        // init sound gen
-       psg->init(rate, 3579545, 8000);
+       psg->initialize_sound(rate, 3579545, 8000);
 }
 
-uint16* VM::create_sound(int* extra_frames)
+uint16_t* VM::create_sound(int* extra_frames)
 {
        return event->create_sound(extra_frames);
 }
 
-int VM::sound_buffer_ptr()
+int VM::get_sound_buffer_ptr()
 {
-       return event->sound_buffer_ptr();
+       return event->get_sound_buffer_ptr();
 }
 
 #ifdef USE_SOUND_VOLUME
@@ -197,6 +205,10 @@ void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
                psg->set_volume(0, decibel_l, decibel_r);
        } else if(ch == 1) {
                drec->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 2) {
+               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);
        }
 }
 #endif
@@ -223,7 +235,7 @@ void VM::close_cart(int drv)
        }
 }
 
-bool VM::cart_inserted(int drv)
+bool VM::is_cart_inserted(int drv)
 {
        if(drv == 0) {
                return inserted;
@@ -232,44 +244,77 @@ bool VM::cart_inserted(int drv)
        }
 }
 
-void VM::play_tape(const _TCHAR* file_path)
+void VM::play_tape(int drv, const _TCHAR* file_path)
 {
        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->rec_tape(file_path);
+//     drec->set_remote(true);
 }
 
-void VM::close_tape()
+void VM::close_tape(int drv)
 {
+       emu->lock_vm();
        drec->close_tape();
+       emu->unlock_vm();
+//     drec->set_remote(false);
+}
+
+bool VM::is_tape_inserted(int drv)
+{
+       return drec->is_tape_inserted();
+}
+
+bool VM::is_tape_playing(int drv)
+{
+       return drec->is_tape_playing();
+}
+
+bool VM::is_tape_recording(int drv)
+{
+       return drec->is_tape_recording();
+}
+
+int VM::get_tape_position(int drv)
+{
+       return drec->get_tape_position();
 }
 
-bool VM::tape_inserted()
+const _TCHAR* VM::get_tape_message(int drv)
 {
-       return drec->tape_inserted();
+       return drec->get_message();
 }
 
-bool VM::tape_playing()
+void VM::push_play(int drv)
 {
-       return drec->tape_playing();
+       drec->set_ff_rew(0);
+       drec->set_remote(true);
 }
 
-bool VM::tape_recording()
+void VM::push_stop(int drv)
 {
-       return drec->tape_recording();
+       drec->set_remote(false);
 }
 
-int VM::tape_position()
+void VM::push_fast_forward(int drv)
 {
-       return drec->tape_position();
+       drec->set_ff_rew(1);
+       drec->set_remote(true);
 }
 
-bool VM::now_skip()
+void VM::push_fast_rewind(int drv)
 {
-       return event->now_skip();
+       drec->set_ff_rew(-1);
+       drec->set_remote(true);
+}
+
+bool VM::is_frame_skippable()
+{
+       return event->is_frame_skippable();
 }
 
 void VM::update_config()
@@ -279,23 +324,50 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  1
+#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::M5_HEAD")), csp_logger);
+       DECL_STATE_ENTRY_1D_ARRAY(ram, sizeof(ram));
+       DECL_STATE_ENTRY_1D_ARRAY(ext, sizeof(ext));
+       DECL_STATE_ENTRY_BOOL(inserted);
+       
+       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(ext, sizeof(ext), 1);
-       state_fio->FputBool(inserted);
+       //state_fio->Fwrite(ram, sizeof(ram), 1);
+       //state_fio->Fwrite(ext, sizeof(ext), 1);
+       //state_fio->FputBool(inserted);
 }
 
 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) {
@@ -303,9 +375,9 @@ bool VM::load_state(FILEIO* state_fio)
                        return false;
                }
        }
-       state_fio->Fread(ram, sizeof(ram), 1);
-       state_fio->Fread(ext, sizeof(ext), 1);
-       inserted = state_fio->FgetBool();
+       //state_fio->Fread(ram, sizeof(ram), 1);
+       //state_fio->Fread(ext, sizeof(ext), 1);
+       //inserted = state_fio->FgetBool();
        return true;
 }