OSDN Git Service

[BUILD] Set SOVERSION and GIT hash automatically.
[csp-qt/common_source_project-fm7.git] / source / src / vm / multi8 / multi8.cpp
index 72a825d..98ff6c7 100644 (file)
@@ -12,6 +12,7 @@
 #include "../device.h"
 #include "../event.h"
 
+#include "../beep.h"
 #include "../disk.h"
 #include "../hd46505.h"
 #include "../i8251.h"
 #include "../i8255.h"
 #include "../i8259.h"
 #include "../io.h"
+#include "../noise.h"
 #include "../upd765a.h"
-#include "../ym2203.h"
+//#include "../ym2203.h"
+#include "../ay_3_891x.h"
 #include "../z80.h"
 
 #ifdef USE_DEBUGGER
 // 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"));
        
+       beep = new BEEP(this, emu);
        crtc = new HD46505(this, emu);
        sio = new I8251(this, emu);
        pit = new I8253(this, emu);
@@ -52,7 +57,11 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        pic = new I8259(this, emu);
        io = new IO(this, emu);
        fdc = new UPD765A(this, emu);
-       psg = new YM2203(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));
+//     psg = new YM2203(this, emu);
+       psg = new AY_3_891X(this, emu);
        cpu = new Z80(this, emu);
        
        cmt = new CMT(this, emu);
@@ -64,8 +73,12 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        
        // set contexts
        event->set_context_cpu(cpu);
+       event->set_context_sound(beep);
        event->set_context_sound(psg);
-       
+       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());
+
        crtc->set_context_vsync(pio, SIG_I8255_PORT_A, 0x20);
        sio->set_context_out(cmt, SIG_CMT_OUT);
        pit->set_context_ch1(pit, SIG_I8253_CLOCK_2, 1);
@@ -80,6 +93,7 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        fdc->set_context_drq(floppy, SIG_FLOPPY_DRQ, 1);
        psg->set_context_port_a(cmt, SIG_CMT_REMOTE, 2, 0);
        psg->set_context_port_a(pio, SIG_I8255_PORT_A, 2, 1);
+       psg->set_context_port_a(beep, SIG_BEEP_ON, 8, 1);
        
        cmt->set_context_sio(sio);
        display->set_vram_ptr(memory->get_vram());
@@ -112,9 +126,14 @@ VM::VM(EMU* parent_emu) : emu(parent_emu)
        io->set_iomap_single_w(0x78, 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();
+       
        for(int i = 0; i < 4; i++) {
                fdc->set_drive_type(i, DRIVE_TYPE_2D);
        }
@@ -158,9 +177,9 @@ void VM::run()
        event->drive();
 }
 
-double VM::frame_rate()
+double VM::get_frame_rate()
 {
-       return event->frame_rate();
+       return event->get_frame_rate();
 }
 
 // ----------------------------------------------------------------------------
@@ -186,12 +205,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
 // ----------------------------------------------------------------------------
@@ -202,71 +215,106 @@ void VM::initialize_sound(int rate, int samples)
        event->initialize_sound(rate, samples);
        
        // init sound gen
-       psg->init(rate, 3579545, samples, 0, 0);
+       beep->initialize_sound(rate, 2400, 8000);
+       psg->initialize_sound(rate, 3579545, samples, 0, 0);
 }
 
-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)
+{
+       if(ch == 0) {
+               psg->set_volume(1, decibel_l, decibel_r);
+       } else if(ch == 1) {
+               beep->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);
+       }
+}
+#endif
+
+// ----------------------------------------------------------------------------
+// notify key
+// ----------------------------------------------------------------------------
+
+bool VM::get_caps_locked()
+{
+       return key->get_caps_locked();
+}
+
+bool VM::get_kana_locked()
 {
-       return event->sound_buffer_ptr();
+       return key->get_kana_locked();
 }
 
 // ----------------------------------------------------------------------------
 // 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->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);
 }
 
-void VM::play_tape(const _TCHAR* file_path)
+void VM::play_tape(int drv, const _TCHAR* file_path)
 {
        cmt->play_tape(file_path);
 }
 
-void VM::rec_tape(const _TCHAR* file_path)
+void VM::rec_tape(int drv, const _TCHAR* file_path)
 {
        cmt->rec_tape(file_path);
 }
 
-void VM::close_tape()
+void VM::close_tape(int drv)
 {
        cmt->close_tape();
 }
 
-bool VM::tape_inserted()
+bool VM::is_tape_inserted(int drv)
 {
-       return cmt->tape_inserted();
+       return cmt->is_tape_inserted();
 }
 
-bool VM::now_skip()
+bool VM::is_frame_skippable()
 {
-       return event->now_skip();
+       return event->is_frame_skippable();
 }
 
 void VM::update_config()
@@ -276,12 +324,27 @@ void VM::update_config()
        }
 }
 
-#define STATE_VERSION  1
+#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::MULTI8_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);
        }
@@ -289,7 +352,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) {