为什么我会听到声音滞后? - java

我正在用Java开发游戏,并尝试为其编写由两个类文件组成的简单声音系统:一个处理它们的文件,一个为每个加载的声音文件的文件。

我的问题是,每隔一段时间我就会遇到巨大的延迟,这意味着一秒钟或一秒钟的完全停止,这确实打断了游戏。我怀疑是垃圾控制,但我不确定。我对事实唯一了解的是问题的根源在于声音。

这是我的SoundHandler.java:

(就我所知,声音的加载无关紧要,与问题无关)

package Classes;

import java.io.*;

import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.Clip;
import javax.sound.sampled.LineEvent;
import javax.sound.sampled.LineListener;
import javax.sound.sampled.LineUnavailableException;
import javax.sound.sampled.FloatControl;

public class SoundHandler {

Sound Sounds[] = new Sound[1];

public SoundHandler()
{
    if(!LoadSounds("Sounds.cfg"))
        System.out.print("Failiure upon loading sounds!");
}

public boolean LoadSounds(String FileName)
{
    String line = "";
    String SoundName = "";
    String SoundFile = "";
    String[] token3 = new String[10];
    boolean EndOfFile = false;
    int LineCount = 0;
    BufferedReader characterfile = null;

    try
    {
        characterfile = new BufferedReader(new FileReader(GameMain.GameFolder+"Data/"+FileName));
    }
        catch(FileNotFoundException fileex)
        {
            System.out.println(FileName+": file not found.");
            return false;
        }
    while(!EndOfFile && line != null)
    {
        try
        {
            line = characterfile.readLine();
            if(line != null)
            {
                if(line.indexOf("//") == -1 && !line.equals(""))
                    LineCount++;
            }
        }
            catch(IOException ioexception)
            {
                if(LineCount == 0)
                {
                    System.out.println(FileName+": error loading file.");
                    return false;
                }
                EndOfFile = true;
            }
    }
    try { characterfile.close(); } catch(IOException ioexception) { characterfile = null; }

    Sounds = new Sound[LineCount];
    EndOfFile = false;
    LineCount = 0;

    try
    {
        characterfile = new BufferedReader(new FileReader(GameMain.GameFolder+"Data/"+FileName));
    }
        catch(FileNotFoundException fileex)
        {
            System.out.println(FileName+": file not found.");
            return false;
        }

    try
    {
        line = characterfile.readLine();
        if(line != null)
            if(line.indexOf("//") == -1 && !line.equals(""))
                LineCount++;
    }
        catch(IOException ioexception) { }

    while(EndOfFile == false && line != null) {
        if(line.indexOf("//") == -1 && !line.equals(""))
        {
            line = line.trim();
            line = line.replaceAll("\t\t", "\t");
            line = line.replaceAll("\t\t", "\t");
            line = line.replaceAll("\t\t", "\t");
            line = line.replaceAll("\t\t", "\t");

            int Spot = line.indexOf("\t");
            SoundName = line.substring(0,Spot);
            SoundFile = line.substring(Spot+1);
            Sounds[LineCount-1] = new Sound(SoundName,SoundFile);
        }

            try {
                    line = characterfile.readLine();
                    if(line != null)
                        if(line.indexOf("//") == -1 && !line.equals(""))
                            LineCount++;
            } catch(IOException ioexception1) { EndOfFile = true; }
    }
    try { characterfile.close(); } catch(IOException ioexception) { }
    return true;
}

public File GetSoundFile(String Name)
{
    File result = null;
    for(int i = 0; i < Sounds.length; i++)
        if(Sounds[i].Name.equals(Name))
            result = Sounds[i].File;
    return result;
}

public Sound GetSound(String Name)
{
    Sound result = null;
    for(int i = 0; i < Sounds.length; i++)
        if(Sounds[i].Name.equals(Name))
            result = Sounds[i];
    return result;
}

public int GetSoundID(String Name)
{
    int result = 0;
    for(int i = 0; i < Sounds.length; i++)
        if(Sounds[i].Name.equals(Name))
            result = i;
    return result;
}

Double MasterVolume = 0.75;

public float CalcVolume(double Vol)
{
    float result = 0f;
    result = -40.0f + (float)(MasterVolume*Vol*40);
    if(result < -40.0f)
        result = -40.0f;
    if(result > 0.0f)
        result = 0.0f;
    return result;
}

public boolean PlaySound(String SoundName, double Vol)
{
    int ID = GetSoundID(SoundName);

    try
    {
        Clip CurrentClip;
        Sounds[ID].Reset(false);
        CurrentClip = (Clip) AudioSystem.getLine(Sounds[ID].info);
        CurrentClip.addLineListener(new LineListener() {
            public void update(LineEvent event) {
                if (event.getType() == LineEvent.Type.STOP) {
                    event.getLine().close();
                }
            }
        });
        CurrentClip.open(Sounds[ID].sound);

        FloatControl Volume;
        Volume = (FloatControl) CurrentClip.getControl(FloatControl.Type.MASTER_GAIN);
        Volume.setValue(CalcVolume(Vol));
        CurrentClip.start();
    }
    catch(LineUnavailableException e) { e.printStackTrace(); }
    catch(IOException e) { e.printStackTrace(); }

    return true;
}
}

