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
|
#include <stdlib.h>
#include <assert.h>
#include "main.h"
#include "list.h"
#include "tux.h"
#include "space.h"
#include "arena.h"
#include "net_multiplayer.h"
#include "interface.h"
#include "saveDialog.h"
#include "image.h"
#include "font.h"
#include "saveLoad.h"
#include "hotKey.h"
#include "widget.h"
#include "widget_label.h"
#include "widget_button.h"
#include "widget_textfield.h"
static image_t *g_background;
static bool_t activeSaveDialog;
static widget_t *widgetLabelMsg;
static widget_t *widgetTextFieldName;
static widget_t *widgetButtonSave;
static widget_t *widgetButtonBack;
static void switchTerm()
{
if (activeSaveDialog == TRUE) {
activeSaveDialog = FALSE;
} else {
activeSaveDialog = TRUE;
}
}
static void eventWidget(void *p)
{
widget_t *button;
button = (widget_t *) p;
if (button == widgetButtonSave) {
save_arena(textField_get_text(widgetTextFieldName), arena_get_current());
switchTerm();
}
if (button == widgetButtonBack) {
switchTerm();
}
}
static void hotkey_saveDialog()
{
switchTerm();
}
void saveDialog_init()
{
activeSaveDialog = FALSE;
g_background = image_get(IMAGE_GROUP_BASE, "screen_main");
widgetLabelMsg = label_new("name", SAVE_DIALOG_LOCATIN_X + 20,
SAVE_DIALOG_LOCATIN_Y + 20,
WIDGET_LABEL_LEFT);
widgetTextFieldName = textField_new("noname", WIDGET_TEXTFIELD_FILTER_ALPHANUM,
widgetLabelMsg->x +
widgetLabelMsg->w + 10,
widgetLabelMsg->y);
widgetButtonSave = button_new("Save", SAVE_DIALOG_LOCATIN_X + 20,
SAVE_DIALOG_LOCATIN_Y + 60,
eventWidget);
widgetButtonBack = button_new("Back", SAVE_DIALOG_LOCATIN_X + 20 +
WIDGET_BUTTON_WIDTH + 20,
SAVE_DIALOG_LOCATIN_Y + 60,
eventWidget);
hotKey_register(SDLK_F2, hotkey_saveDialog);
}
bool_t saveDialog_is_active()
{
return activeSaveDialog;
}
void saveDialog_draw()
{
if (activeSaveDialog == FALSE) {
return;
}
image_draw(g_background,
SAVE_DIALOG_LOCATIN_X,
SAVE_DIALOG_LOCATIN_Y,
SAVE_DIALOG_LOCATIN_X,
SAVE_DIALOG_LOCATIN_Y,
SAVE_DIALOG_SIZE_X,
SAVE_DIALOG_SIZE_Y);
label_draw(widgetLabelMsg);
textField_draw(widgetTextFieldName);
button_draw(widgetButtonSave);
button_draw(widgetButtonBack);
}
void saveDialog_event()
{
if (activeSaveDialog == FALSE) {
return;
}
textField_event(widgetTextFieldName);
button_event(widgetButtonSave);
button_event(widgetButtonBack);
}
void saveDialog_quit()
{
unhotKey_register(SDLK_F2);
label_destroy(widgetLabelMsg);
textField_destroy(widgetTextFieldName);
button_destroy(widgetButtonSave);
button_destroy(widgetButtonBack);
}
|