Exemplo n.º 1
0
 public void updateVolume(float volume) {
   if (isPlaying()) {
     float effectiveVolume = volume * _volume;
     if (effectiveVolume > 0) sound.setVolume(effectiveVolume);
     else sound.stop();
   }
 }
Exemplo n.º 2
0
 protected Sound prepareSound() {
   if (sound == null) {
     sound = loadSound(path());
     sound.prepare();
   }
   sound.setVolume(volume.get() * _volume);
   return sound;
 }
Exemplo n.º 3
0
 @Override
 public void release() {
   if (sound != null) {
     if (sound.isPlaying()) sound.stop();
     sound.release();
     sound = null;
   }
 }
Exemplo n.º 4
0
  public void jump() {
    Vec2 linearVelocity = getBody().getLinearVelocity();
    linearVelocity.y = JUMP_SPEED;
    getBody().setLinearVelocity(linearVelocity);

    SOUND_JUMP.play();
  }
Exemplo n.º 5
0
 private void complete() {
   complete = true;
   final Surface surface = surfaceLayer.surface();
   surface.clear();
   surface.drawImage(image, 20, 20, surface.width(), surface.height());
   if (sound != null) {
     sound.play();
   }
 }
Exemplo n.º 6
0
 @Override
 public void update(float delta) {
   super.update(delta);
   if (getBody().getPosition().y > 16) {
     PlayN.log().debug("Fallen!");
     SOUND_OUCH.play();
     dead = true;
   }
 }
Exemplo n.º 7
0
 @Override
 public void contact(PhysicsEntity other) {
   if (other instanceof Spike) {
     PlayN.log().debug("Ouch!");
     SOUND_OUCH.play();
     dead = true;
   } else if (other instanceof Block) {
     Block block = (Block) other;
     if (!block.isCollidable()) {
       exitReached = true;
     }
   }
 }
Exemplo n.º 8
0
    protected void startFadeIn(final float fadeMillis) {
      if (!isPlaying()) prepareSound().play();
      sound.setVolume(0); // start at zero, fade in from there
      _faders.add(
          new Fader() {
            @Override
            public boolean update(int delta) {
              _elapsed += delta;
              float vol = Interpolator.LINEAR.apply(0, _range, _elapsed, fadeMillis);
              updateVolume(vol);
              return (vol >= _range); // we're done when the volume hits the target
            }

            protected final float _range = volume.get();
            protected int _elapsed;
          });
    }
Exemplo n.º 9
0
 @Override
 public boolean isPlaying() {
   return (sound == null) ? false : sound.isPlaying();
 }
Exemplo n.º 10
0
 @Override
 protected Sound prepareSound() {
   Sound sound = super.prepareSound();
   sound.setLooping(true);
   return sound;
 }