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
|
#include <base/vmath.hpp>
#include <game/client/component.hpp>
#include <game/client/gc_ui.hpp>
class MENUS : public COMPONENT
{
static vec4 gui_color;
static vec4 color_tabbar_inactive_outgame;
static vec4 color_tabbar_active_outgame;
static vec4 color_tabbar_inactive_ingame;
static vec4 color_tabbar_active_ingame;
static vec4 color_tabbar_inactive;
static vec4 color_tabbar_active;
static vec4 button_color_mul(const void *id);
static void ui_draw_browse_icon(int what, const RECT *r);
static void ui_draw_menu_button(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static void ui_draw_keyselect_button(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static void ui_draw_menu_tab_button(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static void ui_draw_settings_tab_button(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static void ui_draw_grid_header(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static void ui_draw_list_row(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static void ui_draw_checkbox_common(const void *id, const char *text, const char *boxtext, const RECT *r);
static void ui_draw_checkbox(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static void ui_draw_checkbox_number(const void *id, const char *text, int checked, const RECT *r, const void *extra);
static int ui_do_edit_box(void *id, const RECT *rect, char *str, int str_size, float font_size, bool hidden=false);
static float ui_do_scrollbar_v(const void *id, const RECT *rect, float current);
static float ui_do_scrollbar_h(const void *id, const RECT *rect, float current);
static int ui_do_key_reader(void *id, const RECT *rect, int key);
enum
{
POPUP_NONE=0,
POPUP_FIRST_LAUNCH,
POPUP_CONNECTING,
POPUP_DISCONNECTED,
POPUP_PASSWORD,
POPUP_QUIT,
};
enum
{
PAGE_NEWS=0,
PAGE_GAME,
PAGE_SERVER_INFO,
PAGE_INTERNET,
PAGE_LAN,
PAGE_FAVORITES,
PAGE_SETTINGS,
PAGE_SYSTEM,
};
int game_page;
int popup;
int active_page;
bool menu_active;
vec2 mouse_pos;
// for graphic settings
bool need_restart;
// found in menus.cpp
int render();
void render_background();
void render_loading(float percent);
int render_menubar(RECT r);
void render_news(RECT main_view);
void render_game(RECT main_view);
void render_serverinfo(RECT main_view);
// found in menus_browser.cpp
void render_serverbrowser(RECT main_view);
// found in menus_settings.cpp
void render_settings_player(RECT main_view);
void render_settings_controls(RECT main_view);
void render_settings_graphics(RECT main_view);
void render_settings_sound(RECT main_view);
void render_settings(RECT main_view);
public:
MENUS();
void init();
virtual void on_statechange(int new_state, int old_state);
virtual void on_reset();
virtual void on_render();
virtual bool on_input(INPUT_EVENT e);
virtual bool on_mousemove(float x, float y);
};
|