Java-Gaming.org
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
Featured games (78)
games approved by the League of Dukes
Games in Showcase (408)
games submitted by our members
Games in WIP (293)
games currently in development
News: Read the Java Gaming Resources, or peek at the official Java tutorials
 
    Home     Help   Search   Login   Register   
Pages: [1]
  ignore  |  Print  
  Playing wav files  (Read 711 times)
0 Members and 1 Guest are viewing this topic.
Offline appel

JGO Ninja


Medals: 35
Projects: 5


I always win!


« Posted 2005-10-28 18:04:55 »

Hey,

I found this wav file that is being used in another game. It's a "shooting-sound" wav file, meaning that it plays once for everytime you shoot. It plays fine in the game it's being used in, but when I try to use it in my game it, to play it everytime I shoot, then the sound seems to be crippled or something. Don't know how to describe it better other than it plays smoothly in the other game, but if I shoot 2 shots in my game then the audio will somehow *fail*.

I'm using the spaceinvaders101 code to play the wave file.

Any ideas?

Check out the 4K competition @ www.java4k.com
Check out GAMADU (my own site) @ http://gamadu.com/
Offline Eli Delventhal
« League of Dukes »

JGO Kernel


Medals: 39
Projects: 12


Game Engineer


« Reply #1 - Posted 2005-10-28 19:35:42 »

You're going to want to use java.applet.AudioClip to play your sounds. I find it's definitely the best way in Java2D. It's fairly simple. Basically you create the AudioClip and then call one of three methods.

AudioClip shot  = new AudioClip("sounds/shot.wav");
shot.play(); //Plays the sound once
shot.stop(); //stops playing the sound
shot.loop(); //keeps playing the sound until stopped

And that should work fine, very simply. It sounds like you may be getting problems because you have not preloaded the sound. Do so by making a SoundManager class that holds all your sounds.

1  
2  
3  
4  
5  
6  
7  
8  
9  
10  
11  
12  
13  
14  
15  
16  
17  
18  
19  
20  
21  
22  
23  
24  
25  
26  
27  
28  
29  
import java.applet.AudioClip;
public class SoundManager
{
    private AudioClip[] sounds;
    public static final int SHOT_SND = 0;
    public static final int DIE_SND = 1;

    public SoundManager()
    {
        sounds = new AudioClip[2];
        sounds[SHOT_SND] = new AudioClip("sounds/shot.wav");
        sounds[DIE_SND] = new AudioClip("sounds/die.aif");
    }

    public void play(int sound)
    {
        sounds[sound].play();
    }

    public void stop(int sound)
    {
        sounds[sound].stop();
    }

    public void loop(int sound)
    {
        sounds[sound].loop();
    }
}


Understand? Make sense?

See my work:
OTC Software
Offline appel

JGO Ninja


Medals: 35
Projects: 5


I always win!


« Reply #2 - Posted 2005-10-28 19:43:45 »

I'll try that Smiley thanks!

Check out the 4K competition @ www.java4k.com
Check out GAMADU (my own site) @ http://gamadu.com/
Pages: [1]
  ignore  |  Print  
 
 
You cannot reply to this message, because it is very, very old.

Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars!
 
Play Revenge of the Titans! The situation is critical. We need fancy commanders to defend Earth, the moon, Mars and Titan!

Add your game by posting it in the WIP section,
or publish it in Showcase.

The first screenshot will be displayed as a thumbnail.

The invasion has landed! On Mars! And you're there to beat 'em!
cubemaster21 (142 views)
2013-05-17 21:29:12

alaslipknot (150 views)
2013-05-16 21:24:48

gouessej (181 views)
2013-05-16 00:53:38

gouessej (174 views)
2013-05-16 00:17:58

theagentd (184 views)
2013-05-15 15:01:13

theagentd (169 views)
2013-05-15 15:00:54

StreetDoggy (213 views)
2013-05-14 15:56:26

kutucuk (237 views)
2013-05-12 17:10:36

kutucuk (236 views)
2013-05-12 15:36:09

UnluckyDevil (241 views)
2013-05-12 05:09:57
Complex number cookbook
by Roquen
2013-04-24 12:47:31

2D Dynamic Lighting
by Oskuro
2013-04-17 16:46:12

2D Dynamic Lighting
by Oskuro
2013-04-17 16:45:57

2D Dynamic Lighting
by Oskuro
2013-04-17 16:23:20

Noise (bandpassed white)
by Roquen
2013-04-05 17:36:01

Noise (bandpassed white)
by Roquen
2013-04-03 16:17:38

Java Data structures
by Roquen
2013-03-29 13:21:12

Topic Request
by kutucuk
2013-03-22 21:42:01
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines | Managed by Enhanced Four Valid XHTML 1.0! Valid CSS!
Page created in 0.099 seconds with 20 queries.