Interface IProdriversSection
public interface IProdriversSection
Interface for all Prodrivers Commons-compatible Section implementations.
Sections implementing IProdriversSection shall register themselves using SectionManager.register
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Get if we shall force the player to go to the preferred next section.getName()
Get the section's name, as used by players in commandsGet this section's preferred next section, ie. the section where the player should go by default when exiting this sectionboolean
isHub()
Get if the section should be considered as a hub (player is not in a minigame)boolean
Section join callback, called before teleporting the player to the section.boolean
Section leave callback, called before teleporting the player to the section.void
Section post-join callback, called after teleporting the player to the section.void
Section post-leave callback, called after teleporting the player to the section.boolean
Get if the whole party should enter the section
-
Method Details
-
getName
String getName()Get the section's name, as used by players in commands- Returns:
- Section's name
-
getPreferredNextSection
String getPreferredNextSection()Get this section's preferred next section, ie. the section where the player should go by default when exiting this section- Returns:
- Section's name or null
-
forceNextSection
boolean forceNextSection()Get if we shall force the player to go to the preferred next section.- Returns:
true
Force the player to go to the preferred next section
-
isHub
boolean isHub()Get if the section should be considered as a hub (player is not in a minigame)- Returns:
true
Section is a hub
-
shouldMoveParty
boolean shouldMoveParty()Get if the whole party should enter the section- Returns:
true
Force the whole party to enter
-
join
Section join callback, called before teleporting the player to the section. Should prepare the player to enter the section, or deny its entry if he should not.- Parameters:
player
- Player that joins the sectionsubSection
- Sub-section to enter. May be null.leavedSection
- Section name to be leaved. May be null.- Returns:
true
Continue the section enter process
-
postJoin
Section post-join callback, called after teleporting the player to the section. Should makes the final preparation for the player entering the section. Should not kick the player.- Parameters:
player
- Player that joins the sectionsubSection
- Sub-section to enter. May be null.leavedSection
- Section name to be entered. May be null.
-
leave
Section leave callback, called before teleporting the player to the section. Should prepare the player to leave the section, or deny its exit if he should not.- Parameters:
player
- Player that leaves the sectionenteredSection
- Section name to be entered. May be null.- Returns:
true
Continue the section enter process
-
postLeave
Section post-leave callback, called after teleporting the player to the section. Should makes the final preparation for the player leaving the section.- Parameters:
player
- Player that leaves the sectionenteredSection
- Section name to be entered. May be null.
-