Skip to content

Commit b3175e2

Browse files
BaitinqAvanatiker
andauthoredFeb 18, 2023
Add TimeWarp module (#467)
* Add ClientSideTime module This patch adds the ClientSideTime module, which allows the user to change their client-side world time. It currently has two modes; TICKS and REAL_WORLD_TIME. The former allows you to specify the world time as ticks, and the latter uses your current computer time as the world time :) * Rename --------- Co-authored-by: Constructor <fractalminds@protonmail.com>
1 parent 9aebfc0 commit b3175e2

File tree

2 files changed

+46
-0
lines changed

2 files changed

+46
-0
lines changed
 

‎src/main/java/com/lambda/mixin/world/MixinWorld.java

+7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package com.lambda.mixin.world;
22

33
import com.lambda.client.module.modules.misc.AntiWeather;
4+
import com.lambda.client.module.modules.render.TimeWarp;
45
import com.lambda.client.module.modules.render.NoRender;
56
import net.minecraft.util.math.BlockPos;
67
import net.minecraft.world.EnumSkyBlock;
@@ -32,4 +33,10 @@ private void getRainStrengthHead(float delta, CallbackInfoReturnable<Float> cir)
3233
cir.setReturnValue(0.0f);
3334
}
3435
}
36+
37+
@Inject(method = "getWorldTime", at = @At("HEAD"), cancellable = true)
38+
public void onGetWorldTime(CallbackInfoReturnable<Long> cir) {
39+
if (TimeWarp.INSTANCE.isEnabled())
40+
cir.setReturnValue(TimeWarp.INSTANCE.getUpdatedTime());
41+
}
3542
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
package com.lambda.client.module.modules.render
2+
3+
import com.lambda.client.module.Category
4+
import com.lambda.client.module.Module
5+
import com.lambda.mixin.world.MixinWorld
6+
import java.text.SimpleDateFormat
7+
import java.util.*
8+
9+
/**
10+
* @see MixinWorld.onGetWorldTime
11+
*/
12+
object TimeWarp : Module(
13+
name = "TimeWarp",
14+
description = "Change the client-side world time",
15+
category = Category.RENDER
16+
) {
17+
private val mode by setting("Mode", TimeWarpMode.TICKS)
18+
private val time by setting("Time", 0, 0..24000, 600, { mode == TimeWarpMode.TICKS })
19+
20+
enum class TimeWarpMode {
21+
REAL_WORLD_TIME, TICKS
22+
}
23+
24+
@JvmStatic
25+
fun getUpdatedTime(): Long {
26+
if (mode == TimeWarpMode.REAL_WORLD_TIME)
27+
return dateToMinecraftTime(Calendar.getInstance())
28+
return time.toLong()
29+
}
30+
31+
private fun dateToMinecraftTime(calendar: Calendar): Long {
32+
// We subtract 6 (add 18) to convert the real time to minecraft time :)
33+
calendar.add(Calendar.HOUR, 18)
34+
val time = calendar.time
35+
val minecraftHours = SimpleDateFormat("HH").format(time)
36+
val minecraftMinutes = (SimpleDateFormat("mm").format(time).toLong() * 100) / 60
37+
return "${minecraftHours}${minecraftMinutes}0".toLong()
38+
}
39+
}

0 commit comments

Comments
 (0)
Please sign in to comment.