#include <client/draw.qh>
#include <lib/csqcmodel/cl_player.qh>
+#include <common/physics/player.qh>
+#include "strafehud.qh"
// Physics (#15)
HUD_Write_Cvar("hud_panel_physics_speed_vertical");
HUD_Write_Cvar("hud_panel_physics_topspeed");
HUD_Write_Cvar("hud_panel_physics_topspeed_time");
+ HUD_Write_Cvar("hud_panel_physics_jumpspeed");
+ HUD_Write_Cvar("hud_panel_physics_jumpspeed_time");
HUD_Write_Cvar("hud_panel_physics_acceleration_max");
+ HUD_Write_Cvar("hud_panel_physics_acceleration_max_slick");
HUD_Write_Cvar("hud_panel_physics_acceleration_vertical");
HUD_Write_Cvar("hud_panel_physics_flip");
HUD_Write_Cvar("hud_panel_physics_baralign");
HUD_Write_Cvar("hud_panel_physics_acceleration_progressbar_nonlinear");
HUD_Write_Cvar("hud_panel_physics_text");
HUD_Write_Cvar("hud_panel_physics_text_scale");
+ HUD_Write_Cvar("hud_panel_physics_force_layout");
}
-vector acc_prevspeed;
-float acc_prevtime, acc_avg, top_speed, top_speed_time;
-float physics_update_time, discrete_speed, discrete_acceleration;
+vector acc_prev_vel;
+float acc_prev_time, acc_avg, top_speed, top_speed_time, jump_speed, jump_speed_time;
+float prev_vel_z = 0, prev_speed2d = 0;
+float physics_update_time, discrete_speed, discrete_top_speed, discrete_accel; // not done for jumpspeed
void HUD_Physics()
{
- if(!autocvar__hud_configure)
+ if (!autocvar__hud_configure)
{
- if(!autocvar_hud_panel_physics) return;
- if(spectatee_status == -1 && (autocvar_hud_panel_physics == 1 || autocvar_hud_panel_physics == 3)) return;
- if(autocvar_hud_panel_physics == 3 && !MUTATOR_CALLHOOK(HUD_Physics_showoptional)) return;
+ if (!autocvar_hud_panel_physics) return;
+ if (spectatee_status == -1 && (autocvar_hud_panel_physics == 1 || autocvar_hud_panel_physics == 3)) return;
+ if (autocvar_hud_panel_physics == 3 && !MUTATOR_CALLHOOK(HUD_Physics_showoptional)) return;
}
HUD_Panel_LoadCvars();
- draw_beginBoldFont();
-
if (autocvar_hud_panel_physics_dynamichud)
HUD_Scale_Enable();
else
HUD_Scale_Disable();
HUD_Panel_DrawBg();
- if(panel_bg_padding)
+ if (panel_bg_padding)
{
- panel_pos += '1 1 0' * panel_bg_padding;
+ panel_pos += '1 1 0' * panel_bg_padding;
panel_size -= '2 2 0' * panel_bg_padding;
}
- float acceleration_progressbar_scale = 0;
- if(autocvar_hud_panel_physics_progressbar && autocvar_hud_panel_physics_acceleration_progressbar_scale > 1)
- acceleration_progressbar_scale = autocvar_hud_panel_physics_acceleration_progressbar_scale;
+ // NOTE: this is copied from strafehud.qc
+ bool is_local = !(spectatee_status > 0 || isdemo());
+ entity strafeplayer = StrafeHUD_GetStrafeplayer(is_local);
+
+ if (!csqcplayer || !strafeplayer)
+ return;
+
+ // draw physics hud
+
+ draw_beginBoldFont();
+
+ float accel_progressbar_scale = 0;
+ if (autocvar_hud_panel_physics_progressbar && autocvar_hud_panel_physics_acceleration_progressbar_scale > 1)
+ accel_progressbar_scale = autocvar_hud_panel_physics_acceleration_progressbar_scale;
float text_scale;
if (autocvar_hud_panel_physics_text_scale <= 0)
else
text_scale = min(autocvar_hud_panel_physics_text_scale, 1);
- //compute speed
- float speed, conversion_factor = GetSpeedUnitFactor(autocvar_hud_speed_unit);
- vector vel = (csqcplayer ? csqcplayer.velocity : pmove_vel);
-
- float max_speed = floor( autocvar_hud_panel_physics_speed_max * conversion_factor + 0.5 );
+ // compute speed
+ vector strafevelocity = csqcplayer.velocity;
+ float conversion_factor = GetSpeedUnitFactor(autocvar_hud_speed_unit);
+ float speed, speed2d;
+ float max_speed = floor(autocvar_hud_panel_physics_speed_max * conversion_factor + 0.5);
if (autocvar__hud_configure)
- speed = floor( max_speed * 0.65 + 0.5 );
- else if(autocvar_hud_panel_physics_speed_vertical)
- speed = floor( vlen(vel) * conversion_factor + 0.5 );
+ {
+ speed2d = floor(max_speed * 0.65 + 0.5);
+ speed = speed2d; // just ignore vertical speed in hud configure
+ }
else
- speed = floor( vlen(vel - vel.z * '0 0 1') * conversion_factor + 0.5 );
+ {
+ speed2d = floor(vlen(vec2(strafevelocity)) * conversion_factor + 0.5);
+ if (autocvar_hud_panel_physics_speed_vertical)
+ speed = floor(vlen(strafevelocity) * conversion_factor + 0.5);
+ else
+ speed = speed2d;
+ }
- //compute acceleration
- float acceleration, f;
+ // compute acceleration
+ float accel;
if (autocvar__hud_configure)
- acceleration = autocvar_hud_panel_physics_acceleration_max * 0.3;
+ accel = 0.45; // use a hardcoded value so that the hud responds to hud_panel_physics_acceleration_max changing
else
{
- // 1 m/s = 0.0254 qu/s; 1 g = 9.80665 m/s^2
- f = time - acc_prevtime;
- if(autocvar_hud_panel_physics_acceleration_vertical)
- acceleration = (vlen(vel) - vlen(acc_prevspeed));
+ float f = time - acc_prev_time;
+ if (autocvar_hud_panel_physics_acceleration_vertical)
+ accel = (vlen(strafevelocity) - vlen(acc_prev_vel));
else
- acceleration = (vlen(vel - '0 0 1' * vel.z) - vlen(acc_prevspeed - '0 0 1' * acc_prevspeed.z));
+ accel = (vlen(vec2(strafevelocity)) - vlen(vec2(acc_prev_vel)));
- acceleration = acceleration * (1 / max(0.0001, f)) * (0.0254 / 9.80665);
+ accel *= (1 / max(0.0001, f)) * ACCEL2GRAV; // now a fraction of gravity
- acc_prevspeed = vel;
- acc_prevtime = time;
+ acc_prev_vel = strafevelocity;
+ acc_prev_time = time;
- if(autocvar_hud_panel_physics_acceleration_movingaverage)
+ if (autocvar_hud_panel_physics_acceleration_movingaverage > 0)
{
- f = bound(0, f * 10, 1);
- acc_avg = acc_avg * (1 - f) + acceleration * f;
- acceleration = acc_avg;
+ f = bound(0, f * 10 / autocvar_hud_panel_physics_acceleration_movingaverage, 1);
+ acc_avg = acc_avg * (1 - f) + accel * f;
+ accel = acc_avg;
}
}
- const int acc_decimals = 2;
- if(time > physics_update_time)
- {
- discrete_acceleration = acceleration;
- // workaround for ftos_decimals returning a negative 0
- if(discrete_acceleration > -1 / (10 ** acc_decimals) && discrete_acceleration < 0)
- discrete_acceleration = 0;
- discrete_speed = speed;
- physics_update_time += autocvar_hud_panel_physics_update_interval;
- if(physics_update_time < time)
- physics_update_time = time + autocvar_hud_panel_physics_update_interval;
- }
-
- //compute layout
- float panel_ar = panel_size.x/panel_size.y;
- vector speed_offset = '0 0 0', acceleration_offset = '0 0 0';
- if (panel_ar >= 5 && !acceleration_progressbar_scale)
+ // compute layout
+ float panel_ar = panel_size.x / panel_size.y;
+ vector speed_offset = '0 0 0', accel_offset = '0 0 0';
+ if (autocvar_hud_panel_physics_force_layout == PHYSICS_LAYOUT_HORIZONTAL
+ || (autocvar_hud_panel_physics_force_layout != PHYSICS_LAYOUT_VERTICAL && panel_ar >= 5 && !accel_progressbar_scale))
{
panel_size.x *= 0.5;
if (autocvar_hud_panel_physics_flip)
speed_offset.x = panel_size.x;
else
- acceleration_offset.x = panel_size.x;
+ accel_offset.x = panel_size.x;
}
- else
+ else // speed and accel are drawn on top of one another (vvv), rather than side by side (^^^)
{
panel_size.y *= 0.5;
if (autocvar_hud_panel_physics_flip)
speed_offset.y = panel_size.y;
else
- acceleration_offset.y = panel_size.y;
+ accel_offset.y = panel_size.y;
}
- int speed_baralign, acceleration_baralign;
- if (autocvar_hud_panel_physics_baralign == 1)
- acceleration_baralign = speed_baralign = 1;
- else if(autocvar_hud_panel_physics_baralign == 4)
- acceleration_baralign = speed_baralign = 2;
+ int speed_baralign, accel_baralign;
+ if (autocvar_hud_panel_physics_baralign == PHYSICS_BARALIGN_RIGHT)
+ accel_baralign = speed_baralign = 1;
+ else if (autocvar_hud_panel_physics_baralign == PHYSICS_BARALIGN_CENTER)
+ accel_baralign = speed_baralign = 2;
else if (autocvar_hud_panel_physics_flip)
{
- acceleration_baralign = (autocvar_hud_panel_physics_baralign == 2);
- speed_baralign = (autocvar_hud_panel_physics_baralign == 3);
+ accel_baralign = (autocvar_hud_panel_physics_baralign == PHYSICS_BARALIGN_ONLY_LEFT);
+ speed_baralign = (autocvar_hud_panel_physics_baralign == PHYSICS_BARALIGN_ONLY_RIGHT);
}
else
{
- speed_baralign = (autocvar_hud_panel_physics_baralign == 2);
- acceleration_baralign = (autocvar_hud_panel_physics_baralign == 3);
+ speed_baralign = (autocvar_hud_panel_physics_baralign == PHYSICS_BARALIGN_ONLY_LEFT);
+ accel_baralign = (autocvar_hud_panel_physics_baralign == PHYSICS_BARALIGN_ONLY_RIGHT);
}
if (autocvar_hud_panel_physics_acceleration_progressbar_mode == 0)
- acceleration_baralign = 3; //override hud_panel_physics_baralign value for acceleration
+ accel_baralign = 3; // override hud_panel_physics_baralign value for acceleration
- //draw speed
- if(speed)
- if(autocvar_hud_panel_physics_progressbar == 1 || autocvar_hud_panel_physics_progressbar == 2)
- HUD_Panel_DrawProgressBar(panel_pos + speed_offset, panel_size, "progressbar", speed/max_speed, 0, speed_baralign, autocvar_hud_progressbar_speed_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
vector tmp_offset = '0 0 0', tmp_size = '0 0 0';
- if (autocvar_hud_panel_physics_text == 1 || autocvar_hud_panel_physics_text == 2)
+ float speed_size = 0.75;
+ int text_bits = BITS(0); // describes which texts may be drawn. BIT(0) = topspeed, BIT(1) = jumpspeed, BIT(2) = speed unit
+ // ordered by decreasing priority -- speed unit isn't drawn if the other two are,
+ // ... and topspeed takes priority over jumpspeed in the lower spot
+
+ // draw speed
+ if (speed > 0)
+ if (autocvar_hud_panel_physics_progressbar == PHYSICS_PROGRESSBAR_BOTH
+ || autocvar_hud_panel_physics_progressbar == PHYSICS_PROGRESSBAR_SPEED)
+ HUD_Panel_DrawProgressBar(panel_pos + speed_offset, panel_size, "progressbar", speed / max_speed, 0, speed_baralign,
+ autocvar_hud_progressbar_speed_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
+
+ float accel_max;
+ if (autocvar__hud_configure)
+ accel_max = autocvar_hud_panel_physics_acceleration_max;
+ else
{
- tmp_size.x = panel_size.x * 0.75;
- tmp_size.y = panel_size.y * text_scale;
- if (speed_baralign)
- tmp_offset.x = panel_size.x - tmp_size.x;
- //else
- //tmp_offset_x = 0;
- tmp_offset.y = (panel_size.y - tmp_size.y) / 2;
- drawstring_aspect(panel_pos + speed_offset + tmp_offset, ftos(discrete_speed), tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
-
- //draw speed unit
- if (speed_baralign)
- tmp_offset.x = 0;
+ // NOTE: this code is similar to the logic in strafehud.qc
+ int keys = STAT(PRESSED_KEYS);
+ bool jumpheld = StrafeHUD_DetermineJumpHeld(strafeplayer, keys, is_local);
+ bool real_onground = StrafeHUD_DetermineOnGround(strafeplayer, is_local);
+ bool onground = real_onground && !jumpheld;
+ bool real_onslick = onground && StrafeHUD_DetermineOnSlick(strafeplayer);
+ bool all_slick = PHYS_FRICTION(strafeplayer) == 0;
+
+ accel_max = (autocvar_hud_panel_physics_acceleration_max_slick != -1 && ((all_slick && real_onground) || real_onslick))
+ ? autocvar_hud_panel_physics_acceleration_max_slick
+ : autocvar_hud_panel_physics_acceleration_max;
+ }
+
+ // compute speed text color
+ vector speed_text_color = '1 1 1';
+ if (autocvar_hud_panel_physics_text == PHYSICS_TEXT_BOTH
+ || autocvar_hud_panel_physics_text == PHYSICS_TEXT_SPEED)
+ {
+ if (autocvar__hud_configure)
+ speed_text_color = autocvar_hud_progressbar_acceleration_color;
+ else if (autocvar_hud_panel_physics_speed_colored)
+ {
+ float accel_pixels_drawn = accel / accel_max * accel_progressbar_scale * panel_size.x;
+ // this calculates how wide the accel/decel bar would be (if it were drawn), so that the text is only colored if something shows on the bar
+ // this workaround prevents tiny floating point errors that would otherwise cause the color to flicker
+ // positive means accel, negative means decel
+ if (accel_pixels_drawn > 1)
+ speed_text_color = autocvar_hud_progressbar_acceleration_color;
+ else if (accel_pixels_drawn < -1)
+ speed_text_color = autocvar_hud_progressbar_acceleration_neg_color;
+ }
+ }
+
+ // compute jumpspeed text
+ float jump_speed_f = 0;
+ if (autocvar_hud_panel_physics_jumpspeed)
+ if (autocvar_hud_panel_physics_text == PHYSICS_TEXT_BOTH
+ || autocvar_hud_panel_physics_text == PHYSICS_TEXT_SPEED)
+ {
+ text_bits |= BIT(1);
+ if (autocvar__hud_configure)
+ {
+ jump_speed = floor(max_speed * 0.59 + 0.5); // slightly less than current speed text
+ jump_speed_f = 1;
+ }
else
- tmp_offset.x = tmp_size.x;
- if (autocvar_hud_panel_physics_speed_unit_show)
{
- //tmp_offset_y = 0;
- tmp_size.x = panel_size.x * (1 - 0.75);
- tmp_size.y = panel_size.y * 0.4 * text_scale;
- tmp_offset.y = (panel_size.y * 0.4 - tmp_size.y) / 2;
- string unit = GetSpeedUnit(autocvar_hud_speed_unit);
- drawstring_aspect(panel_pos + speed_offset + tmp_offset, unit, tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
+ if (rint(strafevelocity.z) > rint(prev_vel_z))
+ {
+ // NOTE: this includes some situations where the player doesn't explicitly jump
+ // e.g. landing, swimming in water, walking up/down ramps, using jetpack, bouncepads
+ jump_speed = prev_speed2d;
+ jump_speed_time = time;
+ }
+ prev_vel_z = strafevelocity.z;
+ float time_frac = (time - jump_speed_time) / max(1, autocvar_hud_panel_physics_jumpspeed_time);
+ jump_speed_f = time_frac > 1 ? 0 : cos(time_frac * M_PI_2);
}
}
- //compute and draw top speed
+ prev_speed2d = speed2d;
+
+ // compute and draw topspeed
+ float top_speed_f = 0;
if (autocvar_hud_panel_physics_topspeed)
- if (autocvar_hud_panel_physics_text == 1 || autocvar_hud_panel_physics_text == 2)
+ if (autocvar_hud_panel_physics_text == PHYSICS_TEXT_BOTH
+ || autocvar_hud_panel_physics_text == PHYSICS_TEXT_SPEED)
{
+ text_bits |= BIT(0);
if (autocvar__hud_configure)
{
- top_speed = floor( max_speed * 0.75 + 0.5 );
- f = 1;
+ top_speed = floor(max_speed * 0.73 + 0.5);
+ top_speed_f = 1;
}
else
{
top_speed = speed;
top_speed_time = time;
}
- if (top_speed != 0)
+ if (top_speed == 0) // hide topspeed 0
+ top_speed_f = 0;
+ else
{
- f = max(1, autocvar_hud_panel_physics_topspeed_time);
- // divide by f to make it start from 1
- f = cos( ((time - top_speed_time) / f) * PI/2 );
+ float time_frac = (time - top_speed_time) / max(1, autocvar_hud_panel_physics_topspeed_time);
+ top_speed_f = time_frac > 1 ? 0 : cos(time_frac * M_PI_2);
}
- else // hide top speed 0
- f = 0;
}
- if (f > 0)
+ // topspeed progressbar peak
+ if (top_speed_f > 0)
{
- //top speed progressbar peak
- if(speed < top_speed)
- if(autocvar_hud_panel_physics_progressbar == 1 || autocvar_hud_panel_physics_progressbar == 2)
+ if (speed < top_speed)
+ if (autocvar_hud_panel_physics_progressbar == PHYSICS_PROGRESSBAR_BOTH
+ || autocvar_hud_panel_physics_progressbar == PHYSICS_PROGRESSBAR_SPEED)
{
float peak_offsetX;
vector peak_size = '0 0 0';
if (speed_baralign == 0)
- peak_offsetX = min(top_speed, max_speed)/max_speed * panel_size.x;
+ peak_offsetX = min(top_speed, max_speed) / max_speed * panel_size.x;
else if (speed_baralign == 1)
- peak_offsetX = (1 - min(top_speed, max_speed)/max_speed) * panel_size.x;
- else // if (speed_baralign == 2)
- peak_offsetX = min(top_speed, max_speed)/max_speed * panel_size.x * 0.5;
+ peak_offsetX = (1 - min(top_speed, max_speed) / max_speed) * panel_size.x;
+ else //if (speed_baralign == 2)
+ peak_offsetX = min(top_speed, max_speed) / max_speed * panel_size.x * 0.5;
peak_size.x = floor(panel_size.x * 0.01 + 1.5);
peak_size.y = panel_size.y;
if (speed_baralign == 2) // draw two peaks, on both sides
{
- drawfill(panel_pos + speed_offset + eX * (0.5 * panel_size.x + peak_offsetX - peak_size.x), peak_size, autocvar_hud_progressbar_speed_color, f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
- drawfill(panel_pos + speed_offset + eX * (0.5 * panel_size.x - peak_offsetX + peak_size.x), peak_size, autocvar_hud_progressbar_speed_color, f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
+ drawfill(panel_pos + speed_offset + eX * (0.5 * panel_size.x + peak_offsetX - peak_size.x), peak_size,
+ autocvar_hud_progressbar_speed_color, top_speed_f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
+ drawfill(panel_pos + speed_offset + eX * (0.5 * panel_size.x - peak_offsetX + peak_size.x), peak_size,
+ autocvar_hud_progressbar_speed_color, top_speed_f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
}
else
- drawfill(panel_pos + speed_offset + eX * (peak_offsetX - peak_size.x), peak_size, autocvar_hud_progressbar_speed_color, f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
+ drawfill(panel_pos + speed_offset + eX * (peak_offsetX - peak_size.x), peak_size,
+ autocvar_hud_progressbar_speed_color, top_speed_f * autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
}
-
- //top speed
- tmp_offset.y = panel_size.y * 0.4;
- tmp_size.x = panel_size.x * (1 - 0.75);
- tmp_size.y = (panel_size.y - tmp_offset.y) * text_scale;
- tmp_offset.y += (panel_size.y - tmp_offset.y - tmp_size.y) / 2;
- drawstring_aspect(panel_pos + speed_offset + tmp_offset, ftos(top_speed), tmp_size, '1 0 0', f * panel_fg_alpha, DRAWFLAG_NORMAL);
}
else
top_speed = 0;
}
- //draw acceleration
- if(acceleration)
- if(autocvar_hud_panel_physics_progressbar == 1 || autocvar_hud_panel_physics_progressbar == 3)
+ const int acc_decimals = 2;
+ if (time > physics_update_time)
+ {
+ discrete_speed = speed;
+ discrete_top_speed = top_speed;
+ discrete_accel = accel;
+ // workaround for ftos_decimals returning a negative 0
+ if (discrete_accel > -1 / (10 ** acc_decimals) && discrete_accel < 0)
+ discrete_accel = 0;
+ physics_update_time += autocvar_hud_panel_physics_update_interval;
+ if (physics_update_time < time)
+ physics_update_time = time + autocvar_hud_panel_physics_update_interval;
+ }
+
+ // draw speed text
+ if (autocvar_hud_panel_physics_text == PHYSICS_TEXT_BOTH
+ || autocvar_hud_panel_physics_text == PHYSICS_TEXT_SPEED)
+ {
+ tmp_size.x = panel_size.x * speed_size;
+ tmp_size.y = panel_size.y * text_scale;
+ tmp_offset.x = speed_baralign ? panel_size.x * (1 - speed_size) : 0;
+ tmp_offset.y = (panel_size.y - tmp_size.y) * 0.5;
+ drawstring_aspect(panel_pos + speed_offset + tmp_offset, ftos(discrete_speed), tmp_size, speed_text_color, panel_fg_alpha, DRAWFLAG_NORMAL);
+
+ if (autocvar_hud_panel_physics_speed_unit_show)
+ text_bits |= BIT(2);
+ }
+
+ // draw acceleration
+ if (accel)
+ if (autocvar_hud_panel_physics_progressbar == PHYSICS_PROGRESSBAR_BOTH
+ || autocvar_hud_panel_physics_progressbar == PHYSICS_PROGRESSBAR_ACCEL)
{
vector progressbar_color;
- if(acceleration < 0)
+ if (accel < 0)
progressbar_color = autocvar_hud_progressbar_acceleration_neg_color;
else
progressbar_color = autocvar_hud_progressbar_acceleration_color;
- f = acceleration/autocvar_hud_panel_physics_acceleration_max;
+ float f = accel / accel_max;
if (autocvar_hud_panel_physics_acceleration_progressbar_nonlinear)
f = (f >= 0 ? sqrt(f) : -sqrt(-f));
- if (acceleration_progressbar_scale) // allow progressbar to go out of panel bounds
+ if (accel_progressbar_scale) // allow progressbar to go out of panel bounds
{
- tmp_size = acceleration_progressbar_scale * panel_size.x * eX + panel_size.y * eY;
+ tmp_size = accel_progressbar_scale * panel_size.x * eX + panel_size.y * eY;
- if (acceleration_baralign == 1)
+ if (accel_baralign == 1)
tmp_offset.x = panel_size.x - tmp_size.x;
- else if (acceleration_baralign == 2 || acceleration_baralign == 3)
- tmp_offset.x = (panel_size.x - tmp_size.x) / 2;
+ else if (accel_baralign == 2 || accel_baralign == 3)
+ tmp_offset.x = (panel_size.x - tmp_size.x) * 0.5;
else
tmp_offset.x = 0;
tmp_offset.y = 0;
tmp_offset = '0 0 0';
}
- HUD_Panel_DrawProgressBar(panel_pos + acceleration_offset + tmp_offset, tmp_size, "accelbar", f, 0, acceleration_baralign, progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
+ HUD_Panel_DrawProgressBar(panel_pos + accel_offset + tmp_offset, tmp_size, "accelbar", f, 0, accel_baralign,
+ progressbar_color, autocvar_hud_progressbar_alpha * panel_fg_alpha, DRAWFLAG_NORMAL);
}
- if(autocvar_hud_panel_physics_text == 1 || autocvar_hud_panel_physics_text == 3)
+ // draw acceleration text
+ if (autocvar_hud_panel_physics_text == PHYSICS_TEXT_BOTH
+ || autocvar_hud_panel_physics_text == PHYSICS_TEXT_ACCEL)
{
tmp_size.x = panel_size.x;
tmp_size.y = panel_size.y * text_scale;
tmp_offset.x = 0;
- tmp_offset.y = (panel_size.y - tmp_size.y) / 2;
+ tmp_offset.y = (panel_size.y - tmp_size.y) * 0.5;
+ drawstring_aspect(panel_pos + accel_offset + tmp_offset, strcat(ftos_decimals(discrete_accel, acc_decimals), "g"), tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
+ }
+
+ tmp_size.x = panel_size.x * (1 - speed_size);
+ tmp_offset.x = speed_baralign ? 0 : panel_size.x * speed_size;
+ float top_speed_y = 0, jump_speed_y = 0, main_text_size; // speed unit is not main text
+
+ // draw speed unit text
+ if ((text_bits & BIT(2)) && text_bits != BITS(3)) // can't draw all 3 texts at once, speed unit has the lowest priority
+ {
+ if (text_bits == BIT(2)) // it's the only text drawn, so make it large and centered
+ {
+ main_text_size = 1 - 0.8; // make the main text small, so the non-main text (speed unit) is large
+ tmp_offset.y = panel_size.y * main_text_size * 0.5; // offset halved to center text
+ }
+ else
+ {
+ main_text_size = 0.6; // make the main text slightly larger, since it's more important
+ tmp_offset.y = 0;
+ top_speed_y = panel_size.y * (1 - main_text_size);
+ jump_speed_y = top_speed_y;
+ }
+ tmp_size.y = panel_size.y * (1 - main_text_size) * text_scale;
+ tmp_offset.y += (panel_size.y * (1 - main_text_size) - tmp_size.y) * 0.5;
+ drawstring_aspect(panel_pos + speed_offset + tmp_offset, GetSpeedUnit(autocvar_hud_speed_unit), tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
+ }
+ else if (text_bits == BIT(0) || text_bits == BIT(1)) // only one text is drawn, make it large and centered
+ {
+ main_text_size = 0.8;
+ top_speed_y = panel_size.y * (1 - main_text_size) * 0.5; // offset halved to center text
+ jump_speed_y = top_speed_y;
+ }
+ else // both topspeed and jumpspeed are drawn
+ {
+ main_text_size = 0.5; // make them equal size
+ top_speed_y = panel_size.y * (1 - main_text_size); // put topspeed in the lower slot
+ jump_speed_y = 0; // put jumpspeed in the upper slot
+ }
- drawstring_aspect(panel_pos + acceleration_offset + tmp_offset, strcat(ftos_decimals(discrete_acceleration, acc_decimals), "g"), tmp_size, '1 1 1', panel_fg_alpha, DRAWFLAG_NORMAL);
+ // draw jumpspeed text
+ tmp_size.y = panel_size.y * main_text_size * text_scale;
+ if ((text_bits & BIT(1)) && jump_speed_f > 0)
+ {
+ jump_speed_y += (panel_size.y * main_text_size - tmp_size.y) * 0.5;
+ tmp_offset.y = jump_speed_y;
+ drawstring_aspect(panel_pos + speed_offset + tmp_offset, ftos(jump_speed), tmp_size, '0 1 0', jump_speed_f * panel_fg_alpha, DRAWFLAG_NORMAL);
+ }
+ // draw topspeed text
+ if ((text_bits & BIT(0)) && top_speed_f > 0)
+ {
+ top_speed_y += (panel_size.y * main_text_size - tmp_size.y) * 0.5;
+ tmp_offset.y = top_speed_y;
+ drawstring_aspect(panel_pos + speed_offset + tmp_offset, ftos(discrete_top_speed), tmp_size, '1 0 0', top_speed_f * panel_fg_alpha, DRAWFLAG_NORMAL);
}
draw_endBoldFont();