X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fmenu%2Fxonotic%2Fdialog_settings_game.qc;h=32d29d7dc7ce79a6b35d97e261ae208b53ead1aa;hp=5fb563ebd7be2243e3092c01fd6f29c431411d2f;hb=f532317ada52b5363cb0b74bfbdd38f5015e290c;hpb=bb80a6aba067167c6ef8d5f3465f03bd34142fa2 diff --git a/qcsrc/menu/xonotic/dialog_settings_game.qc b/qcsrc/menu/xonotic/dialog_settings_game.qc index 5fb563ebd..32d29d7dc 100644 --- a/qcsrc/menu/xonotic/dialog_settings_game.qc +++ b/qcsrc/menu/xonotic/dialog_settings_game.qc @@ -1,54 +1,128 @@ -#ifdef INTERFACE -CLASS(XonoticGameSettingsTab) EXTENDS(XonoticTab) - METHOD(XonoticGameSettingsTab, fill, void(entity)) - ATTRIB(XonoticGameSettingsTab, title, string, _("Game")) - ATTRIB(XonoticGameSettingsTab, intendedWidth, float, 0.9) - ATTRIB(XonoticGameSettingsTab, rows, float, 15.5) - ATTRIB(XonoticGameSettingsTab, columns, float, 6.5) -ENDCLASS(XonoticGameSettingsTab) -entity makeXonoticGameSettingsTab(); -#endif +#include "dialog_settings_game.qh" -#ifdef IMPLEMENTATION -entity makeXonoticGameSettingsTab() +#include "../gamesettings.qh" + +METHOD(SettingSource, getEntry, entity(entity this, int i, void(string name, string icon) returns)) +{ + Lazy l = Settings_from(i); + entity it = l.m_get(); + if (returns) returns(it.title, string_null); + return it; +} +METHOD(SettingSource, getEntryTooltip, entity(entity this, int i, void(string theTooltip) returns)) { - entity me; - me = spawnXonoticGameSettingsTab(); - me.configureDialog(me); - return me; + Lazy l = Settings_from(i); + entity it = l.m_get(); + if (returns) returns(it.tooltip); + return it; } +METHOD(SettingSource, reload, int(entity this, string filter)) { return Settings_COUNT; } -void XonoticGameSettingsTab_fill(entity me) +string XonoticRegisteredSettingsList_cb_name; +string XonoticRegisteredSettingsList_cb_tooltip; +void XonoticRegisteredSettingsList_getNameIcon_cb(string _name, string _icon) { - entity mc; - mc = makeXonoticTabController(me.rows - 2.5); + XonoticRegisteredSettingsList_cb_name = _name; +} +void XonoticRegisteredSettingsList_getTooltip_cb(string _tooltip) +{ + XonoticRegisteredSettingsList_cb_tooltip = _tooltip; +} - me.TR(me); - me.TDempty(me, 0.25); - me.TD(me, 1, 1, mc.makeTabButton(mc, _("View"), makeXonoticGameViewSettingsTab())); - me.TD(me, 1, 1, mc.makeTabButton(mc, _("Crosshair"), makeXonoticGameCrosshairSettingsTab())); - me.TD(me, 1, 1, mc.makeTabButton(mc, _("HUD"), makeXonoticGameHUDSettingsTab())); - me.TD(me, 1, 1, mc.makeTabButton(mc, _("Messages"), makeXonoticGameMessageSettingsTab())); - me.TD(me, 1, 1, mc.makeTabButton(mc, _("Weapons"), makeXonoticGameWeaponsSettingsTab())); - me.TD(me, 1, 1, mc.makeTabButton(mc, _("Models"), makeXonoticGameModelSettingsTab())); +METHOD(XonoticRegisteredSettingsList, drawListBoxItem, void(entity this, int i, vector absSize, bool isSelected, bool isFocused)) +{ + if (!this.source) return; + if (!this.source.getEntry(this.source, i, XonoticRegisteredSettingsList_getNameIcon_cb)) return; + string name = XonoticRegisteredSettingsList_cb_name; + if (isSelected) { + draw_Fill('0 0 0', '1 1 0', SKINCOLOR_LISTBOX_SELECTED, SKINALPHA_LISTBOX_SELECTED); + } else if (isFocused) { + this.focusedItemAlpha = getFadedAlpha(this.focusedItemAlpha, SKINALPHA_LISTBOX_FOCUSED, SKINFADEALPHA_LISTBOX_FOCUSED); + draw_Fill('0 0 0', '1 1 0', SKINCOLOR_LISTBOX_FOCUSED, this.focusedItemAlpha); + } + string s = draw_TextShortenToWidth(strdecolorize(name), 1, 0, this.realFontSize); + draw_Text(this.realUpperMargin * eY + (0.5 * this.realFontSize.x) * eX, s, this.realFontSize, '1 1 1', SKINALPHA_TEXT, 0); +} - me.gotoRC(me, 1.5, 0); - me.TD(me, me.rows - 1.5, me.columns, mc); +METHOD(XonoticRegisteredSettingsList, focusedItemChangeNotify, void(entity this)) +{ + if (this.focusedItem == -1 || !this.source) + { + clearTooltip(this); + return; + } + if (!this.source.getEntryTooltip(this, this.focusedItem, XonoticRegisteredSettingsList_getTooltip_cb)) + { + clearTooltip(this); + return; + } + string theTooltip = XonoticRegisteredSettingsList_cb_tooltip; + if(theTooltip != "") + setZonedTooltip(this, theTooltip, string_null); + else + clearTooltip(this); +} - /* +METHOD(XonoticRegisteredSettingsList, refilter, void(entity this)) +{ + if (!this.source) { + this.nItems = 0; + return; + } + this.nItems = this.source.reload(this.source, this.stringFilter); +} +METHOD(XonoticRegisteredSettingsList, resizeNotify, void(entity this, vector relOrigin, vector relSize, vector absOrigin, vector absSize)) +{ + SUPER(XonoticRegisteredSettingsList).resizeNotify(this, relOrigin, relSize, absOrigin, absSize); + + this.itemAbsSize = '0 0 0'; + this.realFontSize_y = this.fontSize / (this.itemAbsSize_y = (absSize.y * this.itemHeight)); + this.realFontSize_x = this.fontSize / (this.itemAbsSize_x = (absSize.x * (1 - this.controlWidth))); + this.realUpperMargin = 0.5 * (1 - this.realFontSize.y); +} +METHOD(XonoticRegisteredSettingsList, setSelected, void(entity this, int i)) +{ + SUPER(XonoticRegisteredSettingsList).setSelected(this, i); + this.onChange(this, this.onChangeEntity); +} +CONSTRUCTOR(XonoticRegisteredSettingsList, DataSource _source) { + CONSTRUCT(XonoticRegisteredSettingsList); + this.source = _source; + this.configureXonoticListBox(this); + this.refilter(this); +} - makeXonoticGameViewSettingsTab())); - makeXonoticGameGeneralSettingsTab())); - makeXonoticGameCrosshairSettingsTab())); +METHOD(XonoticGameSettingsTab, topicChangeNotify, void(entity, entity this)) +{ + entity c = this.currentPanel; + entity removing = this.currentItem; + DataSource data = this.topicList.source; + entity adding = data.getEntry(data, this.topicList.selectedItem, func_null); + if (removing == adding) return; + if (removing) { + this.currentItem = NULL; + c.removeItem(c, removing); + } + if (adding) { + this.currentItem = adding; + adding.resizeNotify(adding, '0 0 0', c.size, '0 0 0', c.size); + c.addItem(c, adding, '0 0 0', '1 1 0', 1); + } +} +METHOD(XonoticGameSettingsTab, fill, void(entity this)) +{ + entity topics = this.topicList; + topics.onChange = this.topicChangeNotify; + topics.onChangeEntity = this; - makeXonoticGameWeaponSettingsTab())); - l"), makeXonoticGamePlayermodelSettingsTab())); - makeXonoticGameHUDSettingsTab())); - on"), makeXonoticGameNotificationSettingsTab())); + int + col = 0, width = 1; + this.gotoRC(this, 0, col); + this.TD(this, this.rows, width, topics); + col += width, width = this.columns - col; + this.gotoRC(this, 0, col); this.setFirstColumn(this, this.currentColumn); + this.TD(this, this.rows, width, this.currentPanel); - me.TR(me); - me.TD(me, 1, 3, e = makeXonoticCheckBox(0, "cl_gentle", _("Disable gore effects and harsh language"))); // also set sv_gentle - */ + this.topicChangeNotify(topics, this); } -#endif