]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/mainwindow.qc
Add some monster flags for later use
[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(XonoticHUDItemsTimeDialog);
132         i.configureDialog(i);
133         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
134
135         // dialogs used by settings
136         me.userbindEditDialog = i = NEW(XonoticUserbindEditDialog);
137         i.configureDialog(i);
138         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
139
140         me.cvarsDialog = i = NEW(XonoticCvarsDialog);
141         i.configureDialog(i);
142         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
143
144         me.resetDialog = i = NEW(XonoticResetDialog);
145         i.configureDialog(i);
146         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
147
148         me.languageWarningDialog = i = NEW(XonoticLanguageWarningDialog);
149         i.configureDialog(i);
150         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
151
152         me.hudconfirmDialog = i = NEW(XonoticHUDConfirmDialog);
153         i.configureDialog(i);
154         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
155
156
157         // dialog used by singleplayer
158         me.winnerDialog = i = NEW(XonoticWinnerDialog);
159         i.configureDialog(i);
160         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
161
162
163         // dialog used by multiplayer/join
164         me.serverInfoDialog = i = NEW(XonoticServerInfoDialog);
165         i.configureDialog(i);
166         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
167
168         me.demostartconfirmDialog = i = NEW(XonoticDemoStartConfirmDialog);
169         i.configureDialog(i);
170         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
171
172         me.demotimeconfirmDialog = i = NEW(XonoticDemoTimeConfirmDialog);
173         i.configureDialog(i);
174         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
175
176
177         // dialogs used by multiplayer/create
178         me.mapInfoDialog = i = NEW(XonoticMapInfoDialog);
179         i.configureDialog(i);
180         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
181
182         me.mutatorsDialog = i = NEW(XonoticMutatorsDialog);
183         i.configureDialog(i);
184         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
185
186
187         // dialogs used by multiplayer/media
188         me.screenshotViewerDialog = i = NEW(XonoticScreenshotViewerDialog);
189         i.configureDialog(i);
190         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
191
192
193         // mutator dialogs
194         i = NEW(XonoticSandboxToolsDialog);
195         i.configureDialog(i);
196         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z * SKINALPHA_DIALOG_SANDBOXTOOLS);
197
198
199         // miscellaneous dialogs
200         i = NEW(XonoticTeamSelectDialog);
201         i.configureDialog(i);
202         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
203
204         i = NEW(XonoticMonsterToolsDialog);
205         i.configureDialog(i);
206         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z * SKINALPHA_DIALOG_SANDBOXTOOLS);
207
208
209         // main dialogs/windows
210         me.mainNexposee = n = NEW(XonoticNexposee);
211         /*
212                 if(checkextension("DP_GECKO_SUPPORT"))
213                 {
214                         i = spawnXonoticNewsDialog();
215                         i.configureDialog(i);
216                         n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
217                         n.setNexposee(n, i, '0.1 0.1 0', SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
218                 }
219         */
220                 i = NEW(XonoticSingleplayerDialog);
221                 i.configureDialog(i);
222                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
223                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SINGLEPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
224
225                 i = NEW(XonoticMultiplayerDialog);
226                 i.configureDialog(i);
227                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
228                 n.setNexposee(n, i, SKINPOSITION_DIALOG_MULTIPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
229
230                 i = NEW(XonoticSettingsDialog);
231                 i.configureDialog(i);
232                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
233                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SETTINGS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
234
235                 i = NEW(XonoticCreditsDialog);
236                 i.configureDialog(i);
237                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
238                 n.setNexposee(n, i, SKINPOSITION_DIALOG_CREDITS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
239                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
240
241                 i = NEW(XonoticQuitDialog);
242                 i.configureDialog(i);
243                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
244                 n.setNexposee(n, i, SKINPOSITION_DIALOG_QUIT, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
245                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
246
247         me.addItem(me, n, '0 0 0', '1 1 0', SKINALPHAS_MAINMENU_z);
248         me.moveItemAfter(me, n, NULL);
249
250         me.initializeDialog(me, n);
251
252         if(cvar_string("_cl_name") == cvar_defstring("_cl_name"))
253                 me.dialogToShow = me.firstRunDialog;
254 }
255 #endif
256
257 /* Click. The c-word is here so you can grep for it :-) */