Class: Ruby2D::Sound

Inherits:
Object
  • Object
show all
Defined in:
lib/ruby2d/sound.rb,
ext/ruby2d/ruby2d-opal.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ Sound

Returns a new instance of Sound.



9
10
11
12
13
14
15
16
17
18
19
# File 'lib/ruby2d/sound.rb', line 9

def initialize(path)

  unless RUBY_ENGINE == 'opal'
    unless File.exists? path
      raise Error, "Cannot find audio file `#{path}`"
    end
  end

  @path = path
  ext_init(path)
end

Instance Attribute Details

#dataObject

Returns the value of attribute data.



6
7
8
# File 'lib/ruby2d/sound.rb', line 6

def data
  @data
end

#pathObject (readonly)

Returns the value of attribute path.



7
8
9
# File 'lib/ruby2d/sound.rb', line 7

def path
  @path
end

Instance Method Details

#ext_init(path) ⇒ Object



227
228
229
# File 'ext/ruby2d/ruby2d-opal.rb', line 227

def ext_init(path)
  `#{self}.data = S2D.CreateSound(path);`
end

#ext_playObject



231
232
233
# File 'ext/ruby2d/ruby2d-opal.rb', line 231

def ext_play
  `S2D.PlaySound(#{self}.data);`
end

#playObject



21
22
23
# File 'lib/ruby2d/sound.rb', line 21

def play
  ext_play
end