Difference between revisions of "StandardSideFilter"
From The Battle for Wesnoth Wiki
(document [filter_side] priority over inline side=) |
|||
Line 3: | Line 3: | ||
From [[FilterWML]], this is the standard way of filtering on sides. The following attributes and sub-tags are permitted: | From [[FilterWML]], this is the standard way of filtering on sides. The following attributes and sub-tags are permitted: | ||
− | * '''side''': filter matches only if side number is contained in a comma-separated list. | + | * '''side''': filter matches only if side number is contained in a comma-separated list. Note that as opposed to the usual inline side= key in wml action tags, which defaults to 1, the side= key in a SSF defaults to all sides (similarly, the id= key in SUFs defaults to all ids) |
* '''[has_unit]''': filter matches only if side controls a unit matched by this [[StandardUnitFilter]] note: Does not check for recall list units. | * '''[has_unit]''': filter matches only if side controls a unit matched by this [[StandardUnitFilter]] note: Does not check for recall list units. | ||
Revision as of 23:56, 8 May 2011
From FilterWML, this is the standard way of filtering on sides. The following attributes and sub-tags are permitted:
- side: filter matches only if side number is contained in a comma-separated list. Note that as opposed to the usual inline side= key in wml action tags, which defaults to 1, the side= key in a SSF defaults to all sides (similarly, the id= key in SUFs defaults to all ids)
- [has_unit]: filter matches only if side controls a unit matched by this StandardUnitFilter note: Does not check for recall list units.
Also, [and], [or], and [not] subfilters are supported.
Interaction of SSF and side= in tags like [disallow_recruit] :
In case that inline side= and [filter_side] are given, inline side= is ignored and [filter_side]side= gets priority:
selects side 4 and 5:
[disallow_recruit] side=2 [filter_side] side=4,5 [/filter_side] [/disallow_recruit]