OSDN Git Service

[VM][STATE] Use namespace {VMNAME} to separate per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / pasopia7 / pasopia7.cpp
index 877794d..e5cdb5c 100644 (file)
@@ -18,6 +18,7 @@
 #include "../i8255.h"
 #include "../io.h"
 #include "../ls393.h"
+#include "../noise.h"
 #include "../not.h"
 #include "../pcm1bit.h"
 #include "../sn76489an.h"
 #include "iobus.h"
 #include "iotrap.h"
 #include "keyboard.h"
-#include "memory.h"
+#include "./memory.h"
 #include "pac2.h"
 
+using PASOPIA7::DISPLAY;
+using PASOPIA7::FLOPPY;
+using PASOPIA7::IOBUS;
+using PASOPIA7::IOTRAP;
+using PASOPIA7::KEYBOARD;
+using PASOPIA7::MEMORY;
+using PASOPIA7::PAC2;
+
 // ----------------------------------------------------------------------------
 // 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;
@@ -50,17 +59,28 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        event = new EVENT(this, emu);   // must be 2nd device
        
        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);
        pio0 = new I8255(this, emu);
+       pio0->set_device_name(_T("8255 PIO (Display)"));
        pio1 = new I8255(this, emu);
+       pio1->set_device_name(_T("8255 PIO (Display/Memory)"));
        pio2 = new I8255(this, emu);
+       pio2->set_device_name(_T("8255 PIO (Sound/Data Recorder)"));
        io = new IO(this, emu);
        flipflop = new LS393(this, emu); // LS74
-       p_not = new NOT(this, emu);
+       not_remote = new NOT(this, emu);
        pcm = new PCM1BIT(this, emu);
        psg0 = new SN76489AN(this, emu);
+       psg0->set_device_name(_T("SN76489AN PSG #1"));
        psg1 = new SN76489AN(this, emu);
+       psg1->set_device_name(_T("SN76489AN PSG #2"));
        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));
        cpu = new Z80(this, emu);
        ctc = new Z80CTC(this, emu);
        pio = new Z80PIO(this, emu);
@@ -79,6 +99,12 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        event->set_context_sound(psg0);
        event->set_context_sound(psg1);
        event->set_context_sound(drec);
+       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(pio2, SIG_I8255_PORT_B, 0x20);
        crtc->set_context_disp(pio0, SIG_I8255_PORT_B, 8);
@@ -93,11 +119,11 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        pio2->set_context_port_a(psg0, SIG_SN76489AN_MUTE, 0x02, 0);
        pio2->set_context_port_a(psg1, SIG_SN76489AN_MUTE, 0x02, 0);
        pio2->set_context_port_a(drec, SIG_DATAREC_MIC, 0x10, 0);
-       pio2->set_context_port_a(p_not, SIG_NOT_INPUT, 0x20, 0);
+       pio2->set_context_port_a(not_remote, SIG_NOT_INPUT, 0x20, 0);
        pio2->set_context_port_a(iotrap, SIG_IOTRAP_I8255_2_A, 0xff, 0);
        pio2->set_context_port_c(iotrap, SIG_IOTRAP_I8255_2_C, 0xff, 0);
        flipflop->set_context_1qa(pcm, SIG_PCM1BIT_SIGNAL, 1);
-       p_not->set_context_out(drec, SIG_DATAREC_REMOTE, 1);
+       not_remote->set_context_out(drec, SIG_DATAREC_REMOTE, 1);
        fdc->set_context_irq(floppy, SIG_FLOPPY_INTR, 1);
        ctc->set_context_zc0(ctc, SIG_Z80CTC_TRIG_1, 1);
        ctc->set_context_zc1(flipflop, SIG_LS393_CLK, 1);
@@ -153,6 +179,9 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        io->set_iomap_single_rw(0xe6, floppy);
        
        // initialize and reset all devices except the event manager
+#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();
        }
@@ -215,9 +244,9 @@ void VM::run()
        event->drive();
 }
 
-double VM::frame_rate()
+double VM::get_frame_rate()
 {
-       return event->frame_rate();
+       return event->get_frame_rate();
 }
 
 // ----------------------------------------------------------------------------
@@ -243,12 +272,6 @@ void VM::draw_screen()
        display->draw_screen();
 }
 
-int VM::access_lamp()
-{
-       uint32 status = fdc->read_signal(0);
-       return (status & (1 | 4)) ? 1 : (status & (2 | 8)) ? 2 : 0;
-}
-
 // ----------------------------------------------------------------------------
 // soud manager
 // ----------------------------------------------------------------------------
@@ -259,83 +282,144 @@ void VM::initialize_sound(int rate, int samples)
        event->initialize_sound(rate, samples);
        
        // init sound gen
-       pcm->init(rate, 3600);
-       psg0->init(rate, 1996800, 3600);
-       psg1->init(rate, 1996800, 3600);
+       pcm->initialize_sound(rate, 3600);
+       psg0->initialize_sound(rate, 1996800, 3600);
+       psg1->initialize_sound(rate, 1996800, 3600);
 }
 
-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
+void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
+{
+       if(ch == 0) {
+               psg0->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 1) {
+               psg1->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 2) {
+               pcm->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 3) {
+               drec->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 4) {
+               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 == 5) {
+               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
+
 // ----------------------------------------------------------------------------
 // user interface
 // ----------------------------------------------------------------------------
 
-void VM::open_disk(int drv, const _TCHAR* file_path, int bank)
+void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
 {
        fdc->open_disk(drv, file_path, bank);
 }
 
-void VM::close_disk(int drv)
+void VM::close_floppy_disk(int drv)
 {
        fdc->close_disk(drv);
 }
 
-bool VM::disk_inserted(int drv)
+bool VM::is_floppy_disk_inserted(int drv)
 {
-       return fdc->disk_inserted(drv);
+       return fdc->is_disk_inserted(drv);
 }
 
-void VM::set_disk_protected(int drv, bool value)
+void VM::is_floppy_disk_protected(int drv, bool value)
 {
-       fdc->set_disk_protected(drv, value);
+       fdc->is_disk_protected(drv, value);
 }
 
-bool VM::get_disk_protected(int drv)
+bool VM::is_floppy_disk_protected(int drv)
 {
-       return fdc->get_disk_protected(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(int drv)
+{
+       return drec->is_tape_inserted();
+}
+
+bool VM::is_tape_playing(int drv)
+{
+       return drec->is_tape_playing();
 }
 
-bool VM::tape_inserted()
+bool VM::is_tape_recording(int drv)
 {
-       return drec->tape_inserted();
+       return drec->is_tape_recording();
 }
 
-bool VM::tape_playing()
+int VM::get_tape_position(int drv)
 {
-       return drec->tape_playing();
+       return drec->get_tape_position();
 }
 
-bool VM::tape_recording()
+const _TCHAR* VM::get_tape_message(int drv)
 {
-       return drec->tape_recording();
+       return drec->get_message();
 }
 
-int VM::tape_position()
+void VM::push_play(int drv)
 {
-       return drec->tape_position();
+       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);
 }
 
 void VM::load_binary(int drv, const _TCHAR* file_path)
@@ -343,9 +427,9 @@ void VM::load_binary(int drv, const _TCHAR* file_path)
        pac2->open_rampac2(drv, file_path);
 }
 
-bool VM::now_skip()
+bool VM::is_frame_skippable()
 {
-       return event->now_skip();
+       return event->is_frame_skippable();
 }
 
 void VM::update_config()
@@ -355,27 +439,38 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  1
+#define STATE_VERSION  3
 
-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;
 }
-