|
| 1 | +package me.adrigamer2950.adriapi.api.scheduler; |
| 2 | + |
| 3 | +import me.adrigamer2950.adriapi.api.scheduler.folia.FoliaScheduler; |
| 4 | +import me.adrigamer2950.adriapi.api.scheduler.paper.PaperScheduler; |
| 5 | +import me.adrigamer2950.adriapi.api.scheduler.task.ScheduledTask; |
| 6 | +import org.bukkit.World; |
| 7 | +import org.bukkit.entity.Entity; |
| 8 | +import org.bukkit.plugin.Plugin; |
| 9 | + |
| 10 | +public interface Scheduler { |
| 11 | + |
| 12 | + /** |
| 13 | + * Creates a new {@link Scheduler} instance for the given plugin |
| 14 | + * |
| 15 | + * @param plugin The plugin to get the scheduler for |
| 16 | + * @return The scheduler instance |
| 17 | + */ |
| 18 | + static Scheduler get(Plugin plugin) { |
| 19 | + return get(plugin, false); |
| 20 | + } |
| 21 | + |
| 22 | + /** |
| 23 | + * Creates a new {@link Scheduler} instance for the given plugin |
| 24 | + * |
| 25 | + * @param plugin The plugin to get the scheduler for |
| 26 | + * @param folia Whether to use the Folia scheduler |
| 27 | + * @return The scheduler instance |
| 28 | + */ |
| 29 | + static Scheduler get(Plugin plugin, boolean folia) { |
| 30 | + return folia ? new FoliaScheduler(plugin) : new PaperScheduler(plugin); |
| 31 | + } |
| 32 | + |
| 33 | + /** |
| 34 | + * Runs a task on the next server tick |
| 35 | + * |
| 36 | + * @param runnable The task to run |
| 37 | + * @return The task |
| 38 | + */ |
| 39 | + ScheduledTask run(Runnable runnable); |
| 40 | + |
| 41 | + /** |
| 42 | + * Runs a task after a delay |
| 43 | + * |
| 44 | + * @param runnable The task to run |
| 45 | + * @param delay The delay in ticks |
| 46 | + * @return The task |
| 47 | + */ |
| 48 | + ScheduledTask runLater(Runnable runnable, long delay); |
| 49 | + |
| 50 | + /** |
| 51 | + * Runs a task repeatedly after a delay |
| 52 | + * |
| 53 | + * @param runnable The task to run |
| 54 | + * @param delay The delay in ticks |
| 55 | + * @param period The period in ticks |
| 56 | + * @return The task |
| 57 | + */ |
| 58 | + ScheduledTask runTimer(Runnable runnable, long delay, long period); |
| 59 | + |
| 60 | + /** |
| 61 | + * Runs a task asynchronously |
| 62 | + * |
| 63 | + * @param runnable The task to run |
| 64 | + * @return The task |
| 65 | + */ |
| 66 | + ScheduledTask runAsync(Runnable runnable); |
| 67 | + |
| 68 | + /** |
| 69 | + * Runs a task asynchronously after a delay |
| 70 | + * @param runnable The task to run |
| 71 | + * @param delay The delay in ticks |
| 72 | + * @return The task |
| 73 | + */ |
| 74 | + ScheduledTask runAsyncLater(Runnable runnable, long delay); |
| 75 | + |
| 76 | + /** |
| 77 | + * Runs a task asynchronously repeatedly after a delay |
| 78 | + * @param runnable The task to run |
| 79 | + * @param delay The delay in ticks |
| 80 | + * @param period The period in ticks |
| 81 | + * @return The task |
| 82 | + */ |
| 83 | + ScheduledTask runAsyncTimer(Runnable runnable, long delay, long period); |
| 84 | + |
| 85 | + /** |
| 86 | + * Runs a task on a specific entity |
| 87 | + * @param runnable The task to run |
| 88 | + * @param entity The entity to run the task on |
| 89 | + * @return The task |
| 90 | + */ |
| 91 | + ScheduledTask runOnEntity(Runnable runnable, Entity entity); |
| 92 | + |
| 93 | + /** |
| 94 | + * Runs a task on a specific entity |
| 95 | + * @param runnable The task to run |
| 96 | + * @param entity The entity to run the task on |
| 97 | + * @param async Whether to run the task asynchronously (Doesn't do anything in Folia) |
| 98 | + * @return The task |
| 99 | + */ |
| 100 | + ScheduledTask runOnEntity(Runnable runnable, Entity entity, boolean async); |
| 101 | + |
| 102 | + /** |
| 103 | + * Runs a task on a specific entity after a delay |
| 104 | + * @param runnable The task to run |
| 105 | + * @param entity The entity to run the task on |
| 106 | + * @param delay The delay in ticks |
| 107 | + * @return The task |
| 108 | + */ |
| 109 | + ScheduledTask runLaterOnEntity(Runnable runnable, Entity entity, long delay); |
| 110 | + |
| 111 | + /** |
| 112 | + * Runs a task on a specific entity after a delay |
| 113 | + * @param runnable The task to run |
| 114 | + * @param entity The entity to run the task on |
| 115 | + * @param delay The delay in ticks |
| 116 | + * @param async Whether to run the task asynchronously (Doesn't do anything in Folia) |
| 117 | + * @return The task |
| 118 | + */ |
| 119 | + ScheduledTask runLaterOnEntity(Runnable runnable, Entity entity, long delay, boolean async); |
| 120 | + |
| 121 | + /** |
| 122 | + * Runs a task on a specific entity repeatedly after a delay |
| 123 | + * @param runnable The task to run |
| 124 | + * @param entity The entity to run the task on |
| 125 | + * @param delay The delay in ticks |
| 126 | + * @param period The period in ticks |
| 127 | + * @return The task |
| 128 | + */ |
| 129 | + ScheduledTask runTimerOnEntity(Runnable runnable, Entity entity, long delay, long period); |
| 130 | + |
| 131 | + /** |
| 132 | + * Runs a task on a specific entity repeatedly after a delay |
| 133 | + * @param runnable The task to run |
| 134 | + * @param entity The entity to run the task on |
| 135 | + * @param delay The delay in ticks |
| 136 | + * @param period The period in ticks |
| 137 | + * @param async Whether to run the task asynchronously (Doesn't do anything in Folia) |
| 138 | + * @return The task |
| 139 | + */ |
| 140 | + ScheduledTask runTimerOnEntity(Runnable runnable, Entity entity, long delay, long period, boolean async); |
| 141 | + |
| 142 | + /** |
| 143 | + * Runs a task on a specific region |
| 144 | + * @param runnable The task to run |
| 145 | + * @param world The world the region is in |
| 146 | + * @param chunkX The X coordinate of the region |
| 147 | + * @param chunkZ The Z coordinate of the region |
| 148 | + * @return The task |
| 149 | + */ |
| 150 | + ScheduledTask runAtRegion(Runnable runnable, World world, int chunkX, int chunkZ); |
| 151 | + |
| 152 | + /** |
| 153 | + * Runs a task on a specific region |
| 154 | + * @param runnable The task to run |
| 155 | + * @param world The world the region is in |
| 156 | + * @param chunkX The X coordinate of the region |
| 157 | + * @param chunkZ The Z coordinate of the region |
| 158 | + * @param async Whether to run the task asynchronously (Doesn't do anything in Folia) |
| 159 | + * @return The task |
| 160 | + */ |
| 161 | + ScheduledTask runAtRegion(Runnable runnable, World world, int chunkX, int chunkZ, boolean async); |
| 162 | + |
| 163 | + /** |
| 164 | + * Runs a task on a specific region after a delay |
| 165 | + * @param runnable The task to run |
| 166 | + * @param world The world the region is in |
| 167 | + * @param chunkX The X coordinate of the region |
| 168 | + * @param chunkZ The Z coordinate of the region |
| 169 | + * @param delay The delay in ticks |
| 170 | + * @return The task |
| 171 | + */ |
| 172 | + ScheduledTask runLaterAtRegion(Runnable runnable, World world, int chunkX, int chunkZ, long delay); |
| 173 | + |
| 174 | + /** |
| 175 | + * Runs a task on a specific region after a delay |
| 176 | + * @param runnable The task to run |
| 177 | + * @param world The world the region is in |
| 178 | + * @param chunkX The X coordinate of the region |
| 179 | + * @param chunkZ The Z coordinate of the region |
| 180 | + * @param delay The delay in ticks |
| 181 | + * @param async Whether to run the task asynchronously (Doesn't do anything in Folia) |
| 182 | + * @return The task |
| 183 | + */ |
| 184 | + ScheduledTask runLaterAtRegion(Runnable runnable, World world, int chunkX, int chunkZ, long delay, boolean async); |
| 185 | + |
| 186 | + /** |
| 187 | + * Runs a task on a specific region repeatedly after a delay |
| 188 | + * @param runnable The task to run |
| 189 | + * @param world The world the region is in |
| 190 | + * @param chunkX The X coordinate of the region |
| 191 | + * @param chunkZ The Z coordinate of the region |
| 192 | + * @param delay The delay in ticks |
| 193 | + * @param period The period in ticks |
| 194 | + * @return The task |
| 195 | + */ |
| 196 | + ScheduledTask runTimerAtRegion(Runnable runnable, World world, int chunkX, int chunkZ, long delay, long period); |
| 197 | + |
| 198 | + /** |
| 199 | + * Runs a task on a specific region repeatedly after a delay |
| 200 | + * @param runnable The task to run |
| 201 | + * @param world The world the region is in |
| 202 | + * @param chunkX The X coordinate of the region |
| 203 | + * @param chunkZ The Z coordinate of the region |
| 204 | + * @param delay The delay in ticks |
| 205 | + * @param period The period in ticks |
| 206 | + * @param async Whether to run the task asynchronously (Doesn't do anything in Folia) |
| 207 | + * @return The task |
| 208 | + */ |
| 209 | + ScheduledTask runTimerAtRegion(Runnable runnable, World world, int chunkX, int chunkZ, long delay, long period, boolean async); |
| 210 | +} |
0 commit comments