Jump to content

Jongco0331

Members
  • Posts

    4
  • Joined

  • Last visited

Posts posted by Jongco0331

  1. I made new Thread to play sound using Clip class. But, when I give Thread#sleep to get fade In, Minecraft Client stops. How can I add new Runnable Thread in forge modding 1.19.2?

     

    
    public class AudioPlayUtil {
    
        public static boolean isPlaying = false;
        public static Clip clip;
    
        public static float volume = 1;
    
        public static void stopWav()
        {
            if(isPlaying)
            {
                isPlaying = false;
                clip.stop();
                FloatControl control = (FloatControl) clip.getControl(FloatControl.Type.MASTER_GAIN);
                control.setValue(control.getMinimum());
            }
        }
        public static void playWav(float fadeInTime, File path)
        {
            if(isPlaying)
            {
                isPlaying = false;
                clip.stop();
                FloatControl control = (FloatControl) clip.getControl(FloatControl.Type.MASTER_GAIN);
                control.setValue(control.getMinimum());
            } else {
                isPlaying = true;
            }
            new Thread(new Runnable() {
                @Override
                public void run() {
                    try {
                        AudioInputStream audioInputStream = AudioSystem.getAudioInputStream(
                                path);
    
                        clip = AudioSystem.getClip();
                        clip.open(audioInputStream);
    
                        FloatControl gainControl = (FloatControl) clip.getControl(FloatControl.Type.MASTER_GAIN);
    
                        float increasing_value = Math.abs(getCurrentVolume(gainControl, (float) ((int)AudioPlayUtil.volume * 100.0D)) / fadeInTime);
    
                        clip.loop(Clip.LOOP_CONTINUOUSLY);
    
                        gainControl.setValue(gainControl.getMinimum());
    
                        clip.start();
    
                        isPlaying = true;
    
                        for(int i = 0; i < (int)fadeInTime; i++)
                        {
                            FloatControl control = (FloatControl) clip.getControl(FloatControl.Type.MASTER_GAIN) ;
                            control.setValue(control.getValue() + increasing_value);
                            Thread.sleep(50);
                        }
                    }
                    catch(Exception e) {
                        e.printStackTrace();
                    }
                }
            }).run();
    
        }
    
        public static float getCurrentVolume(FloatControl floatControl, float volume)
        {
            float a = floatControl.getMaximum() - floatControl.getMinimum();
            return Math.abs(a * (volume/100));
        }
    
    
    }

     

  2. I just set gradlew.

    But, scala-compiler-2.11.1.jar, fastutil-7.1.0.jar are not installed.

    Error Log:

    * What went wrong:
    A problem occurred configuring root project 'one'.
    > Could not resolve all files for configuration ':_compileJava_1'.
       > Could not download scala-compiler.jar (org.scala-lang:scala-compiler:2.11.1)
          > Could not get resource 'https://maven.minecraftforge.net/org/scala-lang/scala-compiler/2.11.1/scala-compiler-2.11.1.jar'.
             > Premature end of Content-Length delimited message body (expected: 13449765; received: 8313560
       > Could not download fastutil.jar (it.unimi.dsi:fastutil:7.1.0)
          > Could not get resource 'https://maven.minecraftforge.net/it/unimi/dsi/fastutil/7.1.0/fastutil-7.1.0.jar'.
             > Premature end of Content-Length delimited message body (expected: 17655579; received: 8843528

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.