Display XML Format: Difference between revisions

From Rise: The Vieneo Province

(Created page with "===Text=== <Text x="0" y="0" color="ffff00ff" width="40" height="24" align="left">TVM velocity target: %+.3f km/s</Text> X and Y location attributes, color, width and height...")
 
No edit summary
Line 1: Line 1:
===Component===
Must be contained inside of an element. Multiple components are allowed in an element.
====Attributes====
*busvalue ''the following values are exposed with their respective FDR parameter value in parentheses (if applicable)''
**TvmDesiredClosingSpeed ''(25) Automatic Flight Control System''
**TvmCurrentClosingSpeed ''(25) Automatic Flight Control System''
**LinearVelocity
**NormalAcceleration.x ''(5) vertical force'' 
**NormalAcceleration.y ''(11) longitudinal force''
**NormalAcceleration.z ''(18) latera forcel''
===Condition===
Must be contained inside a component. Only one may be used in each component.
===Text===
===Text===
Must be contained inside a condition. Only one may be used in each condition.
  <Text x="0" y="0" color="ffff00ff" width="40" height="24" align="left">TVM velocity target: %+.3f km/s</Text>
  <Text x="0" y="0" color="ffff00ff" width="40" height="24" align="left">TVM velocity target: %+.3f km/s</Text>


====Attributes====
X and Y location attributes, color, width and height, alignment seem self-explanatory
X and Y location attributes, color, width and height, alignment seem self-explanatory
 
====Value====
The value is a C++ string format ... you can have label text and or a format specifier for the associated bus value (component) and text after the format specifier (like units)
The value is a C++ string format ... you can have label text and or a format specifier for the associated bus value (component) and text after the format specifier (like units)
<br />


Full Format Specifiers Specification [http://www.cplusplus.com/reference/cstdio/printf/]
[http://www.cplusplus.com/reference/cstdio/printf/ Full Format Specifiers Specification]

Revision as of 03:20, 28 June 2018

Component

Must be contained inside of an element. Multiple components are allowed in an element.

Attributes

  • busvalue the following values are exposed with their respective FDR parameter value in parentheses (if applicable)
    • TvmDesiredClosingSpeed (25) Automatic Flight Control System
    • TvmCurrentClosingSpeed (25) Automatic Flight Control System
    • LinearVelocity
    • NormalAcceleration.x (5) vertical force
    • NormalAcceleration.y (11) longitudinal force
    • NormalAcceleration.z (18) latera forcel

Condition

Must be contained inside a component. Only one may be used in each component.

Text

Must be contained inside a condition. Only one may be used in each condition.

<Text x="0" y="0" color="ffff00ff" width="40" height="24" align="left">TVM velocity target: %+.3f km/s</Text>

Attributes

X and Y location attributes, color, width and height, alignment seem self-explanatory

Value

The value is a C++ string format ... you can have label text and or a format specifier for the associated bus value (component) and text after the format specifier (like units)

Full Format Specifiers Specification