]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/mainwindow.c
Merge branch 'master' into mirceakitsune/sandbox
[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, waypointDialog, entity, NULL)
13         ATTRIB(MainWindow, serverInfoDialog, entity, NULL)
14         ATTRIB(MainWindow, cvarsDialog, entity, NULL)
15         ATTRIB(MainWindow, mainNexposee, entity, NULL)
16         ATTRIB(MainWindow, fadedAlpha, float, SKINALPHA_BEHIND)
17         ATTRIB(MainWindow, dialogToShow, entity, NULL)
18 ENDCLASS(MainWindow)
19 #endif
20
21 #ifdef IMPLEMENTATION
22 void MainWindow_draw(entity me)
23 {
24         SUPER(MainWindow).draw(me);
25
26         if(me.dialogToShow)
27         {
28                 DialogOpenButton_Click_withCoords(world, me.dialogToShow, '0 0 0', eX * conwidth + eY * conheight);
29                 me.dialogToShow = NULL;
30         }
31 }
32
33 void DemoButton_Click(entity me, entity other)
34 {
35         if(me.text == _("Do not press this button again!"))
36                 DialogOpenButton_Click(me, other);
37         else
38                 me.setText(me, _("Do not press this button again!"));
39 }
40
41 void MainWindow_configureMainWindow(entity me)
42 {
43         entity n, i;
44
45         me.firstRunDialog = i = spawnXonoticFirstRunDialog();
46         i.configureDialog(i);
47         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
48
49         i = spawnXonoticTeamSelectDialog();
50         i.configureDialog(i);
51         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
52
53         i = spawnXonoticSandboxToolsDialog();
54         i.configureDialog(i);
55         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
56         
57         i = spawnXonoticHUDExitDialog();
58         i.configureDialog(i);
59         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
60         
61         i = spawnXonoticHUDNotificationDialog();
62         i.configureDialog(i);
63         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
64         
65         i = spawnXonoticHUDAmmoDialog();
66         i.configureDialog(i);
67         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
68         
69         i = spawnXonoticHUDHealthArmorDialog();
70         i.configureDialog(i);
71         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
72         
73         i = spawnXonoticHUDChatDialog();
74         i.configureDialog(i);
75         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
76         
77         i = spawnXonoticHUDModIconsDialog();
78         i.configureDialog(i);
79         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
80         
81         i = spawnXonoticHUDPowerupsDialog();
82         i.configureDialog(i);
83         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
84         
85         i = spawnXonoticHUDPressedKeysDialog();
86         i.configureDialog(i);
87         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
88         
89         i = spawnXonoticHUDRaceTimerDialog();
90         i.configureDialog(i);
91         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
92         
93         i = spawnXonoticHUDRadarDialog();
94         i.configureDialog(i);
95         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
96         
97         i = spawnXonoticHUDScoreDialog();
98         i.configureDialog(i);
99         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
100         
101         i = spawnXonoticHUDTimerDialog();
102         i.configureDialog(i);
103         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
104         
105         i = spawnXonoticHUDVoteDialog();
106         i.configureDialog(i);
107         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
108         
109         i = spawnXonoticHUDWeaponsDialog();
110         i.configureDialog(i);
111         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
112
113         i = spawnXonoticHUDEngineInfoDialog();
114         i.configureDialog(i);
115         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
116
117         i = spawnXonoticHUDInfoMessagesDialog();
118         i.configureDialog(i);
119         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
120
121         i = spawnXonoticHUDPhysicsDialog();
122         i.configureDialog(i);
123         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
124
125         i = spawnXonoticHUDCenterprintDialog();
126         i.configureDialog(i);
127         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
128
129         me.advancedDialog = i = spawnXonoticAdvancedDialog();
130         i.configureDialog(i);
131         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
132
133         me.mutatorsDialog = i = spawnXonoticMutatorsDialog();
134         i.configureDialog(i);
135         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
136
137         me.mapInfoDialog = i = spawnXonoticMapInfoDialog();
138         i.configureDialog(i);
139         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
140
141         me.userbindEditDialog = i = spawnXonoticUserbindEditDialog();
142         i.configureDialog(i);
143         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
144
145         me.winnerDialog = i = spawnXonoticWinnerDialog();
146         i.configureDialog(i);
147         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
148
149         me.weaponsDialog = i = spawnXonoticWeaponsDialog();
150         i.configureDialog(i);
151         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
152
153         me.waypointDialog = i = spawnXonoticWaypointDialog();
154         i.configureDialog(i);
155         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
156         
157         me.serverInfoDialog = i = spawnXonoticServerInfoDialog();
158         i.configureDialog(i);
159         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
160         
161         me.cvarsDialog = i = spawnXonoticCvarsDialog();
162         i.configureDialog(i);
163         me.addItemCentered(me, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
164         
165         me.mainNexposee = n = spawnXonoticNexposee();
166         /*
167                 if(checkextension("DP_GECKO_SUPPORT"))
168                 {
169                         i = spawnXonoticNewsDialog();
170                         i.configureDialog(i);
171                         n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
172                         n.setNexposee(n, i, '0.1 0.1 0', SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
173                 }
174         */
175                 i = spawnXonoticSingleplayerDialog();
176                 i.configureDialog(i);
177                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
178                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SINGLEPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
179                 
180                 i = spawnXonoticMultiplayerDialog();
181                 i.configureDialog(i);
182                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
183                 n.setNexposee(n, i, SKINPOSITION_DIALOG_MULTIPLAYER, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
184
185                 i = spawnXonoticSettingsDialog();
186                 i.configureDialog(i);
187                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
188                 n.setNexposee(n, i, SKINPOSITION_DIALOG_SETTINGS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
189
190                 i = spawnXonoticCreditsDialog();
191                 i.configureDialog(i);
192                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
193                 n.setNexposee(n, i, SKINPOSITION_DIALOG_CREDITS, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
194                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
195
196                 i = spawnXonoticQuitDialog();
197                 i.configureDialog(i);
198                 n.addItemCentered(n, i, i.intendedWidth * eX + i.intendedHeight * eY, SKINALPHAS_MAINMENU_z);
199                 n.setNexposee(n, i, SKINPOSITION_DIALOG_QUIT, SKINALPHAS_MAINMENU_x, SKINALPHAS_MAINMENU_y);
200                 n.pullNexposee(n, i, eY * (SKINHEIGHT_TITLE * SKINFONTSIZE_TITLE / conheight));
201         me.addItem(me, n, '0 0 0', '1 1 0', SKINALPHAS_MAINMENU_z);
202         me.moveItemAfter(me, n, NULL);
203
204         me.initializeDialog(me, n);
205
206         if(cvar_string("_cl_name") == "Player")
207                 me.dialogToShow = me.firstRunDialog;
208 }
209 #endif
210
211 /* Click. The c-word is here so you can grep for it :-) */