Class SoundComponent

java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.components.SoundComponent

public class SoundComponent extends Component
This component can be used to trigger sounds by an entity to play.
  • Constructor Details

    • SoundComponent

      public SoundComponent(SoundsConfig soundsConfig)
      Creates a new SoundComponent using the sounds specified in the soundsConfig file.
      Parameters:
      soundsConfig - - the config file containing the sounds which can be played.
  • Method Details

    • create

      public void create()
      Loads the sounds specified in the config file into a hashmap for later use.
      Overrides:
      create in class Component
    • playSound

      public void playSound(String soundName)
      Plays the sound which soundName maps to if it exists. If soundName does not map to a loaded sound, nothing happens.
      Parameters:
      soundName - - the name of the sound to play as specified in the config file.
    • loopSound

      public void loopSound(String soundName)
      Loops the sound which soundName maps to if it exists. If soundName does not map to a loaded sound, nothing happens.
      Parameters:
      soundName - - the name of the sound to loop as specified in the config file.
    • stopSound

      public void stopSound(String soundName)
      Stops the sound which soundName maps to if it exists. If soundName does not map to a loaded sound, nothing happens. If the specified sound is not playing, nothing happens.
      Parameters:
      soundName - - the name of the sound to stop as specified in the config file.