blob: 5b8e992be6bac41ff5f579f497e4fe335b5d0c03 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
// license:BSD-3-Clause
// copyright-holders:Aaron Giles
//============================================================
//
// winmain.h - Win32 main program and core headers
//
//============================================================
#ifndef MAME_OSD_WINDOWS_WINMAIN_H
#define MAME_OSD_WINDOWS_WINMAIN_H
#pragma once
#include "winopts.h"
#include "modules/lib/osdobj_common.h"
#include "osdepend.h"
#include <chrono>
#include <vector>
//============================================================
// TYPE DEFINITIONS
//============================================================
enum input_event
{
INPUT_EVENT_KEYDOWN,
INPUT_EVENT_KEYUP,
INPUT_EVENT_RAWINPUT,
INPUT_EVENT_ARRIVAL,
INPUT_EVENT_REMOVAL,
INPUT_EVENT_MOUSE_BUTTON,
INPUT_EVENT_MOUSE_WHEEL
};
struct KeyPressEventArgs
{
input_event event_id;
uint8_t vkey;
uint8_t scancode;
};
struct MouseUpdateEventArgs
{
unsigned pressed;
unsigned released;
int vdelta;
int hdelta;
int xpos;
int ypos;
};
class windows_osd_interface : public osd_common_t
{
public:
// construction/destruction
windows_osd_interface(windows_options &options);
virtual ~windows_osd_interface();
// general overridables
virtual void init(running_machine &machine) override;
virtual void update(bool skip_redraw) override;
virtual void input_update(bool relative_reset) override;
virtual void check_osd_inputs() override;
// input overrideables
virtual void customize_input_type_list(std::vector<input_type_entry> &typelist) override;
// video overridables
virtual void add_audio_to_recording(const int16_t *buffer, int samples_this_frame) override;
virtual bool video_init() override;
virtual bool window_init() override;
virtual void video_exit() override;
virtual void window_exit() override;
void extract_video_config();
// windows OSD specific
bool handle_input_event(input_event eventid, const void *eventdata) const;
bool should_hide_mouse() const;
virtual bool has_focus() const override;
virtual void process_events() override;
virtual windows_options &options() override { return m_options; }
int window_count();
using osd_common_t::poll_input_modules; // Win32 debugger calls this directly, which it shouldn't
private:
void process_events(bool ingame, bool nodispatch);
virtual void osd_exit() override;
static void output_oslog(const char *buffer);
windows_options &m_options;
bool const m_com_status;
std::chrono::steady_clock::time_point m_last_event_check;
static inline constexpr int DEFAULT_FONT_HEIGHT = 200;
};
//============================================================
// GLOBAL VARIABLES
//============================================================
// defined in winwork.c
extern int osd_num_processors;
#endif // MAME_OSD_WINDOWS_WINMAIN_H
|