Mouse Movement: Difference between revisions

From Minecraft Parkour Wiki
Content added Content deleted
mNo edit summary
mNo edit summary
Line 129: Line 129:




Turning even further can crash the game, when <math display="inline">|yaw| \geq 8.59 \times 10^9</math>
Turning even further can crash the game, when <math display="inline">|yaw| > 8.59 \times 10^9</math>

Revision as of 14:06, 15 June 2020

Mouse movement represents the instant displacement of the cursor on the screen (in pixels) : ().

When it comes to Minecraft, mouse movement represents the instant rotation of the camera (in degrees) : ().


Sensitivity

Sensitivity (s) is a parameter that changes how fast the camera should turn.

This setting can be changed in the Controls menu.

  • The default sensitivity is "100%" ()
  • The lowest vanilla sensitivity is "0%" ()
  • The highest vanilla sensitivity is "200%" ()


In 1.8, is calculated as:

is obtained in the same way, and is multiplied by -1 if "Invert Mouse" is ON.


With default sensitivity (), one pixel of mouse movement translates into 0.15° of rotation.

This means that the camera moves in increments of 0.15°: to turn 45°, you would need to move your mouse by 300px.


Furthermore, s isn't technically bounded by [0,1], and can take any value (even negative).

You can manually edit the value of mouseSensitivity in the options.txt file (found in the .minecraft folder)

Be warned that modifying the options.txt file may or may not be allowed on servers.


Remarkable values

Since it's possible to set the sensitivity to any value we want, it might be interesting to adjust the sensitivity to match specific rotation increments.


To get the required sensitivity for the desired increment , you can use the inverse formula:


s
-0.3333333
0.1° 0.3946504
0.15° 0.5
0.25° 0.6546926
0.5° 0.9115013
1.2350600
45° 5.2452746
180° 8.5221547


Yaw and Pitch

Yaw (horizontal rotation) and pitch (vertical rotation) are floats that keep track of an entity's spatial rotation.

Facing is the restriction of the yaw to [-180, 180], as it is represented in F3. Pitch is naturally restricted to [-90, 90].


Mouse movement directly modifies the Player's yaw and pitch:

/* In EntityRenderer.java */
public void updateMouseMovement(...)
{
    ... //previous code ignored

    float f = this.mc.gameSettings.mouseSensitivity * 0.6F + 0.2F;
    float mult = f * f * f * 8.0F;
    float dX = (float)this.mc.mouseHelper.deltaX * mult;
    float dY = (float)this.mc.mouseHelper.deltaY * mult;

    int i = 1;
    if (this.mc.gameSettings.invertMouse)
        i = -1;

    ... //Applies filters if smooth camera

    this.mc.thePlayer.rotateEntity(dX, dY*i);
}


/* In Entity.java */
public void rotateEntity(float dX, float dY)
{
    this.rotationYaw = this.rotationYaw + dX*0.15);
    this.rotationPitch = this.rotationPitch - dY*0.15;
    this.rotationPitch = MathHelper.clamp(this.rotationPitch, -90.0, 90.0);
}


While the pitch is clamped between -90° and 90°, yaw is not clamped between -180° and 180° as would be expected.

This means that yaw is unbounded, which has some unintended consequences if you deliberately turn in one direction for long enough.


By nature of being a float, its precision becomes worse the bigger it gets, to the point where it becomes noticeable at large values.

When () it can only increase in increments of 0.5°. When () it can only increase in increments of 1°.


At some point, yaw can even mess with movement and stop the player in place.

This is because the yaw gets too large to be converted to a proper angle (see Angles).

This phenomenon happens when .


Turning even further can crash the game, when