CanberraBI8-vfr-panel.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452
  1. <?xml version="1.0"?>
  2. <!--
  3. Cessna 310 panel.
  4. November 2001
  5. John Check <j4strngs@rockfish.net>
  6. _______________________________________________________________________
  7. This is a panel configuration file for the open-source flight
  8. simulator FlightGear (www.flightgear.org). The file is an XML-encoded
  9. FlightGear property list defining the panel's background texture and
  10. the location (and optionally, size) of the instruments that will
  11. appear on the panel.
  12. Each instrument is, itself, defined in an XML-encoded property list
  13. in a separate file.
  14. Co-ordinates are relative to the *bottom* left corner of the screen
  15. (as in OpenGL). The total FlightGear window is always considered to
  16. be 1024x768, whatever its actual display size on the screen. All
  17. paths are relative to $FG_ROOT.
  18. Note that the name of the element defining each instrument must be
  19. different, or else instrument definitions will be overwritten:
  20. that's not particularly XML-ish, but that's how property lists
  21. work in FlightGear right now.
  22. Each instrument has its own preferred width and height, but you can
  23. override those by providing <w>..</w> and <h>..</h> properties with the
  24. <x>...</x> and <y>...</y> properties.
  25. Hacked by Lee Elliott for the Canberra B(I)8 mock panel
  26. -->
  27. <!DOCTYPE PropertyList SYSTEM "panel.dtd">
  28. <PropertyList>
  29. <name>Canberra B(I)8 VFR Panel</name>
  30. <background>Aircraft/CanberraBI8/Panels/Textures/Canberra-panel-bg.rgb</background>
  31. <w>1424</w>
  32. <h>468</h>
  33. <y-offset>0</y-offset>
  34. <view-height>440</view-height>
  35. <instruments>
  36. <instrument include="../../Instruments/dme.xml">
  37. <name>DME Display</name>
  38. <x>100</x>
  39. <y>330</y>
  40. <w>100</w>
  41. <h>50</h>
  42. </instrument>
  43. <instrument include="../../Instruments/clock.xml">
  44. <name>Chronometer</name>
  45. <x>320</x>
  46. <y>300</y>
  47. <w>90</w>
  48. <h>90</h>
  49. </instrument>
  50. <instrument include="../../Instruments/turn.xml">
  51. <name>Turn Coordinator</name>
  52. <x>220</x>
  53. <y>225</y>
  54. <w>120</w>
  55. <h>120</h>
  56. </instrument>
  57. <instrument include="Instruments/attitude-indicator.xml">
  58. <name>Attitude Indicator</name>
  59. <x>100</x>
  60. <y>225</y>
  61. <w>120</w>
  62. <h>120</h>
  63. </instrument>
  64. <instrument include="../../Instruments/hsi.xml">
  65. <name>Horizontal Situation Indicator</name>
  66. <x>220</x>
  67. <y>352</y>
  68. <w>120</w>
  69. <h>120</h>
  70. </instrument>
  71. <!-- controls visual feedback cluster -->
  72. <instrument include="../../Instruments/gear-indicator.xml">
  73. <name>Gear Indicator Light</name>
  74. <x>320</x>
  75. <y>159</y>
  76. <w>40</w>
  77. <h>17</h>
  78. </instrument>
  79. <instrument include="../../Instruments/brakes.xml">
  80. <name>Brake Indicator Light</name>
  81. <x>320</x>
  82. <y>140</y>
  83. <w>40</w>
  84. <h>17</h>
  85. </instrument>
  86. <instrument include="../../Instruments/controls.xml">
  87. <name>Control Position Indicators</name>
  88. <x>320</x>
  89. <y>80</y>
  90. <w>90</w>
  91. <h>90</h>
  92. </instrument>
  93. <!-- end controls visual feedback cluster -->
  94. <!-- radio nav instruments -->
  95. <instrument include="../../Instruments/nav1.xml">
  96. <name>VOR 2 Gauge</name>
  97. <params>
  98. <nav-to-flag>/instrumentation/nav[1]/to-flag</nav-to-flag>
  99. <nav-from-flag>/instrumentation/nav[1]/from-flag</nav-from-flag>
  100. <nav-radial-selected>/instrumentation/nav[1]/radials/selected-deg</nav-radial-selected>
  101. <nav-gs-needle-deflection>/instrumentation/nav[1]/gs-needle-deflection</nav-gs-needle-deflection>
  102. <nav-heading-needle-deflection>/instrumentation/nav[1]/heading-needle-deflection</nav-heading-needle-deflection>
  103. <nav-has-gs-needle>/sim/instrument-options/nav[1]/has-gs-needle</nav-has-gs-needle>
  104. <nav-needles-pivot>/sim/instrument-options/nav[1]/needles-pivot</nav-needles-pivot>
  105. </params>
  106. <x>225</x>
  107. <y>99</y>
  108. <w>120</w>
  109. <h>120</h>
  110. </instrument>
  111. <!-- end radio nav instruments -->
  112. <instrument include="../../Instruments/gyro.xml">
  113. <name>Directional Gauge</name>
  114. <x>100</x>
  115. <y>99</y>
  116. <w>120</w>
  117. <h>120</h>
  118. </instrument>
  119. <!-- radio stack -->
  120. <instrument include="../../Instruments/markerbeacon.xml">
  121. <name>Marker Beacon Indicators</name>
  122. <x>798</x>
  123. <y>450</y>
  124. <w>70</w>
  125. <h>22</h>
  126. </instrument>
  127. <instrument include="../../Instruments/navcom-kx155.xml">
  128. <name>NavCom 1 Radio</name>
  129. <x>890</x>
  130. <y>395</y>
  131. </instrument>
  132. <instrument include="../../Instruments/navcom-kx155.xml">
  133. <name>NavCom 2 Radio</name>
  134. <params>
  135. <comm-freq-selected-prop>/instrumentation/comm[1]/frequencies/selected-mhz</comm-freq-selected-prop>
  136. <comm-freq-standby-prop>/instrumentation/comm[1]/frequencies/standby-mhz</comm-freq-standby-prop>
  137. <nav-freq-selected-prop>/instrumentation/nav[1]/frequencies/selected-mhz</nav-freq-selected-prop>
  138. <nav-freq-standby-prop>/instrumentation/nav[1]/frequencies/standby-mhz</nav-freq-standby-prop>
  139. <nav-morse-id-volume-prop>/instrumentation/nav[1]/volume</nav-morse-id-volume-prop>
  140. <nav-morse-ident-toggle-prop>/instrumentation/nav[1]/ident</nav-morse-ident-toggle-prop>
  141. </params>
  142. <x>890</x>
  143. <y>309</y>
  144. </instrument>
  145. <instrument include="../../Instruments/adf-radio.xml">
  146. <name>ADF Radio</name>
  147. <x>890</x>
  148. <y>235</y>
  149. </instrument>
  150. <instrument include="../../Instruments/autopilot.xml">
  151. <name>Autopilot</name>
  152. <x>890</x>
  153. <y>191</y>
  154. </instrument>
  155. <!-- end radio stack -->
  156. <instrument include="Instruments/single-throttle-quadrant.xml">
  157. <name>Engine 0 throttle quadrant</name>
  158. <params>
  159. <engine-throttle-select>/controls/engines/engine[0]/throttle</engine-throttle-select>
  160. </params>
  161. <x>780</x>
  162. <y>44</y>
  163. <w>20</w>
  164. <h>80</h>
  165. </instrument>
  166. <instrument include="Instruments/single-throttle-quadrant.xml">
  167. <name>Engine 1 throttle quadrant</name>
  168. <params>
  169. <engine-throttle-select>/controls/engines/engine[1]/throttle</engine-throttle-select>
  170. </params>
  171. <x>802</x>
  172. <y>44</y>
  173. <w>20</w>
  174. <h>80</h>
  175. </instrument>
  176. <instrument include="Instruments/flap-quadrant.xml">
  177. <name>Flaps quadrant</name>
  178. <params>
  179. <flaps-select>/controls/flight/flaps</flaps-select>
  180. </params>
  181. <x>834</x>
  182. <y>44</y>
  183. <w>40</w>
  184. <h>80</h>
  185. </instrument>
  186. <instrument include="../../Instruments/magcompass.xml">
  187. <name>Magnetic Compass</name>
  188. <x>668</x>
  189. <y>480</y>
  190. </instrument>
  191. <instrument include="../../Instruments/aoa-indexer.xml">
  192. <name>AoA</name>
  193. <x>25</x>
  194. <y>250</y>
  195. <w>40</w>
  196. <h>70</h>
  197. </instrument>
  198. <!-- Engine monitors -->
  199. <instrument include="Instruments/digital-engine.xml">
  200. <name>Engine 0 display</name>
  201. <params>
  202. <eng-num>/engines/engine[0]/engine-num</eng-num>
  203. <pt-select>/engines/engine[0]/prop-thrust</pt-select>
  204. <pt-select>/engines/engine[0]/prop-thrust</pt-select>
  205. <n1-select>/engines/engine[0]/n1</n1-select>
  206. <n2-select>/engines/engine[0]/n2</n2-select>
  207. <ff-select>/engines/engine[0]/fuel-flow-gph</ff-select>
  208. <th-select>/controls/engines/engine[0]/throttle</th-select>
  209. <egt-select>/engines/engine[0]/egt-degf</egt-select>
  210. </params>
  211. <x>370</x>
  212. <y>260</y>
  213. <w>40</w>
  214. <h>10</h>
  215. </instrument>
  216. <instrument include="Instruments/digital-engine.xml">
  217. <name>Engine 1 display</name>
  218. <params>
  219. <eng-num>/engines/engine[1]/engine-num</eng-num>
  220. <pt-select>/engines/engine[1]/prop-thrust</pt-select>
  221. <pt-select>/engines/engine[1]/prop-thrust</pt-select>
  222. <n1-select>/engines/engine[1]/n1</n1-select>
  223. <n2-select>/engines/engine[1]/n2</n2-select>
  224. <ff-select>/engines/engine[1]/fuel-flow-gph</ff-select>
  225. <th-select>/controls/engines/engine[1]/throttle</th-select>
  226. <egt-select>/engines/engine[1]/egt-degf</egt-select>
  227. </params>
  228. <x>370</x>
  229. <y>217</y>
  230. <w>40</w>
  231. <h>10</h>
  232. </instrument>
  233. <!-- Fuel monitors -->
  234. <instrument include="Instruments/digital-fuel-tank.xml">
  235. <name>Tank 0 display</name>
  236. <params>
  237. <tank-num>/consumables/fuel/tank[0]/tank-num</tank-num>
  238. <gal-select>/consumables/fuel/tank[0]/level-gal_us</gal-select>
  239. <lbs-select>/consumables/fuel/tank[0]/level-lbs</lbs-select>
  240. </params>
  241. <x>370</x>
  242. <y>174</y>
  243. <w>40</w>
  244. <h>10</h>
  245. </instrument>
  246. <instrument include="Instruments/digital-fuel-tank.xml">
  247. <name>Tank 1 display</name>
  248. <params>
  249. <tank-num>/consumables/fuel/tank[1]/tank-num</tank-num>
  250. <gal-select>/consumables/fuel/tank[1]/level-gal_us</gal-select>
  251. <lbs-select>/consumables/fuel/tank[1]/level-lbs</lbs-select>
  252. </params>
  253. <x>370</x>
  254. <y>131</y>
  255. <w>40</w>
  256. <h>10</h>
  257. </instrument>
  258. <instrument include="Instruments/digital-fuel-tank.xml">
  259. <name>Tank 2 display</name>
  260. <params>
  261. <tank-num>/consumables/fuel/tank[2]/tank-num</tank-num>
  262. <gal-select>/consumables/fuel/tank[2]/level-gal_us</gal-select>
  263. <lbs-select>/consumables/fuel/tank[2]/level-lbs</lbs-select>
  264. </params>
  265. <x>370</x>
  266. <y>88</y>
  267. <w>40</w>
  268. <h>10</h>
  269. </instrument>
  270. <instrument include="Instruments/digital-fuel-tank.xml">
  271. <name>Tank 3 display</name>
  272. <params>
  273. <tank-num>/consumables/fuel/tank[3]/tank-num</tank-num>
  274. <gal-select>/consumables/fuel/tank[3]/level-gal_us</gal-select>
  275. <lbs-select>/consumables/fuel/tank[3]/level-lbs</lbs-select>
  276. </params>
  277. <x>566</x>
  278. <y>174</y>
  279. <w>40</w>
  280. <h>10</h>
  281. </instrument>
  282. <instrument include="Instruments/digital-fuel-tank.xml">
  283. <name>Tank 4 display</name>
  284. <params>
  285. <tank-num>/consumables/fuel/tank[4]/tank-num</tank-num>
  286. <gal-select>/consumables/fuel/tank[4]/level-gal_us</gal-select>
  287. <lbs-select>/consumables/fuel/tank[4]/level-lbs</lbs-select>
  288. </params>
  289. <x>566</x>
  290. <y>131</y>
  291. <w>40</w>
  292. <h>10</h>
  293. </instrument>
  294. <instrument include="Instruments/digital-fuel-tot.xml">
  295. <name>Fuel tot display</name>
  296. <x>370</x>
  297. <y>43</y>
  298. <w>45</w>
  299. <h>11</h>
  300. </instrument>
  301. <instrument include="Instruments/digital-alt.xml">
  302. <name>Altitude display</name>
  303. <x>370</x>
  304. <y>415</y>
  305. <w>40</w>
  306. <h>10</h>
  307. </instrument>
  308. <instrument include="Instruments/digital-vsi.xml">
  309. <name>Vsi display</name>
  310. <x>370</x>
  311. <y>369</y>
  312. <w>40</w>
  313. <h>10</h>
  314. </instrument>
  315. <instrument include="Instruments/digital-agl.xml">
  316. <name>Elevation AGL display</name>
  317. <x>370</x>
  318. <y>392</y>
  319. <w>40</w>
  320. <h>10</h>
  321. </instrument>
  322. <instrument include="Instruments/digital-kias.xml">
  323. <name>KIAS display</name>
  324. <x>498</x>
  325. <y>415</y>
  326. <w>40</w>
  327. <h>10</h>
  328. </instrument>
  329. <instrument include="Instruments/digital-mach.xml">
  330. <name>Mach display</name>
  331. <x>498</x>
  332. <y>392</y>
  333. <w>40</w>
  334. <h>10</h>
  335. </instrument>
  336. <instrument include="Instruments/digital-accl.xml">
  337. <name>Accel display</name>
  338. <x>498</x>
  339. <y>369</y>
  340. <w>40</w>
  341. <h>10</h>
  342. </instrument>
  343. <instrument include="Instruments/digital-wgt.xml">
  344. <name>Weight display</name>
  345. <x>370</x>
  346. <y>346</y>
  347. <w>40</w>
  348. <h>10</h>
  349. </instrument>
  350. <instrument include="Instruments/digital-aoa.xml">
  351. <name>AoA display</name>
  352. <x>498</x>
  353. <y>346</y>
  354. <w>40</w>
  355. <h>10</h>
  356. </instrument>
  357. <instrument include="Instruments/digital-flap.xml">
  358. <name>Flap settings display</name>
  359. <x>370</x>
  360. <y>323</y>
  361. <w>40</w>
  362. <h>10</h>
  363. </instrument>
  364. <!-- AP Instruments -->
  365. <!-- Text AP Block -->
  366. <instrument include="Instruments/text-autopilot.xml">
  367. <name>AP display</name>
  368. <params>
  369. <ah-select>autopilot/locks/altitude</ah-select>
  370. <tf-select>autopilot/locks/altitude</tf-select>
  371. <to-select>autopilot/locks/altitude</to-select>
  372. <gs-select>autopilot/locks/altitude</gs-select>
  373. </params>
  374. <x>865</x>
  375. <y>155</y>
  376. <w>200</w>
  377. <h>20</h>
  378. </instrument>
  379. <instrument include="Instruments/digital-ap-speed-kt.xml">
  380. <name>AP Speed-Kt Instruiment</name>
  381. <params>
  382. <kias-disp>/autopilot/settings/target-speed-kt</kias-disp>
  383. <kias-ctrl>/autopilot/settings/target-speed-kt</kias-ctrl>
  384. <mach-disp>/autopilot/settings/target-mach</mach-disp>
  385. <mach-ctrl>/autopilot/settings/target-mach</mach-ctrl>
  386. </params>
  387. <x>828</x>
  388. <y>120</y>
  389. <w>124</w>
  390. <h>40</h>
  391. </instrument>
  392. </instruments>
  393. </PropertyList>