viking-bloopsaphone 0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/COPYING +27 -0
- data/README +172 -0
- data/c/bloopsaphone.c +596 -0
- data/c/bloopsaphone.h +154 -0
- data/c/notation.c +1656 -0
- data/c/threads.h +46 -0
- data/ext/ruby/extconf.rb +15 -0
- data/ext/ruby/rubyext.c +332 -0
- data/ext/ruby/test.rb +41 -0
- data/ext/ruby/test_load.rb +25 -0
- data/sounds/dart.blu +10 -0
- data/sounds/error.blu +13 -0
- data/sounds/ice.blu +5 -0
- data/sounds/jump.blu +8 -0
- data/sounds/pogo.blu +19 -0
- data/sounds/stun.blu +6 -0
- metadata +70 -0
data/sounds/dart.blu
ADDED
data/sounds/error.blu
ADDED
data/sounds/ice.blu
ADDED
data/sounds/jump.blu
ADDED
data/sounds/pogo.blu
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
type square
|
2
|
+
volume 0.977
|
3
|
+
punch 0.190
|
4
|
+
sustain 0.165
|
5
|
+
slide 0.100
|
6
|
+
dslide 0.030
|
7
|
+
square 0.048
|
8
|
+
sweep -0.055
|
9
|
+
vibe 0.437
|
10
|
+
vspeed 0.310
|
11
|
+
lpf 0.355
|
12
|
+
resonance 0.185
|
13
|
+
hpf 0.205
|
14
|
+
hsweep 0.255
|
15
|
+
arp 0.677
|
16
|
+
aspeed 0.275
|
17
|
+
phase 0.200
|
18
|
+
psweep -0.565
|
19
|
+
repeat 0.500
|
data/sounds/stun.blu
ADDED
metadata
ADDED
@@ -0,0 +1,70 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: viking-bloopsaphone
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: "0.4"
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- why the lucky stiff
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
|
12
|
+
date: 2009-02-12 00:00:00 -08:00
|
13
|
+
default_executable:
|
14
|
+
dependencies: []
|
15
|
+
|
16
|
+
description: arcade sounds and chiptunes
|
17
|
+
email: why@ruby-lang.org
|
18
|
+
executables: []
|
19
|
+
|
20
|
+
extensions:
|
21
|
+
- ext/ruby/extconf.rb
|
22
|
+
extra_rdoc_files:
|
23
|
+
- README
|
24
|
+
- COPYING
|
25
|
+
files:
|
26
|
+
- COPYING
|
27
|
+
- README
|
28
|
+
- c/bloopsaphone.c
|
29
|
+
- c/bloopsaphone.h
|
30
|
+
- c/notation.c
|
31
|
+
- c/threads.h
|
32
|
+
- ext/ruby/extconf.rb
|
33
|
+
- ext/ruby/rubyext.c
|
34
|
+
- ext/ruby/test.rb
|
35
|
+
- ext/ruby/test_load.rb
|
36
|
+
- sounds/dart.blu
|
37
|
+
- sounds/error.blu
|
38
|
+
- sounds/ice.blu
|
39
|
+
- sounds/jump.blu
|
40
|
+
- sounds/pogo.blu
|
41
|
+
- sounds/stun.blu
|
42
|
+
has_rdoc: false
|
43
|
+
homepage: http://github.com/why/bloopsaphone
|
44
|
+
licenses:
|
45
|
+
post_install_message:
|
46
|
+
rdoc_options: []
|
47
|
+
|
48
|
+
require_paths:
|
49
|
+
- lib
|
50
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: "0"
|
55
|
+
version:
|
56
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
57
|
+
requirements:
|
58
|
+
- - ">="
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: "0"
|
61
|
+
version:
|
62
|
+
requirements: []
|
63
|
+
|
64
|
+
rubyforge_project:
|
65
|
+
rubygems_version: 1.3.5
|
66
|
+
signing_key:
|
67
|
+
specification_version: 2
|
68
|
+
summary: arcade sounds and chiptunes
|
69
|
+
test_files: []
|
70
|
+
|