OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / vm / mz2800 / mz2800.cpp
index 480d48b..7e10273 100644 (file)
 #include "../i286.h"
 #include "../io.h"
 #include "../mb8877.h"
+#include "../mz1p17.h"
+#include "../noise.h"
+#include "../not.h"
 #include "../pcm1bit.h"
+//#include "../pcpr201.h"
+#include "../prnfile.h"
 #include "../rp5c01.h"
 //#include "../sasi.h"
 #include "../upd71071.h"
 #include "keyboard.h"
 #include "memory.h"
 #include "mouse.h"
+#include "printer.h"
 #include "reset.h"
 #include "serial.h"
 #include "sysport.h"
 
-#include "../../fileio.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"));
+
        cpu = new I286(this, emu);
        pit = new I8253(this, emu);
        pio0 = new I8255(this, emu);
        pic = new I8259(this, emu);
        io = new IO(this, emu);
        fdc = new MB8877(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));
+       not_busy = new NOT(this, emu);
+       not_busy->set_device_name(_T("NOT GATE(PRINTER BUSY)"));
+
        pcm = new PCM1BIT(this, emu);
        rtc = new RP5C01(this, emu);    // RP-5C15
 //     sasi = new SASI(this, emu);
@@ -73,6 +84,7 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        keyboard = new KEYBOARD(this, emu);
        memory = new MEMORY(this, emu);
        mouse = new MOUSE(this, emu);
+       printer = new PRINTER(this, emu);
        rst = new RESET(this, emu);
        serial = new SERIAL(this, emu);
        sysport = new SYSPORT(this, emu);
@@ -81,6 +93,9 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        event->set_context_cpu(cpu);
        event->set_context_sound(opn);
        event->set_context_sound(pcm);
+       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());
        
        pit->set_constant_clock(0, 31250);
        pit->set_constant_clock(2, 31250);
@@ -91,9 +106,14 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        pio0->set_context_port_c(rst, SIG_RESET_CONTROL, 0xff, 0);
        pio0->set_context_port_c(crtc, SIG_CRTC_MASK, 0x01, 0);
        pio0->set_context_port_c(pcm, SIG_PCM1BIT_SIGNAL, 0x04, 0);
+       // Sound:: Force realtime rendering. This is temporally fix. 20161024 K.O
+       //pcm->set_realtime_render(true);
+
+       
        pic->set_context_cpu(cpu);
        fdc->set_context_drq(dma, SIG_UPD71071_CH1, 1);
        fdc->set_context_irq(pic, SIG_I8259_CHIP0 | SIG_I8259_IR5, 1);
+       not_busy->set_context_out(pic, SIG_I8259_CHIP1 | SIG_I8259_IR1, 1);
        rtc->set_context_alarm(pic, SIG_I8259_CHIP1 | SIG_I8259_IR2, 1);
        rtc->set_context_pulse(opn, SIG_YM2203_PORT_B, 8);
 //     sasi->set_context_drq(dma, SIG_UPD71071_CH0, 1);
@@ -108,7 +128,7 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        pio1->set_context_port_a(crtc, SIG_CRTC_COLUMN_SIZE, 0x20, 0);
        pio1->set_context_port_a(keyboard, SIG_KEYBOARD_COLUMN, 0xff, 0);
        sio->set_context_intr(pic, SIG_I8259_CHIP0 | SIG_I8259_IR2);
-       sio->set_context_dtr1(mouse, SIG_MOUSE_DTR, 1);
+       sio->set_context_dtr(1, mouse, SIG_MOUSE_DTR, 1);
        
        crtc->set_context_pic(pic);
        crtc->set_context_pio(pio0);
@@ -121,6 +141,22 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        keyboard->set_context_pio1(pio1);
        memory->set_context_crtc(crtc);
        mouse->set_context_sio(sio);
