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_sound_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_sound_init(path) ⇒ Object



222
223
224
# File 'ext/ruby2d/ruby2d-opal.rb', line 222

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

#ext_sound_playObject



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

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

#playObject



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

def play
  ext_sound_play
end