OSDN Git Service

[VM][I286] Save cpustate without StateBuffer().
[csp-qt/common_source_project-fm7.git] / source / src / vm / hc40 / hc40.h
1 /*
2         EPSON HC-40 Emulator 'eHC-40'
3
4         Author : Takeda.Toshiya
5         Date   : 2008.02.23 -
6
7         [ virtual machine ]
8 */
9
10 #ifndef _HC40_H_
11 #define _HC40_H_
12
13 #define DEVICE_NAME             "EPSON HC-40"
14 #define CONFIG_NAME             "hc40"
15
16 // device informations for virtual machine
17 #define FRAMES_PER_SEC          72
18 #define LINES_PER_FRAME         64
19 #define CPU_CLOCKS              3686400
20 #define SCREEN_WIDTH            240
21 #define SCREEN_HEIGHT           64
22 #define MAX_DRIVE               4
23
24 // device informations for win32
25 #define WINDOW_MODE_BASE        2
26 #define USE_SPECIAL_RESET
27 #define USE_FLOPPY_DISK         4
28 #define USE_TAPE                1
29 #define USE_TAPE_BUTTON
30 #define NOTIFY_KEY_DOWN
31 #define USE_ALT_F10_KEY
32 #define USE_AUTO_KEY                    6
33 #define USE_AUTO_KEY_RELEASE    10
34 #define USE_SOUND_VOLUME                3
35 #define USE_DEBUGGER
36 #define USE_STATE
37 #define USE_CPU_Z80
38
39 #include "../../common.h"
40 #include "../../fileio.h"
41 #include "../vm_template.h"
42
43 #ifdef USE_SOUND_VOLUME
44 static const _TCHAR *sound_device_caption[] = {
45         _T("Beep"), _T("CMT (Signal)"), _T("Noise (CMT)"),
46 };
47 #endif
48
49 class csp_state_utils;
50 class EMU;
51 class DEVICE;
52 class EVENT;
53
54 class BEEP;
55 class DATAREC;
56 class PTF20;
57 class Z80;
58
59 class HC40_IO;
60 class HC40_MEMORY;
61
62 class VM : public VM_TEMPLATE
63 {
64 protected:
65         //EMU* emu;
66         //csp_state_utils *state_entry;
67         
68         // devices
69         //EVENT* event;
70         
71         BEEP* beep;
72         DATAREC* drec;
73         PTF20* tf20;
74         Z80* cpu;
75         
76         HC40_IO* io;
77         HC40_MEMORY* memory;
78         
79 public:
80         // ----------------------------------------
81         // initialize
82         // ----------------------------------------
83         
84         VM(EMU* parent_emu);
85         ~VM();
86         
87         // ----------------------------------------
88         // for emulation class
89         // ----------------------------------------
90         
91         // drive virtual machine
92         void reset();
93         void special_reset();
94         void run();
95         
96 #ifdef USE_DEBUGGER
97         // debugger
98         DEVICE *get_cpu(int index);
99 #endif
100         
101         // draw screen
102         void draw_screen();
103         
104         // sound generation
105         void initialize_sound(int rate, int samples);
106         uint16_t* create_sound(int* extra_frames);
107         int get_sound_buffer_ptr();
108 #ifdef USE_SOUND_VOLUME
109         void set_sound_device_volume(int ch, int decibel_l, int decibel_r);
110 #endif
111         
112         // notify key
113         void key_down(int code, bool repeat);
114         void key_up(int code);
115         
116         // user interface
117         void open_floppy_disk(int drv, const _TCHAR* file_path, int bank);
118         void close_floppy_disk(int drv);
119         bool is_floppy_disk_inserted(int drv);
120         void is_floppy_disk_protected(int drv, bool value);
121         bool is_floppy_disk_protected(int drv);
122         uint32_t is_floppy_disk_accessed();
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