-
-
Notifications
You must be signed in to change notification settings - Fork 7
GH-188 Add support for folia-based servers. #275
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
952551b
Release v2.3.0-SNAPSHOT
vLuckyyy 6a07b94
Merge remote-tracking branch 'origin/master' into folia-cooking
vLuckyyy ec8208a
Update eternalcombat-plugin/src/main/java/com/eternalcode/combat/Comb…
vLuckyyy e252c7f
Make `CombatSchedulerAdapter` uninstantiable.
vLuckyyy d349352
Merge branch 'master' into folia-cooking
vLuckyyy 91a27fb
Update eternalcombat-plugin/src/main/java/com/eternalcode/combat/Comb…
vLuckyyy 057696b
Resolve gemini issues.
vLuckyyy File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
eternalcombat-plugin/src/main/java/com/eternalcode/combat/CombatSchedulerAdapter.java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
package com.eternalcode.combat; | ||
|
||
import com.eternalcode.commons.bukkit.scheduler.BukkitSchedulerImpl; | ||
import com.eternalcode.commons.bukkit.scheduler.MinecraftScheduler; | ||
import com.eternalcode.commons.folia.scheduler.FoliaSchedulerImpl; | ||
import java.util.logging.Logger; | ||
import org.bukkit.plugin.Plugin; | ||
|
||
public final class CombatSchedulerAdapter { | ||
|
||
private static final String FOLIA_CLASS = "io.papermc.paper.threadedregions.RegionizedServer"; | ||
|
||
private CombatSchedulerAdapter() { | ||
throw new UnsupportedOperationException("This is an utility class and cannot be instantiated"); | ||
} | ||
|
||
public static MinecraftScheduler getAdaptiveScheduler(Plugin plugin) { | ||
Logger logger = plugin.getLogger(); | ||
|
||
try { | ||
Class.forName(FOLIA_CLASS); | ||
logger.info("» Detected Folia environment. Using FoliaScheduler."); | ||
return new FoliaSchedulerImpl(plugin); | ||
} | ||
catch (ClassNotFoundException exception) { | ||
logger.info("» Detected Bukkit/Paper environment. Using BukkitScheduler."); | ||
return new BukkitSchedulerImpl(plugin); | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.