File: mi_button.c

package info (click to toggle)
xblast-tnt 2.10.4-4
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 4,336 kB
  • ctags: 6,123
  • sloc: ansic: 54,099; sh: 4,014; makefile: 129; sed: 16
file content (239 lines) | stat: -rw-r--r-- 6,082 bytes parent folder | download | duplicates (4)
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*
 * file mi_button.c -  buttons for menu
 *
 * $Id: mi_button.c,v 1.5 2006/02/09 21:21:24 fzago Exp $
 * 
 * Program XBLAST 
 * (C) by Oliver Vogel (e-mail: m.vogel@ndh.net)
 *
 * 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; or (at your option)
 * any later version
 *
 * This program is distributed in the hope that it will be entertaining,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of 
 * MERCHANTABILTY 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 "xblast.h"

/*
 * local macros
 */
/* text sprite flags */
#define FF_H_BUTTON_FOCUS    (FF_Large  | FF_Black | FF_Center   | FF_Outlined )
#define FF_H_BUTTON_NO_FOCUS (FF_Large  | FF_White | FF_Center )
#define FF_V_BUTTON_FOCUS    (FF_Medium | FF_Black | FF_Vertical | FF_Outlined)
#define FF_V_BUTTON_NO_FOCUS (FF_Medium | FF_White | FF_Vertical)

/*
 * local types
 */
typedef struct
{
	XBMenuItem item;
	const char *text;
	Sprite *sprite;
	Sprite *iconSprite;
	XBBool horizontal;
	MIC_button func;
	void *funcData;
} XBMenuButtonItem;

/*
 * local variables
 */
static MIC_button nextExec = NULL;
static void *nextExecData = NULL;

/*
 * determine current text flags
 */
static void
SetTextFlags (XBMenuButtonItem * button)
{
	assert (button != NULL);
	assert (button->sprite != NULL);
	if (button->horizontal) {
		if (button->item.flags & MIF_FOCUS) {
			SetSpriteAnime (button->sprite, FF_Large | FF_Black | FF_Center | FF_Outlined);
		}
		else if (button->item.flags & MIF_DEACTIVATED) {
			SetSpriteAnime (button->sprite, FF_Large | FF_Black | FF_Center);
		}
		else {
			SetSpriteAnime (button->sprite, FF_Large | FF_White | FF_Center);
		}
	}
	else {
		if (button->item.flags & MIF_FOCUS) {
			SetSpriteAnime (button->sprite, FF_Medium | FF_Black | FF_Vertical | FF_Outlined);
		}
		else if (button->item.flags & MIF_DEACTIVATED) {
			SetSpriteAnime (button->sprite, FF_Medium | FF_Black | FF_Vertical);
		}
		else {
			SetSpriteAnime (button->sprite, FF_Medium | FF_White | FF_Vertical);
		}
	}
}								/* ButtonTextFlags */

/*
 * button has changed activation
 */
void
MenuActivateButton (XBMenuItem * ptr, XBBool flag)
{
	SetTextFlags ((XBMenuButtonItem *) ptr);
}								/* MenuActivateButton */

/*
 * a horizontal button receives the focus 
 */
static void
MenuButtonFocus (XBMenuItem * ptr, XBBool flag)
{
	SetTextFlags ((XBMenuButtonItem *) ptr);
}								/* MenuHButtonFocus */

/*
 * a button is selected
 */
static void
MenuButtonSelect (XBMenuItem * ptr)
{
	XBMenuButtonItem *button = (XBMenuButtonItem *) ptr;

	assert (ptr != NULL);
	nextExec = button->func;
	nextExecData = button->funcData;
}								/* MenuButtonSelect */

/*
 * button was selected by mouse
 */
static void
MenuButtonMouse (XBMenuItem * ptr, XBEventCode code)
{
	if (code == XBE_MOUSE_1) {
		MenuButtonSelect (ptr);
	}
}								/* MenuButtonMouse */

/*
 * 
 */
XBMenuItem *
MenuCreateHButton (int x, int y, int w, const char *text, MIC_button func, void *funcData)
{
	/* create item */
	XBMenuButtonItem *button = calloc (1, sizeof (XBMenuButtonItem));
	assert (button != NULL);
	MenuSetItem (&button->item, MIT_Button, x, y, w, CELL_H, MenuButtonFocus, MenuButtonSelect,
				 MenuButtonMouse, NULL);
	/* set item specific values */
	button->text = text;
	button->sprite =
		CreateTextSprite (text, (x + 1) * BASE_X, (y + 1) * BASE_Y, (w - 2) * BASE_X,
						  (CELL_H - 2) * BASE_Y, FF_H_BUTTON_NO_FOCUS, SPM_MAPPED);
	button->func = func;
	button->funcData = funcData;
	button->horizontal = XBTrue;
	/* graphics */
	MenuAddLargeFrame ((x - CELL_W / 2) / CELL_W, (x + w + CELL_W / 2 - 1) / CELL_W, y / CELL_H);
	/* --- */
	return &button->item;
}								/* CreateMenuButton */

/*
 * 
 */
XBMenuItem *
MenuCreateVButton (int x, int y, int h, const char *text, MIC_button func, void *funcData)
{
	/* create item */
	XBMenuButtonItem *button = calloc (1, sizeof (XBMenuButtonItem));
	assert (button != NULL);
	MenuSetItem (&button->item, MIT_Button, x, y, CELL_W, h, MenuButtonFocus, MenuButtonSelect,
				 MenuButtonMouse, NULL);
	button->text = text;
	button->sprite =
		CreateTextSprite (text, (x + 1) * BASE_X, (y + 1) * BASE_Y, (CELL_W - 2) * BASE_X,
						  (h - 2) * BASE_Y, FF_V_BUTTON_NO_FOCUS, SPM_MAPPED);
	button->func = func;
	button->funcData = funcData;
	button->horizontal = XBFalse;
	/* graphics */
	MenuAddVerticalFrame (x / CELL_W, y / CELL_H, (y + h - 1) / CELL_W);
	/* --- */
	return &button->item;
}								/* CreateMenuButton */

/*
 * delete a button 
 */
void
MenuDeleteButton (XBMenuItem * item)
{
	XBMenuButtonItem *button = (XBMenuButtonItem *) item;

	assert (button->sprite != NULL);
	DeleteSprite (button->sprite);
	if (NULL != button->iconSprite) {
		DeleteSprite (button->iconSprite);
	}
}								/* DeleteButtonItem */

/*
 * button is default button
 */
void
MenuSetButtonIcon (XBMenuItem * item, IconSpriteAnimation anime)
{
	XBMenuButtonItem *button = (XBMenuButtonItem *) item;

	assert (button != NULL);
	assert (button->item.type == MIT_Button);
	/* create sprite if needed */
	assert (button->iconSprite == NULL);
	button->iconSprite =
		CreateIconSprite ((button->item.x + 1) * BASE_X, button->item.y * BASE_Y, anime,
						  SPM_MAPPED);
	assert (NULL != button->iconSprite);
}								/* MenuSetButtonIcon */

/*
 * exec function of button
 */
XBBool
MenuExecButton (void)
{
	XBBool result = XBFalse;

	if (NULL != nextExec) {
		result = (*nextExec) (nextExecData);
		nextExec = NULL;
		nextExecData = NULL;
	}
	return result;
}

/*
 * set next exec to external function 
 */
void
MenuButtonSetNextExec (MIC_button func, void *data)
{
	nextExec = func;
	nextExecData = data;
}								/* MenuButtonSetNextExec */

/*
 * end of file mi_button.c
 */