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
|
/*
Copyright (C) 1997-2001 Id Software, Inc.
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "ui_local.h"
/*
=======================================================================
CONFIRM MENU
=======================================================================
*/
typedef struct {
menuFrameWork_t menu;
menuStatic_t text;
confirmAction_t action;
} confirmMenu_t;
static confirmMenu_t m_confirm;
static menuSound_t ConfirmKeydown( menuFrameWork_t *self, int key ) {
switch( key ) {
case 'Y':
case 'y':
m_confirm.action( qtrue );
// UI_PopMenu();
return QMS_IN;
case 'N':
case 'n':
m_confirm.action( qfalse );
UI_PopMenu();
return QMS_OUT;
default:
return QMS_NOTHANDLED;
}
}
void M_Menu_Confirm( const char *text, confirmAction_t action ) {
memset( &m_confirm, 0, sizeof( m_confirm ) );
m_confirm.menu.keydown = ConfirmKeydown;
m_confirm.menu.image = uis.backgroundHandle;
*( uint32_t * )m_confirm.menu.color = *( uint32_t * )colorBlack;
m_confirm.text.generic.type = MTYPE_STATIC;
m_confirm.text.generic.name = ( char * )text;
m_confirm.text.generic.uiFlags = UI_CENTER;
m_confirm.action = action;
Menu_AddItem( &m_confirm.menu, &m_confirm.text );
UI_PushMenu( &m_confirm.menu );
}
/*
=======================================================================
ERROR MENU
=======================================================================
*/
typedef struct m_errorMenu_s {
menuFrameWork_t menu;
menuStatic_t text;
} m_errorMenu_t;
static m_errorMenu_t m_error;
static menuSound_t ErrorKeydown( menuFrameWork_t *self, int key ) {
UI_PopMenu();
return QMS_OUT;
}
void M_Menu_Error( error_type_t type, const char *text ) {
color_t color;
if( !text ) {
return;
}
switch( type ) {
case ERR_SILENT:
return;
case ERR_DROP:
*( uint32_t * )color = *( uint32_t * )colorRed;
break;
default:
*( uint32_t * )color = *( uint32_t * )colorYellow;
break;
}
memset( &m_error, 0, sizeof( m_error ) );
m_error.menu.keydown = ErrorKeydown;
m_error.menu.image = uis.backgroundHandle;
*( uint32_t * )m_error.menu.color = *( uint32_t * )colorBlack;
m_error.text.generic.type = MTYPE_STATIC;
m_error.text.generic.flags = QMF_CUSTOM_COLOR;
m_error.text.generic.name = ( char * )text;
m_error.text.generic.uiFlags = UI_CENTER|UI_MULTILINE;
*( uint32_t * )m_error.text.generic.color = *( uint32_t * )color;
Menu_AddItem( &m_error.menu, ( void * )&m_error.text );
UI_PushMenu( &m_error.menu );
}
|