Water and Lava/ja: Difference between revisions

From Minecraft Parkour Wiki
Content added Content deleted
(Created page with "TODO: X/Z移動")
No edit summary
 
(6 intermediate revisions by the same user not shown)
Line 7:
水/溶岩の中を動くとき、考慮されるのはスペースを押しているかどうかのみで、地面と接しているかどうかは関係しない。
 
液体から出る際 → 0.3の初速で上方にブースト
<div lang="en" dir="ltr" class="mw-content-ltr">
When exiting a liquid -> jump boost with 0.3 initial speed
</div>
 
水の当たり判定: 0.998 x 0.598 x 0.998 (1x0.6x1で各方向0.001ずつ短い)
<div lang="en" dir="ltr" class="mw-content-ltr">
Water collision: 0.998 x 0.598 x 0.998 (1x0.6x1 retracted 0.001 inwards)
</div>
 
溶岩の当たり判定: 0.8 x 0.6 x 0.8(1x0.6x1でY以外各方向0.1ずつ短い)
<div lang="en" dir="ltr" class="mw-content-ltr">
Lava collision: 0.8 x 0.6 x 0.8 (1x0.6x1 retracted 0.1 inward except for Y)
</div>
 
 
Line 23 ⟶ 17:
== 水 ==
 
When pressing jumpジャンプキーを押している場合: threshold(motY*0.8 - 0.02) + 0.04
<div lang="en" dir="ltr" class="mw-content-ltr">
When pressing jump: threshold(motY*0.8 - 0.02) + 0.04
</div>
 
Otherwiseそれ以外: threshold(motY*0.8 - 0.02)
<div lang="en" dir="ltr" class="mw-content-ltr">
Otherwise: threshold(motY*0.8 - 0.02)
</div>
 
 
プレイヤーのmotYは動き始めの最初のtickの後に-0.004になるため、threshold部分が実際には重要になる。
<div lang="en" dir="ltr" class="mw-content-ltr">
The threshold is actually important, because the player's motY would be -0.004 after the first tick of moving.
</div>
 
1.8では、次tickでの速度は0.04になり、
<div lang="en" dir="ltr" class="mw-content-ltr">
In 1.8, the player's speed on the second tick is 0.04,
</div>
 
 
Line 46 ⟶ 32:
== 溶岩 ==
 
When pressing jumpジャンプキーを押している場合: threshold(motY*0.5 - 0.02) + 0.04
<div lang="en" dir="ltr" class="mw-content-ltr">
When pressing jump: threshold(motY*0.5 - 0.02) + 0.04
</div>
 
Otherwiseそれ以外: threshold(motY*0.5 - 0.02)
<div lang="en" dir="ltr" class="mw-content-ltr">
Otherwise: threshold(motY*0.5 - 0.02)
</div>
 
 
Line 60 ⟶ 42:
== ソースコード ==
 
Flowing water水流:<syntaxhighlight lang="java">
<div lang="en" dir="ltr" class="mw-content-ltr">
/* From Entity.javaから */
Flowing water:<syntaxhighlight lang="java">
/* From Entity.java */
public boolean handleWaterMovement()
{
Line 71 ⟶ 52:
this.fire = 0;
}
</div>
 
else
Line 78 ⟶ 58:
}
 
