]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/mainwindow.c
Merge branch 'master' into TimePath/issue-1170
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / mainwindow.c
1 #ifdef INTERFACE
2 CLASS(MainWindow) EXTENDS(ModalController)
3         METHOD(MainWindow, configureMainWindow, void(entity))
4         METHOD(MainWindow, draw, void(entity))
5         ATTRIB(MainWindow, firstRunDialog, entity, NULL)
6         ATTRIB(MainWindow, advancedDialog, entity, NULL)
7         ATTRIB(MainWindow, mutatorsDialog, entity, NULL)
8         ATTRIB(MainWindow, weaponsDialog, entity, NULL)
9         ATTRIB(MainWindow, mapInfoDialog, entity, NULL)
10         ATTRIB(MainWindow, userbindEditDialog, entity, NULL)
11         ATTRIB(MainWindow, winnerDialog, entity, NULL)
12         ATTRIB(MainWindow, serverInfoDialog, entity, NULL)
13         ATTRIB(MainWindow, cvarsDialog, entity, NULL)
14         ATTRIB(MainWindow, viewDialog, entity, NULL)
15         ATTRIB(MainWindow, modelDialog, entity, NULL)
16         ATTRIB(MainWindow, crosshairDialog, entity, NULL)
17         ATTRIB(MainWindow, hudDialog, entity, NULL)
18         ATTRIB(MainWindow, hudconfirmDialog, entity, NULL)
19         ATTRIB(MainWindow, languageWarningDialog, entity, NULL)
20         ATTRIB(MainWindow, mainNexposee, entity, NULL)
21         ATTRIB(MainWindow, fadedAlpha, float, SKINALPHA_BEHIND)
22         ATTRIB(MainWindow, dialogToShow, entity, NULL)
23         ATTRIB(MainWindow, resetDialog, entity, NULL)
24 ENDCLASS(MainWindow)
25 #endif
26
27 #ifdef IMPLEMENTATION
28 void MainWindow_draw(entity me)
29 {
30         SUPER(MainWindow).draw(me);
31
32         if(me.dialogToShow)
33         {
34                 DialogOpenButton_Click_withCoords(world, me.dialogToShow, '0 0 0', eX * conwidth + eY * conheight);
35                 me.dialogToShow = NULL;
36         }
37 }
38
39 void DemoButton_Click(entity me, entity other)
40 {
41         if(me.text == _("Do not press this button again!"))
42                 DialogOpenButton_Click(me, other);
43         else
44                 me.setText(me, _("Do not press this button again!"));
45 }
46
47 void MainWindow_configureMainWindow(entity me)
48 {
49         entity n, i;
50
51         // dialog run upon startup
52         me.firstRunDialog = i = spawnXonoticFirstRunDialog();
53         i.configureDialog(i);
54         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
55
56
57         // hud_configure dialogs
58         i = spawnXonoticHUDExitDialog();
59         i.configureDialog(i);
60         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
61
62         i = spawnXonoticHUDNotificationDialog();
63         i.configureDialog(i);
64         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
65
66         i = spawnXonoticHUDAmmoDialog();
67         i.configureDialog(i);
68         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
69
70         i = spawnXonoticHUDHealthArmorDialog();
71         i.configureDialog(i);
72         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
73
74         i = spawnXonoticHUDChatDialog();
75         i.configureDialog(i);
76         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
77
78         i = spawnXonoticHUDModIconsDialog();
79         i.configureDialog(i);
80         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
81
82         i = spawnXonoticHUDPowerupsDialog();
83         i.configureDialog(i);
84         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
85
86         i = spawnXonoticHUDPressedKeysDialog();
87         i.configureDialog(i);
88         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
89
90         i = spawnXonoticHUDRaceTimerDialog();
91         i.configureDialog(i);
92         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
93
94         i = spawnXonoticHUDRadarDialog();
95         i.configureDialog(i);
96         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
97
98         i = spawnXonoticHUDScoreDialog();
99         i.configureDialog(i);
100         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
101
102         i = spawnXonoticHUDTimerDialog();
103         i.configureDialog(i);
104         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
105
106         i = spawnXonoticHUDVoteDialog();
107         i.configureDialog(i);
108         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
109
110         i = spawnXonoticHUDWeaponsDialog();
111         i.configureDialog(i);
112         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
113
114         i = spawnXonoticHUDEngineInfoDialog();
115         i.configureDialog(i);
116         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
117
118         i = spawnXonoticHUDInfoMessagesDialog();
119         i.configureDialog(i);
120         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
121
122         i = spawnXonoticHUDPhysicsDialog();
123         i.configureDialog(i);
124         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
125
126         i = spawnXonoticHUDCenterprintDialog();
127         i.configureDialog(i);
128         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
129
130         i = spawnXonoticHUDBuffsDialog();
131         i.configureDialog(i);
132         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
133
134
135         // dialogs used by settings
136         me.userbindEditDialog = i = spawnXonoticUserbindEditDialog();
137         i.configureDialog(i);
138         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
139
140         me.cvarsDialog = i = spawnXonoticCvarsDialog();
141         i.configureDialog(i);
142         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
143         
144         me.resetDialog = i = spawnXonoticResetDialog();
145         i.configureDialog(i);
146         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
147
148         me.languageWarningDialog = i = spawnXonoticLanguageWarningDialog();
149         i.configureDialog(i);
150         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
151
152
153         // dialog used by singleplayer
154         me.winnerDialog = i = spawnXonoticWinnerDialog();
155         i.configureDialog(i);
156         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
157
158
159         // dialog used by multiplayer/join
160         me.serverInfoDialog = i = spawnXonoticServerInfoDialog();
161         i.configureDialog(i);
162         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
163
164
165         // dialogs used by multiplayer/create
166         me.mapInfoDialog = i = spawnXonoticMapInfoDialog();
167         i.configureDialog(i);
168         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
169
170         me.advancedDialog = i = spawnXonoticAdvancedDialog();
171         i.configureDialog(i);
172         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
173
174         me.mutatorsDialog = i = spawnXonoticMutatorsDialog();
175         i.configureDialog(i);
176         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
177
178
179         // dialogs used by multiplayer/player setup
180         me.crosshairDialog = i = spawnXonoticCrosshairDialog();
181         i.configureDialog(i);
182         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
183
184         me.hudDialog = i = spawnXonoticHUDDialog();
185         i.configureDialog(i);
186         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
187
188         me.hudconfirmDialog = i = spawnXonoticHUDConfirmDialog();
189         i.configureDialog(i);
190         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
191
192         me.modelDialog = i = spawnXonoticModelDialog();
193         i.configureDialog(i);
194         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
195
196         me.viewDialog = i = spawnXonoticViewDialog();
197         i.configureDialog(i);
198         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
199
200         me.weaponsDialog = i = spawnXonoticWeaponsDialog();
201         i.configureDialog(i);
202         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
203
204
205         // mutator dialogs
206         i = spawnXonoticSandboxToolsDialog();
207         i.configureDialog(i);
208         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z * SKINALPHA_DIALOG_SANDBOXTOOLS);
209
210
211         // miscellaneous dialogs
212         i = spawnXonoticTeamSelectDialog();
213         i.configureDialog(i);
214         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
215
216         i = spawnXonoticMonsterToolsDialog();
217         i.configureDialog(i);
218         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z * SKINALPHA_DIALOG_SANDBOXTOOLS);
219
220
221         // main dialogs/windows
222         me.mainNexposee = n = spawnXonoticNexposee();
223         /*
224                 if(checkextension("DP_GECKO_SUPPORT"))
225                 {
226                         i = spawnXonoticNewsDialog();
227                         i.configureDialog(i);
228                         n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
229                         n.setNexposee(n, i, '0.1 0.1 0', SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
230                 }
231         */
232                 i = spawnXonoticSingleplayerDialog();
233                 i.configureDialog(i);
234                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
235                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SINGLEPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
236
237                 i = spawnXonoticMultiplayerDialog();
238                 i.configureDialog(i);
239                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
240                 n.setNexposee(n, i, SKINPOSITION_DIALOG_MULTIPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
241
242                 i = spawnXonoticSettingsDialog();
243                 i.configureDialog(i);
244                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
245                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SETTINGS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
246
247                 i = spawnXonoticCreditsDialog();
248                 i.configureDialog(i);
249                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
250                 n.setNexposee(n, i, SKINPOSITION_DIALOG_CREDITS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
251                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
252
253                 i = spawnXonoticQuitDialog();
254                 i.configureDialog(i);
255                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
256                 n.setNexposee(n, i, SKINPOSITION_DIALOG_QUIT, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
257                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
258
259         me.addItem(me, n, '0 0 0', '1 1 0', SKINALPHAS_MAINMENU_z);
260         me.moveItemAfter(me, n, NULL);
261
262         me.initializeDialog(me, n);
263
264         if(cvar_string("_cl_name") == cvar_defstring("_cl_name"))
265                 me.dialogToShow = me.firstRunDialog;
266 }
267 #endif
268
269 /* Click. The c-word is here so you can grep for it :-) */