OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz700 / mz700.cpp
index 4998564..f4aa492 100644 (file)
@@ -54,7 +54,7 @@
 // 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;
@@ -80,7 +80,6 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        pcm = new PCM1BIT(this, emu);
        cpu = new Z80(this, emu);
 
-       cpu->set_device_name(_T("CPU(Z80)"));
 //     cmos = new CMOS(this, emu);
        emm = new EMM(this, emu);
        kanji = new KANJI(this, emu);
@@ -100,27 +99,28 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        not_pit->set_device_name(_T("NOT Gate (PIT)"));
        psg = new SN76489AN(this, emu);
 #elif defined(_MZ1500)
-       if(config.printer_device_type == 0) {
+       if(config.printer_type == 0) {
                printer = new PRNFILE(this, emu);
-       } else if(config.printer_device_type == 1) {
+       } else if(config.printer_type == 1) {
                printer = new MZ1P17(this, emu);
        } else {
                printer = dummy;
        }
        not_reset = new NOT(this, emu);
-       not_strobe = new NOT(this, emu);
-       psg_l = new SN76489AN(this, emu);
-       psg_r = new SN76489AN(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)
@@ -241,10 +241,10 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
 #elif defined(_MZ1500)
        // Z80PIO:PA0 <- PRINTER:RDA (BUSY)
        // Z80PIO:PA1 <- PRINTER:STA (PE)
-       if(config.printer_device_type == 0) {
+       if(config.printer_type == 0) {
                PRNFILE *prnfile = (PRNFILE *)printer;
                prnfile->set_context_busy(pio_int, SIG_Z80PIO_PORT_A, 0x01);
-       } else if(config.printer_device_type == 1) {
+       } 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);
@@ -384,15 +384,13 @@ 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();
        }
-       pcm->set_realtime_render(true);
-#if defined(_MZ800) || defined(_MZ1500)
-       for(int i = 0; i < MAX_DRIVE; i++) {
-               fdc->set_drive_type(i, DRIVE_TYPE_2DD);
-       }
-#endif
+       decl_state();
 }
 
 VM::~VM()
@@ -426,6 +424,15 @@ void VM::reset()
        for(DEVICE* device = first_device; device; device = device->next_device) {
                device->reset();
        }
+#if defined(_MZ800) || defined(_MZ1500)
+       for(int i = 0; i < MAX_DRIVE; i++) {
+               if(config.drive_type) {
+                       fdc->set_drive_type(i, DRIVE_TYPE_2DD);
+               } else {
+                       fdc->set_drive_type(i, DRIVE_TYPE_2D);
+               }
+       }
+#endif
        and_int->write_signal(SIG_AND_BIT_0, 0, 1);     // CLOCK = L
        and_int->write_signal(SIG_AND_BIT_1, 1, 1);     // INTMASK = H
 #if defined(_MZ800) || defined(_MZ1500)
@@ -464,14 +471,6 @@ void VM::draw_screen()
        memory->draw_screen();
 }
 
-#if defined(_MZ800) || defined(_MZ1500)
-uint32_t VM::get_access_lamp_status()
-{
-       uint32_t status = fdc->read_signal(0) | qd->read_signal(0);
-       return (status & (1 | 4)) ? 1 : (status & (2 | 8)) ? 2 : 0;
-}
-#endif
-
 // ----------------------------------------------------------------------------
 // soud manager
 // ----------------------------------------------------------------------------
@@ -537,65 +536,70 @@ 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)
 {
        drec->play_tape(file_path);
-       drec->set_remote(true);
+//     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);
+//     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);
+       //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);
@@ -625,6 +629,11 @@ bool VM::is_quick_disk_inserted(int drv)
        }
 }
 
+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);
@@ -649,6 +658,11 @@ bool VM::is_floppy_disk_protected(int drv)
 {
        return fdc->is_disk_protected(drv);
 }
+
+uint32_t VM::is_floppy_disk_accessed()
+{
+       return fdc->read_signal(0);
+}
 #endif
 
 bool VM::is_frame_skippable()
@@ -673,33 +687,49 @@ void VM::update_config()
 #endif
 }
 
-#define STATE_VERSION  2
+#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::MZ700_SERIES_HEAD")), csp_logger);
+#if defined(_MZ800)
+       DECL_STATE_ENTRY_INT32(boot_mode);
+#endif
+       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);
-       
+       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);
        }
-#if defined(_MZ800)
-       state_fio->FputInt32(boot_mode);
-#endif
 }
 
 bool VM::load_state(FILEIO* state_fio)
 {
-       if(state_fio->FgetUint32() != STATE_VERSION) {
+       bool mb = false;
+       if(state_entry != NULL) {
+               mb = state_entry->load_state(state_fio);
+       }
+       if(!mb) {
+               printf("INFO: HEADER DATA ERROR\n");
                return false;
        }
        for(DEVICE* device = first_device; device; device = device->next_device) {
                if(!device->load_state(state_fio)) {
+                       printf("INFO: DATA ERROR at DEVID=%d\n", device->this_device_id);
                        return false;
                }
        }
-#if defined(_MZ800)
-       boot_mode = state_fio->FgetInt32();
-#endif
        return true;
 }