Page 1 of 2
Damage HUD Indicators v1.0 (09/01/2023)
Posted: Fri Sep 01, 2023 6:24 pm
by Major Cooke
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Sun Sep 03, 2023 8:05 am
by FGsouL
Oh finally someone made it! Thanks buddy! Doesnt work with LZDoom but I will test it with GZDoom when I got my new pc
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Tue Sep 05, 2023 10:30 am
by Major Cooke
I developed it solely for GZDoom. Sorry. But I hope it works well for you when you do.
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Fri Sep 15, 2023 7:12 pm
by UTNerd24
Honestly a great substitute for DmgDirOverlay since I started running into problems with it only recently. My only suggestion would be to make an option to control how long the indicators stay on screen. Otherwise, Simple and effective!
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Fri Sep 15, 2023 10:19 pm
by RevanGarcia
Ooh! Yes, yes! This is exactly what I was looking for. Nice.
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Sat Sep 16, 2023 8:54 am
by Major Cooke
UTNerd24 wrote: Fri Sep 15, 2023 7:12 pm
Honestly a great substitute for DmgDirOverlay since I started running into problems with it only recently. My only suggestion would be to make an option to control how long the indicators stay on screen. Otherwise, Simple and effective!
I plan on something akin to that. Thanks! I didn't know another mod was already out there but oh well.
RevanGarcia wrote: Fri Sep 15, 2023 10:19 pm
Ooh! Yes, yes! This is exactly what I was looking for. Nice.
Glad to hear it!
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Thu Apr 17, 2025 10:25 am
by Alexey_Piven
This is very convenient, thank you! But could you add an option to move the indicator icon closer to the crosshair? In my opinion, it is too far away.
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Fri Apr 18, 2025 6:31 pm
by Major Cooke
Will look into it.
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Sat Apr 19, 2025 6:40 am
by Enjay
Alexey_Piven wrote: Thu Apr 17, 2025 10:25 am
In my opinion, it is too far away.
It depends on the size and/or scale of of the crosshair you are using:

Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Sat Apr 19, 2025 6:10 pm
by Major Cooke
I can still make it more independently tweakable though, for sure.
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Sat Apr 19, 2025 6:52 pm
by Enjay
I'm sure that would be appreciated and, or course, my examples were deliberately extreme.
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Wed Sep 17, 2025 4:46 am
by Enjay
Sorry for the bumpage. I noticed that the damage indicator doesn't scale with changes to screen resolution. I know that there is a scale configuration in the menu but is there any way that the indicator could auto-scale if a user changes screen resolution so that, proportionally, it takes up the same amount of screen space at different resolutions, rather than the player having to reconfigure the indicator scale when they change resolution?
Oh, and while I'm on, something that might be an improvement, just a thought:
If an enemy damages you, and you kill it, the indicator generated by the damage still takes a while to fade.
So, in a firefight with several low hit point enemies like the Doom Zombies (where they can be put down by one shotgun shot) you can end up spinning around to move on to the next attacker, but the indicator from the now-dead attacker is also still on screen. So, in a situation with lots of low-hit point enemies attacking from multiple angles, your screen can get flooded with damage indicators and it can be difficult to distinguish the ones from living attackers versus the now-redundant ones that have yet to fade from dead attackers. So, (optioned for those who don't want it) I think it would be useful if damage indicators disappeared immediately (or very quickly) when the damage-causing enemy gets killed. I've no idea how possible that would be but, if it is something that could be done, and you do still fancy working on this mod, that could be something to consider.
An additional thing (and I think this one is probably easy enough) an options slider to allow the player to tailor how long the indicators stay on screen for would be good. In fact, that might even be all that is needed to work around the problem that I mentioned above. If I could set the indicators to only be on screen for 1 seconds instead of 3, it would probably negate the issue that I was describing. I tried changing the code to do that (I think I got the right place ( if (time < 1) time = (35 * 3); ). I changed the 3 to a 1 and it felt far more usable to me (although, slightly longer might have been better).
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Wed Sep 17, 2025 6:15 pm
by Major Cooke
Enjay wrote: Wed Sep 17, 2025 4:46 am
Sorry for the bumpage. I noticed that the damage indicator doesn't scale with changes to screen resolution. I know that there is a scale configuration in the menu but is there any way that the indicator could auto-scale if a user changes screen resolution so that, proportionally, it takes up the same amount of screen space at different resolutions, rather than the player having to reconfigure the indicator scale when they change resolution?
I never did learn how to properly maintain aspect ratios, unfortunately.
But there's still hope. I have recently learned how to hijack and run multiple status bars without interfering with other status bars at the same time, allowing me to replicate the event handler system (having multiple run at the same time). If all goes well and it's how I think it'll be, it should be pretty simple to adjust since status bars already take ratios into account - especially since status bars can now support rotations.
Enjay wrote: Wed Sep 17, 2025 4:46 am
Oh, and while I'm on, something that might be an improvement, just a thought:
If an enemy damages you, and you kill it, the indicator generated by the damage still takes a while to fade.
So, in a firefight with several low hit point enemies like the Doom Zombies (where they can be put down by one shotgun shot) you can end up spinning around to move on to the next attacker, but the indicator from the now-dead attacker is also still on screen. So, in a situation with lots of low-hit point enemies attacking from multiple angles, your screen can get flooded with damage indicators and it can be difficult to distinguish the ones from living attackers versus the now-redundant ones that have yet to fade from dead attackers. So, (optioned for those who don't want it) I think it would be useful if damage indicators disappeared immediately (or very quickly) when the damage-causing enemy gets killed. I've no idea how possible that would be but, if it is something that could be done, and you do still fancy working on this mod, that could be something to consider.
I'll add a few options to tweak this, including turning it grey, halving the overall opacity or just removing it entirely for projectiles that have a dead owner.
Enjay wrote: Wed Sep 17, 2025 4:46 am
An additional thing (and I think this one is probably easy enough) an options slider to allow the player to tailor how long the indicators stay on screen for would be good. In fact, that might even be all that is needed to work around the problem that I mentioned above. If I could set the indicators to only be on screen for 1 seconds instead of 3, it would probably negate the issue that I was describing. I tried changing the code to do that (I think I got the right place (
if (time < 1) time = (35 * 3); ). I changed the 3 to a 1 and it felt far more usable to me (although, slightly longer might have been better).
Sure, I'll add in both for how long to stay at full opacity, and how long to fade out.
Might be some time before I work on it since I've been taking a break from modding to recharge my creative batteries. Thanks for the feedback!
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Thu Sep 18, 2025 2:16 am
by Enjay
That's fantastic. Thanks for listening and your ideas sound great. I really like the greying out idea. All the potential customisation options sound good and useful to me.
No rush at all. First priority should always be yourself. I look forward to the next version as and when you feel ready to work on it. Thanks again.
Re: Damage HUD Indicators v1.0 (09/01/2023)
Posted: Tue Oct 14, 2025 5:59 pm
by Major Cooke
I'm back in the saddle and working on it. Expect an update soon.