OSDN Git Service

[General] Merge Upstream 2017-08-10.
[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_TAPE1
30 #define USE_ALT_F10_KEY
31 #define USE_AUTO_KEY            6
32 #define USE_AUTO_KEY_RELEASE    10
33 #define USE_AUTO_KEY_CAPS_LOCK  (0xf2 | 0x100)
34 #define USE_AUTO_KEY_NUMPAD
35 #define DONT_KEEEP_KEY_PRESSED
36 #define USE_SOUND_VOLUME        3
37 #define USE_DEBUGGER
38 #define USE_STATE
39
40 #include "../../common.h"
41
42 #ifdef USE_SOUND_VOLUME
43 static const _TCHAR *sound_device_caption[] = {
44         _T("Beep"), _T("CMT (Signal)"), _T("Noise (CMT)"),
45 };
46 #endif
47
48 class EMU;
49 class DEVICE;
50 class EVENT;
51
52 class DATAREC;
53 class MEMORY;
54 class PCM1BIT;
55 class UPD16434;
56 class UPD1990A;
57 class UPD7810;
58
59 class IO;
60
61 #include "../../fileio.h"
62
63 class VM
64 {
65 protected:
66         EMU* emu;
67         
68         // devices
69         EVENT* event;
70         
71         DATAREC* drec;
72         MEMORY* memory;
73         PCM1BIT* pcm;
74         UPD16434* lcd[4];
75         UPD1990A* rtc;
76         UPD7810* cpu;
77         
78         IO* io;
79         
80         // memory
81         uint8_t ram[0x5000];
82         uint8_t rom1[0x1000];
83         uint8_t rom2[0x4000];
84         
85 public:
86         // ----------------------------------------
87         // initialize
88         // ----------------------------------------
89         
90         VM(EMU* parent_emu);
91         ~VM();
92         
93         // ----------------------------------------
94         // for emulation class
95         // ----------------------------------------
96         
97         // drive virtual machine
98         void reset();
99         void run();
100         
101 #ifdef USE_DEBUGGER
102         // debugger
103         DEVICE *get_cpu(int index);
104 #endif
105         
106         // draw screen
107         void draw_screen();
108         
109         // sound generation
110         void initialize_sound(int rate, int samples);
111         uint16_t* create_sound(int* extra_frames);
112         int get_sound_buffer_ptr();
113 #ifdef USE_SOUND_VOLUME
114         void set_sound_device_volume(int ch, int decibel_l, int decibel_r);
115 #endif
116         
117         // user interface
118         void play_tape(int drv, const _TCHAR* file_path);
119         void rec_tape(int drv, const _TCHAR* file_path);
120         void close_tape(int drv);
121         bool is_tape_inserted(int drv);
122         bool is_tape_playing(int drv);
123         bool is_tape_recording(int drv);
124         int get_tape_position(int drv);
125         const _TCHAR* get_tape_message(int drv);
126         bool is_frame_skippable();
127         
128         void update_config();
129         void save_state(FILEIO* state_fio);
130         bool load_state(FILEIO* state_fio);
131         
132         // ----------------------------------------
133         // for each device
134         // ----------------------------------------
135         
136         // devices
137         DEVICE* get_device(int id);
138         DEVICE* dummy;
139         DEVICE* first_device;
140         DEVICE* last_device;
141 };
142
143 #endif