From dc3df3edd5843bde0c1335d6a8e460b2c832aa48 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Sat, 17 Jun 2017 08:12:18 +0300 Subject: full project files --- .../client/audio/ISound.AttenuationType.html | 334 ++++++++++++ javadoc/net/minecraft/client/audio/ISound.html | 335 ++++++++++++ .../client/audio/ISoundEventAccessor.html | 221 ++++++++ .../net/minecraft/client/audio/ITickableSound.html | 242 +++++++++ .../net/minecraft/client/audio/MovingSound.html | 353 +++++++++++++ .../client/audio/MovingSoundMinecart.html | 326 ++++++++++++ .../client/audio/MovingSoundMinecartRiding.html | 328 ++++++++++++ .../client/audio/MusicTicker.MusicType.html | 420 ++++++++++++++++ .../net/minecraft/client/audio/MusicTicker.html | 282 +++++++++++ .../minecraft/client/audio/PositionedSound.html | 560 +++++++++++++++++++++ .../client/audio/PositionedSoundRecord.html | 344 +++++++++++++ .../net/minecraft/client/audio/SoundCategory.html | 440 ++++++++++++++++ .../minecraft/client/audio/SoundEventAccessor.html | 246 +++++++++ .../client/audio/SoundEventAccessorComposite.html | 325 ++++++++++++ .../net/minecraft/client/audio/SoundHandler.html | 480 ++++++++++++++++++ .../client/audio/SoundList.SoundEntry.Type.html | 334 ++++++++++++ .../client/audio/SoundList.SoundEntry.html | 420 ++++++++++++++++ javadoc/net/minecraft/client/audio/SoundList.html | 325 ++++++++++++ .../client/audio/SoundListSerializer.html | 267 ++++++++++ .../net/minecraft/client/audio/SoundManager.html | 441 ++++++++++++++++ .../net/minecraft/client/audio/SoundPoolEntry.html | 337 +++++++++++++ .../net/minecraft/client/audio/SoundRegistry.html | 315 ++++++++++++ .../net/minecraft/client/audio/package-frame.html | 46 ++ .../minecraft/client/audio/package-summary.html | 237 +++++++++ .../net/minecraft/client/audio/package-tree.html | 179 +++++++ 25 files changed, 8137 insertions(+) create mode 100644 javadoc/net/minecraft/client/audio/ISound.AttenuationType.html create mode 100644 javadoc/net/minecraft/client/audio/ISound.html create mode 100644 javadoc/net/minecraft/client/audio/ISoundEventAccessor.html create mode 100644 javadoc/net/minecraft/client/audio/ITickableSound.html create mode 100644 javadoc/net/minecraft/client/audio/MovingSound.html create mode 100644 javadoc/net/minecraft/client/audio/MovingSoundMinecart.html create mode 100644 javadoc/net/minecraft/client/audio/MovingSoundMinecartRiding.html create mode 100644 javadoc/net/minecraft/client/audio/MusicTicker.MusicType.html create mode 100644 javadoc/net/minecraft/client/audio/MusicTicker.html create mode 100644 javadoc/net/minecraft/client/audio/PositionedSound.html create mode 100644 javadoc/net/minecraft/client/audio/PositionedSoundRecord.html create mode 100644 javadoc/net/minecraft/client/audio/SoundCategory.html create mode 100644 javadoc/net/minecraft/client/audio/SoundEventAccessor.html create mode 100644 javadoc/net/minecraft/client/audio/SoundEventAccessorComposite.html create mode 100644 javadoc/net/minecraft/client/audio/SoundHandler.html create mode 100644 javadoc/net/minecraft/client/audio/SoundList.SoundEntry.Type.html create mode 100644 javadoc/net/minecraft/client/audio/SoundList.SoundEntry.html create mode 100644 javadoc/net/minecraft/client/audio/SoundList.html create mode 100644 javadoc/net/minecraft/client/audio/SoundListSerializer.html create mode 100644 javadoc/net/minecraft/client/audio/SoundManager.html create mode 100644 javadoc/net/minecraft/client/audio/SoundPoolEntry.html create mode 100644 javadoc/net/minecraft/client/audio/SoundRegistry.html create mode 100644 javadoc/net/minecraft/client/audio/package-frame.html create mode 100644 javadoc/net/minecraft/client/audio/package-summary.html create mode 100644 javadoc/net/minecraft/client/audio/package-tree.html (limited to 'javadoc/net/minecraft/client/audio') diff --git a/javadoc/net/minecraft/client/audio/ISound.AttenuationType.html b/javadoc/net/minecraft/client/audio/ISound.AttenuationType.html new file mode 100644 index 0000000..7d73da7 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/ISound.AttenuationType.html @@ -0,0 +1,334 @@ + + + + + +ISound.AttenuationType (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Enum ISound.AttenuationType

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      LINEAR 
      NONE 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intgetTypeInt() 
      static ISound.AttenuationTypevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static ISound.AttenuationType[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static ISound.AttenuationType[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (ISound.AttenuationType c : ISound.AttenuationType.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static ISound.AttenuationType valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
      • +
      + + + +
        +
      • +

        getTypeInt

        +
        public int getTypeInt()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/ISound.html b/javadoc/net/minecraft/client/audio/ISound.html new file mode 100644 index 0000000..d422fd0 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/ISound.html @@ -0,0 +1,335 @@ + + + + + +ISound (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Interface ISound

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getPositionedSoundLocation

        +
        ResourceLocation getPositionedSoundLocation()
        +
      • +
      + + + +
        +
      • +

        canRepeat

        +
        boolean canRepeat()
        +
      • +
      + + + +
        +
      • +

        getRepeatDelay

        +
        int getRepeatDelay()
        +
      • +
      + + + +
        +
      • +

        getVolume

        +
        float getVolume()
        +
      • +
      + + + +
        +
      • +

        getPitch

        +
        float getPitch()
        +
      • +
      + + + +
        +
      • +

        getXPosF

        +
        float getXPosF()
        +
      • +
      + + + +
        +
      • +

        getYPosF

        +
        float getYPosF()
        +
      • +
      + + + +
        +
      • +

        getZPosF

        +
        float getZPosF()
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/ISoundEventAccessor.html b/javadoc/net/minecraft/client/audio/ISoundEventAccessor.html new file mode 100644 index 0000000..226403a --- /dev/null +++ b/javadoc/net/minecraft/client/audio/ISoundEventAccessor.html @@ -0,0 +1,221 @@ + + + + + +ISoundEventAccessor (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Interface ISoundEventAccessor

+
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      java.lang.Objectfunc_148720_g() 
      intfunc_148721_a() 
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        func_148721_a

        +
        int func_148721_a()
        +
      • +
      + + + +
        +
      • +

        func_148720_g

        +
        java.lang.Object func_148720_g()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/ITickableSound.html b/javadoc/net/minecraft/client/audio/ITickableSound.html new file mode 100644 index 0000000..91ba416 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/ITickableSound.html @@ -0,0 +1,242 @@ + + + + + +ITickableSound (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Interface ITickableSound

+
+
+
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        isDonePlaying

        +
        boolean isDonePlaying()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/MovingSound.html b/javadoc/net/minecraft/client/audio/MovingSound.html new file mode 100644 index 0000000..5fd1a8f --- /dev/null +++ b/javadoc/net/minecraft/client/audio/MovingSound.html @@ -0,0 +1,353 @@ + + + + + +MovingSound (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class MovingSound

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        donePlaying

        +
        protected boolean donePlaying
        +
      • +
      +
    • +
    + + + + +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/MovingSoundMinecart.html b/javadoc/net/minecraft/client/audio/MovingSoundMinecart.html new file mode 100644 index 0000000..6286a2a --- /dev/null +++ b/javadoc/net/minecraft/client/audio/MovingSoundMinecart.html @@ -0,0 +1,326 @@ + + + + + +MovingSoundMinecart (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class MovingSoundMinecart

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        MovingSoundMinecart

        +
        public MovingSoundMinecart(EntityMinecart p_i45105_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        update

        +
        public void update()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/MovingSoundMinecartRiding.html b/javadoc/net/minecraft/client/audio/MovingSoundMinecartRiding.html new file mode 100644 index 0000000..f2396dc --- /dev/null +++ b/javadoc/net/minecraft/client/audio/MovingSoundMinecartRiding.html @@ -0,0 +1,328 @@ + + + + + +MovingSoundMinecartRiding (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class MovingSoundMinecartRiding

+
+
+ +
+ +
+
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        update

        +
        public void update()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/MusicTicker.MusicType.html b/javadoc/net/minecraft/client/audio/MusicTicker.MusicType.html new file mode 100644 index 0000000..4b9fdcb --- /dev/null +++ b/javadoc/net/minecraft/client/audio/MusicTicker.MusicType.html @@ -0,0 +1,420 @@ + + + + + +MusicTicker.MusicType (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Enum MusicTicker.MusicType

+
+
+ +
+ +
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      intfunc_148633_c() 
      intfunc_148634_b() 
      ResourceLocationgetMusicTickerLocation() 
      static MusicTicker.MusicTypevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static MusicTicker.MusicType[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static MusicTicker.MusicType[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (MusicTicker.MusicType c : MusicTicker.MusicType.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static MusicTicker.MusicType valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
      • +
      + + + +
        +
      • +

        getMusicTickerLocation

        +
        public ResourceLocation getMusicTickerLocation()
        +
      • +
      + + + +
        +
      • +

        func_148634_b

        +
        public int func_148634_b()
        +
      • +
      + + + +
        +
      • +

        func_148633_c

        +
        public int func_148633_c()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/MusicTicker.html b/javadoc/net/minecraft/client/audio/MusicTicker.html new file mode 100644 index 0000000..10c2e47 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/MusicTicker.html @@ -0,0 +1,282 @@ + + + + + +MusicTicker (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class MusicTicker

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Nested Class Summary

      + + + + + + + + + + +
      Nested Classes 
      Modifier and TypeClass and Description
      static class MusicTicker.MusicType 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      MusicTicker(Minecraft p_i45112_1_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      voidupdate() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/PositionedSound.html b/javadoc/net/minecraft/client/audio/PositionedSound.html new file mode 100644 index 0000000..c2383ea --- /dev/null +++ b/javadoc/net/minecraft/client/audio/PositionedSound.html @@ -0,0 +1,560 @@ + + + + + +PositionedSound (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class PositionedSound

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + + + + + +
        +
      • +

        volume

        +
        protected float volume
        +
      • +
      + + + +
        +
      • +

        field_147663_c

        +
        protected float field_147663_c
        +
      • +
      + + + +
        +
      • +

        xPosF

        +
        protected float xPosF
        +
      • +
      + + + +
        +
      • +

        yPosF

        +
        protected float yPosF
        +
      • +
      + + + +
        +
      • +

        zPosF

        +
        protected float zPosF
        +
      • +
      + + + +
        +
      • +

        repeat

        +
        protected boolean repeat
        +
      • +
      + + + +
        +
      • +

        field_147665_h

        +
        protected int field_147665_h
        +
      • +
      + + + + +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PositionedSound

        +
        protected PositionedSound(ResourceLocation p_i45103_1_)
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/PositionedSoundRecord.html b/javadoc/net/minecraft/client/audio/PositionedSoundRecord.html new file mode 100644 index 0000000..56eed7b --- /dev/null +++ b/javadoc/net/minecraft/client/audio/PositionedSoundRecord.html @@ -0,0 +1,344 @@ + + + + + +PositionedSoundRecord (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class PositionedSoundRecord

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    ISound
    +
    +
    +
    +
    public class PositionedSoundRecord
    +extends PositionedSound
    +
  • +
+
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundCategory.html b/javadoc/net/minecraft/client/audio/SoundCategory.html new file mode 100644 index 0000000..004ac55 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundCategory.html @@ -0,0 +1,440 @@ + + + + + +SoundCategory (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Enum SoundCategory

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    java.io.Serializable, java.lang.Comparable<SoundCategory>
    +
    +
    +
    +
    public enum SoundCategory
    +extends java.lang.Enum<SoundCategory>
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static SoundCategoryfunc_147154_a(java.lang.String p_147154_0_) 
      intgetCategoryId() 
      java.lang.StringgetCategoryName() 
      static SoundCategoryvalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static SoundCategory[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static SoundCategory[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (SoundCategory c : SoundCategory.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static SoundCategory valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
      • +
      + + + +
        +
      • +

        getCategoryName

        +
        public java.lang.String getCategoryName()
        +
      • +
      + + + +
        +
      • +

        getCategoryId

        +
        public int getCategoryId()
        +
      • +
      + + + +
        +
      • +

        func_147154_a

        +
        public static SoundCategory func_147154_a(java.lang.String p_147154_0_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundEventAccessor.html b/javadoc/net/minecraft/client/audio/SoundEventAccessor.html new file mode 100644 index 0000000..15e6adc --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundEventAccessor.html @@ -0,0 +1,246 @@ + + + + + +SoundEventAccessor (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundEventAccessor

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      SoundPoolEntryfunc_148720_g() 
      intfunc_148721_a() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundEventAccessorComposite.html b/javadoc/net/minecraft/client/audio/SoundEventAccessorComposite.html new file mode 100644 index 0000000..f2899b5 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundEventAccessorComposite.html @@ -0,0 +1,325 @@ + + + + + +SoundEventAccessorComposite (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundEventAccessorComposite

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundHandler.html b/javadoc/net/minecraft/client/audio/SoundHandler.html new file mode 100644 index 0000000..a0060f0 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundHandler.html @@ -0,0 +1,480 @@ + + + + + +SoundHandler (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundHandler

+
+
+ +
+ +
+
+ +
+
+ +
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundList.SoundEntry.Type.html b/javadoc/net/minecraft/client/audio/SoundList.SoundEntry.Type.html new file mode 100644 index 0000000..ee27223 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundList.SoundEntry.Type.html @@ -0,0 +1,334 @@ + + + + + +SoundList.SoundEntry.Type (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Enum SoundList.SoundEntry.Type

+
+
+ +
+ +
+
+
    +
  • + +
      +
    • + + +

      Enum Constant Summary

      + + + + + + + + + + + +
      Enum Constants 
      Enum Constant and Description
      FILE 
      SOUND_EVENT 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      static SoundList.SoundEntry.TypegetType(java.lang.String p_148580_0_) 
      static SoundList.SoundEntry.TypevalueOf(java.lang.String name) +
      Returns the enum constant of this type with the specified name.
      +
      static SoundList.SoundEntry.Type[]values() +
      Returns an array containing the constants of this enum type, in +the order they are declared.
      +
      +
        +
      • + + +

        Methods inherited from class java.lang.Enum

        +clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
      • +
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        values

        +
        public static SoundList.SoundEntry.Type[] values()
        +
        Returns an array containing the constants of this enum type, in +the order they are declared. This method may be used to iterate +over the constants as follows: +
        +for (SoundList.SoundEntry.Type c : SoundList.SoundEntry.Type.values())
        +    System.out.println(c);
        +
        +
        Returns:
        an array containing the constants of this enum type, in the order they are declared
        +
      • +
      + + + +
        +
      • +

        valueOf

        +
        public static SoundList.SoundEntry.Type valueOf(java.lang.String name)
        +
        Returns the enum constant of this type with the specified name. +The string must match exactly an identifier used to declare an +enum constant in this type. (Extraneous whitespace characters are +not permitted.)
        +
        Parameters:
        name - the name of the enum constant to be returned.
        +
        Returns:
        the enum constant with the specified name
        +
        Throws:
        +
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        +
        java.lang.NullPointerException - if the argument is null
        +
      • +
      + + + + +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundList.SoundEntry.html b/javadoc/net/minecraft/client/audio/SoundList.SoundEntry.html new file mode 100644 index 0000000..29651d2 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundList.SoundEntry.html @@ -0,0 +1,420 @@ + + + + + +SoundList.SoundEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundList.SoundEntry

+
+
+ +
+
    +
  • +
    +
    Enclosing class:
    +
    SoundList
    +
    +
    +
    +
    public static class SoundList.SoundEntry
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SoundList.SoundEntry

        +
        public SoundList.SoundEntry()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getSoundEntryName

        +
        public java.lang.String getSoundEntryName()
        +
      • +
      + + + +
        +
      • +

        setSoundEntryName

        +
        public void setSoundEntryName(java.lang.String p_148561_1_)
        +
      • +
      + + + +
        +
      • +

        getSoundEntryVolume

        +
        public float getSoundEntryVolume()
        +
      • +
      + + + +
        +
      • +

        setSoundEntryVolume

        +
        public void setSoundEntryVolume(float p_148553_1_)
        +
      • +
      + + + +
        +
      • +

        getSoundEntryPitch

        +
        public float getSoundEntryPitch()
        +
      • +
      + + + +
        +
      • +

        setSoundEntryPitch

        +
        public void setSoundEntryPitch(float p_148559_1_)
        +
      • +
      + + + +
        +
      • +

        getSoundEntryWeight

        +
        public int getSoundEntryWeight()
        +
      • +
      + + + +
        +
      • +

        setSoundEntryWeight

        +
        public void setSoundEntryWeight(int p_148554_1_)
        +
      • +
      + + + + + + + + + + + +
        +
      • +

        isStreaming

        +
        public boolean isStreaming()
        +
      • +
      + + + +
        +
      • +

        setStreaming

        +
        public void setStreaming(boolean p_148557_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundList.html b/javadoc/net/minecraft/client/audio/SoundList.html new file mode 100644 index 0000000..1402dca --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundList.html @@ -0,0 +1,325 @@ + + + + + +SoundList (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundList

+
+
+ +
+
    +
  • +
    +
    +
    public class SoundList
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SoundList

        +
        public SoundList()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getSoundList

        +
        public java.util.List getSoundList()
        +
      • +
      + + + +
        +
      • +

        canReplaceExisting

        +
        public boolean canReplaceExisting()
        +
      • +
      + + + +
        +
      • +

        setReplaceExisting

        +
        public void setReplaceExisting(boolean p_148572_1_)
        +
      • +
      + + + +
        +
      • +

        getSoundCategory

        +
        public SoundCategory getSoundCategory()
        +
      • +
      + + + +
        +
      • +

        setSoundCategory

        +
        public void setSoundCategory(SoundCategory p_148571_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundListSerializer.html b/javadoc/net/minecraft/client/audio/SoundListSerializer.html new file mode 100644 index 0000000..1d30ee9 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundListSerializer.html @@ -0,0 +1,267 @@ + + + + + +SoundListSerializer (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundListSerializer

+
+
+ +
+
    +
  • +
    +
    All Implemented Interfaces:
    +
    com.google.gson.JsonDeserializer
    +
    +
    +
    +
    public class SoundListSerializer
    +extends java.lang.Object
    +implements com.google.gson.JsonDeserializer
    +
  • +
+
+
+
    +
  • + + + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      SoundListdeserialize(com.google.gson.JsonElement p_deserialize_1_, + java.lang.reflect.Type p_deserialize_2_, + com.google.gson.JsonDeserializationContext p_deserialize_3_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SoundListSerializer

        +
        public SoundListSerializer()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        deserialize

        +
        public SoundList deserialize(com.google.gson.JsonElement p_deserialize_1_,
        +                    java.lang.reflect.Type p_deserialize_2_,
        +                    com.google.gson.JsonDeserializationContext p_deserialize_3_)
        +
        +
        Specified by:
        +
        deserialize in interface com.google.gson.JsonDeserializer
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundManager.html b/javadoc/net/minecraft/client/audio/SoundManager.html new file mode 100644 index 0000000..6a3ae28 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundManager.html @@ -0,0 +1,441 @@ + + + + + +SoundManager (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundManager

+
+
+ +
+
    +
  • +
    +
    +
    public class SoundManager
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + + + + + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        reloadSoundSystem

        +
        public void reloadSoundSystem()
        +
      • +
      + + + +
        +
      • +

        setSoundCategoryVolume

        +
        public void setSoundCategoryVolume(SoundCategory p_148601_1_,
        +                          float p_148601_2_)
        +
      • +
      + + + +
        +
      • +

        unloadSoundSystem

        +
        public void unloadSoundSystem()
        +
      • +
      + + + +
        +
      • +

        stopAllSounds

        +
        public void stopAllSounds()
        +
      • +
      + + + +
        +
      • +

        updateAllSounds

        +
        public void updateAllSounds()
        +
      • +
      + + + +
        +
      • +

        isSoundPlaying

        +
        public boolean isSoundPlaying(ISound p_148597_1_)
        +
      • +
      + + + +
        +
      • +

        stopSound

        +
        public void stopSound(ISound p_148602_1_)
        +
      • +
      + + + +
        +
      • +

        playSound

        +
        public void playSound(ISound p_148611_1_)
        +
      • +
      + + + +
        +
      • +

        pauseAllSounds

        +
        public void pauseAllSounds()
        +
      • +
      + + + +
        +
      • +

        resumeAllSounds

        +
        public void resumeAllSounds()
        +
      • +
      + + + +
        +
      • +

        addDelayedSound

        +
        public void addDelayedSound(ISound p_148599_1_,
        +                   int p_148599_2_)
        +
      • +
      + + + +
        +
      • +

        setListener

        +
        public void setListener(EntityPlayer p_148615_1_,
        +               float p_148615_2_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundPoolEntry.html b/javadoc/net/minecraft/client/audio/SoundPoolEntry.html new file mode 100644 index 0000000..e895507 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundPoolEntry.html @@ -0,0 +1,337 @@ + + + + + +SoundPoolEntry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundPoolEntry

+
+
+ +
+
    +
  • +
    +
    +
    public class SoundPoolEntry
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SoundPoolEntry

        +
        public SoundPoolEntry(ResourceLocation p_i45113_1_,
        +              double p_i45113_2_,
        +              double p_i45113_4_,
        +              boolean p_i45113_6_)
        +
      • +
      + + + +
        +
      • +

        SoundPoolEntry

        +
        public SoundPoolEntry(SoundPoolEntry p_i45114_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        getSoundPoolEntryLocation

        +
        public ResourceLocation getSoundPoolEntryLocation()
        +
      • +
      + + + +
        +
      • +

        getPitch

        +
        public double getPitch()
        +
      • +
      + + + +
        +
      • +

        setPitch

        +
        public void setPitch(double p_148651_1_)
        +
      • +
      + + + +
        +
      • +

        getVolume

        +
        public double getVolume()
        +
      • +
      + + + +
        +
      • +

        setVolume

        +
        public void setVolume(double p_148647_1_)
        +
      • +
      + + + +
        +
      • +

        func_148648_d

        +
        public boolean func_148648_d()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/SoundRegistry.html b/javadoc/net/minecraft/client/audio/SoundRegistry.html new file mode 100644 index 0000000..533344c --- /dev/null +++ b/javadoc/net/minecraft/client/audio/SoundRegistry.html @@ -0,0 +1,315 @@ + + + + + +SoundRegistry (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.client.audio
+

Class SoundRegistry

+
+
+ +
+ +
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        SoundRegistry

        +
        public SoundRegistry()
        +
      • +
      +
    • +
    + + +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/package-frame.html b/javadoc/net/minecraft/client/audio/package-frame.html new file mode 100644 index 0000000..75658a0 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/package-frame.html @@ -0,0 +1,46 @@ + + + + + +net.minecraft.client.audio (Forge API) + + + + +

net.minecraft.client.audio

+
+

Interfaces

+ +

Classes

+ +

Enums

+ +
+ + diff --git a/javadoc/net/minecraft/client/audio/package-summary.html b/javadoc/net/minecraft/client/audio/package-summary.html new file mode 100644 index 0000000..8706199 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/package-summary.html @@ -0,0 +1,237 @@ + + + + + +net.minecraft.client.audio (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.client.audio

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/client/audio/package-tree.html b/javadoc/net/minecraft/client/audio/package-tree.html new file mode 100644 index 0000000..1ed54b2 --- /dev/null +++ b/javadoc/net/minecraft/client/audio/package-tree.html @@ -0,0 +1,179 @@ + + + + + +net.minecraft.client.audio Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.client.audio

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +

Interface Hierarchy

+ +

Enum Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3