blob: e56dac8185beb8585f4dc8cab16763acd7e980ca (
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
|
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria, Aaron Giles, Nathan Woods
/***************************************************************************
ui/selgame.h
Game selector
***************************************************************************/
#ifndef MAME_FRONTEND_UI_SIMPLESELGAME_H
#define MAME_FRONTEND_UI_SIMPLESELGAME_H
#pragma once
#include "menu.h"
class driver_enumerator;
namespace ui {
class simple_menu_select_game : public menu
{
public:
simple_menu_select_game(mame_ui_manager &mui, render_container &container, const char *gamename);
virtual ~simple_menu_select_game();
// force game select menu
static void force_game_select(mame_ui_manager &mui, render_container &container);
protected:
virtual void custom_render(void *selectedref, float top, float bottom, float x, float y, float x2, float y2) override;
virtual bool menu_has_search_active() override { return !m_search.empty(); }
private:
enum { VISIBLE_GAMES_IN_LIST = 15 };
virtual void populate(float &customtop, float &custombottom) override;
virtual void handle() override;
// internal methods
void build_driver_list();
void inkey_select(const event *menu_event);
void inkey_cancel();
void inkey_special(const event *menu_event);
// internal state
bool m_error;
bool m_rerandomize;
std::string m_search;
int m_matchlist[VISIBLE_GAMES_IN_LIST];
std::vector<const game_driver *> m_driverlist;
std::unique_ptr<driver_enumerator> m_drivlist;
// cached driver flags
const game_driver * m_cached_driver;
machine_flags::type m_cached_flags;
device_t::feature_type m_cached_unemulated;
device_t::feature_type m_cached_imperfect;
rgb_t m_cached_color;
};
} // namespace ui
#endif // MAME_FRONTEND_UI_SIMPLESELGAME_H
|