OSDN Git Service

[VM][WIP] Use namespace to devices per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz700 / mz700.cpp
index 70dff0b..2015793 100644 (file)
@@ -19,6 +19,7 @@
 #include "../i8253.h"
 #include "../i8255.h"
 #include "../io.h"
+#include "../noise.h"
 #include "../pcm1bit.h"
 #include "../z80.h"
 
 #include "emm.h"
 #include "kanji.h"
 #include "keyboard.h"
-#include "memory.h"
+#include "./memory.h"
 #include "ramfile.h"
 
 #if defined(_MZ800) || defined(_MZ1500)
 #include "../disk.h"
 #include "../mb8877.h"
-#if defined(_MZ800)
 #include "../not.h"
-#endif
 #include "../sn76489an.h"
 #include "../z80pio.h"
 #include "../z80sio.h"
 #include "floppy.h"
 #if defined(_MZ1500)
+#include "../mz1p17.h"
+#include "../prnfile.h"
 #include "psg.h"
 #endif
 #include "quickdisk.h"
 #endif
 
+//using        MZ700::CMOS* cmos;
+using MZ700::EMM;
+using MZ700::KANJI;
+using MZ700::KEYBOARD;
+using MZ700::MEMORY;
+using MZ700::RAMFILE;
+#if defined(_MZ800) || defined(_MZ1500)
+using MZ700::FLOPPY;
+  #if defined(_MZ1500)
+using MZ700::PSG;
+  #endif
+using MZ700::QUICKDISK;
+#endif
 // ----------------------------------------------------------------------------
 // initialize
 // ----------------------------------------------------------------------------
 
-VM::VM(EMU* parent_emu) : emu(parent_emu)
+VM::VM(EMU* parent_emu) : VM_TEMPLATE(parent_emu)
 {
 #if defined(_MZ800)
        boot_mode = config.boot_mode;
@@ -63,35 +77,63 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        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"));
+
        and_int = new AND(this, emu);
+       and_int->set_device_name(_T("AND Gate (IRQ)"));
+   
        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));
        pit = new I8253(this, emu);
        pio = new I8255(this, emu);
        io = new IO(this, emu);
        pcm = new PCM1BIT(this, emu);
        cpu = new Z80(this, emu);
-       
+
 //     cmos = new CMOS(this, emu);
        emm = new EMM(this, emu);
        kanji = new KANJI(this, emu);
        keyboard = new KEYBOARD(this, emu);
        memory = new MEMORY(this, emu);
        ramfile = new RAMFILE(this, emu);
-       
+
 #if defined(_MZ800) || defined(_MZ1500)
        and_snd = new AND(this, emu);
+       and_snd->set_device_name(_T("AND Gate (Sound)"));
        fdc = new MB8877(this, emu);    // mb8876
+       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));
 #if defined(_MZ800)
        not_pit = new NOT(this, emu);
+       not_pit->set_device_name(_T("NOT Gate (PIT)"));
        psg = new SN76489AN(this, emu);
 #elif defined(_MZ1500)
+       if(config.printer_type == 0) {
+               printer = new PRNFILE(this, emu);
+       } else if(config.printer_type == 1) {
+               printer = new MZ1P17(this, emu);
+       } else {
+               printer = dummy;
+       }
+       not_reset = new NOT(this, emu);
+       not_reset->set_device_name(_T("NOT Gate (Reset)"));
+       not_strobe = new NOT(this, emu);
+       not_strobe->set_device_name(_T("NOT Gate (Prinet Strobe)"));
        psg_l = new SN76489AN(this, emu);
+       psg_l->set_device_name(_T("SN76489AN PSG (Left)"));
        psg_r = new SN76489AN(this, emu);
+       psg_r->set_device_name(_T("SN76489AN PSG (Right)"));
 #endif
        pio_int = new Z80PIO(this, emu);
+       pio_int->set_device_name(_T("Z80 PIO(Interrupt)"));
        sio_rs = new Z80SIO(this, emu);
+       sio_rs->set_device_name(_T("Z80 SIO(RS-232C)"));
        sio_qd = new Z80SIO(this, emu);
+       sio_qd->set_device_name(_T("Z80 SIO(Quick Disk)"));
        
        floppy = new FLOPPY(this, emu);
 #if defined(_MZ1500)
