X-Git-Url: https://de.git.xonotic.org/?p=xonotic%2Fxonotic-data.pk3dir.git;a=blobdiff_plain;f=qcsrc%2Fclient%2Fhud_config.qc;h=48b3c821d20cf35d5f4ec0330dc4c368d99de5b0;hp=4b55bb40e9850ab92c104210f6d2fb3712373c93;hb=21307f327df5609b82d90496c1c6156d636d1c8d;hpb=5b3d38ffdd942aa1647d747e8e6e4605df39cb82 diff --git a/qcsrc/client/hud_config.qc b/qcsrc/client/hud_config.qc index 4b55bb40e9..48b3c821d2 100644 --- a/qcsrc/client/hud_config.qc +++ b/qcsrc/client/hud_config.qc @@ -1,13 +1,7 @@ #include "hud_config.qh" -#include "_all.qh" #include "hud.qh" -#include "../common/constants.qh" - -#include "../dpdefs/keycodes.qh" - - #define HUD_Write(s) fputs(fh, s) // q: quoted, n: not quoted #define HUD_Write_Cvar_n(cvar) HUD_Write(strcat("seta ", cvar, " ", cvar_string(cvar), "\n")) @@ -59,10 +53,9 @@ void HUD_Panel_ExportCfg(string cfgname) HUD_Write("\n"); // common cvars for all panels - int i; - for (i = 0; i < HUD_PANEL_NUM; ++i) + for (int i = 0; i < hud_panels_COUNT; ++i) { - panel = hud_panel[i]; + panel = hud_panels[i]; HUD_Write_PanelCvar_n(""); HUD_Write_PanelCvar_q("_pos"); @@ -73,7 +66,7 @@ void HUD_Panel_ExportCfg(string cfgname) HUD_Write_PanelCvar_q("_bg_alpha"); HUD_Write_PanelCvar_q("_bg_border"); HUD_Write_PanelCvar_q("_bg_padding"); - switch(i) { + switch(panel) { case HUD_PANEL_WEAPONS: HUD_Write_PanelCvar_q("_accuracy"); HUD_Write_PanelCvar_q("_label"); @@ -96,6 +89,8 @@ void HUD_Panel_ExportCfg(string cfgname) HUD_Write_PanelCvar_q("_timeout_speed_in"); HUD_Write_PanelCvar_q("_timeout_speed_out"); HUD_Write_PanelCvar_q("_onlyowned"); + HUD_Write_PanelCvar_q("_noncurrent_alpha"); + HUD_Write_PanelCvar_q("_noncurrent_scale"); break; case HUD_PANEL_AMMO: HUD_Write_PanelCvar_q("_onlycurrent"); @@ -108,12 +103,9 @@ void HUD_Panel_ExportCfg(string cfgname) HUD_Write_PanelCvar_q("_text"); break; case HUD_PANEL_POWERUPS: - HUD_Write_PanelCvar_q("_flip"); HUD_Write_PanelCvar_q("_iconalign"); HUD_Write_PanelCvar_q("_baralign"); HUD_Write_PanelCvar_q("_progressbar"); - HUD_Write_PanelCvar_q("_progressbar_strength"); - HUD_Write_PanelCvar_q("_progressbar_shield"); HUD_Write_PanelCvar_q("_text"); break; case HUD_PANEL_HEALTHARMOR: @@ -202,16 +194,27 @@ void HUD_Panel_ExportCfg(string cfgname) HUD_Write_PanelCvar_q("_fade_subsequent_minfontsize"); HUD_Write_PanelCvar_q("_fade_minfontsize"); break; + case HUD_PANEL_ITEMSTIME: + HUD_Write_PanelCvar_q("_iconalign"); + HUD_Write_PanelCvar_q("_progressbar"); + HUD_Write_PanelCvar_q("_progressbar_name"); + HUD_Write_PanelCvar_q("_progressbar_reduced"); + HUD_Write_PanelCvar_q("_text"); + HUD_Write_PanelCvar_q("_ratio"); + HUD_Write_PanelCvar_q("_dynamicsize"); + case HUD_PANEL_QUICKMENU: + HUD_Write_PanelCvar_q("_align"); + break; } HUD_Write("\n"); } HUD_Write("menu_sync\n"); // force the menu to reread the cvars, so that the dialogs are updated - printf(_("^2Successfully exported to %s! (Note: It's saved in data/data/)\n"), filename); + LOG_INFOF(_("^2Successfully exported to %s! (Note: It's saved in data/data/)\n"), filename); fclose(fh); } else - printf(_("^1Couldn't write to %s\n"), filename); + LOG_INFOF(_("^1Couldn't write to %s\n"), filename); } void HUD_Configure_Exit_Force() @@ -230,8 +233,9 @@ vector HUD_Panel_CheckMove(vector myPos, vector mySize) vector myCenter, targCenter; vector myTarget = myPos; int i; - for (i = 0; i < HUD_PANEL_NUM; ++i) { - panel = hud_panel[i]; + for (i = 0; i < hud_panels_COUNT; ++i) { + panel = hud_panels[i]; + if(!(panel.panel_configflags & PANEL_CONFIG_MAIN)) continue; if(panel == highlightedPanel) continue; HUD_Panel_UpdatePosSize(); if(!panel_enabled) continue; @@ -326,8 +330,9 @@ vector HUD_Panel_CheckResize(vector mySize, vector resizeorigin) { vector dist; float ratio = mySize.x/mySize.y; int i; - for (i = 0; i < HUD_PANEL_NUM; ++i) { - panel = hud_panel[i]; + for (i = 0; i < hud_panels_COUNT; ++i) { + panel = hud_panels[i]; + if(!(panel.panel_configflags & PANEL_CONFIG_MAIN)) continue; if(panel == highlightedPanel) continue; HUD_Panel_UpdatePosSize(); if(!panel_enabled) continue; @@ -626,16 +631,8 @@ void HUD_Panel_Arrow_Action(float nPrimary) } } -const int S_MOUSE1 = 1; -const int S_MOUSE2 = 2; -const int S_MOUSE3 = 4; -int mouseClicked; -int prevMouseClicked; // previous state -float prevMouseClickedTime; // time during previous left mouse click, to check for doubleclicks -vector prevMouseClickedPos; // pos during previous left mouse click, to check for doubleclicks - void HUD_Panel_EnableMenu(); -entity tab_panels[HUD_PANEL_MAX]; +entity tab_panels[hud_panels_MAX]; entity tab_panel; vector tab_panel_pos; float tab_backward; @@ -643,7 +640,7 @@ void HUD_Panel_FirstInDrawQ(float id); void reset_tab_panels() { int i; - for(i = 0; i < HUD_PANEL_NUM; ++i) + for(i = 0; i < hud_panels_COUNT; ++i) tab_panels[i] = world; } float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary) @@ -784,9 +781,11 @@ float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary) k=0; while(++k) { - for(i = 0; i < HUD_PANEL_NUM; ++i) + for(i = 0; i < hud_panels_COUNT; ++i) { - panel = hud_panel[i]; + panel = hud_panels[i]; + if(!(panel.panel_configflags & PANEL_CONFIG_MAIN)) + continue; if (panel == tab_panels[i] || panel == starting_panel) continue; HUD_Panel_UpdatePosSize(); @@ -928,12 +927,13 @@ float HUD_Panel_InputEvent(float bInputType, float nPrimary, float nSecondary) float HUD_Panel_Check_Mouse_Pos(float allow_move) { int i, j = 0; - while(j < HUD_PANEL_NUM) + while(j < hud_panels_COUNT) { i = panel_order[j]; j += 1; - panel = hud_panel[i]; + panel = hud_panels[i]; + if(!(panel.panel_configflags & PANEL_CONFIG_MAIN)) continue; HUD_Panel_UpdatePosSize(); float border = max(8, panel_bg_border); // FORCED border so a small border size doesn't mean you can't resize @@ -973,7 +973,7 @@ void HUD_Panel_FirstInDrawQ(float id) int i; int place = -1; // find out where in the array our current id is, save into place - for(i = 0; i < HUD_PANEL_NUM; ++i) + for(i = 0; i < hud_panels_COUNT; ++i) { if(panel_order[i] == id) { @@ -983,7 +983,7 @@ void HUD_Panel_FirstInDrawQ(float id) } // place last if we didn't find a place for it yet (probably new panel, or screwed up cvar) if(place == -1) - place = HUD_PANEL_NUM - 1; + place = hud_panels_COUNT - 1; // move all ids up by one step in the array until "place" for(i = place; i > 0; --i) @@ -995,7 +995,7 @@ void HUD_Panel_FirstInDrawQ(float id) // let's save them into the cvar by some strcat trickery string s = ""; - for(i = 0; i < HUD_PANEL_NUM; ++i) + for(i = 0; i < hud_panels_COUNT; ++i) { s = strcat(s, ftos(panel_order[i]), " "); } @@ -1009,12 +1009,14 @@ void HUD_Panel_Highlight(float allow_move) { int i, j = 0; - while(j < HUD_PANEL_NUM) + while(j < hud_panels_COUNT) { i = panel_order[j]; j += 1; - panel = hud_panel[i]; + panel = hud_panels[i]; + if(!(panel.panel_configflags & PANEL_CONFIG_MAIN)) + continue; HUD_Panel_UpdatePosSize(); float border = max(8, panel_bg_border); // FORCED border so a small border size doesn't mean you can't resize @@ -1022,7 +1024,7 @@ void HUD_Panel_Highlight(float allow_move) // move if(allow_move && mousepos.x > panel_pos.x && mousepos.y > panel_pos.y && mousepos.x < panel_pos.x + panel_size.x && mousepos.y < panel_pos.y + panel_size.y) { - highlightedPanel = hud_panel[i]; + highlightedPanel = hud_panels[i]; HUD_Panel_FirstInDrawQ(i); highlightedAction = 1; panel_click_distance = mousepos - panel_pos; @@ -1031,7 +1033,7 @@ void HUD_Panel_Highlight(float allow_move) // resize from topleft border else if(mousepos.x >= panel_pos.x - border && mousepos.y >= panel_pos.y - border && mousepos.x <= panel_pos.x + 0.5 * panel_size.x && mousepos.y <= panel_pos.y + 0.5 * panel_size.y) { - highlightedPanel = hud_panel[i]; + highlightedPanel = hud_panels[i]; HUD_Panel_FirstInDrawQ(i); highlightedAction = 2; resizeCorner = 1; @@ -1042,7 +1044,7 @@ void HUD_Panel_Highlight(float allow_move) // resize from topright border else if(mousepos.x >= panel_pos.x + 0.5 * panel_size.x && mousepos.y >= panel_pos.y - border && mousepos.x <= panel_pos.x + panel_size.x + border && mousepos.y <= panel_pos.y + 0.5 * panel_size.y) { - highlightedPanel = hud_panel[i]; + highlightedPanel = hud_panels[i]; HUD_Panel_FirstInDrawQ(i); highlightedAction = 2; resizeCorner = 2; @@ -1054,7 +1056,7 @@ void HUD_Panel_Highlight(float allow_move) // resize from bottomleft border else if(mousepos.x >= panel_pos.x - border && mousepos.y >= panel_pos.y + 0.5 * panel_size.y && mousepos.x <= panel_pos.x + 0.5 * panel_size.x && mousepos.y <= panel_pos.y + panel_size.y + border) { - highlightedPanel = hud_panel[i]; + highlightedPanel = hud_panels[i]; HUD_Panel_FirstInDrawQ(i); highlightedAction = 2; resizeCorner = 3; @@ -1066,7 +1068,7 @@ void HUD_Panel_Highlight(float allow_move) // resize from bottomright border else if(mousepos.x >= panel_pos.x + 0.5 * panel_size.x && mousepos.y >= panel_pos.y + 0.5 * panel_size.y && mousepos.x <= panel_pos.x + panel_size.x + border && mousepos.y <= panel_pos.y + panel_size.y + border) { - highlightedPanel = hud_panel[i]; + highlightedPanel = hud_panels[i]; HUD_Panel_FirstInDrawQ(i); highlightedAction = 2; resizeCorner = 4; @@ -1240,8 +1242,8 @@ void HUD_Configure_Frame() if(autocvar_hud_cursormode) setcursormode(1); hudShiftState = 0; - for(i = HUD_PANEL_NUM - 1; i >= 0; --i) - hud_panel[panel_order[i]].update_time = time; + for(i = hud_panels_COUNT - 1; i >= 0; --i) + hud_panels[panel_order[i]].update_time = time; } // NOTE this check is necessary because _menu_alpha isn't updated the frame the menu gets enabled