]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/menu/xonotic/dialog_settings_game_messages.qc
Remove useless title attribute (and related attributes) from the tab class, the tab...
[xonotic/xonotic-data.pk3dir.git] / qcsrc / menu / xonotic / dialog_settings_game_messages.qc
1 #ifdef INTERFACE
2 CLASS(XonoticGameMessageSettingsTab) EXTENDS(XonoticTab)
3         METHOD(XonoticGameMessageSettingsTab, fill, void(entity))
4         METHOD(XonoticGameMessageSettingsTab, showNotify, void(entity))
5         ATTRIB(XonoticGameMessageSettingsTab, intendedWidth, float, 0.9)
6         ATTRIB(XonoticGameMessageSettingsTab, rows, float, 13)
7         ATTRIB(XonoticGameMessageSettingsTab, columns, float, 6)
8         ATTRIB(XonoticGameMessageSettingsTab, weaponsList, entity, NULL)
9 ENDCLASS(XonoticGameMessageSettingsTab)
10 entity makeXonoticGameMessageSettingsTab();
11 #endif
12
13 #ifdef IMPLEMENTATION
14 void XonoticGameMessageSettingsTab_showNotify(entity me)
15 {
16         loadAllCvars(me);
17 }
18 entity makeXonoticGameMessageSettingsTab()
19 {
20         entity me;
21         me = spawnXonoticGameMessageSettingsTab();
22         me.configureDialog(me);
23         return me;
24 }
25
26 void XonoticGameMessageSettingsTab_fill(entity me)
27 {
28         entity e;
29
30         me.TR(me);
31                 me.TD(me, 1, 3, e = makeXonoticHeaderLabel(_("Frag Information")));
32         me.TR(me);
33                 me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "notification_show_sprees", _("Display information about killing sprees")));
34         me.TR(me);
35                 me.TDempty(me, 0.2);
36                 me.TD(me, 1, 2.8, e = makeXonoticCheckBox(0, "notification_show_sprees_info_specialonly", _("Only display sprees if they are achievements")));
37                         makeMulti(e, "notification_show_sprees_center_specialonly");
38                         setDependent(e, "notification_show_sprees", 1, 1);
39         me.TR(me);
40                 me.TDempty(me, 0.2);
41                 me.TD(me, 1, 2.8, e = makeXonoticCheckBox(0, "notification_show_sprees_center", _("Show spree information in centerprints")));
42                         setDependent(e, "notification_show_sprees", 1, 1);
43         me.TR(me);
44                 me.TDempty(me, 0.2);
45                 me.TD(me, 1, 2.8, e = makeXonoticCheckBoxEx(3, 0, "notification_show_sprees_info", _("Show spree information in death messages")));
46                         setDependent(e, "notification_show_sprees", 1, 1);
47         #if 0
48         me.TR(me);
49                 me.TDempty(me, 0.1);
50                 me.TD(me, 1, 0.9, e = makeXonoticTextLabel(0, _("Sprees in info messages:")));
51                         setDependent(e, "notification_show_sprees", 1, 1);
52                 me.TD(me, 1, 2, e = makeXonoticTextSlider("notification_show_sprees_info"));
53                         e.addValue(e, ZCTX(_("SPREES^Disabled")), "0");
54                         e.addValue(e, _("Target"), "1");
55                         e.addValue(e, _("Attacker"), "2");
56                         e.addValue(e, ZCTX(_("SPREES^Both")), "3");
57                         e.configureXonoticTextSliderValues(e);
58                         setDependent(e, "notification_show_sprees", 1, 1);
59         #endif
60         me.TR(me);
61                 me.TDempty(me, 0.4);
62                 me.TD(me, 1, 2.6, e = makeXonoticCheckBox(0, "notification_show_sprees_info_newline", _("Print on a seperate line")));
63                         setDependent(e, "notification_show_sprees", 1, 1);
64         me.TR(me);
65                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(2, 1, "notification_CHOICE_FRAG", _("Add extra frag information to centerprint when available")));
66                         makeMulti(e, "notification_CHOICE_FRAGGED notification_CHOICE_TYPEFRAG notification_CHOICE_TYPEFRAGGED");
67                         e.sendCvars = true;
68         me.TR(me);
69                 me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "notification_show_location", _("Add frag location to death messages when available")));
70
71         me.gotoRC(me, 9, 0); me.setFirstColumn(me, me.currentColumn);
72                 me.TD(me, 1, 3, e = makeXonoticHeaderLabel(_("Gamemode Settings")));
73         me.TR(me);
74                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(2, 1, "notification_CHOICE_CTF_CAPTURE_TIME_RED", _("Display capture times in Capture The Flag")));
75                         makeMulti(e, "notification_CHOICE_CTF_CAPTURE_TIME_BLUE notification_CHOICE_CTF_CAPTURE_BROKEN_RED notification_CHOICE_CTF_CAPTURE_BROKEN_BLUE notification_CHOICE_CTF_CAPTURE_UNBROKEN_RED notification_CHOICE_CTF_CAPTURE_UNBROKEN_BLUE ");
76                         e.sendCvars = true;
77         me.TR(me);
78                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(2, 1, "notification_CHOICE_CTF_PICKUP_ENEMY", _("Display name of flag stealer in Capture The Flag")));
79                         makeMulti(e, "notification_CHOICE_CTF_PICKUP_TEAM");
80                         e.sendCvars = true;
81
82         me.gotoRC(me, 0, 3.2); me.setFirstColumn(me, me.currentColumn);
83                 me.TD(me, 1, 3, e = makeXonoticHeaderLabel(_("Other")));
84         me.TR(me);
85                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(4, 1, "con_notify", _("Display console messages in the top left corner")));
86         me.TR(me);
87                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(2, 1, "notification_allow_chatboxprint", _("Display all info messages in the chatbox")));
88         me.TR(me);
89                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(2, 1, "notification_INFO_QUIT_DISCONNECT", _("Display player statuses in the chatbox")));
90                         makeMulti(e, "notification_INFO_QUIT_KICK_IDLING notification_INFO_JOIN_CONNECT_TEAM_BLUE notification_INFO_JOIN_CONNECT_TEAM_PINK notification_INFO_JOIN_CONNECT_TEAM_RED notification_INFO_JOIN_CONNECT_TEAM_YELLOW");
91         me.TR(me);
92         me.TR(me);
93                 me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "notification_CENTER_POWERUP_INVISIBILITY", _("Powerup notifications")));
94                         makeMulti(e, "notification_CENTER_POWERUP_SHIELD notification_CENTER_POWERUP_SPEED notification_CENTER_POWERUP_STRENGTH notification_CENTER_POWERDOWN_INVISIBILITY notification_CENTER_POWERDOWN_SHIELD notification_CENTER_POWERDOWN_SPEED notification_CENTER_POWERDOWN_STRENGTH notification_CENTER_SUPERWEAPON_BROKEN notification_CENTER_SUPERWEAPON_LOST notification_CENTER_SUPERWEAPON_PICKUP notification_INFO_POWERUP_INVISIBILITY notification_INFO_POWERUP_SHIELD notification_INFO_POWERUP_SPEED notification_INFO_POWERUP_STRENGTH");
95         me.TR(me);
96                 me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "notification_CENTER_ITEM_WEAPON_DONTHAVE", _("Weapon centerprint notifications")));
97                         makeMulti(e, "notification_CENTER_ITEM_WEAPON_DROP notification_CENTER_ITEM_WEAPON_GOT notification_CENTER_ITEM_WEAPON_NOAMMO notification_CENTER_ITEM_WEAPON_PRIMORSEC notification_CENTER_ITEM_WEAPON_UNAVAILABLE");
98         me.TR(me);
99                 me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "notification_INFO_ITEM_WEAPON_DONTHAVE", _("Weapon info message notifications")));
100                         makeMulti(e, "notification_INFO_ITEM_WEAPON_DROP notification_INFO_ITEM_WEAPON_GOT notification_INFO_ITEM_WEAPON_NOAMMO notification_INFO_ITEM_WEAPON_PRIMORSEC notification_INFO_ITEM_WEAPON_UNAVAILABLE");
101
102         me.gotoRC(me, 9, 3.2); me.setFirstColumn(me, me.currentColumn);
103                 me.TD(me, 1, 3, e = makeXonoticHeaderLabel(_("Announcers")));
104         #if 0
105         // there's just not enough room for this, and it's not important enough to justify...
106         me.TR(me);
107                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(2, 0, "notification_ANNCE_NUM_RESPAWN_1", _("Respawn countdown sounds")));
108                         makeMulti(e, "notification_ANNCE_NUM_RESPAWN_2 notification_ANNCE_NUM_RESPAWN_3 notification_ANNCE_NUM_RESPAWN_4 notification_ANNCE_NUM_RESPAWN_5 notification_ANNCE_NUM_RESPAWN_6 notification_ANNCE_NUM_RESPAWN_7 notification_ANNCE_NUM_RESPAWN_8 notification_ANNCE_NUM_RESPAWN_9 notification_ANNCE_NUM_RESPAWN_10");
109         #endif
110         me.TR(me);
111                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(1, 0, "notification_ANNCE_KILLSTREAK_03", _("Killstreak sounds")));
112                         makeMulti(e, "notification_ANNCE_KILLSTREAK_05 notification_ANNCE_KILLSTREAK_10 notification_ANNCE_KILLSTREAK_15 notification_ANNCE_KILLSTREAK_20 notification_ANNCE_KILLSTREAK_25 notification_ANNCE_KILLSTREAK_30");
113         me.TR(me);
114                 me.TD(me, 1, 3, e = makeXonoticCheckBoxEx(1, 0, "notification_ANNCE_ACHIEVEMENT_AIRSHOT", _("Achievement sounds")));
115                         makeMulti(e, "notification_ANNCE_ACHIEVEMENT_AMAZING notification_ANNCE_ACHIEVEMENT_AWESOME notification_ANNCE_ACHIEVEMENT_BOTLIKE notification_ANNCE_ACHIEVEMENT_ELECTROBITCH notification_ANNCE_ACHIEVEMENT_IMPRESSIVE notification_ANNCE_ACHIEVEMENT_YODA");
116 }
117 #endif