Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
Skins
  • Light
  • Brite
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse

LiquidBounce Forum

  1. Home
  2. Kotlin/Java
  3. There is an error in the MixinEntity.java file.(MixinEntity.java中有个错误)

There is an error in the MixinEntity.java file.(MixinEntity.java中有个错误)

Scheduled Pinned Locked Moved Kotlin/Java
1 Posts 1 Posters 604 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • K Offline
    K Offline
    kuntaihao
    wrote on last edited by
    #1

    package net.ccbluex.liquidbounce.injection.forge.mixins.entity;

    import net.ccbluex.liquidbounce.injection.implementations.IMixinEntity;
    import net.ccbluex.liquidbounce.event.EventManager;
    import net.ccbluex.liquidbounce.event.StrafeEvent;
    import net.ccbluex.liquidbounce.features.module.modules.combat.HitBox;
    import net.ccbluex.liquidbounce.features.module.modules.exploit.NoPitchLimit;
    import net.ccbluex.liquidbounce.features.module.modules.movement.NoFluid;
    import net.minecraft.block.Block;
    import net.minecraft.block.material.Material;
    import net.minecraft.crash.CrashReportCategory;
    import net.minecraft.entity.Entity;
    import net.minecraft.util.AxisAlignedBB;
    import net.minecraft.util.BlockPos;
    import net.minecraft.util.Vec3;
    import net.minecraft.world.World;
    import net.minecraftforge.fml.relauncher.Side;
    import net.minecraftforge.fml.relauncher.SideOnly;
    import org.spongepowered.asm.mixin.Mixin;
    import org.spongepowered.asm.mixin.Shadow;
    import org.spongepowered.asm.mixin.injection.At;
    import org.spongepowered.asm.mixin.injection.Inject;
    import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
    import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;

    import java.util.Random;
    import java.util.UUID;

    import static net.ccbluex.liquidbounce.utils.MinecraftInstance.mc;

    @Mixin(Entity.class)
    @SideOnly(Side.CLIENT)
    public abstract class MixinEntity implements IMixinEntity {

    @Shadow
    public double posX;
    
    @Shadow
    public double posY;
    
    @Shadow
    public double posZ;
    
    private double trueX;
    
    public double getTrueX() {
        return trueX;
    }
    
    public void setTrueX(double x) {
        trueX = x;
    }
    
    private double trueY;
    
    public double getTrueY() {
        return trueY;
    }
    
    public void setTrueY(double y) {
        trueY = y;
    }
    
    private double trueZ;
    
    public double getTrueZ() {
        return trueZ;
    }
    
    public void setTrueZ(double z) {
        trueZ = z;
    }
    
    private boolean truePos;
    
    public boolean getTruePos() {
        return truePos;
    }
    
    public void setTruePos(boolean set) {
        truePos = set;
    }
    
    @Shadow
    public abstract boolean isSprinting();
    
    @Shadow
    public float rotationPitch;
    
    @Shadow
    public float rotationYaw;
    
    @Shadow
    public abstract AxisAlignedBB getEntityBoundingBox();
    
    @Shadow
    public Entity ridingEntity;
    
    @Shadow
    public double motionX;
    
    @Shadow
    public double motionY;
    
    @Shadow
    public double motionZ;
    
    @Shadow
    public boolean onGround;
    
    @Shadow
    public boolean isAirBorne;
    
    @Shadow
    public boolean noClip;
    
    @Shadow
    public World worldObj;
    
    @Shadow
    public void moveEntity(double x, double y, double z) {
    }
    
    @Shadow
    public boolean isInWeb;
    
    @Shadow
    public float stepHeight;
    
    @Shadow
    public boolean isCollidedHorizontally;
    
    @Shadow
    public boolean isCollidedVertically;
    
    @Shadow
    public boolean isCollided;
    
    @Shadow
    public float distanceWalkedModified;
    
    @Shadow
    public float distanceWalkedOnStepModified;
    
    @Shadow
    public abstract boolean isInWater();
    
    @Shadow
    protected Random rand;
    
    @Shadow
    public int fireResistance;
    
    @Shadow
    protected boolean inPortal;
    
    @Shadow
    public int timeUntilPortal;
    
    @Shadow
    public float width;
    
    @Shadow
    public abstract boolean isRiding();
    
    @Shadow
    public abstract void setFire(int seconds);
    
    @Shadow
    protected abstract void dealFireDamage(int amount);
    
    @Shadow
    public abstract boolean isWet();
    
    @Shadow
    public abstract void addEntityCrashInfo(CrashReportCategory category);
    
    @Shadow
    protected abstract void doBlockCollisions();
    
    @Shadow
    protected abstract void playStepSound(BlockPos pos, Block blockIn);
    
    @Shadow
    public abstract void setEntityBoundingBox(AxisAlignedBB bb);
    
    @Shadow
    private int nextStepDistance;
    
    @Shadow
    private int fire;
    
    @Shadow
    public float prevRotationPitch;
    
    @Shadow
    public float prevRotationYaw;
    
    @Shadow
    protected abstract Vec3 getVectorForRotation(float pitch, float yaw);
    
    @Shadow
    public abstract UUID getUniqueID();
    
    @Shadow
    public abstract boolean isSneaking();
    
    @Shadow
    public abstract boolean isInsideOfMaterial(Material materialIn);
    
    public int getNextStepDistance() {
        return nextStepDistance;
    }
    
    public void setNextStepDistance(int nextStepDistance) {
        this.nextStepDistance = nextStepDistance;
    }
    
    public int getFire() {
        return fire;
    }
    
    @Inject(method = "getCollisionBorderSize", at = @At("HEAD"), cancellable = true)
    private void getCollisionBorderSize(final CallbackInfoReturnable<Float> callbackInfoReturnable) {
        final HitBox hitBox = HitBox.INSTANCE;
    
        if (hitBox.handleEvents())
            callbackInfoReturnable.setReturnValue(0.1F + hitBox.determineSize((Entity) (Object) this));
    }
    
    @Inject(method = "setAngles", at = @At("HEAD"), cancellable = true)
    private void setAngles(final float yaw, final float pitch, final CallbackInfo callbackInfo) {
        if (NoPitchLimit.INSTANCE.handleEvents()) {
            callbackInfo.cancel();
    
            prevRotationYaw = rotationYaw;
            prevRotationPitch = rotationPitch;
    
            rotationYaw += yaw * 0.15f;
            rotationPitch -= pitch * 0.15f;
        }
    }
    
    @Inject(method = "moveFlying", at = @At("HEAD"), cancellable = true)
    private void handleRotations(float strafe, float forward, float friction, final CallbackInfo callbackInfo) {
        //noinspection ConstantConditions
        if ((Object) this != mc.thePlayer) return;
    
        final StrafeEvent strafeEvent = new StrafeEvent(strafe, forward, friction, , , , , );
        EventManager.INSTANCE.callEvent(strafeEvent);
    
        if (strafeEvent.isCancelled()) callbackInfo.cancel();
    }
    
    @Inject(method = "isInWater", at = @At("HEAD"), cancellable = true)
    private void isInWater(final CallbackInfoReturnable<Boolean> cir) {
        if (NoFluid.INSTANCE.handleEvents() && NoFluid.INSTANCE.getWater()) {
            cir.setReturnValue(false);
        }
    }
    
    @Inject(method = "isInLava", at = @At("HEAD"), cancellable = true)
    private void isInLava(final CallbackInfoReturnable<Boolean> cir) {
        if (NoFluid.INSTANCE.handleEvents() && NoFluid.INSTANCE.getLava()) {
            cir.setReturnValue(false);
        }
    }
    

    }
    There is an error on this line.(中这一行出错)
    final StrafeEvent strafeEvent = new StrafeEvent(strafe, forward, friction, , , , , );
    There were no issues during the initial build. However, when I added a new pattern later on, IDEA reported an error and I couldn't figure out the cause. Rebuilding did not solve the problem either.
    (刚构建时没有问题.往后我添加新模式时IDEA就报错我无法找到其中的原因.重新构建还是不行)C:\Users\XHG_Gmy\Desktop\Ghostclitent\LiquidLite\build\sources\main\java\net\ccbluex\liquidbounce\injection\forge\mixins\entity\MixinEntity.java:254: ����: �Ƿ��ı��ʽ��ʼ
    final StrafeEvent strafeEvent = new StrafeEvent(strafe, forward, friction, , , , , );

    1 Reply Last reply
    0

    Hello! It looks like you're interested in this conversation, but you don't have an account yet.

    Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

    With your input, this post could be even better 💗

    Register Login
    Reply
    • Reply as topic
    Log in to reply
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes


    About
    • Terms of Service
    • Privacy Policy
    • Status
    • Contact Us
    Downloads
    • Releases
    • Source code
    • License
    Docs
    • Tutorials
    • CustomHUD
    • AutoSettings
    • ScriptAPI
    Community
    • Forum
    • Guilded
    • YouTube
    • Twitter
    • D.Tube
    • Login

    • Login or register to search.
    • First post
      Last post
    0
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups