]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/log
xonotic/xonotic-data.pk3dir.git
22 months agoRemove legacy Quake bbox expansion: projectiles
bones_was_here [Thu, 18 May 2023 13:25:23 +0000 (23:25 +1000)]
Remove legacy Quake bbox expansion: projectiles

All the "zero size" projectiles now need a size so they can
trigger a warpzone's touch func. Prevously DP gave most of them
mins '-1 -1 -1' maxs '1 1 1' for the purpose of those tests
(but not all tests).

Because of that these projectiles now need a different way to avoid
colliding with each other. Comparison of the `clipgroup` field is used
as DP_RM_CLIPGROUP will make this more optimal for performance and is
also implemented in QC here for compatibility with old DP versions.

22 months agoUse correct pickup item bboxes on clients
bones_was_here [Thu, 18 May 2023 12:34:27 +0000 (22:34 +1000)]
Use correct pickup item bboxes on clients

CSQC items currently don't use the item registry so properties including
model and size must be networked.

22 months agoRemove legacy Quake bbox expansion: map entities
bones_was_here [Thu, 18 May 2023 13:13:20 +0000 (23:13 +1000)]
Remove legacy Quake bbox expansion: map entities

This gives QC full control of bboxes
and makes SVQC and CSQC behaviour consistent.

Adds a Small item bbox which is the size most items had previously
if expansion wasn't counted.

Changes powerup, buff and mega pickups to have the same height.
This will make it cheaper to network that information to clients.

Groups all the sv_gameplayfix cvars together in xonotic-server.cfg.

Removes duplication of the item mins/maxs definition
and box + '1 1 1' code.

22 months agoInclude boxesoverlap() in WarpZoneLib_ExactTrigger_Touch() for convenient efficiency...
bones_was_here [Fri, 3 Feb 2023 04:40:07 +0000 (14:40 +1000)]
Include boxesoverlap() in WarpZoneLib_ExactTrigger_Touch() for convenient efficiency and less code duplication

22 months agoInvert bool WarpZoneLib_ExactTrigger_Touch() so it's easier to use
bones_was_here [Fri, 3 Feb 2023 03:38:44 +0000 (13:38 +1000)]
Invert bool WarpZoneLib_ExactTrigger_Touch() so it's easier to use

22 months agoRemove trigger_init(), it's in the way and is mostly duplicating WarpZoneLib_ExactTri...
bones_was_here [Fri, 3 Feb 2023 03:00:05 +0000 (13:00 +1000)]
Remove trigger_init(), it's in the way and is mostly duplicating WarpZoneLib_ExactTrigger_Init() code

22 months agopipeline: don't enable engine timestamps and then filter them out of the hash
bones_was_here [Sun, 21 May 2023 14:06:38 +0000 (00:06 +1000)]
pipeline: don't enable engine timestamps and then filter them out of the hash

This is annoying when using `diff` to compare pipeline logs.

22 months agoTransifex autosync
Rudolf Polzer [Sun, 21 May 2023 05:23:08 +0000 (07:23 +0200)]
Transifex autosync

23 months agoMerge branch 'terencehill/instagib_powerup_distribution' into 'master'
bones_was_here [Sun, 21 May 2023 01:53:50 +0000 (01:53 +0000)]
Merge branch 'terencehill/instagib_powerup_distribution' into 'master'

Improve instagib powerup replacement algorithm + Extralife pickup sound fix

See merge request xonotic/xonotic-data.pk3dir!1174

23 months agoShow the correct key to join a team in the team selection interface; it fixes #2836
terencehill [Sat, 20 May 2023 12:27:22 +0000 (14:27 +0200)]
Show the correct key to join a team in the team selection interface; it fixes #2836

23 months agoInstagib: select a random powerup to replace an item among the less spawned ones...
terencehill [Fri, 19 May 2023 22:19:33 +0000 (00:19 +0200)]
Instagib: select a random powerup to replace an item among the less spawned ones so that there can't be many powerups of one type and few of another type

23 months agoFix Extralife pickup sound stopping long powerup sounds
terencehill [Fri, 19 May 2023 21:58:35 +0000 (23:58 +0200)]
Fix Extralife pickup sound stopping long powerup sounds

23 months agoMerge branch 'bones_was_here/BoxTouchesBrush' into 'master'
terencehill [Fri, 19 May 2023 15:20:39 +0000 (15:20 +0000)]
Merge branch 'bones_was_here/BoxTouchesBrush' into 'master'

WarpZoneLib_BoxTouchesBrush() fixes

See merge request xonotic/xonotic-data.pk3dir!1142

23 months agohud_panel_scoreboard_ping_* cvars: fix typos in 2 cvar names, remove the redundant...
terencehill [Fri, 19 May 2023 14:46:53 +0000 (16:46 +0200)]
hud_panel_scoreboard_ping_* cvars: fix typos in 2 cvar names, remove the redundant _milliseconds suffix and improve descriptions

23 months agoConsistent description style for a couple Instagib cvars
terencehill [Fri, 19 May 2023 14:14:42 +0000 (16:14 +0200)]
Consistent description style  for a couple Instagib cvars

23 months agoImplement the gametypevote global as bool both in server and client code
terencehill [Fri, 19 May 2023 14:12:46 +0000 (16:12 +0200)]
Implement the gametypevote global as bool both in server and client code

23 months agoMerge branch 'z411/green_ping' into 'master'
LegendaryGuard [Fri, 19 May 2023 14:04:52 +0000 (14:04 +0000)]
Merge branch 'z411/green_ping' into 'master'

Make best pings green, good pings yellow, medium pings orange and worst pings red in scoreboard

See merge request xonotic/xonotic-data.pk3dir!968

23 months agoMake best pings green, good pings yellow, medium pings orange and worst pings red...
z411 [Fri, 19 May 2023 14:04:52 +0000 (14:04 +0000)]
Make best pings green, good pings yellow, medium pings orange and worst pings red in scoreboard

23 months agoFix visual glitch when traversing warpzones with sv_areagrid_link_SOLID_NOT 0
bones_was_here [Fri, 19 May 2023 13:09:26 +0000 (23:09 +1000)]
Fix visual glitch when traversing warpzones with sv_areagrid_link_SOLID_NOT 0

At a specific position the black texture with green lines was visible.

23 months agoMerge branch 'drjaska/mapvote-all-abstain' into 'master'
terencehill [Fri, 19 May 2023 12:50:30 +0000 (12:50 +0000)]
Merge branch 'drjaska/mapvote-all-abstain' into 'master'

100% abstain votes in map voting now chooses a random map

Closes #2443

See merge request xonotic/xonotic-data.pk3dir!1172

23 months agoFix #2443 "Map voting countdown continues even when all players have selected 'don...
Dr. Jaska [Fri, 19 May 2023 12:50:30 +0000 (12:50 +0000)]
Fix #2443 "Map voting countdown continues even when all players have selected 'don't care'" and the first votable option always being picked when `sv_vote_gametype_default_current` == 1 instead of a random map even though someone voted for abstain.

23 months agoUpdate dpdefs/upstream
bones_was_here [Fri, 19 May 2023 10:19:33 +0000 (20:19 +1000)]
Update dpdefs/upstream

23 months agoChange update logic from missing-file-specific to version-specific
bones_was_here [Fri, 19 May 2023 09:55:16 +0000 (19:55 +1000)]
Change update logic from missing-file-specific to version-specific

23 months agoWork around trigger_hurt not being detected by tracebox on geit3ctf1
bones_was_here [Fri, 24 Feb 2023 01:01:57 +0000 (11:01 +1000)]
Work around trigger_hurt not being detected by tracebox on geit3ctf1

23 months agoWarpZoneLib_BoxTouchesBrush: deglobalise, add TODO
bones_was_here [Thu, 23 Feb 2023 23:29:36 +0000 (09:29 +1000)]
WarpZoneLib_BoxTouchesBrush: deglobalise, add TODO

23 months agoWarpZoneLib_BoxTouchesBrush: fix whitespace
bones_was_here [Thu, 23 Feb 2023 23:08:59 +0000 (09:08 +1000)]
WarpZoneLib_BoxTouchesBrush: fix whitespace

23 months agoMerge branch 'Juhu/link_after_solid' into 'master'
bones_was_here [Mon, 15 May 2023 17:48:54 +0000 (17:48 +0000)]
Merge branch 'Juhu/link_after_solid' into 'master'

Fix some bmodels not being linked/unlinked correctly with sv_areagrid_link_SOLID_NOT 0

Closes #2832

See merge request xonotic/xonotic-data.pk3dir!1168

23 months agoFix some bmodels not being linked/unlinked correctly with sv_areagrid_link_SOLID_NOT 0
Juhu [Mon, 15 May 2023 17:48:53 +0000 (17:48 +0000)]
Fix some bmodels not being linked/unlinked correctly with sv_areagrid_link_SOLID_NOT 0

23 months agoTransifex autosync
Rudolf Polzer [Sun, 14 May 2023 05:23:11 +0000 (07:23 +0200)]
Transifex autosync

23 months agoMinor cleanups
terencehill [Sat, 13 May 2023 21:46:43 +0000 (23:46 +0200)]
Minor cleanups

23 months agoFix application crash executing cl_cmd debugmodel without model name parameter
terencehill [Sat, 13 May 2023 21:39:50 +0000 (23:39 +0200)]
Fix application crash executing cl_cmd debugmodel without model name parameter

23 months agoMerge 'add %o and %O to chat formatting for own origin' into 'master'
bones_was_here [Wed, 10 May 2023 18:25:50 +0000 (04:25 +1000)]
Merge 'add %o and %O to chat formatting for own origin' into 'master'

See merge request https://gitlab.com/xonotic/xonotic-data.pk3dir/-/merge_requests/1166

23 months agoMerge branch 'drjaska/monster-loot-offswitch' into 'master'
bones_was_here [Wed, 10 May 2023 17:21:08 +0000 (17:21 +0000)]
Merge branch 'drjaska/monster-loot-offswitch' into 'master'

Monster loot off-switch

See merge request xonotic/xonotic-data.pk3dir!1162

23 months agoMonster loot off-switch
Dr. Jaska [Wed, 10 May 2023 17:21:08 +0000 (17:21 +0000)]
Monster loot off-switch

23 months agoMerge branch 'terencehill/scores_per_round' into 'master'
bones_was_here [Wed, 10 May 2023 16:55:32 +0000 (16:55 +0000)]
Merge branch 'terencehill/scores_per_round' into 'master'

Scoreboard: allow showing average scores per round

See merge request xonotic/xonotic-data.pk3dir!975

23 months agoScoreboard: allow showing average scores per round
terencehill [Wed, 10 May 2023 16:55:31 +0000 (16:55 +0000)]
Scoreboard: allow showing average scores per round

23 months agoMerge branch 'drjaska/maplist-remove' into 'master'
bones_was_here [Wed, 10 May 2023 16:44:18 +0000 (16:44 +0000)]
Merge branch 'drjaska/maplist-remove' into 'master'

fix g_maplist_remove completely breaking due to argv override

Closes #2719

See merge request xonotic/xonotic-data.pk3dir!1156

23 months agofix g_maplist_remove completely breaking due to argv override
Dr. Jaska [Wed, 10 May 2023 16:44:18 +0000 (16:44 +0000)]
fix g_maplist_remove completely breaking due to argv override

23 months agoMerge branch 'terencehill/instagib_item_fix' into 'master'
bones_was_here [Wed, 10 May 2023 08:10:26 +0000 (08:10 +0000)]
Merge branch 'terencehill/instagib_item_fix' into 'master'

Instagib and LMS: fix a few issues with instagib items and in particular extralife

See merge request xonotic/xonotic-data.pk3dir!1164

23 months agoadd %o and %O to chat formatting for origin
drjaska [Wed, 10 May 2023 03:06:23 +0000 (06:06 +0300)]
add %o and %O to chat formatting for origin

%O is just for more decimals as an opt-in if %o isn't accurate enough.

23 months agoMerge the instagib_replace_with_* functions into a single function
terencehill [Tue, 9 May 2023 22:30:22 +0000 (00:30 +0200)]
Merge the instagib_replace_with_* functions into a single function

