Thing Element (Data)

From HLKitWiki
Revision as of 01:49, 12 May 2009 by Rob (Talk | contribs) (The "thing" Element)

Jump to: navigation, search

Context: HL KitKit Reference … Data File Reference 

The "thing" Element

The vast majority of objects that will comprise your data files are "things", which will be added to actors and customized via scripts. By definition, all behaviors for things are inherited by any derived picks, unless specified otherwise. Each thing is specified through the use of a "thing" element. The complete list of attributes for this element is below.

id Id – Specifies the unique id of the thing. This id is used in all references to the thing.
compset Id – Specifies the unique id of the component set from which this thing is derived.
name Text – Public name associated with the thing. Maximum length of 100 characters.
description (Optional) Text – Detailed description text associated with the thing, for display to the user. Default: Empty.
summary (Optional) Text – Brief summary description for the thing, for display to the user in space-constrained situations. If empty, the full description is always used as the summary. Default: Empty.
isunique (Optional) Boolean – Indicates whether this thing is treated as unique within each container. If unique, a single pick is only ever added, while non-unique things can be separately added any number of times. Default: "no".
holdable (Optional) Boolean – Indicates whether this thing can be held within other other things, such as backpacks hold various pieces of gear. Default: "yes".
maxlimit (Optional) Integer – Specifies the maximum number of instances of this thing that can be added to a given container. If zero, there is no limit imposed. Default: "0".
panellink (Optional) Id – Specifies the unique id of a panel that is officially associated with this thing. Scripts can generically determine the panel linked to a thing to mark it invalid if picks within the panel are invalid. If empty, the default panel linkage defined by components is assumed. Default: Empty.
stacking (Optional) Set – Designates the default stacking behavior to be assumed whenever this thing is purchased by the user. Must be one of these values:
  • solo – Item is created individually, so buying 5 of the thing will add 5 separate instances of the thing to the container.
  • new – Item is purchased as a new group, so buying 5 of the thing will add one new instance of the thing that has a quantity of 5.
  • merge – Item is merged to any existing instance of the thing within the container, adding the quantity purchased to the existing quantity. If item does not currently exist, "new" behavior is used.
  • never – Item can never support stacking.
  • Default: "solo".
lotsize (Optional) Integer – Specifies the number of items typically purchased as a single unit when buying this thing. For example, bullets might be purchased by the box, with a box having 25 bullets in it. Default: "1".
replaces (Optional) Id – Specifies the unique id of another thing which is completely replaced by this thing. All references to the replaced thing are automatically mapped to this thing, such as bootstrapping. This allows you to wholesale replace a built-in item with new behaviors of your own choosing. If empty, no replacement behavior is utilized. Default: Empty.
buytemplate (Optional) Id – Specifies the unique id of a template that is used for purchasing the thing. This attribute is only applicable to things which have a child entity and whose purchase cost is variable based on the user-specified composition of the child entity. The specified template is used similarly to the buy template that appears within tables and choosers. However, the template is centered at the bottom of the form used for editing the child gizmo. This mechanism is needed when you have something like a user-customizable magic item within the d20 System, where the cost is based on the options selected by the user. If empty, no template is associated with the thing. Default: Empty.
xactspecial (Optional) Integer – When a buy template is shared between two or more portals or things, the template behavior may need to be tailored based on the usage. If this need arises, this attribute specifies a unique value that identifies this particular usage. By assigning a different value to each usage and keying on it within the template's Position script, you can tailor the template appropriately. Default: "0".
isprivate (Optional) Boolean – Indicates whether this thing should be kept private from users within the integrated Editor. When a user creates a new thing as a copy of another thing, all existing things derived from the compset are presented for use as the copy source. By making this thing private, it will not appear for selection. Default: "no".

The "thing" element also possesses child elements that define various facets of the thing. The list of these child elements is below and must appear in the order shown. Click on the link to access the details for each element.

