From: terencehill Date: Mon, 10 Apr 2023 21:49:20 +0000 (+0200) Subject: Hud editor: allow displaying more than one vertical line at the desired position X-Git-Tag: xonotic-v0.8.6~123^2~1 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=920804771425552f4d369b7e23db11449b5f2456;p=xonotic%2Fxonotic-data.pk3dir.git Hud editor: allow displaying more than one vertical line at the desired position --- diff --git a/_hud_common.cfg b/_hud_common.cfg index 0028a7322..5f03a4790 100644 --- a/_hud_common.cfg +++ b/_hud_common.cfg @@ -4,6 +4,7 @@ seta hud_configure_teamcolorforced 0 "1 = force display of team colors in config seta hud_configure_checkcollisions 0 "check for collisions against other panels when in hud configure mode" seta hud_configure_bg_minalpha 0.25 "minimum panel background alpha when in hud configure mode" seta hud_configure_grid_alpha 0.15 "alpha for visible grid when in configure mode" +seta hud_configure_vertical_lines 0.5 "list of space-separated intervals at which to draw a vertical line, useful for aligning panels; e.g. 0.5 draws a vertical line in the center, \"0.25 0.5 0.75\" draws a vertical line every quarter of the screen width" seta hud_cursormode 1 "handle mouse input in cursor mode when CSQC displays a cursor" diff --git a/qcsrc/client/hud/hud_config.qc b/qcsrc/client/hud/hud_config.qc index ac4d48a42..8bdf0c4b8 100644 --- a/qcsrc/client/hud/hud_config.qc +++ b/qcsrc/client/hud/hud_config.qc @@ -1056,7 +1056,12 @@ void HUD_Configure_DrawGrid() vector s; // vertical center line, wider than vertical grid lines so that it's more visible // NOTE: depending on grid size the vertical center line may not overlap any vertical grid line - drawfill(eX * (0.5 * vid_conwidth - 1), vec2(3, vid_conheight), '0.5 0.5 0.5', autocvar_hud_configure_grid_alpha, DRAWFLAG_NORMAL); + int n = tokenize(autocvar_hud_configure_vertical_lines); + for (i = 0; i < n; ++i) + { + float xpos_rel = stof(argv(i)); + drawfill(eX * (xpos_rel * vid_conwidth - 1), vec2(3, vid_conheight), '0.5 0.5 0.5', autocvar_hud_configure_grid_alpha, DRAWFLAG_NORMAL); + } // x-axis s = vec2(1, vid_conheight); for(i = 1; i < 1/hud_configure_gridSize.x; ++i) @@ -1124,15 +1129,20 @@ void HUD_Panel_HlCenterLine(float myBorder) if (time > hud_configure_centerline_time) return; float panel_centerpos_x = (panel_pos.x + panel_size.x * 0.5); - float ofs = fabs(panel_centerpos_x / vid_conwidth - 0.5); - if (ofs < 0.02) // don't bother showing the center line if it's evident that the panel is not centered + int n = tokenize(autocvar_hud_configure_vertical_lines); + for (int i = 0; i < n; ++i) { - float f = map_bound_ranges(ofs, 0.001, 0.01, 0, 1); - vector col = '1 0 0' * f + '0 1 0' * (1 - f); // from red (far) to green (close) - float theAlpha = 0.3 + 0.1 * sin(6 * time); // blink - theAlpha *= (1 - autocvar__menu_alpha) * bound(0, hud_configure_centerline_time - time, 0.5) * 2; // fade - vector pos = vec2(panel_centerpos_x - 1, panel_pos.y - myBorder); - drawfill(pos, vec2(3, panel_size.y + 2 * myBorder), col, theAlpha, DRAWFLAG_NORMAL); + float xpos_rel = stof(argv(i)); + float ofs = fabs(panel_centerpos_x / vid_conwidth - xpos_rel); + if (ofs < 0.02) // don't bother showing the center line if it's evident that the panel is not centered + { + float f = map_bound_ranges(ofs, 0.001, 0.01, 0, 1); + vector col = '1 0 0' * f + '0 1 0' * (1 - f); // from red (far) to green (close) + float theAlpha = 0.3 + 0.1 * sin(6 * time); // blink + theAlpha *= (1 - autocvar__menu_alpha) * bound(0, hud_configure_centerline_time - time, 0.5) * 2; // fade + vector pos = vec2(panel_centerpos_x - 1, panel_pos.y - myBorder); + drawfill(pos, vec2(3, panel_size.y + 2 * myBorder), col, theAlpha, DRAWFLAG_NORMAL); + } } } diff --git a/qcsrc/client/hud/hud_config.qh b/qcsrc/client/hud/hud_config.qh index 79558c259..81182c65a 100644 --- a/qcsrc/client/hud/hud_config.qh +++ b/qcsrc/client/hud/hud_config.qh @@ -4,6 +4,7 @@ bool autocvar__hud_configure; bool autocvar_hud_configure_checkcollisions; bool autocvar_hud_configure_grid; float autocvar_hud_configure_grid_alpha; +string autocvar_hud_configure_vertical_lines = "0.5"; bool autocvar_hud_configure_teamcolorforced; const int S_MOUSE1 = 1;