aboutsummaryrefslogtreecommitdiff
path: root/sounds
diff options
context:
space:
mode:
authorAlTheKiller <AlTheKiller@svn>2009-09-23 01:49:50 +0000
committerAlTheKiller <AlTheKiller@svn>2009-09-23 01:49:50 +0000
commit45285e8a9300cd754a760560640b75b09f98035e (patch)
treead9f093885ad5c98e9dd4156674e7691c22ed0a2 /sounds
step 3/4: Move linuxport to trunk. How'd I get roped into this?
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@23097 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'sounds')
-rw-r--r--sounds/Bursting Bubbles/nav.wavbin0 -> 29444 bytes
-rw-r--r--sounds/Bursting Bubbles/sounds.xml61
2 files changed, 61 insertions, 0 deletions
diff --git a/sounds/Bursting Bubbles/nav.wav b/sounds/Bursting Bubbles/nav.wav
new file mode 100644
index 0000000000..4cd149a6ee
--- /dev/null
+++ b/sounds/Bursting Bubbles/nav.wav
Binary files differ
diff --git a/sounds/Bursting Bubbles/sounds.xml b/sounds/Bursting Bubbles/sounds.xml
new file mode 100644
index 0000000000..9a9b3ce5c8
--- /dev/null
+++ b/sounds/Bursting Bubbles/sounds.xml
@@ -0,0 +1,61 @@
+<!-- This file contains the mapping of actions to sounds -->
+
+<!-- The <actions> section contains global mapping -->
+
+<!-- To map a action to a sound, add a block like this to <actions>: -->
+<!-- <action> -->
+<!-- <name>left</name> -->
+<!-- <file>cursor.wav</file> -->
+<!-- </action> -->
+<!-- Where <name> specifies the action to map a sound to and <file> the wav -->
+<!-- file to play when the action occurs. -->
+
+<!-- Also window specific sound can be played -->
+
+<!-- To map a sound to a window, add a block like this to <windows>: -->
+<!-- <window> -->
+<!-- <name>infodialog</name> -->
+<!-- <activate>notify.wav</activate> -->
+<!-- <deactivate>out.wav</deactivate> -->
+<!-- </window> -->
+<!-- Where <name> specifies the window to map a sound to -->
+<!-- <activate> and <deactivate> are the events a sound can be mapped to -->
+<!-- by setting the file to play. -->
+
+<!-- Note: Only wav files are supported -->
+
+<sounds>
+ <actions>
+ <action>
+ <name>left</name>
+ <file>nav.wav</file>
+ </action>
+ <action>
+ <name>right</name>
+ <file>nav.wav</file>
+ </action>
+ <action>
+ <name>up</name>
+ <file>nav.wav</file>
+ </action>
+ <action>
+ <name>down</name>
+ <file>nav.wav</file>
+ </action>
+ <action>
+ <name>select</name>
+ <file>nav.wav</file>
+ </action>
+ <action>
+ <name>previousmenu</name>
+ <file>nav.wav</file>
+ </action>
+ </actions>
+
+ <windows>
+ <window>
+ <name>infodialog</name>
+ <activate>nav.wav</activate>
+ </window>
+ </windows>
+</sounds>