fieldval Zero or more "fieldval" elements may appear as defined by the given link. This element specifies the starting value for individual fields within the thing.
arrayval Zero or more "arrayval" elements may appear as defined by the given link. This element specifies the starting value for individual array and matrix elements within the thing.
usesource Zero or more "usesource" elements may appear as defined by the given link. This element specifies the sources relied upon for this thing to be accessible to the user.
tag Zero or more "tag" elements may appear as defined by the given link. This element specifies any tags that are automatically assigned to the thing.
bootstrap Zero or more "bootstrap" elements may appear as defined by the given link. This element specifies any things that are automatically bootstrapped when this thing is added to a container.
containerreq Zero or more "containerreq" elements may appear as defined by the given link. This element specifies any container requirements for the thing.
holdlimit An optional "holdlimit" element may appear as defined by the given link. This element defines a HoldLimit Tag Expression that restricts the valid set of gear that can be held by the thing.
gear An optional "gear" element may appear as defined by the given link. This element defines a Gear Script for the thing to calculate its weight.
link Zero or more "link" elements may appear as defined by the given link. This element specifies the specific pick linkages that exist for this thing.
eval Zero or more "eval" elements may appear as defined by the given link. This element specifies any Eval Scripts that must be performed for the thing.
evalrule Zero or more "evalrule" elements may appear as defined by the given link. This element specifies any EvalRule Scripts that must be performed for the thing.
pickreq Zero or more "pickreq" elements may appear as defined by the given link. This element specifies any dependencies upon other picks within the container.
exprreq Zero or more "exprreq" elements may appear as defined by the given link. This element specifies any expression-based dependencies upon the state of the container.
prereq Zero or more "prereq" elements may appear as defined by the given link. This element specifies any pre-requisite tests that are applied to the thing.
child An optional "child" element may appear as defined by the given link. This element defines the particulars of a child entity that is attached by the thing.
minion An optional "minion" element may appear as defined by the given link. This element defines the particulars of a minion that is attached by the thing.

The "fieldval" Element

The "fieldval" element defines the starting values to use for various fields within the thing. To initialize elements within arrays and matrices, please see the "arrayval" element (below). The complete list of attributes for this element is below.

field Id – Unique id of the field for which to specify a starting value.
value Text – Starting value to assign to the field. If the field is text-based, the value is simply assigned, although it may be truncated if it exceeds the defined maximum length for the field. If the field is value-based, the text is converted to a floating point value and assigned.

The "arrayval" Element

The "arrayval" element defines the starting values to use for individual elements within array and matrix fields of the thing. To initialize elements within fields that are not an array or matrix, please see the "fieldval" attribute (above). The complete list of attributes for this element is below.

field Id – Unique id of the field for which to specify a starting value. If the field is not an array or matrix, an error is reported.
index Integer – Specifies the row index of the element to be initialized. The first element of arrays and matrices is index zero.
column (Optional) Integer – Specifies the column of the element to be initialized within a matrix. The first element of matrices is index zero. This attribute is required for matrix elements and may be omitted for array elements. Default: Empty.
value Text – Starting value to assign to the field element. If the field is text-based, the value is simply assigned, although it may be truncated if it exceeds the defined maximum length for the field. If the field is value-based, the text is converted to a floating point value and assigned.

The "usesource" Element

The "usesource" element specifies a source that this thing is dependent upon. If the designated source is not enabled by the user, this thing will be treated as not existing for the character. You may define a new source on-the-fly via this element by providing a new unique id and the appropriate additional information. However, you should typically avoid doing so, since you cannot control important facets of sources with just-in-time definition. The complete list of attributes for this element is below.

source Id – Specifies the unique id of the source with which to establish a dependence.
name (Optional) Text – Name to be displayed to the user for this source. Maximum length is 50 characters. If the source already exists, this attribute can be left empty. Default: Empty.
parent (Optional) Id – Specifies the unique id of a different source that is treated as the parent of this source. All sources are displayed in a hierarchy within the "Configure Hero" form. If the source already exists, this attribute can be left empty and the behaviors of the existing source are utilized. If empty and the source does not yet exist, the new source is presented to the user as a top-level selection. Default: Empty.

The "gear" Element

The "gear" element defines a Gear Script for the thing, which is used to calculate the weight of held items and perform additional gear processing on the thing. The complete list of attributes for this element is below.