@@ -99,7 +141,6 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
 #endif
        qd = new QUICKDISK(this, emu);
 #endif
-       event->set_context_sound(drec);
        
        // set contexts
        event->set_context_cpu(cpu);
@@ -110,9 +151,16 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        event->set_context_sound(psg_l);
        event->set_context_sound(psg_r);
 #endif
-#if defined(DATAREC_SOUND)
        event->set_context_sound(drec);
+#if defined(_MZ800) || defined(_MZ1500)
+       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());
 #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());
+       
        // VRAM/PCG wait
        memory->set_context_cpu(cpu);
        
@@ -140,9 +188,11 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        pio->set_context_port_c(and_snd, SIG_AND_BIT_1, 1, 0);
        and_snd->set_context_out(pcm, SIG_PCM1BIT_SIGNAL, 1);
        and_snd->set_mask(SIG_AND_BIT_0 | SIG_AND_BIT_1);
+       // Sound:: Force realtime rendering. This is temporally fix. 20161024 K.O
 #else
        // 8253:OUT#0 -> SPEAKER
        pit->set_context_ch0(pcm, SIG_PCM1BIT_SIGNAL, 1);
+       // Sound:: Force realtime rendering. This is temporally fix. 20161024 K.O
 #endif
 #if defined(_MZ800)
        // 8253:OUT#0 -> NOT -> Z80PIO:PA4
@@ -195,8 +245,6 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        // 8255:PC7 <- MEMORY:VBLANK
        
 #if defined(_MZ800) || defined(_MZ1500)
-       // Z80PIO:PA0 <- PRINTER:RDA
-       // Z80PIO:PA1 <- PRINTER:STA
        // Z80PIO:PA2 <- GND
        // Z80PIO:PA3 <- GND
 #if defined(_MZ800)
@@ -204,11 +252,27 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        // Z80PIO:PA5 <- HBLANK
        memory->set_context_pio_int(pio_int);
 #elif defined(_MZ1500)
+       // Z80PIO:PA0 <- PRINTER:RDA (BUSY)
+       // Z80PIO:PA1 <- PRINTER:STA (PE)
+       if(config.printer_type == 0) {
+               PRNFILE *prnfile = (PRNFILE *)printer;
+               prnfile->set_context_busy(pio_int, SIG_Z80PIO_PORT_A, 0x01);
+       } else if(config.printer_type == 1) {
+               MZ1P17 *mz1p17 = (MZ1P17 *)printer;
+               mz1p17->mode = MZ1P17_MODE_MZ2;
+               mz1p17->set_context_busy(pio_int, SIG_Z80PIO_PORT_A, 0x01);
+       }
        // Z80PIO:PA4 <- 8253:OUT#0
        // Z80PIO:PA5 <- 8253:OUT#2
+       // Z80PIO:PA6 -> NOT -> PRINTER:IRT (RESET)
+       // Z80PIO:PA7 -> NOT -> PRINTER:RDP (STROBE)
+       // Z80PIO:PB  -> PRINTER:DATA
+       pio_int->set_context_port_a(not_reset, SIG_NOT_INPUT, 0x40, 0);
+       not_reset->set_context_out(printer, SIG_PRINTER_RESET, 0x01);
+       pio_int->set_context_port_a(not_strobe, SIG_NOT_INPUT, 0x80, 0);
+       not_strobe->set_context_out(printer, SIG_PRINTER_STROBE, 0x01);
+       pio_int->set_context_port_b(printer, SIG_PRINTER_DATA, 0xff, 0);
 #endif
-       // Z80PIO:PA6 -> PRINTER:IRT
-       // Z80PIO:PA7 -> PRINTER:RDP
 #endif
        
 #if defined(_MZ800) || defined(_MZ1500)
@@ -331,14 +395,21 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        // printer
        io->set_iovalue_single_r(0xfe, 0xc0);
 #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();
        }
 #if defined(_MZ800) || defined(_MZ1500)
-       for(int i = 0; i < MAX_DRIVE; i++) {
-               fdc->set_drive_type(i, DRIVE_TYPE_2DD);
+       for(int drv = 0; drv < MAX_DRIVE; drv++) {
+//             if(config.drive_type) {
+                       fdc->set_drive_type(drv, DRIVE_TYPE_2DD);
+//             } else {
+//                     fdc->set_drive_type(drv, DRIVE_TYPE_2D);
+//             }
        }
 #endif
 }