23 months agoLMS and Instagib: fix extralife not counted in the Itemstats panel and wrongly displa...
terencehill [Sun, 7 May 2023 13:28:22 +0000 (15:28 +0200)]
LMS and Instagib: fix extralife not counted in the Itemstats panel and wrongly displayed in the Pickup panel

23 months agoMerge branch 'bones_was_here/autopause_dedicated' into 'master'
bones_was_here [Tue, 9 May 2023 09:09:10 +0000 (09:09 +0000)]
Merge branch 'bones_was_here/autopause_dedicated' into 'master'

Autopause for dedicated servers, better autopause for singleplayer/listen

Closes #2670

See merge request xonotic/xonotic-data.pk3dir!1144

23 months agoMerge branch 'drjaska/whitelist_weaponarena' into 'master'
bones_was_here [Tue, 9 May 2023 09:04:05 +0000 (09:04 +0000)]
Merge branch 'drjaska/whitelist_weaponarena' into 'master'

whitelist g_*_weaponarena "most" and "most_available"

See merge request xonotic/xonotic-data.pk3dir!1103

23 months agowhitelist g_*_weaponarena "most" and "most_available"
Dr. Jaska [Tue, 9 May 2023 09:04:05 +0000 (09:04 +0000)]
whitelist g_*_weaponarena "most" and "most_available"

23 months agoTransifex autosync
Rudolf Polzer [Sun, 7 May 2023 05:23:12 +0000 (07:23 +0200)]
Transifex autosync

23 months agoLMS: if normal items are enabled don't convert megahealth to extralife
terencehill [Sat, 6 May 2023 21:53:34 +0000 (23:53 +0200)]
LMS: if normal items are enabled don't convert megahealth to extralife

23 months agoLMS: fix megahealths from other games not getting replaced by extralife
terencehill [Sat, 6 May 2023 15:06:20 +0000 (17:06 +0200)]
LMS: fix megahealths from other games not getting replaced by extralife

