-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpreferences.xml
More file actions
1268 lines (1266 loc) · 54.4 KB
/
preferences.xml
File metadata and controls
1268 lines (1266 loc) · 54.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0"?>
<!--
************************************************************************
Global defaults for FlightGear property values.
Started September 2000 by David Megginson, david@megginson.com
************************************************************************
-->
<PropertyList>
<local-weather include="Environment/local-weather-defaults.xml"/>
<!-- General simulation preferences -->
<sim>
<!-- show-aircraft option: show ALL aircraft regardless by default -->
<aircraft-min-status>all</aircraft-min-status>
<!-- don't reset the simulator when the aircraft hits the ground -->
<reset-on-crash type="bool">false</reset-on-crash>
<!-- Limit the time we need to spend in simulation loops to 1 second -->
<max-simtime-per-frame type="double">1.0</max-simtime-per-frame>
<session type="int" userarchive="y">0</session>
<paths>
<screenshot-dir type="string" userarchive="y"/>
<!-- defaults to current working dir -->
<validate>
<read type="string"/>
<write type="string"/>
</validate>
</paths>
<intl include="Translations/locale.xml"/>
<aircraft>c172p</aircraft>
<virtual-cockpit type="bool">false</virtual-cockpit>
<presets preserve="y">
<airport-id>KSFO</airport-id>
<runway/>
<trim type="bool">true</trim>
</presets>
<startup>
<xsize type="int" preserve="y">1024</xsize>
<ysize type="int" preserve="y">768</ysize>
<splash-screen type="bool">true</splash-screen>
<splash-progress type="bool">true</splash-progress>
<splash-title>
<!-- -->
</splash-title>
<fullscreen type="bool" preserve="y">false</fullscreen>
<units>feet</units>
<save-on-exit type="bool" userarchive="y">true</save-on-exit>
<restore-defaults type="bool">false</restore-defaults>
<!-- help viewer; only used under Unix -->
<terminal-ansi-colors type="bool">true</terminal-ansi-colors>
<season type="string" preserve="y">summer</season>
</startup>
<rendering>
<materials-file>Materials/regions/materials.xml</materials-file>
<rembrandt>
<enabled type="bool">false</enabled>
<renderer>default-pipeline</renderer>
<show-buffers type="bool" userarchive="y">false</show-buffers>
<ambient-occlusion type="bool" userarchive="y">false</ambient-occlusion>
<ambient-occlusion-strength type="float" userarchive="y">0.6</ambient-occlusion-strength>
<ambient-occlusion-buffers type="bool">true</ambient-occlusion-buffers>
<bloom type="bool" userarchive="y">true</bloom>
<bloom-strength type="float" userarchive="y">0.6</bloom-strength>
<bloom-buffers type="bool">true</bloom-buffers>
<night-vision type="bool">false</night-vision>
<cinema>
<vignette type="bool">false</vignette>
<inner-circle type="float" userarchive="y">0.8</inner-circle>
<outer-circle type="float" userarchive="y">1.3</outer-circle>
<color-shift type="bool">false</color-shift>
<red-shift>
<x type="float" userarchive="y">.393</x>
<y type="float" userarchive="y">.769</y>
<z type="float" userarchive="y">.189</z>
</red-shift>
<green-shift>
<x type="float" userarchive="y">.349</x>
<y type="float" userarchive="y">.686</y>
<z type="float" userarchive="y">.168</z>
</green-shift>
<blue-shift>
<x type="float" userarchive="y">.272</x>
<y type="float" userarchive="y">.534</y>
<z type="float" userarchive="y">.131</z>
</blue-shift>
<distortion type="bool">false</distortion>
<distortion-factor>
<x type="float" userarchive="y">0.0</x>
<y type="float" userarchive="y">0.0</y>
<z type="float" userarchive="y">1.0</z>
</distortion-factor>
<color-fringe type="bool">false</color-fringe>
<color-fringe-factor type="float" userarchive="y">1.0</color-fringe-factor>
<film-wear type="bool">false</film-wear>
</cinema>
<exposure type="float" userarchive="y">1.0</exposure>
<use-color-for-depth type="bool">false</use-color-for-depth>
<no-16bit-buffer type="bool">false</no-16bit-buffer>
<debug-buffer n="0">
<enabled type="bool" userarchive="y">false</enabled>
<name userarchive="y"/>
</debug-buffer>
<debug-buffer n="1">
<enabled type="bool" userarchive="y">true</enabled>
<name userarchive="y">spec-emis</name>
</debug-buffer>
<debug-buffer n="2">
<enabled type="bool" userarchive="y">true</enabled>
<name userarchive="y">normal</name>
</debug-buffer>
<debug-buffer n="3">
<enabled type="bool" userarchive="y">true</enabled>
<name userarchive="y">diffuse</name>
</debug-buffer>
<debug>
<lighting>
<sky type="bool">true</sky>
<ambient type="bool">true</ambient>
<sunlight type="bool">true</sunlight>
<lights type="bool">true</lights>
<fog type="bool">true</fog>
<debug type="bool">false</debug>
<transparent type="bool">false</transparent>
</lighting>
</debug>
</rembrandt>
<debug type="bool">false</debug>
<realism type="int">5</realism>
<filtering type="int">8</filtering>
<shaders>
<custom-settings type="bool" userarchive="y">false</custom-settings>
<generic type="float" userarchive="y">1.0</generic>
<landmass type="float" userarchive="y">1.0</landmass>
<model type="float" userarchive="y">1.0</model>
<contrails type="float" userarchive="y">1.0</contrails>
<crop type="float" userarchive="y">1.0</crop>
<skydome type="bool" userarchive="y">false</skydome>
<transition type="float" userarchive="y">1.0</transition>
<urban type="float" userarchive="y">1.0</urban>
<water type="float" userarchive="y">1.0</water>
<wind-effects type="float" userarchive="y">0.0</wind-effects>
<forest type="float" userarchive="y">0.0</forest>
<lights type="float" userarchive="y">1.0</lights>
<quality-level-internal type="float" userarchive="y">1.0</quality-level-internal>
</shaders>
<mie type="float" userarchive="y">0.003</mie>
<rayleigh type="float" userarchive="y">0.0003</rayleigh>
<dome-density type="float" userarchive="y">0.5</dome-density>
<!--
<multithreading-mode>AutomaticSelection</multithreading-mode>
Uncomment the above element to select OSG multi-threading mode.
This may improve performance on multi-core, multi-CPU
and/or multi-GPU systems. The recommended setting is AutomaticSelection.
The alternatives are
AutomaticSelection
DrawThreadPerContext
CullDrawThreadPerContext
CullThreadPerCameraDrawThreadPerContext
-->
<plod-minimum-expiry-time-secs type="double" userarchive="y">180.0</plod-minimum-expiry-time-secs>
<static-lod>
<detailed type="double" userarchive="y">1500</detailed>
<rough type="double" userarchive="y">9000</rough>
<bare type="double" userarchive="y">30000</bare>
<!--
ai-range-mode-pixel: true=use pixel size on screen, false=use distance from eyepoint
With /sim/rendering/static-lod/ai-range-mode-pixel set to true
/sim/rendering/static-lod/ai-detailed now contains the minimum size of the
model on the screen to be displayed. Values of 10-50 seem to make some sense.
-->
<ai-range-mode-pixel type="bool" userarchive="y">true</ai-range-mode-pixel>
<ai-detailed type="double" userarchive="y">30</ai-detailed>
<!-- ai-bare type="double" userarchive="y">10000</ai-bare -->
<ai-interior type="double" userarchive="y">50</ai-interior>
</static-lod>
<random-objects type="bool" userarchive="y">true</random-objects>
<random-vegetation type="bool" userarchive="y">true</random-vegetation>
<vegetation-density type="double" userarchive="y">1.0</vegetation-density>
<random-buildings type="bool" userarchive="y">false</random-buildings>
<building-density type="double" userarchive="y">1.0</building-density>
<horizon-effect type="bool" userarchive="y">false</horizon-effect>
<point-sprites type="bool" userarchive="y">true</point-sprites>
<enhanced-lighting type="bool" userarchive="y">false</enhanced-lighting>
<distance-attenuation type="bool" userarchive="y">false</distance-attenuation>
<particles type="bool" userarchive="y">true</particles>
<precipitation-gui-enable type="bool" userarchive="y">false</precipitation-gui-enable>
<precipitation-enable type="bool" userarchive="y">false</precipitation-enable>
<precipitation-aircraft-enable type="bool">true</precipitation-aircraft-enable>
<precipitation>
<!-- streaks coloring and transparency -->
<min-light type="float">0.35</min-light>
<streak-brightness-nearmost-layer type="float">0.9</streak-brightness-nearmost-layer>
<streak-brightness-farmost-layer type="float">0.5</streak-brightness-farmost-layer>
<!-- streak period as a function of the speed, decreases with speed -->
<streak-period-max type="float">2.5</streak-period-max>
<streak-period-change-per-kt type="float">0.005</streak-period-change-per-kt>
<streak-period-min type="float">1.0</streak-period-min>
<!-- streak length as a function of the speed, increases with speed -->
<streak-length-min type="float">0.03</streak-length-min>
<streak-length-change-per-kt type="float">0.0005</streak-length-change-per-kt>
<streak-length-max type="float">0.1</streak-length-max>
<!-- # of rain streaks at the 100.0% precipitation density -->
<streak-count-min type="int">40</streak-count-min>
<!-- lightest rain -->
<streak-count-max type="int">190</streak-count-max>
<!-- heaviest rain -->
<!-- numbers over MAX_RAIN_SLICE in simgear/environment/visual_enviro.cxx
will be ignored in the current implementation. -->
<!-- the precipitation cone geometry -->
<cone-base-radius type="float">15.0</cone-base-radius>
<cone-height type="float">30.0</cone-height>
</precipitation>
<lightning-enable type="bool" userarchive="y">false</lightning-enable>
<specular-highlight type="bool" userarchive="y">false</specular-highlight>
<bump-mapping type="bool" userarchive="y">false</bump-mapping>
<clouds3d-enable type="bool" userarchive="y">false</clouds3d-enable>
<clouds3d-vis-range type="float" userarchive="y">10000.0</clouds3d-vis-range>
<clouds3d-detail-range type="float" userarchive="y">10000.0</clouds3d-detail-range>
<clouds3d-density type="float" userarchive="y">0.25</clouds3d-density>
<!-- legacy property to control drawing 'out the window', i.e
non-cockpit + aircraft elements. Use draw-mask instead. -->
<draw-otw type="bool">true</draw-otw>
<draw-mask>
<terrain type="bool">true</terrain>
<models type="bool">true</models>
<aircraft type="bool">true</aircraft>
<clouds type="bool">true</clouds>
</draw-mask>
<shadows-ac type="bool" userarchive="y">false</shadows-ac>
<shadows-ac-transp type="bool" userarchive="y">false</shadows-ac-transp>
<shadows-ai type="bool" userarchive="y">false</shadows-ai>
<shadows-to type="bool" userarchive="y">false</shadows-to>
<shadows-debug type="bool" userarchive="y">false</shadows-debug>
<shadows>
<enabled type="bool" userarchive="y">true</enabled>
<debug type="bool" userarchive="y">false</debug>
<map-size type="int" userarchive="y">2048</map-size>
<num-cascades type="int" userarchive="y">4</num-cascades>
<cascade-far-m n="0" type="float" userarchive="y">2.0</cascade-far-m>
<cascade-far-m n="1" type="float" userarchive="y">8.0</cascade-far-m>
<cascade-far-m n="2" type="float" userarchive="y">32.0</cascade-far-m>
<cascade-far-m n="3" type="float" userarchive="y">128.0</cascade-far-m>
<filtering type="int" userarchive="y">1</filtering>
</shadows>
<shader-experimental type="bool" userarchive="y">false</shader-experimental>
<shader-effects type="bool" userarchive="y">true</shader-effects>
<fps-display type="bool" userarchive="y">false</fps-display>
<frame-latency-display type="bool" userarchive="y">false</frame-latency-display>
<on-screen-statistics type="int">0</on-screen-statistics>
<glide-slope-tunnel type="bool" userarchive="y">false</glide-slope-tunnel>
<redout>
<enabled type="bool" userarchive="y">true</enabled>
<parameters>
<blackout-onset-g type="double">3.5</blackout-onset-g>
<blackout-complete-g type="double">5</blackout-complete-g>
<redout-onset-g type="double">-2</redout-onset-g>
<redout-complete-g type="double">-4</redout-complete-g>
</parameters>
</redout>
<headshake>
<enabled type="bool" userarchive="y">false</enabled>
<rate-m-g type="double">0.005</rate-m-g>
</headshake>
<osg-displaysettings>
<eye-separation type="double" userarchive="y">0.05</eye-separation>
<screen-distance type="double" userarchive="y">0.5</screen-distance>
<stereo-mode type="string" userarchive="y">OFF</stereo-mode>
</osg-displaysettings>
<osg-notify-level type="string" userarchive="y">warn</osg-notify-level>
<cache type="bool">true</cache>
<use-vbos type="bool">false</use-vbos>
<terrain>
<simplifier>
<enabled-near type="bool">false</enabled-near>
<enabled-far type="bool">false</enabled-far>
<ratio type="double">0.01</ratio>
<max-error type="double">3000.0</max-error>
<max-length type="double">1000.0</max-length>
</simplifier>
</terrain>
<!-- OSG default is 300, but this means we burn lots of memory on no-longer
visible trees / random buildings -->
<max-paged-lod type="int">16</max-paged-lod>
<als-secondary-lights>
<use-searchlight type="bool">false</use-searchlight>
<use-landing-light type="bool">false</use-landing-light>
<use-alt-landing-light type="bool">false</use-alt-landing-light>
<landing-light1-offset-deg type="float">0.0</landing-light1-offset-deg>
<landing-light2-offset-deg type="float">0.0</landing-light2-offset-deg>
</als-secondary-lights>
</rendering>
<model-hz type="int">120</model-hz>
<navdb>
<localizers>
<auto-align type="bool">true</auto-align>
<auto-align-threshold-deg type="double">5.0</auto-align-threshold-deg>
</localizers>
</navdb>
<sound>
<volume type="float" userarchive="y">0.8</volume>
<enabled type="bool" userarchive="y">true</enabled>
<atc>
<enabled type="bool" userarchive="y">true</enabled>
<external-view type="bool" userarchive="y">true</external-view>
<volume type="float" userarchive="y">0.6</volume>
</atc>
<avionics>
<enabled type="bool" userarchive="y">true</enabled>
<external-view type="bool" userarchive="y">true</external-view>
<volume type="float" userarchive="y">0.6</volume>
</avionics>
<chatter>
<enabled type="bool" userarchive="y">false</enabled>
<volume type="float" userarchive="y">0.6</volume>
</chatter>
<effects>
<enabled type="bool" userarchive="y">true</enabled>
<volume type="float" userarchive="y">0.6</volume>
</effects>
<device-name type="string" userarchive="y"/>
<voice type="bool">true</voice>
<voices>
<host type="string" write="n">localhost</host>
<port type="string" write="n">1314</port>
<enabled type="bool">false</enabled>
<atc alias="/sim/sound/voices/voice[0]/text"/>
<approach alias="/sim/sound/voices/voice[0]/text"/>
<ground alias="/sim/sound/voices/voice[0]/text"/>
<pilot alias="/sim/sound/voices/voice[1]/text"/>
<copilot alias="/sim/sound/voices/voice[2]/text"/>
<ai-plane alias="/sim/sound/voices/voice[3]/text"/>
<voice>
<desc>ATC/Approach/Ground</desc>
<text type="string"/>
<volume type="double">1.0</volume>
<pitch type="double">100.0</pitch>
<speed type="double">1.0</speed>
<preamble type="string"/>
<festival type="bool">true</festival>
<htsvoice type="string">cmu_us_arctic_slt.htsvoice</htsvoice>
</voice>
<voice>
<desc>Pilot</desc>
<text type="string"/>
<volume type="double">1.0</volume>
<pitch type="double">100.0</pitch>
<speed type="double">1.0</speed>
<preamble type="string">(voice_us2_mbrola)</preamble>
<festival type="bool">true</festival>
<htsvoice type="string">cstr_uk_female-1.0.htsvoice</htsvoice>
</voice>
<voice>
<desc>Copilot/Instructor</desc>
<text type="string"/>
<volume type="double">1.0</volume>
<pitch type="double">100.0</pitch>
<speed type="double">1.0</speed>
<preamble type="string">(voice_en1_mbrola)</preamble>
<festival type="bool">true</festival>
<htsvoice type="string">cmu_us_arctic_slt.htsvoice</htsvoice>
</voice>
<voice>
<desc>AI-Plane</desc>
<text type="string"/>
<volume type="double">1.0</volume>
<pitch type="double">100.0</pitch>
<speed type="double">1.0</speed>
<preamble type="string">(voice_don_diphone)</preamble>
<festival type="bool">true</festival>
<htsvoice type="string">cmu_us_arctic_slt.htsvoice</htsvoice>
</voice>
</voices>
<aimodels>
<enabled type="bool" userarchive="y">false</enabled>
<volume type="float" userarchive="y">0.6</volume>
</aimodels>
</sound>
<speed-up type="double">1.0</speed-up>
<current-view>
<field-of-view type="double">55.0</field-of-view>
<field-of-view-compensation type="bool" userarchive="y">false</field-of-view-compensation>
<aspect-ratio-multiplier type="double">1.0</aspect-ratio-multiplier>
<dynamic-view type="bool" userarchive="y">false</dynamic-view>
</current-view>
<panel>
<path>Aircraft/Generic/Panels/generic-vfr-panel.xml</path>
<visibility type="bool" userarchive="y">false</visibility>
<jitter type="bool">false</jitter>
<hide-nonzero-view type="bool" userarchive="y">true</hide-nonzero-view>
<hide-nonzero-heading-offset type="bool" userarchive="y">true</hide-nonzero-heading-offset>
</panel>
<panel_2>
<path>Aircraft/Generic/Panels/generic-trans-mini-panel.xml</path>
</panel_2>
<hud>
<path n="1">Huds/default.xml</path>
<path n="2">Huds/NTPS.xml</path>
<path n="3">Huds/minimal.xml</path>
<!-- new HUD -->
<visibility n="1" type="bool">false</visibility>
<!-- new HUD -->
<font>
<name type="string">Helvetica.txf</name>
<size type="float">8</size>
</font>
<current-color type="int">0</current-color>
<palette>
<color n="0">
<!-- day -->
<transparent type="bool">true</transparent>
<antialiased type="bool">true</antialiased>
<brightness type="float">0.85</brightness>
<alpha type="float">0.85</alpha>
<red type="float">0.38</red>
<green type="float">1.0</green>
<blue type="float">0.22</blue>
</color>
<color n="1">
<!-- night -->
<transparent type="bool">false</transparent>
<antialiased type="bool">false</antialiased>
<brightness type="float">0.75</brightness>
<alpha type="float">0.67</alpha>
<red type="float">0.9</red>
<green type="float">0.1</green>
<blue type="float">0.1</blue>
</color>
</palette>
</hud>
<lon-lat-format type="int" userarchive="y">2</lon-lat-format>
<systems>
<path>Aircraft/Generic/generic-systems.xml</path>
<autopilot>
<name>generic autopilot</name>
<path>Aircraft/Generic/generic-autopilot.xml</path>
</autopilot>
<autopilot>
<name>autopilot helpers</name>
<path>Aircraft/Generic/generic-autopilot-helper.xml</path>
</autopilot>
<property-rule>
<name>Environment METAR Interpolation Rule</name>
<path>Environment/metarinterpolator.xml</path>
</property-rule>
<property-rule>
<name>Environment Interpolation Rule</name>
<path>Environment/interpolator.xml</path>
</property-rule>
<property-rule>
<name>Local Weather Rules </name>
<path>Environment/local-weather-rules.xml</path>
</property-rule>
</systems>
<instrumentation>
<path>Aircraft/Generic/generic-instrumentation.xml</path>
</instrumentation>
<instrument-options>
<nav n="0">
<has-gs-needle type="bool">true</has-gs-needle>
<needles-pivot type="bool">true</needles-pivot>
</nav>
<nav n="1">
<has-gs-needle type="bool">false</has-gs-needle>
<needles-pivot type="bool">true</needles-pivot>
</nav>
<hsi n="0">
<has-gs-needle type="bool">true</has-gs-needle>
</hsi>
<dg>
<style type="int">0</style>
</dg>
</instrument-options>
<input>
<property-key-handler type="bool" userarchive="y">false</property-key-handler>
</input>
<chase-distance-m type="double">-25.0</chase-distance-m>
<allow-toggle-cockpit type="bool">false</allow-toggle-cockpit>
<!-- "tower" positioned to right of runway at KSFO -->
<tower>
<longitude-deg type="double">-122.23045</longitude-deg>
<latitude-deg type="double">37.37027</latitude-deg>
<altitude-ft type="double">150</altitude-ft>
<roll-deg type="double">0</roll-deg>
<pitch-deg type="double">0</pitch-deg>
<heading-deg type="double">0</heading-deg>
<auto-position type="bool" userarchive="y">true</auto-position>
</tower>
<view-name-popup type="bool" userarchive="y">true</view-name-popup>
<view>
<name>Cockpit View</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookfrom</type>
<internal type="bool">false</internal>
<config>
<from-model type="bool">true</from-model>
<from-model-idx type="int">0</from-model-idx>
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
<default-pitch-deg type="double">0</default-pitch-deg>
<default-heading-deg type="double">0</default-heading-deg>
<front-direction-deg type="double">0</front-direction-deg>
<front-left-direction-deg type="double">45</front-left-direction-deg>
<left-direction-deg type="double">90</left-direction-deg>
<back-left-direction-deg type="double">135</back-left-direction-deg>
<back-direction-deg type="double">180</back-direction-deg>
<back-right-direction-deg type="double">225</back-right-direction-deg>
<right-direction-deg type="double">270</right-direction-deg>
<front-right-direction-deg type="double">315</front-right-direction-deg>
<dynamic-view type="bool">true</dynamic-view>
<limits>
<enabled type="bool">true</enabled>
<left>
<heading-max-deg type="double">140</heading-max-deg>
<x-offset-max-m type="double">0.15</x-offset-max-m>
<x-offset-threshold-deg type="double">65</x-offset-threshold-deg>
</left>
<right>
<heading-max-deg type="double">140</heading-max-deg>
<x-offset-max-m type="double">0.15</x-offset-max-m>
<x-offset-threshold-deg type="double">65</x-offset-threshold-deg>
</right>
</limits>
</config>
</view>
<view>
<name>Helicopter View</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookat</type>
<config>
<from-model type="bool">false</from-model>
<from-model-idx type="int">0</from-model-idx>
<eye-lat-deg-path>/position/latitude-deg</eye-lat-deg-path>
<eye-lon-deg-path>/position/longitude-deg</eye-lon-deg-path>
<eye-alt-ft-path>/position/altitude-ft</eye-alt-ft-path>
<eye-heading-deg-path>/orientation/heading-deg</eye-heading-deg-path>
<at-model type="bool">true</at-model>
<at-model-idx type="int">0</at-model-idx>
<at-model-heading-damping type="double">0.0</at-model-heading-damping>
<target-z-offset-m type="double">0</target-z-offset-m>
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
<x-offset-m type="double">0</x-offset-m>
<y-offset-m type="double">0</y-offset-m>
<z-offset-m alias="/sim/chase-distance-m"/>
</config>
</view>
<view>
<name>Chase View</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookat</type>
<config>
<from-model type="bool">false</from-model>
<from-model-idx type="int">0</from-model-idx>
<eye-lat-deg-path>/position/latitude-deg</eye-lat-deg-path>
<eye-lon-deg-path>/position/longitude-deg</eye-lon-deg-path>
<eye-alt-ft-path>/position/altitude-ft</eye-alt-ft-path>
<eye-pitch-deg-path>/orientation/pitch-deg</eye-pitch-deg-path>
<eye-roll-deg-path>/orientation/roll-deg</eye-roll-deg-path>
<eye-heading-deg-path>/orientation/heading-deg</eye-heading-deg-path>
<at-model type="bool">true</at-model>
<at-model-idx type="int">0</at-model-idx>
<at-model-roll-damping type="double">1.8</at-model-roll-damping>
<at-model-pitch-damping type="double">1.8</at-model-pitch-damping>
<at-model-heading-damping type="double">1.8</at-model-heading-damping>
<target-z-offset-m type="double">0</target-z-offset-m>
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
<x-offset-m type="double">0</x-offset-m>
<y-offset-m type="double">5</y-offset-m>
<z-offset-m alias="/sim/chase-distance-m"/>
</config>
</view>
<view>
<name>Tower View</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookat</type>
<config>
<eye-lat-deg-path>/sim/tower/latitude-deg</eye-lat-deg-path>
<eye-lon-deg-path>/sim/tower/longitude-deg</eye-lon-deg-path>
<eye-alt-ft-path>/sim/tower/altitude-ft</eye-alt-ft-path>
<eye-roll-deg-path>/sim/tower/roll-deg</eye-roll-deg-path>
<eye-pitch-deg-path>/sim/tower/pitch-deg</eye-pitch-deg-path>
<eye-heading-deg-path>/sim/tower/heading-deg</eye-heading-deg-path>
<at-model type="bool">true</at-model>
<at-model-idx type="int">0</at-model-idx>
<ground-level-nearplane-m type="double">10.0f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
<x-offset-m type="double">0</x-offset-m>
<y-offset-m type="double">0</y-offset-m>
<z-offset-m type="double">0</z-offset-m>
</config>
</view>
<view>
<name>Tower View Look From</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookfrom</type>
<config>
<eye-lat-deg-path>/sim/tower/latitude-deg</eye-lat-deg-path>
<eye-lon-deg-path>/sim/tower/longitude-deg</eye-lon-deg-path>
<eye-alt-ft-path>/sim/tower/altitude-ft</eye-alt-ft-path>
<eye-roll-deg-path>/sim/tower/roll-deg</eye-roll-deg-path>
<eye-pitch-deg-path>/sim/tower/pitch-deg</eye-pitch-deg-path>
<eye-heading-deg-path>/sim/tower/heading-deg</eye-heading-deg-path>
<ground-level-nearplane-m type="double">10.0f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
<x-offset-m type="double">0</x-offset-m>
<y-offset-m type="double">0</y-offset-m>
<z-offset-m type="double">0</z-offset-m>
</config>
</view>
<view>
<name>Chase View Without Yaw</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookat</type>
<config>
<from-model type="bool">false</from-model>
<from-model-idx type="int">0</from-model-idx>
<eye-lat-deg-path>/position/latitude-deg</eye-lat-deg-path>
<eye-lon-deg-path>/position/longitude-deg</eye-lon-deg-path>
<eye-alt-ft-path>/position/altitude-ft</eye-alt-ft-path>
<at-model type="bool">true</at-model>
<at-model-idx type="int">0</at-model-idx>
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
<x-offset-m type="double">25</x-offset-m>
<y-offset-m type="double">2</y-offset-m>
<z-offset-m alias="/sim/chase-distance-m"/>
</config>
</view>
<view>
<name>Fly-By View</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookat</type>
<config>
<eye-lon-deg-path>/sim/viewer/longitude-deg</eye-lon-deg-path>
<eye-lat-deg-path>/sim/viewer/latitude-deg</eye-lat-deg-path>
<eye-alt-ft-path>/sim/viewer/altitude-ft</eye-alt-ft-path>
<at-model type="bool">true</at-model>
<at-model-idx type="int">0</at-model-idx>
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
</config>
</view>
<view>
<name>Model View</name>
<enabled type="bool" userarchive="y">true</enabled>
<type>lookat</type>
<config>
<from-model type="bool">false</from-model>
<from-model-idx type="int">0</from-model-idx>
<eye-lat-deg-path>/sim/viewer/eye/latitude-deg</eye-lat-deg-path>
<eye-lon-deg-path>/sim/viewer/eye/longitude-deg</eye-lon-deg-path>
<eye-alt-ft-path>/sim/viewer/eye/altitude-ft</eye-alt-ft-path>
<eye-heading-deg-path>/sim/viewer/eye/heading-deg</eye-heading-deg-path>
<eye-pitch-deg-path>/sim/viewer/eye/pitch-deg</eye-pitch-deg-path>
<eye-roll-deg-path>/sim/viewer/eye/roll-deg</eye-roll-deg-path>
<at-model type="bool">false</at-model>
<at-model-idx type="int">0</at-model-idx>
<target-lat-deg-path>/sim/viewer/target/latitude-deg</target-lat-deg-path>
<target-lon-deg-path>/sim/viewer/target/longitude-deg</target-lon-deg-path>
<target-alt-ft-path>/sim/viewer/target/altitude-ft</target-alt-ft-path>
<target-heading-deg-path>/sim/viewer/target/heading-deg</target-heading-deg-path>
<target-pitch-deg-path>/sim/viewer/target/pitch-deg</target-pitch-deg-path>
<target-roll-deg-path>/sim/viewer/target/roll-deg</target-roll-deg-path>
<target-x-offset-m type="double">0</target-x-offset-m>
<target-y-offset-m type="double">0</target-y-offset-m>
<target-z-offset-m type="double">0</target-z-offset-m>
<ground-level-nearplane-m type="double">0.5f</ground-level-nearplane-m>
<default-field-of-view-deg type="double">55.0</default-field-of-view-deg>
<x-offset-m type="double">0</x-offset-m>
<y-offset-m type="double">0</y-offset-m>
<z-offset-m type="double">100</z-offset-m>
<heading-offset-deg type="double">0</heading-offset-deg>
<pitch-offset-deg type="double">0</pitch-offset-deg>
<roll-offset-deg type="double">0</roll-offset-deg>
</config>
</view>
<menubar>
<visibility type="bool" userarchive="y">true</visibility>
<default include="gui/menubar.xml"/>
<autovisibility>
<enabled type="bool" userarchive="y">false</enabled>
<edge-size type="int">5</edge-size>
</autovisibility>
</menubar>
<gui preserve="y">
<current-style type="int" userarchive="y">1</current-style>
<style n="0" include="gui/styles/classic.xml"/>
<style n="1" include="gui/styles/anthrax.xml"/>
<devel-widgets type="bool" userarchive="y">false</devel-widgets>
</gui>
<mouse>
<hide-cursor type="bool" userarchive="y">true</hide-cursor>
<right-button-mode-cycle-enabled type="bool" userarchive="y">false</right-button-mode-cycle-enabled>
<cycle-mode-popup type="bool" userarchive="y">true</cycle-mode-popup>
<cursor-timeout-sec type="double" userarchive="y">10.0</cursor-timeout-sec>
<click-shows-tooltip type="bool" userarchive="y">true</click-shows-tooltip>
<tooltip-delay-msec type="int" userarchive="y">800</tooltip-delay-msec>
<tooltips-enabled type="bool" userarchive="y">true</tooltips-enabled>
<drag-sensitivity type="double" userarchive="y">1.0</drag-sensitivity>
<invert-mouse-wheel type="bool" userarchive="y">false</invert-mouse-wheel>
<skip-flight-controls-mode type="bool" userarchive="y">false</skip-flight-controls-mode>
</mouse>
<replay>
<duration type="double">90</duration>
<view type="int">1</view>
<looped type="bool" userarchive="y">true</looped>
<buffer>
<!-- replay buffer configuration -->
<!-- 1st buffer level: short term -->
<high-res-time type="double">60.0</high-res-time>
<!-- 60 seconds -->
<!-- short term sample rate is as every frame (fixed) -->
<!-- 2nd buffer level: medium term -->
<medium-res-sample-dt type="double">0.5</medium-res-sample-dt>
<medium-res-time type="double">600.0</medium-res-time>
<!-- 10 mins -->
<!-- 3rd buffer level: long term -->
<low-res-sample-dt type="double">5.0</low-res-sample-dt>
<low-res-time type="double">3600.0</low-res-time>
<!-- 1 h -->
</buffer>
<tape-directory type="string" userarchive="y"/>
</replay>
<airport>
<runways>
<start-offset-m type="double">5.0</start-offset-m>
<search>
<length-weight type="double">0.01</length-weight>
<width-weight type="double">0.01</width-weight>
<surface-weight type="double">10</surface-weight>
<deviation-weight type="double">1</deviation-weight>
</search>
</runways>
</airport>
<atc>
<enabled type="bool">true</enabled>
<runway type="string" preserve="y"/>
</atc>
<atis>
<voice type="string" preserve="y">default</voice>
<concise-reports type="bool" preserve="y">false</concise-reports>
<random-notams type="bool" preserve="y">true</random-notams>
<announce-ils-frequency type="bool" preserve="y">false</announce-ils-frequency>
</atis>
<traffic-manager>
<enabled type="bool" userarchive="y">true</enabled>
<heuristics type="bool">true</heuristics>
<datafile type="string"/>
<instantaneous-action type="bool">false</instantaneous-action>
<dumpdata type="bool">false</dumpdata>
<proportion type="double">1.0</proportion>
</traffic-manager>
<ai>
<enabled type="bool">true</enabled>
<scenarios-enabled type="bool" userarchive="y">true</scenarios-enabled>
<scenario>nimitz_demo</scenario>
<groundnet-cache type="bool">true</groundnet-cache>
<tankers include="AI/tankers.xml"/>
</ai>
<multiplay preserve="y">
<chat type="string" preserve="y">Hello</chat>
<transmission-freq-hz type="string" preserve="y">118500000</transmission-freq-hz>
<chat-display type="bool" userarchive="y">true</chat-display>
<chat-menu include="ATC/chat-menu-entries.xml"/>
<write-message-log type="bool" preserve="y">false</write-message-log>
<freeze-on-replay type="bool" preserve="y">true</freeze-on-replay>
<default-model type="string" preserve="y">Models/Geometry/glider.ac</default-model>
<callsign type="string" userarchive="y">callsign</callsign>
<selected-server type="string" userarchive="y"/>
<txhost type="string" preserve="y"/>
</multiplay>
<user>
<callsign type="string" preserve="y">Golf Foxtrot Sierra</callsign>
</user>
<performance-monitor>
<enabled type="bool" userarchive="n" preserve="y">false</enabled>
<interval-s type="double" userarchive="n" preserve="y">1.0</interval-s>
</performance-monitor>
<!-- animated jetway options -->
<jetways>
<enable-editor type="bool">false</enable-editor>
<interact-with-multiplay type="bool" userarchive="y">true</interact-with-multiplay>
<debug type="bool">false</debug>
</jetways>
<terrasync preserve="y">
<enabled type="bool" userarchive="y">false</enabled>
<use-built-in-svn type="bool" userarchive="y">true</use-built-in-svn>
<use-svn type="bool" userarchive="n">true</use-svn>
<svn-server userarchive="y">http://terrascenery.googlecode.com/svn/trunk/data/Scenery</svn-server>
<svn-data-server userarchive="y">http://fgfs.goneabitbursar.com/fgfsai/trunk</svn-data-server>
<rsync-server userarchive="n">scenery.flightgear.org::Scenery</rsync-server>
<scenery-dir userarchive="y">
<!-- INTENTIONALLY LEFT BLANK! Do NOT edit.
This (empty) value is the initial/default value only. Actual data is stored/read from
$HOME/.fgfs/autosave.xml. Use command-line option "terrasync-dir", GUI-dialog, or
property browser to configure actual directory. -->
</scenery-dir>
<ext-svn-utility type="string">svn</ext-svn-utility>
<!-- use absolute path if "svn"
isn't on system PATH (external SVN only)-->
<max-errors type="int">10</max-errors>
<!-- abort when too many errors occurred, or -1=don't abort -->
</terrasync>
<flight-recorder>
<default-config type="string">/Aircraft/Generic/flightrecorder/generic-piston-propeller-4.xml</default-config>
</flight-recorder>
<realism>
<dme-fallback-to-loc type="bool">false</dme-fallback-to-loc>
</realism>
<frame-rate-throttle-hz type="double" userarchive="y">0</frame-rate-throttle-hz>
<history>
<enabled type="bool">true</enabled>
</history>
<fgcom>
<enabled type="bool" userarchive="y">false</enabled>
<server type="string" userarchive="y">fgcom.flightgear.org</server>
<show-messages type="bool" userarchive="y">false</show-messages>
<speaker-level type="double" userarchive="y">1.0</speaker-level>
<silence-threshold type="double" userarchive="y">-35.0</silence-threshold>
<register>
<enabled type="bool" userarchive="y">false</enabled>
<username type="string" userarchive="y">guest</username>
<password type="string" userarchive="y">guest</password>
</register>
</fgcom>
<http include="httpd-settings.xml"/>
<tile-cache>
<enable type="bool">false</enable>
</tile-cache>
<time>
<warp-easing type="bool">true</warp-easing>
<warp-easing-method type="string">swing</warp-easing-method>
<warp-easing-duration-secs type="double">10</warp-easing-duration-secs>
</time>
</sim>
<!-- mouse mode -->
<devices>
<status>
<mice>
<mouse n="0">
<mode type="int">0</mode>
</mouse>
</mice>
</status>
</devices>
<!-- Position -->
<position>
<altitude-ft type="double">-9999</altitude-ft>
</position>
<!-- Velocities -->
<velocities>
<speed-north-fps type="double">0.0</speed-north-fps>
<speed-east-fps type="double">0.0</speed-east-fps>
<speed-down-fps type="double">0.0</speed-down-fps>
</velocities>
<!-- Orientation -->
<orientation>
<heading-deg type="double">270</heading-deg>
<roll-deg type="double">0.0</roll-deg>
<pitch-deg type="double">0.424</pitch-deg>
</orientation>
<!-- Environment -->
<environment include="Environment/environment.xml"/>
<controls>
<flight>
<aileron type="double">0.0</aileron>
<aileron-trim type="double">0.0</aileron-trim>
<elevator type="double">0.0</elevator>
<elevator-trim type="double">0.0</elevator-trim>
<rudder type="double">0.0</rudder>
<rudder-trim type="double">0.0</rudder-trim>
<flaps type="double">0.0</flaps>
<flaps-serviceable type="bool">true</flaps-serviceable>
</flight>
<engines>
<engine n="0">
<starter type="bool">false</starter>
<magnetos type="int">0</magnetos>
<throttle type="double">0.0</throttle>
<mixture type="double">1.0</mixture>
<condition type="double">1.0</condition>
<propeller-pitch type="double">1.0</propeller-pitch>
<faults>
<serviceable type="bool">true</serviceable>
<left-magneto-serviceable type="bool">true</left-magneto-serviceable>
<right-magneto-serviceable type="bool">true</right-magneto-serviceable>
<spark-plugs-serviceable type="bool">true</spark-plugs-serviceable>
<oil-pressure-status type="bool">false</oil-pressure-status>
<fuel-pump-serviceable type="bool">true</fuel-pump-serviceable>
</faults>
</engine>
<engine n="1">
<starter type="bool">false</starter>
<magnetos type="int">0</magnetos>
<throttle type="double">0.0</throttle>
<mixture type="double">1.0</mixture>
<condition type="double">1.0</condition>
<propeller-pitch type="double">1.0</propeller-pitch>
<faults>
<serviceable type="bool">true</serviceable>
<left-magneto-serviceable type="bool">true</left-magneto-serviceable>
<right-magneto-serviceable type="bool">true</right-magneto-serviceable>
<spark-plugs-serviceable type="bool">true</spark-plugs-serviceable>
<oil-pressure-status type="bool">false</oil-pressure-status>
<fuel-pump-serviceable type="bool">true</fuel-pump-serviceable>
</faults>
</engine>
<engine n="2">
<starter type="bool">false</starter>
<magnetos type="int">0</magnetos>
<throttle type="double">0.0</throttle>
<mixture type="double">1.0</mixture>
<condition type="double">1.0</condition>
<propeller-pitch type="double">1.0</propeller-pitch>
<faults>
<serviceable type="bool">true</serviceable>
<left-magneto-serviceable type="bool">true</left-magneto-serviceable>
<right-magneto-serviceable type="bool">true</right-magneto-serviceable>
<spark-plugs-serviceable type="bool">true</spark-plugs-serviceable>
<oil-pressure-status type="bool">false</oil-pressure-status>
<fuel-pump-serviceable type="bool">true</fuel-pump-serviceable>
</faults>
</engine>
<engine n="3">
<starter type="bool">false</starter>
<magnetos type="int">0</magnetos>
<throttle type="double">0.0</throttle>
<mixture type="double">1.0</mixture>
<condition type="double">1.0</condition>
<propeller-pitch type="double">1.0</propeller-pitch>
<faults>
<serviceable type="bool">true</serviceable>
<left-magneto-serviceable type="bool">true</left-magneto-serviceable>
<right-magneto-serviceable type="bool">true</right-magneto-serviceable>
<spark-plugs-serviceable type="bool">true</spark-plugs-serviceable>
<oil-pressure-status type="bool">false</oil-pressure-status>
<fuel-pump-serviceable type="bool">true</fuel-pump-serviceable>
</faults>
</engine>
</engines>
<gear>
<brake-left type="double">0.0</brake-left>
<brake-right type="double">0.0</brake-right>
<brake-parking type="double">0.0</brake-parking>
<gear-down type="bool">true</gear-down>
</gear>
<lighting>
<taxi-light type="bool">true</taxi-light>
<landing-lights type="bool">true</landing-lights>
<nav-lights type="bool">true</nav-lights>
<beacon type="bool">true</beacon>
<strobe type="bool">false</strobe>
</lighting>
<anti-ice>
<pitot-heat type="bool">false</pitot-heat>
<engine n="0">
<carb-heat type="bool">false</carb-heat>
</engine>
<engine n="1">
<carb-heat type="bool">false</carb-heat>
</engine>
<engine n="2">
<carb-heat type="bool">false</carb-heat>
</engine>
<engine n="3">
<carb-heat type="bool">false</carb-heat>
</engine>
</anti-ice>
</controls>
<!-- User input devices -->
<input>
<keyboard include="keyboard.xml">
<multikey include="Input/Keyboard/multikey.xml"/>
</keyboard>
<joysticks include="joysticks.xml"/>
<mice include="mice.xml"/>
</input>
<instrumentation>
<!-- Radio settings -->
<comm n="0">
<frequencies>
<selected-mhz type="double">120.500</selected-mhz>
<standby-mhz type="double">118.850</standby-mhz>
</frequencies>
<volume type="double">0.6</volume>
<serviceable type="bool">true</serviceable>
<ptt type="int">0</ptt>
</comm>
<comm n="1">
<frequencies>
<selected-mhz type="double">118.300</selected-mhz>
<standby-mhz type="double">133.775</standby-mhz>
</frequencies>
<volume type="double">0.6</volume>
<serviceable type="bool">true</serviceable>
<ptt type="int">0</ptt>
</comm>
<nav n="0">
<frequencies>
<selected-mhz type="double">115.80</selected-mhz>