@@ -379,6 +450,9 @@ void VM::reset()
 #if defined(_MZ800) || defined(_MZ1500)
        and_snd->write_signal(SIG_AND_BIT_1, 1, 1);     // SNDMASK = H
 #endif
+#if defined(_MZ1500)
+       pio_int->write_signal(SIG_Z80PIO_PORT_A, 0x02, 0x03);   // BUSY = L, PE = H
+#endif
 }
 
 void VM::run()
@@ -409,14 +483,6 @@ void VM::draw_screen()
        memory->draw_screen();
 }
 
-#if defined(_MZ800) || defined(_MZ1500)
-int VM::access_lamp()
-{
-  uint32 status = fdc->read_signal(0) | qd->read_signal(0); // 4 + 1: Nagative
-  return (status & (1 | 4)) ? 1 : (status & (2 | 8)) ? 2 : 0;
-}
-#endif
-
 // ----------------------------------------------------------------------------
 // soud manager
 // ----------------------------------------------------------------------------
@@ -427,144 +493,203 @@ void VM::initialize_sound(int rate, int samples)
        event->initialize_sound(rate, samples);
        
        // init sound gen
-       pcm->init(rate, 8000);
+       pcm->initialize_sound(rate, 8000);
 #if defined(_MZ800)
-       psg->init(rate, 3579545, 8000);
+       psg->initialize_sound(rate, 3579545, 8000);
 #elif defined(_MZ1500)
-       psg_l->init(rate, 3579545, 8000);
-       psg_r->init(rate, 3579545, 8000);
+       psg_l->initialize_sound(rate, 3579545, 8000);
+       psg_r->initialize_sound(rate, 3579545, 8000);
 #endif
 }
 