PCDATA Script – Specifies the code comprising the Gear script.

The "link" Element

The "link" element defines a linkage to another thing based on the set of possible linkages defined for the underlying components. The complete list of attributes for this element is below.

linkage Id – Unique id of the linkage that is being setup for this thing.
thing Id – Unique id of the thing to which the linkage should be established.

The "pickreq" Element

The "pickreq" element defines a dependency on a specific thing whose existence is important within the container. The complete list of attributes for this element is below.

thing Id – Unique id of the thing upon which the dependency is being established.
iserror (Optional) Boolean – Indicates whether failure of the requirement should be treated as an error or merely a warning. Default: "yes".
ispreclude (Optional) Boolean – Indicates whether the specified thing must exist or must not exist within the container in order for the requirement to be satisfied. Preclusion implies that the thing is not allowed to exist. Default: "no".
onlyonce (Optional) Boolean – Indicates whether the pre-requisite should only be reported to the user a single time if it fails, regardless of the number of times the thing is added to the container. Default: "no".
issilent (Optional) Boolean – Indicates whether the pre-requisite should report an error message to the user if failed. Default: "no".

The "exprreq" Element

The "exprreq" element defines a dependency on an arithmetic expression that must be satisfied by the container. The complete list of attributes for this element is below.

message Text – Specifies the message to be reported if the requirement is not satisfied.
iserror (Optional) Boolean – Indicates whether failure of the requirement should be treated as an error or merely a warning. Default: "yes".
onlyonce (Optional) Boolean – Indicates whether the pre-requisite should only be reported to the user a single time if it fails, regardless of the number of times the thing is added to the container. Default: "no".
issilent (Optional) Boolean – Indicates whether the pre-requisite should report an error message to the user if failed. Default: "no".
PCDATA Text – Specifies an arithmetic expression that is applied to the container to determine whether the requirement is satisfied. The expression must be a valid chunk of script code that can be placed between the parentheses in a standard "if/then" statement (e.g. "if (expr) then").

The "child" Element

The "child" element specifies an entity that is always added as a child gizmo of the thing. The complete list of attributes for this element is below.

entity Id – Specifies the unique id of the entity to be attached as a child gizmo.

The "child" element also possesses child elements that tailor the entity. The list of these child elements is below and must appear in the order shown. Click on the link to access the details for each element.

tag Zero or more "tag" elements may appear as defined by the given link. This element specifies any tags that are automatically assigned to the gizmo when it is created.
bootstrap Zero or more "bootstrap" elements may appear as defined by the given link. This element specifies any things that are automatically bootstrapped into the gizmo when it is created.

The "minion" Element

The "minion" element specifies that the thing always attaches a minion. The complete list of attributes for this element is below.

id Id – Specifies the unique id to be used for the minion attached via this thing.
ownmode (Optional) Boolean – Indicates whether the minion has an independent creation/advancement mode from its master. In some cases, you will want the minion to possess the same behavior as the master and transition with the master. However, if the minion is constructed as an independent character, you may want to handle advancement separately. Default: "yes".
isinherit (Optional) Boolean – Indicates whether the minion inherits the set of enabled sources from its master. If inheritance is active, the source selections for the master are locked in for the minion, with any changes to the master being immediately reflected within the minion. Default: "no".

The "minion" element also possesses child elements that tailor the minion. The list of these child elements is below and must appear in the order shown. Click on the link to access the details for each element.

tag Zero or more "tag" elements may appear as defined by the given link. This element specifies any tags that are automatically assigned to the minion when it is created.
bootstrap Zero or more "bootstrap" elements may appear as defined by the given link. This element specifies any things that are automatically bootstrapped into the minion when it is created.

Example

The following example demonstrates what a "thing" element might look like. All default values are assumed for optional attributes.

<thing id="MyThing" name="Sample" compset="Race" isunique="yes"
  description="Description goes here">
  <fieldval field="FieldId" value="42"/>
  <tag group="Helper" tag="MyTag"/>
  <bootstrap thing="MyAbility"/>
  <eval phase="Setup" priority="5000">
    ~script code goes here
    </eval>
  </thing>