use zoop
authorNeil <neil@dip.sun.ac.za>
Thu, 15 May 2014 19:57:25 +0000 (21:57 +0200)
committerNeil <neil@dip.sun.ac.za>
Thu, 15 May 2014 20:11:49 +0000 (22:11 +0200)
data/sounds/SOURCES.txt
data/sounds/zoop.ogg [new file with mode: 0644]
naja/widgets/info_area.py

index 76ac231057f09a41bbacd984435a0c09b8532da4..028701bad8bb02a9b0c305ab7834636e7fa0223c 100644 (file)
@@ -14,7 +14,7 @@ change_action.ogg
 
 Notes:
    Generated by: tools/gen_sound.py 400 0.25 ; oggenc -o change_action.ogg -r beep1000.pcm
-   Generate by Neil Muller, May 2014
+   Generated by Neil Muller, May 2014
    License: MIT-style permissive license - see LICENSE.txt
 
 error.ogg
@@ -22,7 +22,7 @@ error.ogg
 
 Notes:
    Generated by: tools/gen_sound.py 1000 0.25 ; oggenc -o error.ogg -r beep1000.pcm
-   Generate by Neil Muller, May 2014
+   Generated by Neil Muller, May 2014
    License: MIT-style permissive license - see LICENSE.txt
 
 startup.ogg
@@ -32,5 +32,17 @@ Notes:
    Generated by: tools/gen_sound.py 200 0.25 ; tools/gen_sound.py 400 0.25 ; tools/gen_sound.py 600 0.25 ; tools/gen_sound.py 800 0.25 ;
                  cat beep200.pcm beep400.pcm beep600.pcm beep800.pcm > startup.pcm ;
                  oggenc -o startup.ogg -r startup.pcm
-   Generate by Neil Muller, May 2014
+   Generated by Neil Muller, May 2014
+   License: MIT-style permissive license - see LICENSE.txt
+
+
+zoop.ogg
+--------
+
+Notes:
+   Generated by:
+        for ((j=500; $j < 800; j= $j+20 )); do python ../../tools/gen_sound.py $j 0.01 50; done
+        cat beep5??.pcm beep6??.pcm  beep7??.pcm > zoop.pcm
+        oggenc -o zoop.ogg -r zoop.pcm
+   Generated by Neil Muller, May 2014
    License: MIT-style permissive license - see LICENSE.txt
diff --git a/data/sounds/zoop.ogg b/data/sounds/zoop.ogg
new file mode 100644 (file)
index 0000000..bee8aeb
Binary files /dev/null and b/data/sounds/zoop.ogg differ
index 934bbc8fc5457dbf3d81b0e920fe9cd23d541c51..2f59c753c04ae8f33599b180da0376f09648620e 100644 (file)
@@ -124,7 +124,7 @@ class InfoAreaWidget(Widget):
             chosen = (chosen + step) % num_actions
             action = self.card.actions[chosen]
             if not viable_only or action.check_available(player):
-                sound.play_sound('change_action.ogg', volume=0.05)
+                sound.play_sound('zoop.ogg', volume=0.05)
                 self.chosen = chosen
 
     def prev_action(self, viable_only=False):