-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->get_sound_buffer_ptr();
+}
+
+#ifdef USE_SOUND_VOLUME
+void VM::set_sound_device_volume(int ch, int decibel_l, int decibel_r)
 {
-       return event->sound_buffer_ptr();
+#if defined(_MZ800)
+       if(ch-- == 0) {
+               psg->set_volume(0, decibel_l, decibel_r);
+       } else
+#elif defined(_MZ1500)
+       if(ch-- == 0) {
+               psg_l->set_volume(0, decibel_l, decibel_r);
+       } else if(ch-- == 0) {
+               psg_r->set_volume(0, decibel_l, decibel_r);
+       } else
+#endif
+       if(ch-- == 0) {
+               pcm->set_volume(0, decibel_l, decibel_r);
+       } else if(ch-- == 0) {
+               drec->set_volume(0, decibel_l, decibel_r);
+#if defined(_MZ800) || defined(_MZ1500)
+       } else if(ch-- == 0) {
+               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);
+#endif
+       } else if(ch-- == 0) {
+               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::play_tape(const _TCHAR* file_path)
+void VM::play_tape(int drv, const _TCHAR* file_path)
 {
        drec->play_tape(file_path);
-       drec->write_signal(SIG_DATAREC_REMOTE, 1, 1);
+//     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->write_signal(SIG_DATAREC_REMOTE, 1, 1);
+//     drec->set_remote(true);
 }
 
-void VM::close_tape()
+void VM::close_tape(int drv)
 {
+       emu->lock_vm();
        drec->close_tape();
-       drec->write_signal(SIG_DATAREC_REMOTE, 0, 0);
+       emu->unlock_vm();
+
+       //drec->set_remote(false);
 }
 
-bool VM::tape_inserted()
+bool VM::is_tape_inserted(int drv)
 {
-       return drec->tape_inserted();
+       return drec->is_tape_inserted();
 }
 
+bool VM::is_tape_playing(int drv)
+{
+       return drec->is_tape_playing();
+}
 
-bool VM::tape_playing()
+bool VM::is_tape_recording(int drv)
 {
-       return drec->tape_playing();
+       return drec->is_tape_recording();
 }
 
-bool VM::tape_recording()
+int VM::get_tape_position(int drv)
 {
-       return drec->tape_recording();
+       return drec->get_tape_position();
 }
 
-int VM::tape_position()
+const _TCHAR* VM::get_tape_message(int drv)
 {
-       return drec->tape_position();
+       return drec->get_message();
 }
 
-void VM::push_play()
+void VM::push_play(int drv)
 {
        drec->set_ff_rew(0);
-       drec->write_signal(SIG_DATAREC_REMOTE, 1, 1);
+       drec->set_remote(true);
 }
 
-void VM::push_stop()
+void VM::push_stop(int drv)
 {
-       drec->write_signal(SIG_DATAREC_REMOTE, 0, 1);
+       drec->set_remote(false);
 }
 
-void VM::push_fast_forward()
+void VM::push_fast_forward(int drv)
 {
        drec->set_ff_rew(1);
-       drec->write_signal(SIG_DATAREC_REMOTE, 1, 1);
+       drec->set_remote(true);
 }
 
-void VM::push_fast_rewind()
+void VM::push_fast_rewind(int drv)
 {
        drec->set_ff_rew(-1);
-       drec->write_signal(SIG_DATAREC_REMOTE, 1, 1);
+       drec->set_remote(true);
 }
 
 #if defined(_MZ800) || defined(_MZ1500)
-void VM::open_quickdisk(int drv, const _TCHAR* file_path)
+void VM::open_quick_disk(int drv, const _TCHAR* file_path)
 {
        if(drv == 0) {
                qd->open_disk(file_path);
        }
 }
 
-void VM::close_quickdisk(int drv)
+void VM::close_quick_disk(int drv)
 {
        if(drv == 0) {
                qd->close_disk();
        }
 }
 
-bool VM::quickdisk_inserted(int drv)
+bool VM::is_quick_disk_inserted(int drv)
 {
        if(drv == 0) {
-               return qd->disk_inserted();
+               return qd->is_disk_inserted();
        } else {
                return false;
        }
 }
 
-void VM::open_disk(int drv, const _TCHAR* file_path, int bank)
+uint32_t VM::is_quick_disk_accessed()
+{
+       return qd->read_signal(0);
+}
+
+void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
 {
        fdc->open_disk(drv, file_path, bank);
+       
+       if(fdc->get_media_type(drv) == MEDIA_TYPE_2DD) {
+               if(fdc->get_drive_type(drv) == DRIVE_TYPE_2D) {
+                       fdc->set_drive_type(drv, DRIVE_TYPE_2DD);
+               }
+       } else if(fdc->get_media_type(drv) == MEDIA_TYPE_2D) {
+               if(fdc->get_drive_type(drv) == DRIVE_TYPE_2DD) {
+                       fdc->set_drive_type(drv, DRIVE_TYPE_2D);
+               }
+       }
 }
 
-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->is_disk_inserted(drv);
+}
+
+void VM::is_floppy_disk_protected(int drv, bool value)
 {
-       return fdc->disk_inserted(drv);
+       fdc->is_disk_protected(drv, value);
 }
 
-void VM::set_disk_protected(int drv, bool value)
+bool VM::is_floppy_disk_protected(int drv)
 {
-       fdc->set_disk_protected(drv, value);
+       return fdc->is_disk_protected(drv);
 }
 
-bool VM::get_disk_protected(int drv)
+uint32_t VM::is_floppy_disk_accessed()
 {
-       return fdc->get_disk_protected(drv);
+       return fdc->read_signal(0);
 }
 #endif
 
-bool VM::now_skip()
+bool VM::is_frame_skippable()
 {
-       return event->now_skip();
+       return event->is_frame_skippable();
 }
 
 void VM::update_config()
@@ -584,33 +709,42 @@ void VM::update_config()
 #endif
 }
 
-#define STATE_VERSION  1
+#define STATE_VERSION  3
 
-void VM::save_state(FILEIO* state_fio)
-{
-       state_fio->FputUint32(STATE_VERSION);
-       
-       for(DEVICE* device = first_device; device; device = device->next_device) {
-               device->save_state(state_fio);
-       }
-#if defined(_MZ800)
-       state_fio->FputInt32(boot_mode);
-#endif
-}
 
-bool VM::load_state(FILEIO* state_fio)
+bool VM::process_state(FILEIO* state_fio, bool loading)
 {
-       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;
+               }
+       }
 #if defined(_MZ800)
-       boot_mode = state_fio->FgetInt32();
+       state_fio->StateInt32(boot_mode);
 #endif
        return true;
 }
-