Skip to content
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

FreeLook Module #489

Merged
merged 2 commits into from
Feb 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/main/java/com/lambda/mixin/entity/MixinEntity.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
import com.lambda.client.module.modules.movement.Velocity;
import com.lambda.client.module.modules.player.Freecam;
import com.lambda.client.module.modules.player.ViewLock;
import com.lambda.client.module.modules.render.FreeLook;
import net.minecraft.client.Minecraft;
import net.minecraft.client.entity.EntityPlayerSP;
import net.minecraft.entity.Entity;
Expand Down Expand Up @@ -33,6 +34,7 @@ public void applyEntityCollisionHead(Entity entityIn, CallbackInfo ci) {
public void turn(float yaw, float pitch, CallbackInfo ci) {
Entity casted = (Entity) (Object) this;

if (FreeLook.handleTurn(casted, yaw, pitch, ci)) return;
if (Freecam.handleTurn(casted, yaw, pitch, ci)) return;
ViewLock.handleTurn(casted, yaw, pitch, ci);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,9 @@ internal object ForgeEventProcessor {
fun onRenderFogColors(event: EntityViewRenderEvent.FogColors) {
LambdaEventBus.post(event)
}

@SubscribeEvent
fun onCameraSetupEvent(event: EntityViewRenderEvent.CameraSetup) {
LambdaEventBus.post(event)
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
package com.lambda.client.module.modules.render

import com.lambda.client.event.SafeClientEvent
import com.lambda.client.module.Category
import com.lambda.client.module.Module
import com.lambda.client.util.threads.runSafe
import com.lambda.client.util.threads.safeListener
import net.minecraft.entity.Entity
import net.minecraft.util.math.MathHelper
import net.minecraftforge.client.event.EntityViewRenderEvent
import net.minecraftforge.client.event.InputUpdateEvent
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo

object FreeLook : Module(
name = "FreeLook",
description = "Look Freely",
category = Category.RENDER
) {
private val arrowKeyYawAdjust by setting("Arrow Key Yaw Adjust", false)
private val arrowKeyYawAdjustIncrement by setting("Yaw Adjust Increment", 1.0f, 0.001f..10.0f, 0.001f,
visibility = { arrowKeyYawAdjust });

private var cameraYaw: Float = 0f
private var cameraPitch: Float = 0f
private var thirdPersonBefore: Int = 0

init {
onEnable {
runSafe {
thirdPersonBefore = mc.gameSettings.thirdPersonView
mc.gameSettings.thirdPersonView = 1;
cameraYaw = player.rotationYaw + 180.0f
cameraPitch = player.rotationPitch
}
}

onDisable {
mc.gameSettings.thirdPersonView = thirdPersonBefore
}

safeListener<EntityViewRenderEvent.CameraSetup> {
if (mc.gameSettings.thirdPersonView <= 0) return@safeListener

it.yaw = cameraYaw
it.pitch = cameraPitch
}

safeListener<InputUpdateEvent> {
if (!arrowKeyYawAdjust) return@safeListener

if (it.movementInput.leftKeyDown) {
// shift cam and player rot left by x degrees
updateYaw(-arrowKeyYawAdjustIncrement)
it.movementInput.leftKeyDown = false
}
if (it.movementInput.rightKeyDown) {
// shift cam and player rot right by x degrees
updateYaw(arrowKeyYawAdjustIncrement)
it.movementInput.rightKeyDown = false
}
it.movementInput.moveStrafe = 0.0f
}
}

private fun SafeClientEvent.updateYaw(dYaw: Float) {
cameraYaw += dYaw
player.rotationYaw += dYaw
}

@JvmStatic
fun handleTurn(entity: Entity, yaw: Float, pitch: Float, ci: CallbackInfo): Boolean {
if (isDisabled || mc.player == null) return false
return if (entity == mc.player) {
this.cameraYaw += yaw * 0.15f
this.cameraPitch -= pitch * 0.15f
this.cameraPitch = MathHelper.clamp(this.cameraPitch, -180.0f, 180.0f)
ci.cancel()
true
} else {
false
}
}
}