46 lines
1.9 KiB
Java
46 lines
1.9 KiB
Java
/*
|
|
* Copyright 2025-2026 R3944Realms
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
package top.r3944realms.eroticdungeongame.mixin.minecraft;
|
|
|
|
import com.llamalad7.mixinextras.injector.wrapmethod.WrapMethod;
|
|
import com.llamalad7.mixinextras.injector.wrapoperation.Operation;
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.client.renderer.entity.EntityRenderer;
|
|
import net.minecraft.core.BlockPos;
|
|
import net.minecraft.world.entity.Entity;
|
|
import org.spongepowered.asm.mixin.Mixin;
|
|
import top.r3944realms.eroticdungeongame.api.workspace.Services;
|
|
|
|
@Mixin(EntityRenderer.class)
|
|
public abstract class MixinEntityRenderer<T extends Entity> {
|
|
@WrapMethod(method = "getSkyLightLevel")
|
|
protected int edg$getSkyLightLevel(T entity, BlockPos pos, Operation<Integer> original) {
|
|
return Services.WORK_SPACE.tryToDoIfInDeviceAndRet(
|
|
entity,
|
|
data -> {
|
|
if (entity.equals(Minecraft.getInstance().player) && Minecraft.getInstance().options.getCameraType().isFirstPerson()) {
|
|
if (original.call(entity, pos) == 0) {
|
|
return original.call(entity, data.getDeviceMainBlockPos());
|
|
}
|
|
}
|
|
return original.call(entity, pos);
|
|
},
|
|
() -> original.call(entity, pos)
|
|
);
|
|
}
|
|
}
|