Changeset 328
- Timestamp:
- 02/06/15 01:23:07 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
java/FramclipsePlugin/src/main/resources/framscript.xml
r327 r328 27 27 <type name="style" context="style file"> 28 28 <description><![CDATA[General visual style properties.]]></description> 29 <element name="style" type="string" />29 <element name="style" type="string" default="standard"/> 30 30 <element name="name" type="string" flags="19"/> 31 31 <element name="info" type="string" flags="19"/> … … 112 112 function onDied(cr) {Simulator.print("Creature "+cr.name+" has died");} 113 113 See also: Population.]]></description> 114 <element name="name" type="string" />114 <element name="name" type="string" max="30"/> 115 115 <element name="genotype" type="string" flags="1"/> 116 116 <element name="info" type="string"> … … 394 394 <description><![CDATA[A data object consisting of the same fields as the serialized Creature. Typically used for reading a Creature back from a file, then Population.add(snapshot_object) creates the Creature object from the snapshot.]]></description> 395 395 <element name="new" function="true" type="Creature"><arguments/></element> 396 <element name="name" type="string" />396 <element name="name" type="string" max="30"/> 397 397 <element name="genotype" type="string"/> 398 398 <element name="info" type="string"> … … 1311 1311 <description><![CDATA[Modifiers: LlRrCcQqFfMmIiWwEeAaSsDdGgBbHh]]></description> 1312 1312 </element> 1313 <element name="f1_mut_exmod" type="string" >1313 <element name="f1_mut_exmod" type="string" max="30"> 1314 1314 <description><![CDATA[Modifiers that will not be added nor deleted during mutation 1315 1315 (all: LlRrCcQqFfMmIiWwEeAaSsDdGgBbHh)]]></description> … … 1449 1449 <description><![CDATA[All information about a single genotype. 1450 1450 This is a genetics-only object which does not contain any performance data. See also: Genotype class]]></description> 1451 <element name="name" type="string" flags="256"/>1451 <element name="name" type="string" max="40" flags="256"/> 1452 1452 <element name="rawgenotype" type="string" flags="257"> 1453 1453 <description><![CDATA[Genotype, excluding the format specifier]]></description> … … 1494 1494 <description><![CDATA[A Genotype with the associated performance information. Adding genotypes to GenePool makes them accessible in Framsticks GUI and enables the use of GenePool selection methods. 1495 1495 Before version 4.0rc4 the static Genotype object was used in functions operating on the "selected" genotype. This is now deprecated as all operations can be performed using the more convenient direct access (see GenePools).]]></description> 1496 <element name="name" type="string" />1496 <element name="name" type="string" max="40"/> 1497 1497 <element name="genotype" type="string"/> 1498 1498 <element name="info" type="string"> … … 1699 1699 <element name="stam" type="float" min="0" max="1" default="0.25"/> 1700 1700 <element name="i" type="string"/> 1701 <element name="Vstyle" type="string" />1701 <element name="Vstyle" type="string" max="-1" default="joint"/> 1702 1702 <element name="vr" type="float" min="0" max="1" default="0.5"/> 1703 1703 <element name="vg" type="float" min="0" max="1" default="0.5" flags="1024"/> … … 2227 2227 <element name="d" type="string"/> 2228 2228 <element name="i" type="string"/> 2229 <element name="Vstyle" type="string" />2229 <element name="Vstyle" type="string" max="-1" default="neuro"/> 2230 2230 <element name="getInputCount" type="integer" flags="3"/> 2231 2231 <element name="getInputNeuroDef" function="true" type="NeuroDef" flags="3"> … … 2727 2727 <element name="rz" type="float" flags="1024"/> 2728 2728 <element name="i" type="string"/> 2729 <element name="Vstyle" type="string" />2729 <element name="Vstyle" type="string" max="-1" default="part"/> 2730 2730 <element name="vs" type="float" min="0.05" max="0.7" default="0.2"/> 2731 2731 <element name="vr" type="float" min="0" max="1" default="0.5"/> … … 3244 3244 <arguments/></element> 3245 3245 <element name="loadexpdef" function="true" type="void"><arguments/></element> 3246 <element name="usercode" type="string" flags="2048">3246 <element name="usercode" type="string" min="1" flags="2048"> 3247 3247 <description><![CDATA[This script overrides the experiment definition]]></description> 3248 3248 </element> … … 3815 3815 <description><![CDATA[Modifiers: LlRrCcQqFfMmIiWwEeAaSsDdGgBbHh]]></description> 3816 3816 </element> 3817 <element name="f1_mut_exmod" type="string" >3817 <element name="f1_mut_exmod" type="string" max="30"> 3818 3818 <description><![CDATA[Modifiers that will not be added nor deleted during mutation 3819 3819 (all: LlRrCcQqFfMmIiWwEeAaSsDdGgBbHh)]]></description> … … 4393 4393 <arguments/></element> 4394 4394 <element name="loadexpdef" function="true" type="void"><arguments/></element> 4395 <element name="usercode" type="string" flags="2048">4395 <element name="usercode" type="string" min="1" flags="2048"> 4396 4396 <description><![CDATA[This script overrides the experiment definition]]></description> 4397 4397 </element> … … 5126 5126 <element name="d" type="string"/> 5127 5127 <element name="i" type="string"/> 5128 <element name="Vstyle" type="string" />5128 <element name="Vstyle" type="string" max="-1" default="neuro"/> 5129 5129 <element name="getInputCount" type="integer" flags="3"/> 5130 5130 <element name="getInputNeuroDef" function="true" type="NeuroDef" flags="3"> … … 5253 5253 <description><![CDATA[A Genotype with the associated performance information. Adding genotypes to GenePool makes them accessible in Framsticks GUI and enables the use of GenePool selection methods. 5254 5254 Before version 4.0rc4 the static Genotype object was used in functions operating on the "selected" genotype. This is now deprecated as all operations can be performed using the more convenient direct access (see GenePools).]]></description> 5255 <element name="name" type="string" />5255 <element name="name" type="string" max="40"/> 5256 5256 <element name="genotype" type="string"/> 5257 5257 <element name="info" type="string"> … … 5363 5363 function onDied(cr) {Simulator.print("Creature "+cr.name+" has died");} 5364 5364 See also: Population.]]></description> 5365 <element name="name" type="string" />5365 <element name="name" type="string" max="30"/> 5366 5366 <element name="genotype" type="string" flags="1"/> 5367 5367 <element name="info" type="string"> … … 5725 5725 <element name="stam" type="float" min="0" max="1" default="0.25"/> 5726 5726 <element name="i" type="string"/> 5727 <element name="Vstyle" type="string" />5727 <element name="Vstyle" type="string" max="-1" default="joint"/> 5728 5728 <element name="vr" type="float" min="0" max="1" default="0.5"/> 5729 5729 <element name="vg" type="float" min="0" max="1" default="0.5" flags="1024"/> … … 5738 5738 <type name="m" context="Visual style definition"> 5739 5739 <element name="se" type="float" flags="1024"/> 5740 <element name="Vstyle" type="string" />5740 <element name="Vstyle" type="string" max="-1"/> 5741 5741 </type> 5742 5742 <type name="Material" context="Visual style definition"> … … 5793 5793 <element name="d" type="string"/> 5794 5794 <element name="i" type="string"/> 5795 <element name="Vstyle" type="string" />5795 <element name="Vstyle" type="string" max="-1" default="neuro"/> 5796 5796 <element name="getInputCount" type="integer" flags="3"/> 5797 5797 <element name="getInputNeuroDef" function="true" type="NeuroDef" flags="3"> … … 5833 5833 <element name="rz" type="float" flags="1024"/> 5834 5834 <element name="i" type="string"/> 5835 <element name="Vstyle" type="string" />5835 <element name="Vstyle" type="string" max="-1" default="part"/> 5836 5836 <element name="vs" type="float" min="0.05" max="0.7" default="0.2"/> 5837 5837 <element name="vr" type="float" min="0" max="1" default="0.5"/> … … 5945 5945 </type> 5946 5946 <type name="VisualStyle" context="Visual style definition"> 5947 <element name="style" type="string" />5947 <element name="style" type="string" default="standard"/> 5948 5948 <element name="name" type="string" flags="19"/> 5949 5949 <element name="info" type="string" flags="19"/> … … 6286 6286 </type> 6287 6287 <type name="ImageExport" context="Command line interface"> 6288 <element name="imgex_outdir" type="string" >6288 <element name="imgex_outdir" type="string" default="."> 6289 6289 <description><![CDATA[Directory name WITHOUT trailing '/' sign]]></description> 6290 6290 </element> 6291 <element name="imgex_outfiles" type="string" >6291 <element name="imgex_outfiles" type="string" default="scene_38288288.jpg"> 6292 6292 <description><![CDATA[Frame number replaces %d (eg. 'image%03d.jpg')]]></description> 6293 6293 </element> … … 6470 6470 </type> 6471 6471 <type name="VisualStyle" context="Command line interface"> 6472 <element name="style" type="string" />6472 <element name="style" type="string" default="standard"/> 6473 6473 <element name="name" type="string" flags="19"/> 6474 6474 <element name="info" type="string" flags="19"/>
Note: See TracChangeset
for help on using the changeset viewer.