001/*
002 * Copyright (c) 2016-2023 Daniel Ennis (Aikar) - MIT License
003 *
004 *  Permission is hereby granted, free of charge, to any person obtaining
005 *  a copy of this software and associated documentation files (the
006 *  "Software"), to deal in the Software without restriction, including
007 *  without limitation the rights to use, copy, modify, merge, publish,
008 *  distribute, sublicense, and/or sell copies of the Software, and to
009 *  permit persons to whom the Software is furnished to do so, subject to
010 *  the following conditions:
011 *
012 *  The above copyright notice and this permission notice shall be
013 *  included in all copies or substantial portions of the Software.
014 *
015 *  THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
016 *  EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
017 *  MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
018 *  NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
019 *  LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
020 *  OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
021 *  WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
022 */
023
024package co.aikar.commands;
025
026import io.papermc.paper.threadedregions.scheduler.AsyncScheduler;
027import io.papermc.paper.threadedregions.scheduler.ScheduledTask;
028import org.bukkit.Bukkit;
029import org.bukkit.plugin.Plugin;
030
031import java.util.concurrent.TimeUnit;
032
033public class ACFFoliaScheduler extends ACFBukkitScheduler {
034
035    private ScheduledTask scheduledTask;
036
037    @Override
038    public void registerSchedulerDependencies(BukkitCommandManager manager) {
039        manager.registerDependency(AsyncScheduler.class, Bukkit.getAsyncScheduler());
040    }
041
042    @Override
043    public void createDelayedTask(Plugin plugin, Runnable task, long delay) {
044        // We divide by 20 because 20 ticks per second.
045        Bukkit.getAsyncScheduler().runDelayed(plugin, (scheduledTask) -> task.run(), (delay / 20), TimeUnit.SECONDS);
046    }
047
048    @Override
049    public void createLocaleTask(Plugin plugin, Runnable task, long delay, long period) {
050        // We divide by 20 because 20 ticks per second.
051        this.scheduledTask = Bukkit.getAsyncScheduler().runAtFixedRate(plugin, (scheduledTask) -> task.run(), (delay / 20), (period / 20), TimeUnit.SECONDS);
052    }
053
054    @Override
055    public void cancelLocaleTask() {
056        this.scheduledTask.cancel();
057    }
058}