23 months agoInstagib: fix ammo from other games not getting replaced by vaporizer cells (if enabl...
terencehill [Sat, 6 May 2023 13:22:44 +0000 (15:22 +0200)]
Instagib: fix ammo from other games not getting replaced by vaporizer cells (if enabled by the g_instagib_ammo_convert_<ammotype> cvars, disabled by default)

23 months agoInstagib: fix items from other games not getting replaced by instagib powerups
terencehill [Fri, 5 May 2023 16:34:47 +0000 (18:34 +0200)]
Instagib: fix items from other games not getting replaced by instagib powerups

23 months agoAllow bots to be teleported while dead and with their body exploded (invisible) just...
terencehill [Thu, 4 May 2023 17:08:19 +0000 (19:08 +0200)]
Allow bots to be teleported while dead and with their body exploded (invisible) just like other players. This commit basically reverts b0df2001

23 months agoDamage effects can't be applied on pure entities, ignore them for a small performance...
terencehill [Thu, 4 May 2023 15:26:22 +0000 (17:26 +0200)]
Damage effects can't be applied on pure entities, ignore them for a small performance gain. In particular 2 pure entities attached to each player are now always ignored: shownames_tag and ENT_CLIENT_ENTCS

23 months agoProperly network negative radius in the damage effects code, it fixes a bug where...
terencehill [Thu, 4 May 2023 15:02:09 +0000 (17:02 +0200)]
Properly network negative radius in the damage effects code, it fixes a bug where negative force was applied to gibs and casings as a random positive value

23 months agoFix wrong bot check in a FOREACH_CLIENT loop
terencehill [Thu, 4 May 2023 13:28:24 +0000 (15:28 +0200)]
Fix wrong bot check in a FOREACH_CLIENT loop

23 months agoMerge branch 'Juhu/q3df_teleporter_flags' into 'master'
terencehill [Wed, 3 May 2023 22:41:35 +0000 (22:41 +0000)]
Merge branch 'Juhu/q3df_teleporter_flags' into 'master'

q3df teleporter flags

Closes #2574

See merge request xonotic/xonotic-data.pk3dir!1135

23 months agoq3df teleporter flags
Juhu [Wed, 3 May 2023 22:41:34 +0000 (22:41 +0000)]
q3df teleporter flags

23 months agoMerge branch 'terencehill/hud_editor_centerline' into 'master'
terencehill [Tue, 2 May 2023 17:02:48 +0000 (17:02 +0000)]
Merge branch 'terencehill/hud_editor_centerline' into 'master'

Hud editor center line

See merge request xonotic/xonotic-data.pk3dir!1157

23 months agoMerge branch 'LegendaryGuard/electricity_effect' into 'master'
terencehill [Tue, 2 May 2023 16:58:01 +0000 (16:58 +0000)]
Merge branch 'LegendaryGuard/electricity_effect' into 'master'

New electricity effect

Closes #2717

See merge request xonotic/xonotic-data.pk3dir!1062

23 months agoNew electricity effect
LegendaryGuard [Tue, 2 May 2023 16:58:00 +0000 (16:58 +0000)]
New electricity effect

23 months agoTransifex autosync
Rudolf Polzer [Sun, 30 Apr 2023 05:23:12 +0000 (07:23 +0200)]
Transifex autosync

23 months agoMerge branch 'bones_was_here/areagrid_link_SOLID_NOT' into 'master'
bones_was_here [Fri, 28 Apr 2023 19:44:14 +0000 (19:44 +0000)]
Merge branch 'bones_was_here/areagrid_link_SOLID_NOT' into 'master'

Don't link pure and SOLID_NOT entities to the area grid in DP master

Closes darkplaces#381

See merge request xonotic/xonotic-data.pk3dir!1154

23 months agoRemove colors from fireball_glow.tga to avoid applying wrong player's glow color...
terencehill [Tue, 25 Apr 2023 09:34:21 +0000 (11:34 +0200)]
Remove colors from fireball_glow.tga to avoid applying wrong player's glow color on the fireball

23 months agoMerge branch 'LegendaryGuard/fix_fireball_UVs' into 'master'
terencehill [Tue, 25 Apr 2023 08:57:13 +0000 (08:57 +0000)]
Merge branch 'LegendaryGuard/fix_fireball_UVs' into 'master'

Optimize g_fireball and fix g_fireball and v_fireball UVs and enhance sight details in the fireball textures

See merge request xonotic/xonotic-data.pk3dir!1123

23 months agoOptimize g_fireball and fix g_fireball and v_fireball UVs and enhance sight details...
LegendaryGuard [Tue, 25 Apr 2023 08:57:13 +0000 (08:57 +0000)]
Optimize g_fireball and fix g_fireball and v_fireball UVs and enhance sight details in the fireball textures

23 months agoMerge branch 'LegendaryGuard/optimize_weapon_models' into 'master'
terencehill [Mon, 24 Apr 2023 12:56:33 +0000 (12:56 +0000)]
Merge branch 'LegendaryGuard/optimize_weapon_models' into 'master'

Optimize h_ok_grenade, h_ok_hmg, h_ok_mg, h_ok_rl and h_ok_sniper models

See merge request xonotic/xonotic-data.pk3dir!1106

23 months agoOptimize h_ok_grenade, h_ok_hmg, h_ok_mg, h_ok_rl and h_ok_sniper models
LegendaryGuard [Mon, 24 Apr 2023 12:56:33 +0000 (12:56 +0000)]
Optimize h_ok_grenade, h_ok_hmg, h_ok_mg, h_ok_rl and h_ok_sniper models

2 years agoHud editor: show a "Center line" checkbox in the hud editor menu
terencehill [Wed, 12 Apr 2023 12:16:47 +0000 (14:16 +0200)]
Hud editor: show a "Center line" checkbox in the hud editor menu

2 years agoTransifex autosync
Rudolf Polzer [Sun, 16 Apr 2023 05:25:12 +0000 (07:25 +0200)]
Transifex autosync

2 years agoHud editor: allow displaying more than one vertical line at the desired position
terencehill [Mon, 10 Apr 2023 21:49:20 +0000 (23:49 +0200)]
Hud editor: allow displaying more than one vertical line at the desired position

2 years agoMerge branch 'bones_was_here/ok_blaster_keepforce' into 'master'
LegendaryGuard [Mon, 10 Apr 2023 21:05:38 +0000 (21:05 +0000)]
Merge branch 'bones_was_here/ok_blaster_keepforce' into 'master'

Add overkill blaster keepforce and keepdamage cvars

See merge request xonotic/xonotic-data.pk3dir!1158

2 years agoMerge branch 'drjaska/dos2unix' into 'master'
LegendaryGuard [Mon, 10 Apr 2023 20:59:08 +0000 (20:59 +0000)]
Merge branch 'drjaska/dos2unix' into 'master'

Delete 4 unused model files

See merge request xonotic/xonotic-data.pk3dir!1149

2 years agoDelete 4 unused model files
Dr. Jaska [Mon, 10 Apr 2023 20:59:08 +0000 (20:59 +0000)]
Delete 4 unused model files

2 years agoHud editor: while moving/resizing a panel, make clearly visible with a line whether...
terencehill [Thu, 6 Apr 2023 12:49:20 +0000 (14:49 +0200)]
Hud editor: while moving/resizing a panel, make clearly visible with a line whether the panel is perfectly horizontally centered or not

2 years agoTransifex autosync
Rudolf Polzer [Sun, 9 Apr 2023 05:23:08 +0000 (07:23 +0200)]
Transifex autosync

2 years agoFix area grid linking/unlinking of triggers and gametype ents in DP master
bones_was_here [Sat, 8 Apr 2023 19:01:08 +0000 (05:01 +1000)]
Fix area grid linking/unlinking of triggers and gametype ents in DP master

2 years agoOptimize IL_REMOVE_RAW. It fixes #2827 (a map with a huge amount of entities crashes...
terencehill [Sat, 8 Apr 2023 14:35:32 +0000 (16:35 +0200)]
Optimize IL_REMOVE_RAW. It fixes #2827 (a map with a huge amount of entities crashes on start)

2 years agoMerge branch 'drjaska/2779-flagrespawnbacktrace' into 'master'
bones_was_here [Fri, 7 Apr 2023 16:55:26 +0000 (16:55 +0000)]
Merge branch 'drjaska/2779-flagrespawnbacktrace' into 'master'

Resolve "Flag respawn called twice quickly"

Closes #2779

See merge request xonotic/xonotic-data.pk3dir!1155

2 years agoResolve "Flag respawn called twice quickly"
Dr. Jaska [Fri, 7 Apr 2023 16:55:26 +0000 (16:55 +0000)]
Resolve "Flag respawn called twice quickly"

2 years agoAdd overkill blaster keepforce and keepdamage cvars
bones_was_here [Fri, 7 Apr 2023 07:53:57 +0000 (17:53 +1000)]
Add overkill blaster keepforce and keepdamage cvars

Equivalent to the instagib blaster cvars.

2 years agoDon't link pure entities to the area grid in DP master
bones_was_here [Thu, 6 Apr 2023 17:02:46 +0000 (03:02 +1000)]
Don't link pure entities to the area grid in DP master

This is important for performance.

2 years agoMerge branch 'Juhu/strafehud-fixes' into 'master'
terencehill [Tue, 4 Apr 2023 12:24:41 +0000 (12:24 +0000)]
Merge branch 'Juhu/strafehud-fixes' into 'master'

Improved StrafeHUD

See merge request xonotic/xonotic-data.pk3dir!1066

2 years agoDecide if an item will spawn before precaching its assets
bones_was_here [Sun, 2 Apr 2023 20:09:33 +0000 (06:09 +1000)]
Decide if an item will spawn before precaching its assets

May help with #2799

2 years agoFix null ptr deref when starting map dfwc2017-6
bones_was_here [Sun, 2 Apr 2023 20:25:35 +0000 (06:25 +1000)]
Fix null ptr deref when starting map dfwc2017-6

Caused by 9b8502fe368052b4b81985084542548e6992cf72
which was needed for b95beb262077d8f733bbee7cb0d5f4c05b7b3e2f

2 years agoTransifex autosync
Rudolf Polzer [Sun, 2 Apr 2023 05:23:09 +0000 (07:23 +0200)]
Transifex autosync

2 years agoMerge branch 'bones_was_here/q3compat_gravity' into 'master'
bones_was_here [Tue, 28 Mar 2023 14:15:42 +0000 (14:15 +0000)]
Merge branch 'bones_was_here/q3compat_gravity' into 'master'

Compensate for Q3 frametime-dependent gravity in configs and jump pad code

Closes #2187

See merge request xonotic/xonotic-data.pk3dir!1138

2 years agoMerge branch 'master' into Juhu/strafehud-fixes
Juhu [Mon, 27 Mar 2023 15:55:29 +0000 (17:55 +0200)]
Merge branch 'master' into Juhu/strafehud-fixes

Fixed merge conflict caused by the new speed unit cvar

2 years agostrafehud: connect the arrow to the line when drawing the angle indicator
Juhu [Mon, 27 Mar 2023 07:29:57 +0000 (09:29 +0200)]
strafehud: connect the arrow to the line when drawing the angle indicator

2 years agostrafehud: reformat code to match Xonotic code style
Juhu [Thu, 16 Mar 2023 06:46:00 +0000 (07:46 +0100)]
strafehud: reformat code to match Xonotic code style

2 years agoMerge branch 'terencehill/il_loop_fix' into 'master'
bones_was_here [Sun, 26 Mar 2023 17:33:54 +0000 (17:33 +0000)]
Merge branch 'terencehill/il_loop_fix' into 'master'

Implement safe removal of elements of an intrusive list while looping over them

Closes #2790

See merge request xonotic/xonotic-data.pk3dir!1148

2 years agoTransifex autosync
Rudolf Polzer [Sun, 26 Mar 2023 05:23:09 +0000 (07:23 +0200)]
Transifex autosync

2 years agoUpdate hash
terencehill [Fri, 24 Mar 2023 21:12:39 +0000 (22:12 +0100)]
Update hash

2 years agoAdd back support for nested intrusive list loops
terencehill [Sun, 19 Mar 2023 23:19:39 +0000 (00:19 +0100)]
Add back support for nested intrusive list loops

2 years agoImplement a qc version of copyentity that clears intrusive list data from the copied...
terencehill [Sun, 19 Mar 2023 17:17:05 +0000 (18:17 +0100)]
Implement a qc version of copyentity that clears intrusive list data from the copied entity

2 years agoImprove autopause for singleplayer/listen and enable it by default
bones_was_here [Sun, 19 Mar 2023 16:50:34 +0000 (02:50 +1000)]
Improve autopause for singleplayer/listen and enable it by default

This will pause if all clients are in menu/console/chat.  It considers
spectators because otherwise they cannot join the match if the current
player(s) are in menu/console/chat.

Disables snd_cdautopause by default which will only take effect in
current DP.

Closes #2670

2 years agoMerge branch 'z411/speed_unit' into 'master'
terencehill [Sun, 19 Mar 2023 11:07:04 +0000 (11:07 +0000)]
Merge branch 'z411/speed_unit' into 'master'

Make the speed unit a global, consistent setting

Closes #2804

See merge request xonotic/xonotic-data.pk3dir!1130

2 years agoMake the speed unit a global, consistent setting
z411 [Sun, 19 Mar 2023 11:07:04 +0000 (11:07 +0000)]
Make the speed unit a global, consistent setting

2 years agoMerge branch 'terencehill/decals_fix' into 'master'
terencehill [Sun, 19 Mar 2023 10:59:28 +0000 (10:59 +0000)]
Merge branch 'terencehill/decals_fix' into 'master'

Fix 2 decal issues

Closes #2128

See merge request xonotic/xonotic-data.pk3dir!1127

2 years agoAdd some automated tests of intrusive lists when they change during a loop (run tests...
terencehill [Fri, 17 Mar 2023 23:30:42 +0000 (00:30 +0100)]
Add some automated tests of intrusive lists when they change during a loop (run tests with sv_cmd runtest)

2 years agoTransifex autosync
Rudolf Polzer [Sun, 19 Mar 2023 06:23:11 +0000 (07:23 +0100)]
Transifex autosync

2 years agoMake work IL_POP (pop from tail) and IL_SHIFT (pop from head) too during a loop ...
terencehill [Fri, 17 Mar 2023 22:08:19 +0000 (23:08 +0100)]
Make work IL_POP (pop from tail) and IL_SHIFT (pop from head) too during a loop (these functions are currently never used). Also make sure il_prev and il_next fields of popped elements are consistently cleared