我有两个问题 - (1)如何播放小的声音片段,例如飞碟飞行,子弹射击,用子弹击中的东西等。非常短,但实时,声音。我喜欢旧的街机声音,所以它们不一定是大的.wav。我希望尽可能少地运行这些代码。这导致了我的第二个问题...... (2)有谁知道在哪里找到这些声音片段。
一点点,我在这里看到了一些答案,但它们似乎不完整。如果你有一个直接的通用代码,那就太好了!我对声音知之甚少,因为我在游戏写作中通常不会这么做。
感谢您提供的所有信息 - 我非常感谢!
答案 0 :(得分:1)
我不知道API部分,但对于声音尝试www.sounddogs.com
答案 1 :(得分:1)
使用javax.sound,可以产生简单的声音效果。
请参阅Produce special sound effect
编辑:使用线程(或不使用)
import javax.sound.sampled.*;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class AppWithSound2 extends JFrame implements ActionListener {
JButton b1;
JButton b2;
private static final long serialVersionUID = 1L;
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
AppWithSound2 app = new AppWithSound2();
app.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
app.startApp();
}
});
}
public AppWithSound2() {
initGUI();
}
private void startApp() {
setVisible(true);
}
private void initGUI() {
setLayout(new FlowLayout());
setSize(300, 200);
b1 = new JButton("Sound with no thread");
b2 = new JButton("Sound with thread");
b1.addActionListener(this);
b2.addActionListener(this);
add(b1);
add(b2);
}
public void actionPerformed(ActionEvent e) {
if (e.getSource() == b1) {
LaserSound.laser();
}
if (e.getSource() == b2) {
new LaserSound().start();
}
}
}
class LaserSound extends Thread {
public void run() {
LaserSound.laser();
}
public static void laser() {
int repeat = 10;
try {
AudioFormat af = new AudioFormat(8000f, // sampleRate
8, // sampleSizeInBits
1, // channels
true, // signed
false); // bigEndian
SourceDataLine sdl;
sdl = AudioSystem.getSourceDataLine(af);
sdl.open(af);
sdl.start();
byte[] buf = new byte[1];
int step;
for (int j = 0; j < repeat; j++) {
step = 10;
for (int i = 0; i < 2000; i++) {
buf[0] = ((i % step > 0) ? 32 : (byte) 0);
if (i % 250 == 0)
step += 2;
sdl.write(buf, 0, 1);
}
Thread.sleep(200);
}
sdl.drain();
sdl.stop();
sdl.close();
} catch (Exception e) {
e.printStackTrace();
}
}
}
答案 2 :(得分:0)
答案 3 :(得分:0)
好的伙计们 - 这是我在等待的时候想出来的。当我的问题得到解答时,我以为我已经设置了Stack Overflow设置给我发电子邮件,所以我觉得我还没有得到答案。因此,我继续自己。 这是我发现的有效方法。
(1)使用以下方法创建实例:
private PlaySounds lasershot = new PlaySounds("snd/lasershot.wav");
private PlaySounds test = new PlaySounds("snd/cash_register.au");
(2)并创建文件PlaySounds.java(或任何你喜欢的) import java.io. ; import javax.media。;
公共课PlaySounds { 私人球员; 私人文件;
// Create a player for each of the sound files
public PlaySounds(String filename)
{
file = new File(filename);
createPlayer();
}
private void createPlayer()
{
if ( file == null )
return;
try
{
// create a new player and add listener
player = Manager.createPlayer( file.toURI().toURL() );
//player.addController( (Controller) new EventHandler(player, null, null, null) );
// player.start(); // start player
}
catch ( Exception e )
{
}
}
public void playSound()
{
// start player
player.start();
// Clear player
player = null;
// Re-create player
createPlayer();
}
} //文件结尾PlaySounds.java
(3)要使用,请将这些插入您想要的声音:
lasershot.playSound();
test.playSound();
这是我发现的最短/最甜蜜的。非常容易使用,并播放.au和.wav文件。
我非常感谢你所有的帮助。