+       if(config.printer_type == 0) {
+               PRNFILE *prnfile = new PRNFILE(this, emu);
+               prnfile->set_context_busy(not_busy, SIG_NOT_INPUT, 1);
+               printer->set_context_prn(prnfile);
+       } else if(config.printer_type == 1) {
+               MZ1P17 *mz1p17 = new MZ1P17(this, emu);
+               mz1p17->mode = MZ1P17_MODE_MZ1;
+               mz1p17->set_context_busy(not_busy, SIG_NOT_INPUT, 1);
+               printer->set_context_prn(mz1p17);
+//     } else if(config.printer_type == 2) {
+//             PCPR201 *pcpr201 = new PCPR201(this, emu);
+//             pcpr201->set_context_busy(not_busy, SIG_NOT_INPUT, 1);
+//             printer->set_context_prn(pcpr201);
+       } else {
+               printer->set_context_prn(dummy);
+       }
        serial->set_context_sio(sio);
        sysport->set_context_pit(pit);
        sysport->set_context_sio(sio);
@@ -146,7 +182,7 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        io->set_iovalue_single_r(0x8e, 0xff);   // dipswitch
        io->set_flipflop_single_rw(0x8f, 0x00); // shut
        io->set_iomap_range_rw(0xa0, 0xa3, serial);
-       for(uint32 p = 0xae; p <= 0x1fae; p += 0x100) {
+       for(uint32_t p = 0xae; p <= 0x1fae; p += 0x100) {
                io->set_iomap_single_w(p, crtc);
        }
 //     io->set_iomap_single_rw(0xaf, sasi);
@@ -154,7 +190,7 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        io->set_iomap_single_r(0xbe, sysport);
        io->set_iomap_range_rw(0xc8, 0xc9, opn);
        io->set_iovalue_single_r(0xca, 0x7f);   // voice communication ???
-       for(uint32 p = 0xcc; p <= 0xfcc; p += 0x100) {
+       for(uint32_t p = 0xcc; p <= 0xfcc; p += 0x100) {
                io->set_iomap_alias_rw(p, rtc, p >> 8);
        }
        io->set_iomap_single_w(0xcd, serial);
@@ -171,14 +207,19 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        io->set_iomap_single_w(0x174, crtc);
        io->set_iomap_single_w(0x176, crtc);
        io->set_iomap_range_w(0x178, 0x17b, crtc);
+       io->set_iomap_range_rw(0x1fe, 0x1ff, printer);
        io->set_iomap_single_w(0x270, crtc);
        io->set_iomap_single_w(0x272, crtc);
        io->set_iomap_single_rw(0x274, memory);
        
        // 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();
        }
+       decl_state();
 }
 
 VM::~VM()
@@ -255,12 +296,6 @@ void VM::draw_screen()
        crtc->draw_screen();
 }
 
-int VM::access_lamp()
-{
-       uint32 status = fdc->read_signal(0);
-       return (status & (1 | 4)) ? 1 : (status & (2 | 8)) ? 2 : 0;
-}
-
 // ----------------------------------------------------------------------------
 // soud manager
 // ----------------------------------------------------------------------------
@@ -271,42 +306,74 @@ void VM::initialize_sound(int rate, int samples)
        event->initialize_sound(rate, samples);
        
        // init sound gen
-       opn->init(rate, 2000000, samples, 0, -8);
-       pcm->init(rate, 4096);
+       opn->initialize_sound(rate, 2000000, samples, 0, -8);
+       pcm->initialize_sound(rate, 4096);
 }
 
-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(ch == 0) {
+               opn->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 1) {
+               opn->set_volume(1, decibel_l, decibel_r);
+       } else if(ch == 2) {
+               pcm->set_volume(0, decibel_l, decibel_r);
+       } else if(ch == 3) {
+               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
 
 // ----------------------------------------------------------------------------
 // user interface
 // ----------------------------------------------------------------------------
 
-void VM::open_disk(int drv, _TCHAR* file_path, int offset)
+void VM::open_floppy_disk(int drv, const _TCHAR* file_path, int bank)
 {
-       fdc->open_disk(drv, file_path, offset);
+       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);
 }
 
-bool VM::now_skip()
+void VM::is_floppy_disk_protected(int drv, bool value)
 {
-       return event->now_skip();
+       fdc->is_disk_protected(drv, value);
+}
+
+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);
+}
+
+bool VM::is_frame_skippable()
+{
+       return event->is_frame_skippable();
 }
 
 void VM::update_config()
@@ -316,12 +383,27 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  2
+#define STATE_VERSION  4
+
+#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::MZ_2800_HEAD")), csp_logger);
+       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);
        }
@@ -329,7 +411,15 @@ void VM::save_state(FILEIO* state_fio)
 
 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) {