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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
// license:BSD-3-Clause
// copyright-holders:Fabio Priuli
/***************************************************************************
ui/barcode.cpp
"Barcode Reader" control
***************************************************************************/
#include "emu.h"
#include "ui/barcode.h"
#include "ui/ui.h"
#include "ui/utils.h"
namespace ui {
// itemrefs for key menu items
#define ITEMREF_NEW_BARCODE ((void *) 0x0001)
#define ITEMREF_ENTER_BARCODE ((void *) 0x0002)
#define ITEMREF_SELECT_READER ((void *) 0x0003)
/**************************************************
BARCODE READER MENU
**************************************************/
//-------------------------------------------------
// ctor
//-------------------------------------------------
menu_barcode_reader::menu_barcode_reader(mame_ui_manager &mui, render_container &container, barcode_reader_device *device)
: menu_device_control<barcode_reader_device>(mui, container, device)
{
set_heading(_("Barcode Reader"));
set_process_flags(PROCESS_LR_REPEAT);
}
//-------------------------------------------------
// dtor
//-------------------------------------------------
menu_barcode_reader::~menu_barcode_reader()
{
}
//-------------------------------------------------
// populate - populates the barcode input menu
//-------------------------------------------------
void menu_barcode_reader::populate(float &customtop, float &custombottom)
{
if (current_device())
{
// selected device
item_append(std::string(current_display_name()), std::string(current_device()->tag() + 1), current_display_flags(), ITEMREF_SELECT_READER);
// append the "New Barcode" item
item_append(_("New Barcode:"), m_barcode_buffer, 0, ITEMREF_NEW_BARCODE);
// finish up the menu
item_append(_("Enter Code"), 0, ITEMREF_ENTER_BARCODE);
item_append(menu_item_type::SEPARATOR);
}
}
//-------------------------------------------------
// handle - manages inputs in the barcode input menu
//-------------------------------------------------
void menu_barcode_reader::handle(event const *ev)
{
// process the event
if (ev)
{
// handle selections
switch (ev->iptkey)
{
case IPT_UI_LEFT:
if (ev->itemref == ITEMREF_SELECT_READER)
previous();
break;
case IPT_UI_RIGHT:
if (ev->itemref == ITEMREF_SELECT_READER)
next();
break;
case IPT_UI_SELECT:
if (ev->itemref == ITEMREF_ENTER_BARCODE)
{
std::string tmp_file(m_barcode_buffer);
//printf("code %s\n", m_barcode_buffer);
if (!current_device()->is_valid(tmp_file.length()))
ui().popup_time(5, "%s", _("Barcode length invalid!"));
else
{
current_device()->write_code(tmp_file.c_str(), tmp_file.length());
// if sending was successful, reset char buffer
m_barcode_buffer.clear();
reset(reset_options::REMEMBER_POSITION);
}
}
break;
case IPT_UI_CLEAR:
if (get_selection_ref() == ITEMREF_NEW_BARCODE)
{
m_barcode_buffer.clear();
reset(reset_options::REMEMBER_POSITION);
}
break;
case IPT_UI_PASTE:
if (get_selection_ref() == ITEMREF_NEW_BARCODE)
{
if (paste_text(m_barcode_buffer, uchar_is_digit))
ev->item->set_subtext(m_barcode_buffer);
}
break;
case IPT_SPECIAL:
if (get_selection_ref() == ITEMREF_NEW_BARCODE)
{
if (input_character(m_barcode_buffer, ev->unichar, uchar_is_digit))
ev->item->set_subtext(m_barcode_buffer);
}
break;
}
}
}
} // namespace ui
|