17
edits
(It makes no sense to re-invent existing defaults.) |
Fusionstream (talk | contribs) (Draft) |
||
Line 8: | Line 8: | ||
There was an [http://code.google.com/p/flightgear-bugs/issues/detail?id=1173 attempt to unify it all with a nasal script] but after consulation and comments with others, this attempt was replaced with the solution to standardise common aircraft properties in standardised locations. | There was an [http://code.google.com/p/flightgear-bugs/issues/detail?id=1173 attempt to unify it all with a nasal script] but after consulation and comments with others, this attempt was replaced with the solution to standardise common aircraft properties in standardised locations. | ||
This document will exhaustively list property tree locations where aircraft developers should store their aircraft properties (if not alias them). | This document will exhaustively list property tree locations where aircraft developers should store their common aircraft properties (if not alias them). | ||
==Gear== | ==Gear== | ||
Properties marked with an '✲' are standard across all aircraft and should always be set. For example, an old aircraft without any autobrakes should still define /controls/gear/autobrake although set it to 0 | |||
===States=== | ===States=== | ||
*In /controls/gear | *In /controls/gear | ||
** /controls/gear/brake-parking<br />0 = Off<br />1 = On | ** /controls/gear/brake-parking ✲<br />0 = Off<br />1 = On | ||
** /controls/gear/brake-chokes<br />0 = Off<br />1 = On | ** /controls/gear/brake-chokes ✲<br />0 = Off<br />1 = On | ||
** /controls/gear/antiskid<br />0 = Off<br />1 = On | ** /controls/gear/antiskid ✲<br />0 = Off<br />1 = On | ||
** /controls/gear/autobrake<br />0 = Off<br />1 = On | ** /controls/gear/autobrake ✲<br />0 = Fully Off<br />1 = Fully On | ||
launcbar | ** /controls/gear/launcbar ✲ | ||
servicable | ** /controls/gear/servicable ✲ | ||
brake-servicable | ** /controls/gear/brake-servicable | ||
brake-temperature | ** /controls/gear/brake-temperature | ||
brake-hydraulic-pressure | ** /controls/gear/brake-hydraulic-pressure | ||
tyre-temperature | ** /controls/gear/tyre-temperature | ||
tyre-pressure | ** /controls/gear/tyre-pressure | ||
brake-available | ** /controls/gear/brake-available ✲ | ||
retractable | ** /controls/gear/retractable ✲ | ||
** /controls/gear/brake ✲ | |||
** /controls/gear/gear-down<br />0 = Retracted<br />1 = Extended | ** /controls/gear/gear-down<br />0 = Retracted<br />1 = Extended | ||
*In /controls/gear/gear[n] | *In /controls/gear/gear[n] |
edits