OSDN Git Service

[VM][WIP] Use namespace to devices per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / fp1100 / fp1100.cpp
index d403b1e..e5eba0c 100644 (file)
@@ -16,6 +16,7 @@
 #include "../datarec.h"
 #include "../disk.h"
 #include "../hd46505.h"
+#include "../noise.h"
 #include "../upd765a.h"
 #include "../upd7801.h"
 #include "../z80.h"
 // initialize
 // ----------------------------------------------------------------------------
 
-VM::VM(EMU* parent_emu) : emu(parent_emu)
+using FP1100::MAIN;
+using FP1100::SUB;
+using FP1100::FDCPACK;
+using FP1100::RAMPACK;
+using FP1100::ROMPACK;
+
+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
-#if defined(_USE_QT)
        dummy->set_device_name(_T("1st Dummy"));
-       event->set_device_name(_T("EVENT"));
-#endif 
+   
        beep = new BEEP(this, emu);
        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));
        crtc = new HD46505(this, emu);
        fdc = new UPD765A(this, emu);
+       fdc->set_context_noise_seek(new NOISE(this, emu));
+       fdc->set_context_noise_head_down(new NOISE(this, emu));
+       fdc->set_context_noise_head_up(new NOISE(this, emu));
        subcpu = new UPD7801(this, emu);
        maincpu = new Z80(this, emu);
-#if defined(_USE_QT)
-       beep->set_device_name(_T("BEEP"));
-       crtc->set_device_name(_T("HD46505 CRTC"));
-       subcpu->set_device_name(_T("SUB CPU(uPD7801)"));
-       maincpu->set_device_name(_T("MAIN CPU(Z80)"));
-#endif
+       subcpu->set_device_name(_T("SUB CPU (uPD7801)"));
+       maincpu->set_device_name(_T("MAIN CPU (Z80)"));
        
        mainbus = new MAIN(this, emu);
        subbus = new SUB(this, emu);
@@ -79,31 +86,17 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        rampack6->index = 6;
        rampack6->set_device_name(_T("RAM Pack #6"));
        rompack = new ROMPACK(this, emu);
-#if defined(_USE_QT)
-       mainbus->set_device_name(_T("MAIN BUS"));
-       subbus->set_device_name(_T("SUB BUS"));
-
-       fdcpack->set_device_name(_T("FDD PACK"));
-       rampack1->set_device_name(_T("RAM PACK #1"));
-       rampack2->set_device_name(_T("RAM PACK #2"));
-       rampack3->set_device_name(_T("RAM PACK #3"));
-       rampack4->set_device_name(_T("RAM PACK #4"));
-       rampack5->set_device_name(_T("RAM PACK #5"));
-       rampack6->set_device_name(_T("RAM PACK #6"));
-       rompack->set_device_name(_T("ROM PACK"));
-#endif
        // set contexts
        event->set_context_cpu(maincpu);
        event->set_context_cpu(subcpu, SUB_CPU_CLOCKS);
        event->set_context_sound(beep);
        event->set_context_sound(drec);
-#if defined(USE_SOUND_FILES)
-       if(fdc->load_sound_data(UPD765A_SND_TYPE_SEEK, _T("FDDSEEK.WAV"))) {
-               event->set_context_sound(fdc);
-       }
-       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(fdc->get_context_noise_seek());
+       event->set_context_sound(fdc->get_context_noise_head_down());
+       event->set_context_sound(fdc->get_context_noise_head_up());
+       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(subbus, SIG_SUB_EAR, 1);
        crtc->set_context_hsync(subbus, SIG_SUB_HSYNC, 1);
        fdc->set_context_drq(mainbus, SIG_MAIN_INTA, 1);
@@ -143,6 +136,9 @@ 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();
        }
@@ -219,12 +215,6 @@ void VM::draw_screen()
        subbus->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
 // ----------------------------------------------------------------------------
@@ -255,15 +245,15 @@ void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
                beep->set_volume(0, decibel_l, decibel_r);
        } else if(ch == 1) {
                drec->set_volume(0, decibel_l, decibel_r);
-       }
-#if defined(USE_SOUND_FILES)
-       else if(ch == 2) {
-               fdc->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 2) {
+               fdc->get_context_noise_seek()->set_volume(0, decibel_l, decibel_r);
+               fdc->get_context_noise_head_down()->set_volume(0, decibel_l, decibel_r);
+               fdc->get_context_noise_head_up()->set_volume(0, decibel_l, decibel_r);
        } else if(ch == 3) {
-               drec->set_volume(2 + DATAREC_SNDFILE_RELAY_ON , decibel_l, decibel_r);
-               drec->set_volume(2 + DATAREC_SNDFILE_RELAY_OFF, 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);
        }
-#endif
 }
 #endif
 
@@ -310,43 +300,79 @@ bool VM::is_floppy_disk_protected(int drv)
        return fdc->is_disk_protected(drv);
 }
 
-void VM::play_tape(const _TCHAR* file_path)
+uint32_t VM::is_floppy_disk_accessed()
+{
+       return fdc->read_signal(0);
+}
+
+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()
+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();
 }
 
+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(int drv)
+{
+       drec->set_remote(false);
+}
+
+void VM::push_fast_forward(int drv)
+{
+       drec->set_ff_rew(1);
+       drec->set_remote(true);
+}
+
+void VM::push_fast_rewind(int drv)
+{
+       drec->set_ff_rew(-1);
+       drec->set_remote(true);
+}
+
 bool VM::is_frame_skippable()
 {
        return event->is_frame_skippable();
@@ -359,27 +385,38 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  2
+#define STATE_VERSION  4
 
-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;
 }
-