Update class docs
This commit is contained in:
parent
fb9cb06ccb
commit
eb97cd2d5c
|
@ -0,0 +1,22 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<class name="BTCheckAgentProperty" inherits="BTCondition" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
|
||||||
|
<brief_description>
|
||||||
|
BT condition that checks agent's property value.
|
||||||
|
</brief_description>
|
||||||
|
<description>
|
||||||
|
BTCheckAgentProperty checks agent's property value against [member value] and returns [code]SUCCESS[/code] or [code]FAILURE[/code] based on the [member check_type].
|
||||||
|
</description>
|
||||||
|
<tutorials>
|
||||||
|
</tutorials>
|
||||||
|
<members>
|
||||||
|
<member name="check_type" type="int" setter="set_check_type" getter="get_check_type" enum="LimboUtility.CheckType" default="0">
|
||||||
|
Type of check to perform.
|
||||||
|
</member>
|
||||||
|
<member name="property_name" type="StringName" setter="set_property_name" getter="get_property_name" default="&""">
|
||||||
|
Parameter that specifies the agent's property name which will be compared.
|
||||||
|
</member>
|
||||||
|
<member name="value" type="BBVariant" setter="set_value" getter="get_value">
|
||||||
|
Parameter that specifies the value to which an agent's property will be compared.
|
||||||
|
</member>
|
||||||
|
</members>
|
||||||
|
</class>
|
|
@ -1,14 +1,15 @@
|
||||||
<?xml version="1.0" encoding="UTF-8" ?>
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
<class name="BTCheckVar" inherits="BTCondition" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
|
<class name="BTCheckVar" inherits="BTCondition" version="4.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../doc/class.xsd">
|
||||||
<brief_description>
|
<brief_description>
|
||||||
BT condition that checks [member variable] against [member value] and returns [code]SUCCESS[/code] or [code]FAILURE[/code] based on the [member check_type].
|
BT condition that checks a variable on the blackboard.
|
||||||
</brief_description>
|
</brief_description>
|
||||||
<description>
|
<description>
|
||||||
|
BTCheckVar checks [member variable] against [member value] and returns [code]SUCCESS[/code] or [code]FAILURE[/code] based on the [member check_type].
|
||||||
</description>
|
</description>
|
||||||
<tutorials>
|
<tutorials>
|
||||||
</tutorials>
|
</tutorials>
|
||||||
<members>
|
<members>
|
||||||
<member name="check_type" type="int" setter="set_check_type" getter="get_check_type" enum="BTCheckVar.CheckType" default="0">
|
<member name="check_type" type="int" setter="set_check_type" getter="get_check_type" enum="LimboUtility.CheckType" default="0">
|
||||||
Type of check to perform.
|
Type of check to perform.
|
||||||
</member>
|
</member>
|
||||||
<member name="value" type="BBVariant" setter="set_value" getter="get_value">
|
<member name="value" type="BBVariant" setter="set_value" getter="get_value">
|
||||||
|
@ -18,18 +19,4 @@
|
||||||
Variable name to check its value.
|
Variable name to check its value.
|
||||||
</member>
|
</member>
|
||||||
</members>
|
</members>
|
||||||
<constants>
|
|
||||||
<constant name="CHECK_EQUAL" value="0" enum="CheckType">
|
|
||||||
</constant>
|
|
||||||
<constant name="CHECK_LESS_THAN" value="1" enum="CheckType">
|
|
||||||
</constant>
|
|
||||||
<constant name="CHECK_LESS_THAN_OR_EQUAL" value="2" enum="CheckType">
|
|
||||||
</constant>
|
|
||||||
<constant name="CHECK_GREATER_THAN" value="3" enum="CheckType">
|
|
||||||
</constant>
|
|
||||||
<constant name="CHECK_GREATER_THAN_OR_EQUAL" value="4" enum="CheckType">
|
|
||||||
</constant>
|
|
||||||
<constant name="CHECK_NOT_EQUAL" value="5" enum="CheckType">
|
|
||||||
</constant>
|
|
||||||
</constants>
|
|
||||||
</class>
|
</class>
|
||||||
|
|
|
@ -30,4 +30,18 @@
|
||||||
</description>
|
</description>
|
||||||
</method>
|
</method>
|
||||||
</methods>
|
</methods>
|
||||||
|
<constants>
|
||||||
|
<constant name="CHECK_EQUAL" value="0" enum="CheckType">
|
||||||
|
</constant>
|
||||||
|
<constant name="CHECK_LESS_THAN" value="1" enum="CheckType">
|
||||||
|
</constant>
|
||||||
|
<constant name="CHECK_LESS_THAN_OR_EQUAL" value="2" enum="CheckType">
|
||||||
|
</constant>
|
||||||
|
<constant name="CHECK_GREATER_THAN" value="3" enum="CheckType">
|
||||||
|
</constant>
|
||||||
|
<constant name="CHECK_GREATER_THAN_OR_EQUAL" value="4" enum="CheckType">
|
||||||
|
</constant>
|
||||||
|
<constant name="CHECK_NOT_EQUAL" value="5" enum="CheckType">
|
||||||
|
</constant>
|
||||||
|
</constants>
|
||||||
</class>
|
</class>
|
||||||
|
|
Loading…
Reference in New Issue