forked from artix75/A320neo
-
Notifications
You must be signed in to change notification settings - Fork 5
/
A320-copilot-set.xml
191 lines (179 loc) · 4.89 KB
/
A320-copilot-set.xml
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
<?xml version="1.0" encoding="UTF-8" ?>
<PropertyList>
<sim>
<description>Airbus A320neo With Sharklets and CFM LEAP-X High ByPass Turbofan Engine (co-pilot)</description>
<author>Ampere K Hardraade (3d, FDM), Skyop (systems, instruments, etc.)</author>
<status>beta</status>
<flight-model>null</flight-model>
<model>
<path>Aircraft/A320neo/DualControl/A320-copilot.xml</path>
</model>
<startup>
<splash-texture>Aircraft/A320neo/splash.png</splash-texture>
</startup>
<view>
<name>Pilot View</name>
<internal archive="y">true</internal>
<config>
<x-offset-m archive="y">-0.525</x-offset-m>
<y-offset-m archive="y">2.3635023</y-offset-m>
<z-offset-m archive="y">-13.8829</z-offset-m>
<pitch-offset-deg archive="y">-15.0</pitch-offset-deg>
</config>
</view>
<view n="100">
<name>Gear View</name>
<type>lookfrom</type>
<internal archive="y">false</internal>
<config>
<from-model type="bool">true</from-model>
<x-offset-m archive="y">0</x-offset-m>
<y-offset-m archive="y">-1.5</y-offset-m>
<z-offset-m archive="y">8.5</z-offset-m>
<pitch-offset-deg archive="y">0</pitch-offset-deg>
</config>
</view>
<view n="101">
<name>Passenger View (Economy Class)</name>
<type>lookfrom</type>
<internal archive="y">true</internal>
<config>
<from-model type="bool">true</from-model>
<x-offset-m archive="y">-1.5</x-offset-m>
<y-offset-m archive="y">2.3</y-offset-m>
<z-offset-m archive="y">5</z-offset-m>
<pitch-offset-deg archive="y">0</pitch-offset-deg>
</config>
</view>
<view n="102">
<name>Passenger View (First Class)</name>
<type>lookfrom</type>
<internal archive="y">true</internal>
<config>
<from-model type="bool">true</from-model>
<x-offset-m archive="y">-1.45</x-offset-m>
<y-offset-m archive="y">2.3</y-offset-m>
<z-offset-m archive="y">-8.7</z-offset-m>
<pitch-offset-deg archive="y">0</pitch-offset-deg>
</config>
</view>
<view n="103">
<name>Copilot View</name>
<type>lookfrom</type>
<internal archive="y">true</internal>
<config>
<from-model type="bool">true</from-model>
<x-offset-m archive="y">0.525</x-offset-m>
<y-offset-m archive="y">2.3635023</y-offset-m>
<z-offset-m archive="y">-13.8829</z-offset-m>
<pitch-offset-deg archive="y">-15.0</pitch-offset-deg>
</config>
</view>
<chase-distance-m>-40</chase-distance-m>
<sound>
<path>Aircraft/A320neo/A320-sound.xml</path>
</sound>
<menubar>
<default>
<menu n="100">
<label>Airbus A320neo Copilot</label>
<enabled type="bool">true</enabled>
<!-- Reenabling co-pilot functions:: hkminegod JULY 2015 -->
<item>
<label>Select MP A320neo Pilot</label>
<binding>
<command>nasal</command>
<script>
aircraft_dual_control.pilot_type = "Aircraft/A320neo/Models/A320neo.xml";
dual_control_tools.copilot_dialog.show(aircraft_dual_control.pilot_type);
</script>
</binding>
</item>
</menu>
</default>
</menubar>
<help>
<title>Airbus A320</title>
<key>
<name>Delete</name>
<desc>toggle thrust reversers</desc>
</key>
<key>
<name>Ctrl-b</name>
<desc>toggle speedbrakes/spoilers</desc>
</key>
<key>
<name>w</name>
<desc>walk forward toward view direction</desc>
</key>
<key>
<name>W</name>
<desc>run forward toward view direction</desc>
</key>
<key>
<name>s</name>
<desc>walk backward from view direction</desc>
</key>
</help>
</sim>
<input>
<keyboard>
<key n="119">
<name>w</name>
<desc>Walk forward toward view</desc>
<repeatable type="bool">true</repeatable>
<binding>
<command>nasal</command>
<script>
walk.walk_about(0.1);
</script>
</binding>
</key>
<key n="87">
<name>W</name>
<desc>Run forward toward view</desc>
<repeatable type="bool">true</repeatable>
<binding>
<command>nasal</command>
<script>
walk.walk_about(0.25);
</script>
</binding>
</key>
<key n="115">
<name>s</name>
<desc>Walk backward from view</desc>
<repeatable type="bool">true</repeatable>
<binding>
<command>nasal</command>
<script>
walk.walk_about(-0.1);
</script>
</binding>
</key>
</keyboard>
</input>
<nasal>
<walk>
<file>Aircraft/A320neo/Nasal/walk.nas</file>
</walk>
<!-- Dual control -->
<dual_control_tools>
<file>Aircraft/A320neo/DualControl/dual-control-tools.nas</file>
</dual_control_tools>
<aircraft_dual_control>
<file>Aircraft/A320neo/DualControl/a320-dual-control.nas</file>
</aircraft_dual_control>
<dual_control>
<file>Aircraft/A320neo/DualControl/copilot-dual-control.nas</file>
</dual_control>
</nasal>
<aircraft>
<jetway-pos>
<x-tra>-1.95</x-tra>
<y-rot>0</y-rot>
<z-rot>24</z-rot>
<hood-rot>3</hood-rot>
</jetway-pos>
</aircraft>
</PropertyList>