Canvas glass cockpit efforts: Difference between revisions

From FlightGear wiki
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 38: Line 38:


  <buttons>
  <buttons>
   <button>
   <button>
  <name></name>
  <property></property>
   </button>
   </button>
...
  </buttons>
  </buttons>


<!-- TODO: support SGCondition here -->
  <modes>
  <modes>
   <mode>
   <mode>

Revision as of 20:05, 3 June 2014


This article is a stub. You can help the wiki by expanding it.


This is a list of Canvas related glass cockpit efforts, i.e. projects implementing modern MFD avionics.

Goal Description Progress People Comments
747 PFD ... 40}% completed (people) ...
NavDisplay ... 60}% completed (people) ...
Garmin GPSMap 196 ... 20}% completed F-JJTH ...
Avidyne Entegra R9 ... 40}% completed (people) ...
Canvas EFB Framework ... 10}% completed (people) ...


Note  This is work in progress - the idea is to identify required building blocks to easily specify most MFD functionality in a generic fashion, without requiring a ton of custom Nasal code and without being specific to a single type of MFD.

The Nasal/Canvas data structures will be transparently created and compiled for each MFD. Each MFD consists of an arbitrary number of buttons, modes and pages. Each MFD can be instantiated multiple times, and each MFD is designed to be aircraft/instrument agnostic, i.e. also works just in a conventional Canvas dialog. Buttons can trigger and switch between modes, and modes may have pages (conventionally implemented through a single SVG file).

<PropertyList>
 <MFD>
  <version>1.0</version>
  <name>myMFD</name>
  <description></description>
  <debug>1</debug>
  <resolution>320x240</resolution>

 <buttons>

  <button>
   <name></name>
   <property></property>
  </button>

 ...
 </buttons>

 <!-- TODO: support SGCondition here -->
 <modes>
  <mode>
  </mode>
 </modes>

 <pages>
  <page>
   <name>panel-page</name>
   <svg-filename>panels.svg</svg-filename>
   <nasal></nasal>
  </page>
 </pages>

 </MFD>
</PropertyList>