Do you want to work on this issue?
You can request for a bounty in order to promote it!
Automapping: Wildcard input index #3636
eishiya posted onGitHub
tl;dr version: Wildcard input indices, allowing certain input layers to be shared among all the input indices of a rule.
A couple of times I've seen people get confused about input indices in a reasonable way: they think that if they have an input "without" an index, it'll be part of all indices.
For example:
input1_Detail input2_Detail input_Ground
They think input_Ground will behave like two identical input1_Ground and input2_Ground layers.
Of course, the truth is that an empty index is just another index. However, it would be quite convenient if it was possible to mark certain input layers as being used for all indices, using a wildcard index. It's fairly common in my rules that address multiple layers that only inputs from one layer need to have independent indices, and inputs from other layers are the same for all indices, necessitating a bunch of duplication. A wildcard index would avoid this.
While I think the usefulness of this is clear enough, what the wildcard should look like is less clear:
*
, e.g.input*_foo
: this is widely used for wildcards already, and it's not likely anyone is using this as an actual index already. However, people may expect this to perform partial string matching, they might expectinputA*
to matchinputAbove
, for example, whenA*
would in reality just be a regular, non-wildcard index.- Empty index, e.g.
input_foo
: this would probably be intuitive to new users as the fact that an empty index is an actual separate index seems to confuse folks. But, existing Automapping rules may include combinations of the empty index and named indices and expect them to all be separate indices. I know I have some rules like that. - some reserved keyword, such as
ALL
, e.g.inputALL_foo
: this would avoid the drawbacks of the above approaches and isn't likely anyone's using something like "ALL" as an index already, but it's longer and not language-neutral - but neither is "input", of course.
I'd love to hear people's preferences on different ways to do the wildcard.