Difference between revisions of "Sounds"

From Forge Community Wiki
(Inital import dokuwiki)
 
m (update page links)
Line 95: Line 95:
 
=== <code> PlayerEntity</code> ===
 
=== <code> PlayerEntity</code> ===
  
# <code><nowiki>playSound(SoundEvent, volume, pitch)</nowiki></code> (overriding the one in <code>[[latest:advanced:effects:sounds#Entity|Entity]]</code>)
+
# <code><nowiki>playSound(SoundEvent, volume, pitch)</nowiki></code> (overriding the one in <code>[[Sounds#Entity|Entity]]</code>)
 
#* Forwards to <code>World</code>‘s overload (2), passing in <code>this</code> as the player.
 
#* Forwards to <code>World</code>‘s overload (2), passing in <code>this</code> as the player.
#* <code>Client Behavior</code>: Does nothing, see override in <code>[[latest:advanced:effects:sounds#clientplayerentity|ClientPlayerEntity]]</code>.
+
#* <code>Client Behavior</code>: Does nothing, see override in <code>[[Sounds#clientplayerentity|ClientPlayerEntity]]</code>.
 
#* <code>Server Behavior</code>: Plays the sound to everyone nearby <code>except</code> this player.
 
#* <code>Server Behavior</code>: Plays the sound to everyone nearby <code>except</code> this player.
#* <code>Usage</code>: See [[latest:advanced:effects:sounds#clientplayerentity|ClientPlayerEntity]].
+
#* <code>Usage</code>: See <code>[[Sounds#clientplayerentity|ClientPlayerEntity]]</code>.
  
 
=== <code> ClientPlayerEntity</code> ===
 
=== <code> ClientPlayerEntity</code> ===
  
# <code><nowiki>playSound(SoundEvent, volume, pitch)</nowiki></code> (overriding the one in <code>[[latest:advanced:effects:sounds#playerentity|PlayerEntity]]</code>)
+
# <code><nowiki>playSound(SoundEvent, volume, pitch)</nowiki></code> (overriding the one in <code>[[Sounds#playerentity|PlayerEntity]]</code>)
 
#* Forwards to <code>World</code>‘s overload (2), passing in <code>this</code> as the player.
 
#* Forwards to <code>World</code>‘s overload (2), passing in <code>this</code> as the player.
 
#* <code>Client Behavior</code>: Just plays the Sound Event.
 
#* <code>Client Behavior</code>: Just plays the Sound Event.
 
#* <code>Server Behavior</code>: Method is client-only.
 
#* <code>Server Behavior</code>: Method is client-only.
 
#* <code>Usage</code>: Just like the ones in <code>World</code>, these two overrides in the player classes seem to be for code that runs together on both sides. The client handles playing the sound to the user, while the server handles everyone else hearing it without re-playing to the original user.
 
#* <code>Usage</code>: Just like the ones in <code>World</code>, these two overrides in the player classes seem to be for code that runs together on both sides. The client handles playing the sound to the user, while the server handles everyone else hearing it without re-playing to the original user.

Revision as of 12:04, 25 October 2020

Although not essential, sounds bring a greater immersion into the Minecraft world. Their usages within and outside the development environment gives a bit more polish to an already existing mod from background music to a single block break.

Creating a Sound

Sounds in Minecraft are comprised of two things: an audio file and a reference pointer to that audio file.

The reference pointer is known as sounds.json which should be created at assets/<modid>/sounds.json. This JSON defines resource names to point to the audio files added by a specific mod. The only thing necessary to define a sound is by creating an object, naming it, and then defining the location of the sound within a list.

By default, the only supported audio format is Ogg Vorbis represented by the extension .ogg. The file namespace:path when referenced in the JSON will be located within assets/<namespace>/sounds/<path>.ogg.

{
  "example_sound": {
    "sounds": [ "examplemod:example_sound_file" ]
  }
}

Using the example above, it creates a sound called example_sound and references the file assets/<modid>/sounds/example_sound_file.ogg.

Instead of being constructed as a list of strings, each entry could also be an object which allows a greater control over what and how it is played.

Here are some variables that could be defined:

