Package fr.multimc.api.spigot.games
Class GameInstance
java.lang.Object
fr.multimc.api.spigot.games.GameInstance
- All Implemented Interfaces:
org.bukkit.event.Listener
- Direct Known Subclasses:
SampleGameInstance
-
Constructor Summary
ConstructorsConstructorDescriptionGameInstance
(@NotNull org.bukkit.plugin.java.JavaPlugin plugin, @NotNull GamesManager gamesManager, @NotNull GameSettings settings, @NotNull org.bukkit.Location instanceLocation, @NotNull List<MmcTeam> mmcTeams, int instanceId) -
Method Summary
Modifier and TypeMethodDescriptionstatic void
Past the gameSchematic for the instance (can be called for pre-allocation too)void
broadcast
(net.kyori.adventure.text.Component message) Broadcast a message to all players in the instancevoid
cancel()
List<org.bukkit.entity.Entity>
int
org.bukkit.Location
org.bukkit.plugin.Plugin
int
getTeams()
void
init
(boolean isPreAllocated) Initialize game instanceboolean
boolean
isPlayerOnInstance
(@NotNull MmcPlayer mmcPlayer) Check if the player is on this instanceboolean
boolean
isSpectatorOnInstance
(@NotNull MmcPlayer spectator) Check if the spectator is on this instancevoid
onPlayerDisconnect
(@NotNull MmcPlayer mmcPlayer) Called when a player disconnect from the servervoid
onPlayerReconnect
(@NotNull MmcPlayer mmcPlayer) Called to reconnect a disconnected playervoid
onSpectatorJoin
(@NotNull MmcPlayer spectator) Called when a spectator spectate this gamevoid
onSpectatorLeave
(@NotNull MmcPlayer spectator) Called when a spectator stop spectating this gamevoid
restart()
Restart game instancevoid
setPlayerSpawn
(@NotNull MmcPlayer mmcPlayer, @Nullable org.bukkit.Location location) Asynchronously set a player spawnvoid
setRemainingTime
(int remainingTime) void
start()
Start game instancevoid
stop()
Default instance stop (players will return to the lobby)void
teleportPlayer
(@NotNull MmcPlayer mmcPlayer, @Nullable org.bukkit.Location location) Asynchronously teleport a player to a locationvoid
Teleport all players to their spawnvoid
teleportPlayerToSpawn
(@NotNull MmcPlayer player) Teleport a player to his spawnvoid
tick()
Method called every tick delay defined in InstanceSettingsprotected void
updateState
(@NotNull GameState state) Called to update instance state for InstanceManager
-
Constructor Details
-
GameInstance
public GameInstance(@NotNull @NotNull org.bukkit.plugin.java.JavaPlugin plugin, @NotNull @NotNull GamesManager gamesManager, @NotNull @NotNull GameSettings settings, @NotNull @NotNull org.bukkit.Location instanceLocation, @NotNull @NotNull List<MmcTeam> mmcTeams, int instanceId)
-
-
Method Details
-
allocate
public static void allocate(@NotNull @NotNull Schematic schematic, @NotNull @NotNull org.bukkit.Location location) Past the gameSchematic for the instance (can be called for pre-allocation too)- Parameters:
schematic
- Schematic to pastelocation
- Location to paste the gameSchematic
-
init
public void init(boolean isPreAllocated) Initialize game instance- Parameters:
isPreAllocated
- If the gameSchematic is already pasted
-
start
public void start()Start game instance -
stop
public void stop()Default instance stop (players will return to the lobby) -
restart
public void restart()Restart game instance -
tick
public void tick()Method called every tick delay defined in InstanceSettings -
cancel
- Throws:
IllegalStateException
-
isCancelled
public boolean isCancelled() -
teleportPlayer
public void teleportPlayer(@NotNull @NotNull MmcPlayer mmcPlayer, @Nullable @Nullable org.bukkit.Location location) Asynchronously teleport a player to a location- Parameters:
mmcPlayer
- Player to teleportlocation
- Target location
-
teleportPlayersToSpawn
public void teleportPlayersToSpawn()Teleport all players to their spawn -
teleportPlayerToSpawn
Teleport a player to his spawn- Parameters:
player
-MmcPlayer
to teleport
-
setPlayerSpawn
public void setPlayerSpawn(@NotNull @NotNull MmcPlayer mmcPlayer, @Nullable @Nullable org.bukkit.Location location) Asynchronously set a player spawn- Parameters:
mmcPlayer
- Player to set spawnlocation
- Target location
-
broadcast
public void broadcast(@Nonnull net.kyori.adventure.text.Component message) Broadcast a message to all players in the instance- Parameters:
message
- Message to broadcast
-
onPlayerReconnect
Called to reconnect a disconnected player- Parameters:
mmcPlayer
- Player to reconnect
-
onPlayerDisconnect
Called when a player disconnect from the server -
updateState
Called to update instance state for InstanceManager- Parameters:
state
- New InstanceState
-
onSpectatorJoin
Called when a spectator spectate this game- Parameters:
spectator
- MmcPlayer instance of the spectator
-
onSpectatorLeave
Called when a spectator stop spectating this game- Parameters:
spectator
- MmcPlayer instance of the spectator
-
isPlayerOnInstance
Check if the player is on this instance- Parameters:
mmcPlayer
- Target player- Returns:
- True if the player is on this instance
-
isSpectatorOnInstance
Check if the spectator is on this instance- Parameters:
spectator
- Target spectator- Returns:
- True if the spectator is on this instance
-
getPlugin
public org.bukkit.plugin.Plugin getPlugin() -
getSpectators
-
getLogger
-
getInstanceSettings
-
getInstanceLocation
public org.bukkit.Location getInstanceLocation() -
getTeams
-
getInstanceId
public int getInstanceId() -
getInstanceEntities
-
getRemainingTime
public int getRemainingTime() -
isRunning
public boolean isRunning() -
getPlayers
-
getInstanceState
-
getPlayerSpawns
-
getInstanceStateUpdates
-
setRemainingTime
public void setRemainingTime(int remainingTime)
-