]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/mainwindow.qc
Merge branch 'packer-/impure_team_cvars' into 'master'
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / mainwindow.qc
1 #ifndef MAINWINDOW_H
2 #define MAINWINDOW_H
3 #include "../item/modalcontroller.qc"
4 CLASS(MainWindow, ModalController)
5         METHOD(MainWindow, configureMainWindow, void(entity))
6         METHOD(MainWindow, draw, void(entity))
7         ATTRIB(MainWindow, firstRunDialog, entity, NULL)
8         ATTRIB(MainWindow, advancedDialog, entity, NULL)
9         ATTRIB(MainWindow, mutatorsDialog, entity, NULL)
10         ATTRIB(MainWindow, mapInfoDialog, entity, NULL)
11         ATTRIB(MainWindow, userbindEditDialog, entity, NULL)
12         ATTRIB(MainWindow, winnerDialog, entity, NULL)
13         ATTRIB(MainWindow, serverInfoDialog, entity, NULL)
14         ATTRIB(MainWindow, cvarsDialog, entity, NULL)
15         ATTRIB(MainWindow, screenshotViewerDialog, entity, NULL)
16         ATTRIB(MainWindow, viewDialog, entity, NULL)
17         ATTRIB(MainWindow, hudconfirmDialog, entity, NULL)
18         ATTRIB(MainWindow, languageWarningDialog, entity, NULL)
19         ATTRIB(MainWindow, mainNexposee, entity, NULL)
20         ATTRIB(MainWindow, fadedAlpha, float, SKINALPHA_BEHIND)
21         ATTRIB(MainWindow, dialogToShow, entity, NULL)
22         ATTRIB(MainWindow, demostartconfirmDialog, entity, NULL)
23         ATTRIB(MainWindow, demotimeconfirmDialog, entity, NULL)
24         ATTRIB(MainWindow, resetDialog, entity, NULL)
25 ENDCLASS(MainWindow)
26 #endif
27
28 #ifdef IMPLEMENTATION
29 void MainWindow_draw(entity me)
30 {
31         SUPER(MainWindow).draw(me);
32
33         if(me.dialogToShow)
34         {
35                 DialogOpenButton_Click_withCoords(world, me.dialogToShow, '0 0 0', eX * conwidth + eY * conheight);
36                 me.dialogToShow = NULL;
37         }
38 }
39
40 void DemoButton_Click(entity me, entity other)
41 {
42         if(me.text == _("Do not press this button again!"))
43                 DialogOpenButton_Click(me, other);
44         else
45                 me.setText(me, _("Do not press this button again!"));
46 }
47
48 void MainWindow_configureMainWindow(entity me)
49 {
50         entity n, i;
51
52         // dialog run upon startup
53         me.firstRunDialog = i = NEW(XonoticFirstRunDialog);
54         i.configureDialog(i);
55         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
56
57
58         // hud_configure dialogs
59         i = NEW(XonoticHUDExitDialog);
60         i.configureDialog(i);
61         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
62
63         i = NEW(XonoticHUDNotificationDialog);
64         i.configureDialog(i);
65         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
66
67         i = NEW(XonoticHUDAmmoDialog);
68         i.configureDialog(i);
69         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
70
71         i = NEW(XonoticHUDHealthArmorDialog);
72         i.configureDialog(i);
73         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
74
75         i = NEW(XonoticHUDChatDialog);
76         i.configureDialog(i);
77         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
78
79         i = NEW(XonoticHUDModIconsDialog);
80         i.configureDialog(i);
81         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
82
83         i = NEW(XonoticHUDPowerupsDialog);
84         i.configureDialog(i);
85         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
86
87         i = NEW(XonoticHUDPressedKeysDialog);
88         i.configureDialog(i);
89         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
90
91         i = NEW(XonoticHUDRaceTimerDialog);
92         i.configureDialog(i);
93         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
94
95         i = NEW(XonoticHUDRadarDialog);
96         i.configureDialog(i);
97         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
98
99         i = NEW(XonoticHUDScoreDialog);
100         i.configureDialog(i);
101         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
102
103         i = NEW(XonoticHUDTimerDialog);
104         i.configureDialog(i);
105         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
106
107         i = NEW(XonoticHUDVoteDialog);
108         i.configureDialog(i);
109         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
110
111         i = NEW(XonoticHUDWeaponsDialog);
112         i.configureDialog(i);
113         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
114
115         i = NEW(XonoticHUDEngineInfoDialog);
116         i.configureDialog(i);
117         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
118
119         i = NEW(XonoticHUDInfoMessagesDialog);
120         i.configureDialog(i);
121         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
122
123         i = NEW(XonoticHUDPhysicsDialog);
124         i.configureDialog(i);
125         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
126
127         i = NEW(XonoticHUDCenterprintDialog);
128         i.configureDialog(i);
129         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
130
131         i = NEW(XonoticHUDBuffsDialog);
132         i.configureDialog(i);
133         me.addItemRightCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
134
135
136         // dialogs used by settings
137         me.userbindEditDialog = i = NEW(XonoticUserbindEditDialog);
138         i.configureDialog(i);
139         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
140
141         me.cvarsDialog = i = NEW(XonoticCvarsDialog);
142         i.configureDialog(i);
143         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
144
145         me.resetDialog = i = NEW(XonoticResetDialog);
146         i.configureDialog(i);
147         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
148
149         me.languageWarningDialog = i = NEW(XonoticLanguageWarningDialog);
150         i.configureDialog(i);
151         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
152
153         me.hudconfirmDialog = i = NEW(XonoticHUDConfirmDialog);
154         i.configureDialog(i);
155         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
156
157
158         // dialog used by singleplayer
159         me.winnerDialog = i = NEW(XonoticWinnerDialog);
160         i.configureDialog(i);
161         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
162
163
164         // dialog used by multiplayer/join
165         me.serverInfoDialog = i = NEW(XonoticServerInfoDialog);
166         i.configureDialog(i);
167         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
168
169         me.demostartconfirmDialog = i = NEW(XonoticDemoStartConfirmDialog);
170         i.configureDialog(i);
171         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
172
173         me.demotimeconfirmDialog = i = NEW(XonoticDemoTimeConfirmDialog);
174         i.configureDialog(i);
175         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
176
177
178         // dialogs used by multiplayer/create
179         me.mapInfoDialog = i = NEW(XonoticMapInfoDialog);
180         i.configureDialog(i);
181         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
182
183         me.mutatorsDialog = i = NEW(XonoticMutatorsDialog);
184         i.configureDialog(i);
185         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
186
187
188         // dialogs used by multiplayer/media
189         me.screenshotViewerDialog = i = NEW(XonoticScreenshotViewerDialog);
190         i.configureDialog(i);
191         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
192
193
194         // mutator dialogs
195         i = NEW(XonoticSandboxToolsDialog);
196         i.configureDialog(i);
197         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z * SKINALPHA_DIALOG_SANDBOXTOOLS);
198
199
200         // miscellaneous dialogs
201         i = NEW(XonoticTeamSelectDialog);
202         i.configureDialog(i);
203         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
204
205         i = NEW(XonoticMonsterToolsDialog);
206         i.configureDialog(i);
207         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z * SKINALPHA_DIALOG_SANDBOXTOOLS);
208
209
210         // main dialogs/windows
211         me.mainNexposee = n = NEW(XonoticNexposee);
212         /*
213                 if(checkextension("DP_GECKO_SUPPORT"))
214                 {
215                         i = spawnXonoticNewsDialog();
216                         i.configureDialog(i);
217                         n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
218                         n.setNexposee(n, i, '0.1 0.1 0', SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
219                 }
220         */
221                 i = NEW(XonoticSingleplayerDialog);
222                 i.configureDialog(i);
223                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
224                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SINGLEPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
225
226                 i = NEW(XonoticMultiplayerDialog);
227                 i.configureDialog(i);
228                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
229                 n.setNexposee(n, i, SKINPOSITION_DIALOG_MULTIPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
230
231                 i = NEW(XonoticSettingsDialog);
232                 i.configureDialog(i);
233                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
234                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SETTINGS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
235
236                 i = NEW(XonoticCreditsDialog);
237                 i.configureDialog(i);
238                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
239                 n.setNexposee(n, i, SKINPOSITION_DIALOG_CREDITS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
240                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
241
242                 i = NEW(XonoticQuitDialog);
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_QUIT, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
246                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
247
248         me.addItem(me, n, '0 0 0', '1 1 0', SKINALPHAS_MAINMENU_z);
249         me.moveItemAfter(me, n, NULL);
250
251         me.initializeDialog(me, n);
252
253         if(cvar_string("_cl_name") == cvar_defstring("_cl_name"))
254                 me.dialogToShow = me.firstRunDialog;
255 }
256 #endif
257
258 /* Click. The c-word is here so you can grep for it :-) */