X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;f=qcsrc%2Fcommon%2Fvehicles%2Fcl_vehicles.qh;h=f455e86c68327646456ac32552286e60b229c385;hb=2f553b6be14a316d31fe5c35df47c300ce6a1561;hp=f91add3f1e81d970859c3d3a912c68017eb5300a;hpb=acb86c9c65c60005e539c16cd544d00a94264b66;p=xonotic%2Fxonotic-data.pk3dir.git diff --git a/qcsrc/common/vehicles/cl_vehicles.qh b/qcsrc/common/vehicles/cl_vehicles.qh index f91add3f1..f455e86c6 100644 --- a/qcsrc/common/vehicles/cl_vehicles.qh +++ b/qcsrc/common/vehicles/cl_vehicles.qh @@ -1,24 +1,19 @@ -#ifndef CL_VEHICLES_H -#define CL_VEHICLES_H +#pragma once -// vehicle cvars -bool autocvar_cl_vehicles_alarm = 1; -bool autocvar_cl_vehicles_hud_tactical = 1; +bool autocvar_cl_vehicles_alarm = false; +bool autocvar_cl_vehicles_hud_tactical = true; +float autocvar_cl_vehicles_hudscale = 0.5; +float autocvar_cl_vehicles_notify_time = 15; +float autocvar_cl_vehicles_crosshair_size = 0.5; +bool autocvar_cl_vehicles_crosshair_colorize = true; +bool autocvar__vehicles_shownchasemessage; +vector autocvar_hud_progressbar_vehicles_ammo1_color; +vector autocvar_hud_progressbar_vehicles_ammo2_color; -void Net_AuXair2(float bIsNew); +vector vehicleHud_Size; +vector vehicleHud_Pos; -void Net_VehicleSetup(); - -void RaptorCBShellfragDraw(); +void RaptorCBShellfragDraw(entity this); void RaptorCBShellfragToss(vector _org, vector _vel, vector _ang); -#define HUD_GETVEHICLESTATS \ - int vh_health = getstati(STAT_VEHICLESTAT_HEALTH); \ - float shield = getstati(STAT_VEHICLESTAT_SHIELD); \ - noref int energy = getstati(STAT_VEHICLESTAT_ENERGY); \ - noref float ammo1 = getstati(STAT_VEHICLESTAT_AMMO1); \ - noref float reload1 = getstati(STAT_VEHICLESTAT_RELOAD1); \ - noref int ammo2 = getstati(STAT_VEHICLESTAT_AMMO2); \ - noref int reload2 = getstati(STAT_VEHICLESTAT_RELOAD2); - -#endif +#define weapon2mode STAT(VEHICLESTAT_W2MODE)