Skip to content

Commit

Permalink
Sounds by patten: Doors and Alarms
Browse files Browse the repository at this point in the history
  • Loading branch information
IAHM-COL committed May 24, 2016
1 parent 1fb85bd commit 23448ae
Showing 1 changed file with 114 additions and 0 deletions.
114 changes: 114 additions & 0 deletions Sounds/CitationX-sound.xml
Expand Up @@ -586,6 +586,120 @@
</condition>
</click>

<!-- DOORS -->

<doors>
<name>separation-door-open</name>
<mode>once</mode>
<path>Aircraft/CitationX/Sounds/cabin-door.wav</path>
<condition>
<greater-than>
<property>controls/separation-door/open</property>
<value>0.01</value>
</greater-than>
<less-than>
<property>controls/separation-door/open</property>>
<value>0.99</value>
</less-than>
</condition>
<volume>
<property>sim/signals/fdm-initialized</property>
<factor>1</factor>
</volume>
<position>
<x>-6.6 </x>
<y> 0.0 </y>
<z> 0.6 </z>
</position>
</doors>

<doors>
<name>separation-door-closed</name>
<mode>once</mode>
<path>Aircraft/CitationX/Sounds/cabin-door.wav</path>
<condition>
<and>
<less-than>
<property>controls/separation-door/open</property>>
<value>1</value>
</less-than>
</and>
</condition>
<volume>
<property>sim/signals/fdm-initialized</property>
<factor>1</factor>
</volume>
<position>
<x>-6.6 </x>
<y> 0.0 </y>
<z> 0.6 </z>
</position>
</doors>

<doors>
<name>toilet-door-open</name>
<mode>once</mode>
<path>Aircraft/CitationX/Sounds/cabin-door.wav</path>
<condition>
<greater-than>
<property>controls/toilet-door/open</property>
<value>0.01</value>
</greater-than>
</condition>
<volume>
<property>sim/signals/fdm-initialized</property>
<factor>1</factor>
</volume>
<position>
<x>-0.6 </x>
<y> 0.0 </y>
<z> 0.6 </z>
</position>
</doors>

<doors>
<name>toilet-door-closed</name>
<mode>once</mode>
<path>Aircraft/CitationX/Sounds/cabin-door.wav</path>
<condition>
<and>
<less-than>
<property>controls/toilet-door/open</property>>
<value>1</value>
</less-than>
<greater-than>
<property>controls/toilet-door/open</property>>
<value>0.01</value>
</greater-than>
</and>
</condition>
<volume>
<property>sim/signals/fdm-initialized</property>
<factor>1</factor>
</volume>
<position>
<x>-0.6 </x>
<y> 0.0 </y>
<z> 0.6 </z>
</position>
</doors>


<!-- ALARMS -->
<alarm>
<name>Master warning</name>
<mode>once</mode>
<path>Aircraft/CitationX/Sounds/chime2.wav</path>
<condition>
<and>
<property>instrumentation/annunciators/master-warning</property>
<not>
<property>instrumentation/annunciators/ack-warning</property>
</not>
</and>
</condition>
</alarm>

<warnings>
<name>chime1</name>
<type>avionics</type>
Expand Down

0 comments on commit 23448ae

Please sign in to comment.