-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fixes issue where entities would no longer be updated after some time
- Loading branch information
Showing
6 changed files
with
120 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
64 changes: 64 additions & 0 deletions
64
src/main/java/mod/acgaming/universaltweaks/mods/woot/UTWootTicketManager.java
This file contains 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,64 @@ | ||
package mod.acgaming.universaltweaks.mods.woot; | ||
|
||
import java.util.List; | ||
|
||
import net.minecraft.util.math.ChunkPos; | ||
import net.minecraft.world.World; | ||
import net.minecraft.world.WorldServer; | ||
import net.minecraftforge.common.ForgeChunkManager; | ||
|
||
import ipsis.Woot; | ||
import ipsis.woot.dimension.WootDimensionManager; | ||
import ipsis.woot.util.DebugSetup; | ||
import mod.acgaming.universaltweaks.UniversalTweaks; | ||
|
||
public class UTWootTicketManager | ||
{ | ||
public static final ChunkPos CHUNK = new ChunkPos(WootDimensionManager.CHUNK_X, WootDimensionManager.CHUNK_Z); | ||
public static ForgeChunkManager.Ticket ticket; | ||
|
||
public static void forceChunk(World world, int boxId) | ||
{ | ||
WorldServer worldWoot = Woot.wootDimensionManager.getWorldServer(world); | ||
if (ticket == null) | ||
{ | ||
Woot.debugSetup.trace(DebugSetup.EnumDebugType.TARTARUS, "UTWootTicketManager:callback", "requesting a ticket"); | ||
ticket = ForgeChunkManager.requestTicket(Woot.instance, worldWoot, ForgeChunkManager.Type.NORMAL); | ||
if (ticket == null) | ||
{ | ||
UniversalTweaks.LOGGER.error("UTWootTicketManager ::: Could not get a ticket for Tartarus (Woot)! Please report to Universal Tweaks."); | ||
return; | ||
} | ||
} | ||
Woot.debugSetup.trace(DebugSetup.EnumDebugType.TARTARUS, "UTWootTicketManager:callback", "forcing chunk for boxId " + boxId); | ||
ForgeChunkManager.forceChunk(ticket, CHUNK); | ||
} | ||
|
||
public static void releaseChunk(int boxId) | ||
{ | ||
if (ticket == null) return; | ||
Woot.debugSetup.trace(DebugSetup.EnumDebugType.TARTARUS, "UTWootTicketManager:callback", "trying to release chunk for boxId " + boxId); | ||
if (!((ITartarusCleaner) Woot.tartarusManager).ut$areBoxesInUse()) | ||
{ | ||
Woot.debugSetup.trace(DebugSetup.EnumDebugType.TARTARUS, "UTWootTicketManager:callback", "releasing ticket"); | ||
ForgeChunkManager.releaseTicket(ticket); | ||
ticket = null; | ||
} | ||
} | ||
|
||
public static void callback(List<ForgeChunkManager.Ticket> tickets, World world) | ||
{ | ||
int dim = world.provider.getDimension(); | ||
if (dim != Woot.wootDimensionManager.getDimensionId()) return; | ||
// Sanity check | ||
if (tickets.size() > 1) | ||
{ | ||
for (ForgeChunkManager.Ticket ticket : tickets) | ||
{ | ||
ForgeChunkManager.releaseTicket(ticket); | ||
} | ||
} | ||
UTWootTicketManager.ticket = tickets.get(0); | ||
((ITartarusCleaner) Woot.tartarusManager).ut$freeBoxes(); | ||
} | ||
} |
This file contains 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 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
21 changes: 21 additions & 0 deletions
21
src/main/java/mod/acgaming/universaltweaks/mods/woot/mixin/UTWootMixin.java
This file contains 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,21 @@ | ||
package mod.acgaming.universaltweaks.mods.woot.mixin; | ||
|
||
import net.minecraftforge.common.ForgeChunkManager; | ||
|
||
import ipsis.Woot; | ||
import mod.acgaming.universaltweaks.mods.woot.UTWootTicketManager; | ||
import org.spongepowered.asm.mixin.Mixin; | ||
import org.spongepowered.asm.mixin.injection.At; | ||
import org.spongepowered.asm.mixin.injection.Inject; | ||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; | ||
|
||
// Courtesy of jchung01 | ||
@Mixin(value = Woot.class, remap = false) | ||
public class UTWootMixin | ||
{ | ||
@Inject(method = "postInit", at = @At(value = "TAIL")) | ||
private void utRegisterTicketCallback(CallbackInfo ci) | ||
{ | ||
ForgeChunkManager.setForcedChunkLoadingCallback(Woot.instance, UTWootTicketManager::callback); | ||
} | ||
} |
This file contains 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