Parameter Description
name Sets the path to the sound file excluding the .ogg extension.
stream Determines whether the sound should be streamed from the file. When true, it reduces the amount of lag from loading a large file; however, it only allows four instances of the sound to be played at once.
volume A value between 0 and 1 to determine the volume of the sound played.
{
  "example_sound": {
    "sounds": [ "examplemod:example_sound_file" ]
  },
  "example_sound_complex": {
    "sounds":
    [
      {
        "name": "examplemod:complex/example_complex",
        "pitch": 0.6,
        "stream": true
      }
    ]
  }
}

Now there is a new sound within our JSON called example_sound_complex. This points to the audio file at assets/examplemod/sounds/complex/example_complex.json. The sound's pitch is lowered to 0.6 of its original value. The stream parameter is also set to true.

There are many more parameters that can give greater control on how sounds are played. However, this is left as an exercise to the reader to try and construct with the wiki.

Creating SoundEvents

A sounds.json left in its current state would only be defined in-game. There is currently no way to reference the sound within a mod. To do this, we utilize the SoundEvent class. Each SoundEvent class holds a ResourceLocation to reference a sound pointer defined in the sounds.json file. The sounds.json file used is determined by the namespace or the resource location passed into the class.

For example, to reference example_complex.ogg, you would store the reference name (e.g. example_sound_complex) within a new SoundEvent(new ResourceLocation("examplemod", "example_sound_complex")). This will locate assets/examplemod/sounds.json and try to find an example_sound_complex object nested within it.

SoundEvents must be registered to be referenced in code.

Playing Sounds

Vanilla has lots of methods for playing sounds that can be used in different scenarios.

World

  1. playSound(PlayerEntity, BlockPos, SoundEvent, SoundCategory, volume, pitch)
    • Simply forwards to overload (2), adding 0.5 to each coordinate of the BlockPos given.
  2. playSound(PlayerEntity, double x, double y, double z, SoundEvent, SoundCategory, volume, pitch)
    • Client Behavior: If the passed in player is the client player, plays the sound event to the client player.
    • Server Behavior: Plays the sound event to everyone nearby except the passed in player. Player can be null.
    • Usage: The correspondence between the behaviors implies that these two methods are to be called from some player-initiated code that will be run on both logical sides at the same time - the logical client handles playing it to the user and the logical server handles everyone else hearing it without re-playing it to the original user. They can also be used to play any sound in general at any position server-side by calling it on the logical server and passing in a null player, thus letting everyone hear it.
  3. playSound(double x, double y, double z, SoundEvent, SoundCategory, volume, pitch, distanceDelay)
    • Client Behavior: Just plays the sound event in the client world. If distanceDelay is true, then delays the sound based on how far it is from the player.
    • Server Behavior: Does nothing.
    • Usage: This method only works client-side, and thus is useful for sounds sent in custom packets, or other client-only effect-type sounds. Used for thunder.

ClientWorld

  1. playSound(BlockPos, SoundEvent, SoundCategory, volume, pitch, distanceDelay)
    • Simply forwards to World‘s overload (3), adding 0.5 to each coordinate of the BlockPos given.

Entity

  1. playSound(SoundEvent, volume, pitch)
    • Forwards to World‘s overload (2), passing in null as the player.
    • Client Behavior: Does nothing.
    • Server Behavior: Plays the sound event to everyone at this entity’s position.
    • Usage: Emitting any sound from any non-player entity server-side.

PlayerEntity

  1. playSound(SoundEvent, volume, pitch) (overriding the one in Entity)
    • Forwards to World‘s overload (2), passing in this as the player.
    • Client Behavior: Does nothing, see override in ClientPlayerEntity.
    • Server Behavior: Plays the sound to everyone nearby except this player.
    • Usage: See ClientPlayerEntity.

ClientPlayerEntity

  1. playSound(SoundEvent, volume, pitch) (overriding the one in PlayerEntity)
    • Forwards to World‘s overload (2), passing in this as the player.
    • Client Behavior: Just plays the Sound Event.
    • Server Behavior: Method is client-only.
    • Usage: Just like the ones in World, these two overrides in the player classes seem to be for code that runs together on both sides. The client handles playing the sound to the user, while the server handles everyone else hearing it without re-playing to the original user.