return this.inWater;
<div lang="en" dir="ltr" class="mw-content-ltr">
return this.inWater;
}
</div>
 
 
/* From World.javaから */
<div lang="en" dir="ltr" class="mw-content-ltr">
/* From World.java */
public boolean handleWater(AxisAlignedBB bb, Material materialIn, Entity entityIn)
{
Line 94 ⟶ 71:
int minZ = MathHelper.floor_double(bb.minZ);
int maxZ = MathHelper.floor_double(bb.maxZ + 1.0D);
</div>
 
{
<div lang="en" dir="ltr" class="mw-content-ltr">
{
boolean inWater = false;
Vec3 acceleration = new Vec3(0.0D, 0.0D, 0.0D);
BlockPos.MutableBlockPos blockpos = new BlockPos.MutableBlockPos();
</div>
 
for (int x = minX; x < maxX; ++x)
<div lang="en" dir="ltr" class="mw-content-ltr">
for (int x = minX; x < maxX; ++x)
{
for (int y = minY; y < maxY; ++y)
Line 113 ⟶ 86:
IBlockState iblockstate = this.getBlockState(blockpos);
Block block = iblockstate.getBlock();
</div>
 
<divif lang="en"(block.getMaterial() dir="ltr"= class="mw-content-ltr">materialIn)
if (block.getMaterial() == materialIn)
{
double level = y + 1 -BlockLiquid.getLiquidHeightPercent(iblockstate.getValue(BlockLiquid.LEVEL));
//liquidHeightPercent(i) returns (i + 1) / 9.0Fを返す;
</div>
 
<divif lang="en"(maxY dir>="ltr" class="mw-content-ltr">level)
if (maxY >= level)
{
inWater = true;
Line 132 ⟶ 101:
}
}
</div>
 
if (acceleration.lengthVector() > 0.0D && entityIn.isPushedByWater())
<div lang="en" dir="ltr" class="mw-content-ltr">
if (acceleration.lengthVector() > 0.0D && entityIn.isPushedByWater())
{
acceleration = acceleration.normalize();
Line 143 ⟶ 110:
entityIn.motionZ += acceleration.zCoord * mult;
}
</div>
 
return inWater;
<div lang="en" dir="ltr" class="mw-content-ltr">
return inWater;
}
}
</div>
 
 
/* From BlockLiquid.javaから */
<div lang="en" dir="ltr" class="mw-content-ltr">
/* From BlockLiquid.java */
public Vec3 modifyAcceleration(World worldIn, BlockPos pos, Entity entityIn, Vec3 motion)
{
return motion.add(this.getFlowVector(worldIn, pos));
}
</div>
 
<div lang="en" dir="ltr" class="mw-content-ltr">
...
</syntaxhighlight>
</div>

Latest revision as of 12:40, 6 June 2022

Other languages:

[WIP]


基本

水/溶岩の中を動くとき、考慮されるのはスペースを押しているかどうかのみで、地面と接しているかどうかは関係しない。

液体から出る際 → 0.3の初速で上方にブースト

水の当たり判定: 0.998 x 0.598 x 0.998 (1x0.6x1で各方向0.001ずつ短い)

溶岩の当たり判定: 0.8 x 0.6 x 0.8(1x0.6x1でY以外各方向0.1ずつ短い)


ジャンプキーを押している場合: threshold(motY*0.8 - 0.02) + 0.04

それ以外: threshold(motY*0.8 - 0.02)


プレイヤーのmotYは動き始めの最初のtickの後に-0.004になるため、threshold部分が実際には重要になる。

1.8では、次tickでの速度は0.04になり、


TODO: X/Z移動


溶岩

ジャンプキーを押している場合: threshold(motY*0.5 - 0.02) + 0.04

それ以外: threshold(motY*0.5 - 0.02)


TODO: X/Z移動


ソースコード

水流:

/* Entity.javaから */
public boolean handleWaterMovement()
{
    if (world.handleWater(this.getEntityBoundingBox().contract(0.001, 0.401, 0.001), Material.water, this))
    {
        this.fallDistance = 0.0F;
        this.inWater = true;
        this.fire = 0;
    }

    else
    {
        this.inWater = false;
    }

    return this.inWater;
}


/* World.javaから */
public boolean handleWater(AxisAlignedBB bb, Material materialIn, Entity entityIn)
{
    int minX = MathHelper.floor_double(bb.minX);
    int maxX = MathHelper.floor_double(bb.maxX + 1.0D);
    int minY = MathHelper.floor_double(bb.minY);
    int maxY = MathHelper.floor_double(bb.maxY + 1.0D);
    int minZ = MathHelper.floor_double(bb.minZ);
    int maxZ = MathHelper.floor_double(bb.maxZ + 1.0D);

    {
        boolean inWater = false;
        Vec3 acceleration = new Vec3(0.0D, 0.0D, 0.0D);
        BlockPos.MutableBlockPos blockpos = new BlockPos.MutableBlockPos();

        for (int x = minX; x < maxX; ++x)
        {
            for (int y = minY; y < maxY; ++y)
            {
                for (int z = minZ; z < maxZ; ++z)
                {
                    blockpos.mutate(x, y, z);
                    IBlockState iblockstate = this.getBlockState(blockpos);
                    Block block = iblockstate.getBlock();

                    if (block.getMaterial() == materialIn)
                    {
                        double level = y + 1 -BlockLiquid.getLiquidHeightPercent(iblockstate.getValue(BlockLiquid.LEVEL));
                        //liquidHeightPercent(i)は(i + 1) / 9.0Fを返す;

                        if (maxY >= level)
                        {
                            inWater = true;
                            acceleration = block.modifyAcceleration(this, blockpos, entityIn, acceleration);
                        }
                    }
                }
            }
        }

        if (acceleration.lengthVector() > 0.0D && entityIn.isPushedByWater())
        {
            acceleration = acceleration.normalize();
            double mult = 0.014D;
            entityIn.motionX += acceleration.xCoord * mult;
            entityIn.motionY += acceleration.yCoord * mult;
            entityIn.motionZ += acceleration.zCoord * mult;
        }

        return inWater;
    }
}


/* BlockLiquid.javaから */
public Vec3 modifyAcceleration(World worldIn, BlockPos pos, Entity entityIn, Vec3 motion)
{
    return motion.add(this.getFlowVector(worldIn, pos));
}

...