MantisBT - Zandronum |
View Issue Details |
|
ID | Project | Category | View Status | Date Submitted | Last Update |
0003152 | Zandronum | [All Projects] Suggestion | public | 2017-06-07 05:31 | 2024-02-29 22:48 |
|
Reporter | Michaelis | |
Assigned To | Torr Samaho | |
Priority | normal | Severity | feature | Reproducibility | always |
Status | resolved | Resolution | fixed | |
Platform | | OS | | OS Version | |
Product Version | 3.0-beta | |
Target Version | | Fixed in Version | | |
|
Summary | 0003152: Backport RGF_NOSIGHT for A_RadiusGive |
Description | I want to give every monster on the map an inventory item.
With RGF_NOSIGHT, I just call A_RadiusGive from the center of map with huge radius, and know for sure that all monsters any relevant were covered.
Without RGF_NOSIGHT, I spawn thousands of actors in a grid in every 128x128 square that A_RadiusGive the item. Naturally, this is extremely slow, and still from 0 to 25% of monsters don't get covered. |
Steps To Reproduce | 1. Run rgf_nosight.wad, map01
2. On map01, there's a replaced blue torch.
3. Wait for 2 seconds until it becomes green.
4. Imp should die. |
Additional Information | |
Tags | No tags attached. |
Relationships | |
Attached Files | rgf_nosight.wad (3,344) 2017-06-07 05:31 https://zandronum.com/tracker/file_download.php?file_id=2115&type=bug
rgftest.pk3 (2,487) 2020-05-11 12:05 https://zandronum.com/tracker/file_download.php?file_id=2597&type=bug |
|
Issue History |
Date Modified | Username | Field | Change |
2017-06-07 05:31 | Michaelis | New Issue | |
2017-06-07 05:31 | Michaelis | File Added: rgf_nosight.wad | |
2017-07-15 20:17 | Konda | Note Added: 0018043 | |
2017-07-16 14:04 | Ivan | Note Added: 0018049 | |
2017-07-16 22:13 | Konda | Note Added: 0018052 | |
2017-10-04 13:13 | Michaelis | Note Added: 0018431 | |
2017-11-20 08:41 | Polygon | Note Added: 0018899 | |
2018-10-08 10:21 | Michaelis | Note Added: 0020008 | |
2020-04-27 17:36 | Torr Samaho | Note Added: 0021284 | |
2020-04-29 06:33 | Torr Samaho | Assigned To | => Torr Samaho |
2020-04-29 06:33 | Torr Samaho | Status | new => needs testing |
2020-05-11 12:05 | Michaelis | File Added: rgftest.pk3 | |
2020-05-11 12:05 | Michaelis | Note Added: 0021335 | |
2024-02-29 22:48 | Ru5tK1ng | Note Added: 0023137 | |
2024-02-29 22:48 | Ru5tK1ng | Status | needs testing => resolved |
2024-02-29 22:48 | Ru5tK1ng | Resolution | open => fixed |
Notes |
|
(0018043)
|
Konda
|
2017-07-15 20:17
|
|
It would be nice if this was backported before 4.0. It's an essential tool for any kind of mod that wants to access all actors on the map and do something with them, like executing an ACS script that affects all weapons or monsters on the map. |
|
|
(0018049)
|
Ivan
|
2017-07-16 14:04
|
|
For a workaround, give all monsters a TID within a previously known range and iterate through them. That's going to be way faster than using A_RadiusGive because there won't be distance checks involved. |
|
|
(0018052)
|
Konda
|
2017-07-16 22:13
|
|
Ivan's solution relies on replacing all actors that would be otherwise affected by A_RadiusGive. The advantage of A_RadiusGive is that it gives you access to any actor, which enables support for actors introduced by another mod, and you have no control over other mods' actor definitions unless you create a patch mod that specifically targets mods on which to enable support. |
|
|
|
Konda has outlined precisely the use for it.
Currently there's no way to change behavior of monsters that you don't provide yourself -- be it vanilla monsters or those present in a different mod loaded with yours.
If RGF_NOSIGHT was a thing, it would be possible to at least give them all a CustomInventory-based item that could do something in Pickup state, for example, launch an ACS script, that could do something else.
As an application example, I would use it to make a general damnums-like mod, making all monsters show damage dealt using floating numbers -- in a way compatible with vanilla, and any mods. |
|
|
|
I 100% STRONGLY Support backporting this in. Damage numbers is one thing but being able to do this can open up a whole world of new possibilities making modding even more dynamic! |
|
|
|
|
|
|
|
|
|
"Rgftest.pk3" can be used to test implementation of A_RadiusGive flags against GZDoom.
With 3.1 beta build 200501-1847, it works and correctly counts players, monsters and barrels.
Projectiles, pickups and corpses are not counted because these flags are not yet backported. |
|
|
|
|