这是我的Sound.java:

package Classes;

import java.io.File;
import java.io.IOException;

import javax.sound.sampled.AudioInputStream;
import javax.sound.sampled.AudioSystem;
import javax.sound.sampled.UnsupportedAudioFileException;
import javax.sound.sampled.Clip;
import javax.sound.sampled.DataLine;

public class Sound {

public String Name = "";
public File File = null;

AudioInputStream sound;
DataLine.Info info;
Clip clip;

public Sound(String iName, String FileName)
{
    Name = iName;
    File = new File(GameMain.GameFolder+"Sound/"+FileName+".wav");
    Reset(true);
}

public void Reset(boolean init)
{
    try
    {
        if(!init)
            sound.close();
        sound = AudioSystem.getAudioInputStream(File);
        info = new DataLine.Info(Clip.class, sound.getFormat());
    }
    catch(IOException e) { e.printStackTrace(); }
    catch(UnsupportedAudioFileException e) { e.printStackTrace(); }
}
}

我试图寻找一种在游戏中实现声音的一般方法,我遇到的大多数功能都没有一次运行同一声音文件的多个实例,这就是我到目前为止所要做的。我确定特别是在加载代码中存在一些小小的效率低下的地方,但是肯定有一些漏失之处。也欢迎使用自定义GC的任何提示。
提前致谢。

参考方案

在Java Oracle网站上研究并发线程可能会更容易...我可以找到一个链接。有多种方法可以将线程同步在一起,并且确实有示例。

Oracle Concurrency Documenation! ->> Object Syncing

Java Double与BigDecimal - java

我正在查看一些使用双精度变量来存储(360-359.9998779296875)结果为0.0001220703125的代码。 double变量将其存储为-1.220703125E-4。当我使用BigDecimal时,其存储为0.0001220703125。为什么将它双重存储为-1.220703125E-4? 参考方案 我不会在这里提及精度问题,而只会提及数字…

当回复有时是一个对象有时是一个数组时,如何在使用改造时解析JSON回复? - java

我正在使用Retrofit来获取JSON答复。这是我实施的一部分-@GET("/api/report/list") Observable<Bills> listBill(@Query("employee_id") String employeeID); 而条例草案类是-public static class…

Java-父类正在从子类中调用方法? - java

抱歉,我还是编码的新手,可能还没有掌握所有术语。希望您仍然能理解我的问题。我想得到的输出是:"Cost for Parent is: 77.77" "Cost for Child is: 33.33" 但是,我得到这个:"Cost for Parent is: 33.33" "Cost f…

Java Map,如何将UTF-8字符串正确放置到地图? - java

我有一个地图,LinkedHashMap更确切地说。我想在上面放一个字符串对象。然后,我读取此值以查看实际存储的内容。字符串本身具有非ASCII字符(西里尔文,韩文等)。将其放到地图上然后阅读后,这些字符将替换为??? s。一些代码:Map obj = new LinkedHashMap(); System.out.println("name: &…

HIbernate创建数据库表 - java

我正在学习JPA-Hibernate。我正在关注这个article在Dog.java中,它被称为@Table(name = "dog")。 在persistence.xml中,我有以下内容<property name="hibernate.hbm2ddl.auto" value="create"…