OSDN Git Service

[VM][STATE] Use namespace {VMNAME} to separate per VMs.
[csp-qt/common_source_project-fm7.git] / source / src / vm / pc2001 / pc2001.h
1 /*
2         NEC PC-2001 Emulator 'ePC-2001'
3
4         Origin : PockEmul
5         Author : Takeda.Toshiya
6         Date   : 2016.03.18-
7
8         [ virtual machine ]
9 */
10
11 #ifndef _PC2001_H_
12 #define _PC2001_H_
13
14 #define DEVICE_NAME             "NEC PC-2001"
15 #define CONFIG_NAME             "pc2001"
16
17 // device informations for virtual machine
18 #define FRAMES_PER_SEC          60
19 #define LINES_PER_FRAME         24
20 #define CPU_CLOCKS              (4000000 / 4)
21 #define SCREEN_WIDTH            240
22 #define SCREEN_HEIGHT           24
23 #define HAS_UPD7907
24 #define MEMORY_ADDR_MAX         0x10000
25 #define MEMORY_BANK_SIZE        0x1000
26
27 // device informations for win32
28 #define WINDOW_MODE_BASE        2
29 #define USE_TAPE                1
30 #define USE_TAPE_BUTTON
31 #define USE_ALT_F10_KEY
32 #define USE_AUTO_KEY            6
33 #define USE_AUTO_KEY_RELEASE    10
34 #define USE_AUTO_KEY_CAPS_LOCK  (0xf2 | 0x100)
35 #define USE_AUTO_KEY_NUMPAD
36 #define DONT_KEEEP_KEY_PRESSED
37 #define USE_SOUND_VOLUME        3
38 #define USE_DEBUGGER
39 #define USE_STATE
40 #define USE_CPU_UPD7810
41
42 #include "../../common.h"
43 #include "../../fileio.h"
44 #include "../vm_template.h"
45
46 #ifdef USE_SOUND_VOLUME
47 static const _TCHAR *sound_device_caption[] = {
48         _T("Beep"), _T("CMT (Signal)"), _T("Noise (CMT)"),
49 };
50 #endif
51
52 //class csp_state_utils;
53 class EMU;
54 class DEVICE;
55 class EVENT;
56
57 class DATAREC;
58 class MEMORY;
59 class PCM1BIT;
60 class UPD16434;
61 class UPD1990A;
62 class UPD7810;
63
64 namespace PC2001 {
65         class IO;
66 }
67 class VM : public VM_TEMPLATE
68 {
69 protected:
70         //EMU* emu;
71         //csp_state_utils *state_entry;
72         
73         // devices
74         //EVENT* event;
75         
76         DATAREC* drec;
77         MEMORY* memory;
78         PCM1BIT* pcm;
79         UPD16434* lcd[4];
80         UPD1990A* rtc;
81         UPD7810* cpu;
82         
83         PC2001::IO* io;
84         
85         // memory
86         uint8_t ram[0x5000];
87         uint8_t rom1[0x1000];
88         uint8_t rom2[0x4000];
89         
90 public:
91         // ----------------------------------------
92         // initialize
93         // ----------------------------------------
94         
95         VM(EMU* parent_emu);
96         ~VM();
97         
98         // ----------------------------------------
99         // for emulation class
100         // ----------------------------------------
101         
102         // drive virtual machine
103         void reset();
104         void run();
105         
106 #ifdef USE_DEBUGGER
107         // debugger
108         DEVICE *get_cpu(int index);
109 #endif
110         
111         // draw screen
112         void draw_screen();
113         
114         // sound generation
115         void initialize_sound(int rate, int samples);
116         uint16_t* create_sound(int* extra_frames);
117         int get_sound_buffer_ptr();
118 #ifdef USE_SOUND_VOLUME
119         void set_sound_device_volume(int ch, int decibel_l, int decibel_r);
120 #endif
121         
122         // user interface
123         void play_tape(int drv, const _TCHAR* file_path);
124         void rec_tape(int drv, const _TCHAR* file_path);
125         void close_tape(int drv);
126         bool is_tape_inserted(int drv);
127         bool is_tape_playing(int drv);
128         bool is_tape_recording(int drv);
129         int get_tape_position(int drv);
130         const _TCHAR* get_tape_message(int drv);
131         void push_play(int drv);
132         void push_stop(int drv);
133         void push_fast_forward(int drv);
134         void push_fast_rewind(int drv);
135         void push_apss_forward(int drv) {}
136         void push_apss_rewind(int drv) {}
137         bool is_frame_skippable();
138         
139         void update_config();
140         bool process_state(FILEIO* state_fio, bool loading);
141         
142         // ----------------------------------------
143         // for each device
144         // ----------------------------------------
145         
146         // devices
147         DEVICE* get_device(int id);
148         //DEVICE* dummy;
149         //DEVICE* first_device;
150         //DEVICE* last_device;
151 };
152
153 #endif