Automap line color for non locked doors

Remember, just because you request it, that doesn't mean you'll get it.

Moderator: GZDoom Developers

Guest

Automap line color for non locked doors

Post by Guest »

Currently there is a way to color all lines that have a Special that are not doors or all lines that have a Special including doors, but it would be nice to also have an option to color ONLY doors. Currently there's no way to differentiate doors, or am I missing something obvious?
User avatar
Misery
Posts: 157
Joined: Sun Nov 04, 2018 4:57 pm

Re: Automap line color for non locked doors

Post by Misery »

Graf Zahl wrote:A door is just a sector and if there's no thinker attached to it there's nothing to distinguish it from other sectors. You'll have to implement such state yourself in an ACS script and check that.
His quote was referrin' to somethin' else, of course, but it applies here, too. The game cannot differentiate a door from a room, or any other sector. But on the automap, a door is jus' a one sided line, so unless it is locked with a key, or has a teleporter, it looks like any other one sided line.
User avatar
Mikk-
Posts: 2274
Joined: Tue Jun 30, 2009 1:31 pm

Re: Automap line color for non locked doors

Post by Mikk- »

Misery wrote:
Graf Zahl wrote:A door is just a sector and if there's no thinker attached to it there's nothing to distinguish it from other sectors. You'll have to implement such state yourself in an ACS script and check that.
His quote was referrin' to somethin' else, of course, but it applies here, too. The game cannot differentiate a door from a room, or any other sector. But on the automap, a door is jus' a one sided line, so unless it is locked with a key, or has a teleporter, it looks like any other one sided line.
A quote incorrectly taken out of context doesn't really help here, surely? The map can differentiate between line specials because the functionality is already there. The automap can show lines with specials attached with the am_showtriggerlines cvar. The OP is asking if the opposite of value#1 is currently possible.

This isn't the first time I've seen you post something that isn't actually helpful or insightful, just an attempt to have some input on a thread without even a second thought.
User avatar
InsanityBringer
Posts: 3392
Joined: Thu Jul 05, 2007 4:53 pm
Location: opening the forbidden box

Re: Automap line color for non locked doors

Post by InsanityBringer »

this is just being pedantic. Anyone can easily realize when someone's asking about "can the automap color code non-locked doors", they are talking about color coding their activation lines. What do you think the game does for locked doors? (ed: context lost here)
Of course, there is some trouble here, since the lines that open the door may be a script (maybe in addition to opening the door, they do some cool light effect too). A UDMF flag possibly could be added to make a line be shaded as a door if it's not using Door_Raise or Door_Open directly. And should a switch that uses those specials but with a tag be shaded like a normal line would?
User avatar
RockstarRaccoon
Posts: 598
Joined: Sun Jul 31, 2016 2:43 pm

Re: Automap line color for non locked doors

Post by RockstarRaccoon »

What about that thing I coded in a while back that lets you specify how a linedef should look on the Automap?

Edit: "ForceAMap" I don't think it's in the documentation (I should go check that) but here's where it was added...
viewtopic.php?f=18&t=52503
User avatar
Apeirogon
Posts: 1606
Joined: Mon Jun 12, 2017 12:57 am

Re: Automap line color for non locked doors

Post by Apeirogon »

There are option "Show trigger lines" in Option->Automap options, which can be set to "Off", "On" and "All except doors". It should be easy to add new option "Only doors", since it already able to filter them away.

Unless this feature request a way to paint whole door sector in some colour.
Guest

Re: Automap line color for non locked doors

Post by Guest »

My request is exactly what Apeirogon mentioned, but I can understand how that got confusing.

Return to “Feature Suggestions [GZDoom]”