Examples of MonolithWAV


Examples of com.pointcliki.dizgruntled.rez.MonolithWAV

    }
  }

  public void playSound(String string) {
    if (!GruntzGame.instance().mute()) {
      new MonolithWAV(rez().file(string, "wav")).sound().play(1, 0.2f);
    }
  }
View Full Code Here

Examples of com.pointcliki.dizgruntled.rez.MonolithWAV

        sound = "ACKNOWLEDGE/SELECTGRUNT1" + ((char) ((int) Math.floor(Math.random() * 11) + 65));
      } else {
        int r = (int) Math.floor(Math.random() * 11) + 65;
        sound = "ENEMYSELECT/SELECTGRUNT" + (char) r;
      }
      MonolithWAV wav = new MonolithWAV(GruntzGame.resourceManager().voicez().file("VOICES/" + sound, "wav"));
      speak(wav.sound());
    }
    super.select();
  }
View Full Code Here

Examples of com.pointcliki.dizgruntled.rez.MonolithWAV

    fVoice = s;
    if (!GruntzGame.instance().mute() && fVoice != null) fVoice.play(1, 0.2f);
  }
 
  public void speak(String s) {
    MonolithWAV wav = new MonolithWAV(GruntzGame.resourceManager().voicez().file("VOICES/" + s, "wav"));
    speak(wav.sound());
  }
View Full Code Here

Examples of com.pointcliki.dizgruntled.rez.MonolithWAV

 
  protected void doSquashDeath() {
    rawAnimate("DEATHZ/SQUASH", "DEATHZ/SQUASH");
    order(-1000);
    GruntzGame.resourceManager().playSound("GRUNTZ/SOUNDZ/DEATHZ/DEATHZSQUASH1A");
    speak(new MonolithWAV(GruntzGame.resourceManager().voicez().file("VOICES/DEATHZ/EXPLODEA", "wav")).sound());
  }
View Full Code Here

Examples of com.pointcliki.dizgruntled.rez.MonolithWAV

       
      }, fAnimation.frameDuration());
     
      fCollider.cancel();
     
      new MonolithWAV(GruntzGame.resourceManager().rez().file(dieSound, "ani")).sound().play();
      return;   
    }
   
    if (traits.contains("downArrow") && !fDir.equals(GridCoordinate.SOUTH)) {
      fDir = GridCoordinate.SOUTH;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.