Rangement

This commit is contained in:
Unknown 2018-08-13 12:24:33 +02:00
parent 5ea3bd93c8
commit 97b12ef01e
43 changed files with 9 additions and 301 deletions

View file

@ -0,0 +1,32 @@
# Represents a state space.
# General info.
#Header header
# Identifying string for this state space. (ID ?)
string name
# State Space type: controls how the state space is displayed / computed.
# Default: ORDINARY
# ORDINARY : General display / compute of the state space without any assumption.
# STATE_2D : Expect a 2D position and orientation (Dimension = 3).
# STATE_3D : Expect a 3D position and orientation (quaternion) (Dimension = 7).
# STATE_BOOL : Expect a single boolean information (ie bouton on/off) (Dimension = 1).
uint8 ORDINARY=0
uint8 STATE_2D=1
uint8 STATE_3D=2
uint8 STATE_BOOL=3
uint8 state_type
#State Space dimension : must be equal to the sum of all the data dimensions.
#uint8 dimension
#State Space data : contains the state space data.
uint8[] discrete_data
float32[] real_data
# Short description (< 40 characters) of what this state space represent,
# e.g. "Button A pressed".
# Default: ?
string description