Record Class GameSettings

java.lang.Object
java.lang.Record
fr.multimc.api.spigot.games.settings.GameSettings

public record GameSettings(Schematic gameSchematic, GameType gameType, Class<? extends IScoreBoard> scoreboard, List<RelativeLocation> spawnPoints, List<MmcEntity> entities, HashMap<String,Object> customSettings, int duration, int minPlayers, int tickDelay) extends Record
  • Constructor Details

    • GameSettings

      public GameSettings(@NotNull @NotNull Schematic gameSchematic, @NotNull @NotNull GameType gameType, @Nullable @Nullable Class<? extends IScoreBoard> scoreboard, @NotNull @NotNull List<RelativeLocation> spawnPoints, @Nullable @Nullable List<MmcEntity> entities, @Nullable @Nullable HashMap<String,Object> customSettings, int duration, int minPlayers, int tickDelay)
      Constructor of InstanceSettings
      Parameters:
      gameSchematic - File for the game gameSchematic
      gameType - GameType of the game
      duration - Duration of the game
      spawnPoints - List of spawn points
      entities - List of entities to spawn
      customSettings - Custom gameSettings
      tickDelay - Delay in game tick between two calls of Instance's tick method
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • gameSchematic

      public Schematic gameSchematic()
      Returns the value of the gameSchematic record component.
      Returns:
      the value of the gameSchematic record component
    • gameType

      public GameType gameType()
      Returns the value of the gameType record component.
      Returns:
      the value of the gameType record component
    • scoreboard

      public Class<? extends IScoreBoard> scoreboard()
      Returns the value of the scoreboard record component.
      Returns:
      the value of the scoreboard record component
    • spawnPoints

      public List<RelativeLocation> spawnPoints()
      Returns the value of the spawnPoints record component.
      Returns:
      the value of the spawnPoints record component
    • entities

      public List<MmcEntity> entities()
      Returns the value of the entities record component.
      Returns:
      the value of the entities record component
    • customSettings

      public HashMap<String,Object> customSettings()
      Returns the value of the customSettings record component.
      Returns:
      the value of the customSettings record component
    • duration

      public int duration()
      Returns the value of the duration record component.
      Returns:
      the value of the duration record component
    • minPlayers

      public int minPlayers()
      Returns the value of the minPlayers record component.
      Returns:
      the value of the minPlayers record component
    • tickDelay

      public int tickDelay()
      Returns the value of the tickDelay record component.
      Returns:
      the value of the tickDelay record component