Skip to content

Commit 78b4ecc

Browse files
authored
Player hitbox fixes (#3382)
* Update entities.js * Update ray_trace.js Replace raytrace start position with bot.entity.eyeHeight Remove old fix for player hitbox height * Update digging.js Set raytrace start position to bot.entity.eyeHeight * Update index.js Minor typo in comment lol * Update physics.js Change lookAt start position to use bot.entity.eyeHeight * Update blocks.js Change canSeeBlock to use bot.entity.eyeHeight * Update entities.js Update player height on crouch/uncrouch * Update entities.js Initialize bot.entity.height and bot.entity.width on login * Update entities.js Typo * Update entities.js Initialize bot entity eyeHeight on login
1 parent ef042a2 commit 78b4ecc

File tree

6 files changed

+29
-17
lines changed

6 files changed

+29
-17
lines changed

examples/place_end_crystal/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ bot.on('chat', async (ign, msg) => {
5151
const { x: aboveX, y: aboveY, z: aboveZ } = block.position.offset(0, 1, 0)
5252
const blockBoundingBox = new AABB(aboveX, aboveY, aboveZ, aboveX + 1, aboveY + 2, aboveZ + 1)
5353
const entityAABBs = Object.values(bot.entities).map(entity => {
54-
// taken from taken from https://github.com/PrismarineJS/prismarine-physics/blob/d145e54a4bb8604300258badd7563f59f2101922/index.js#L92
54+
// taken from https://github.com/PrismarineJS/prismarine-physics/blob/d145e54a4bb8604300258badd7563f59f2101922/index.js#L92
5555
const w = entity.height / 2
5656
const { x, y, z } = entity.position
5757
return new AABB(-w, 0, -w, w, entity.height, w).offset(x, y, z)

lib/plugins/blocks.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ function inject (bot, { version, storageBuilder, hideErrors }) {
221221
// if passed in block is within line of sight to the bot, returns true
222222
// also works on anything with a position value
223223
function canSeeBlock (block) {
224-
const headPos = bot.entity.position.offset(0, bot.entity.height, 0)
224+
const headPos = bot.entity.position.offset(0, bot.entity.eyeHeight, 0)
225225
const range = headPos.distanceTo(block.position)
226226
const dir = block.position.offset(0.5, 0.5, 0.5).minus(headPos)
227227
const match = (inputBlock, iter) => {

lib/plugins/digging.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ function inject (bot) {
4242
)
4343
} else if (digFace === 'raycast') {
4444
// Check faces that could be seen from the current position. If the delta is smaller then 0.5 that means the
45-
// bot cam most likely not see the face as the block is 1 block thick
46-
// this could be false for blocks that have a smaller bounding box then 1x1x1
45+
// bot can most likely not see the face as the block is 1 block thick
46+
// this could be false for blocks that have a smaller bounding box than 1x1x1
4747
const dx = bot.entity.position.x - (block.position.x + 0.5)
48-
const dy = bot.entity.position.y + bot.entity.height - (block.position.y + 0.5)
48+
const dy = bot.entity.position.y + bot.entity.eyeHeight - (block.position.y + 0.5)
4949
const dz = bot.entity.position.z - (block.position.z + 0.5)
5050
// Check y first then x and z
5151
const visibleFaces = {
@@ -63,7 +63,7 @@ function inject (bot) {
6363
0.5 + (i === 'y' ? visibleFaces[i] * 0.5 : 0),
6464
0.5 + (i === 'z' ? visibleFaces[i] * 0.5 : 0)
6565
)
66-
const startPos = bot.entity.position.offset(0, bot.entity.height, 0)
66+
const startPos = bot.entity.position.offset(0, bot.entity.eyeHeight, 0)
6767
const rayBlock = bot.world.raycast(startPos, targetPos.clone().subtract(startPos).normalize(), 5)
6868
if (rayBlock) {
6969
if (startPos.distanceTo(rayBlock.intersect) < startPos.distanceTo(targetPos)) {
@@ -94,7 +94,7 @@ function inject (bot) {
9494
for (const i in validFaces) {
9595
const tPos = validFaces[i].targetPos
9696
const cDist = new Vec3(tPos.x, tPos.y, tPos.z).distanceSquared(
97-
bot.entity.position.offset(0, bot.entity.height, 0)
97+
bot.entity.position.offset(0, bot.entity.eyeHeight, 0)
9898
)
9999
if (distSqrt > cDist) {
100100
closest = validFaces[i]

lib/plugins/entities.js

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,12 @@
11
const { Vec3 } = require('vec3')
22
const conv = require('../conversions')
3-
const NAMED_ENTITY_HEIGHT = 1.62
4-
const NAMED_ENTITY_WIDTH = 0.6
5-
const CROUCH_HEIGHT = NAMED_ENTITY_HEIGHT - 0.08
3+
// These values are only accurate for versions 1.14 and above (crouch hitbox changes)
4+
// Todo: hitbox sizes for sleeping, swimming/crawling, and flying with elytra
5+
const PLAYER_HEIGHT = 1.8
6+
const CROUCH_HEIGHT = 1.5
7+
const PLAYER_WIDTH = 0.6
8+
const PLAYER_EYEHEIGHT = 1.62
9+
const CROUCH_EYEHEIGHT = 1.27
610

711
module.exports = inject
812

@@ -102,6 +106,9 @@ function inject (bot) {
102106
bot.entity.username = bot._client.username
103107
bot.entity.type = 'player'
104108
bot.entity.name = 'player'
109+
bot.entity.height = PLAYER_HEIGHT
110+
bot.entity.width = PLAYER_WIDTH
111+
bot.entity.eyeHeight = PLAYER_EYEHEIGHT
105112
})
106113

107114
bot._client.on('entity_equipment', (packet) => {
@@ -130,11 +137,13 @@ function inject (bot) {
130137
})
131138

132139
bot.on('entityCrouch', (entity) => {
140+
entity.eyeHeight = CROUCH_EYEHEIGHT
133141
entity.height = CROUCH_HEIGHT
134142
})
135143

136144
bot.on('entityUncrouch', (entity) => {
137-
entity.height = NAMED_ENTITY_HEIGHT
145+
entity.eyeHeight = PLAYER_EYEHEIGHT
146+
entity.height = PLAYER_HEIGHT
138147
})
139148

140149
bot._client.on('collect', (packet) => {
@@ -184,8 +193,9 @@ function inject (bot) {
184193
entity.username = bot.uuidToUsername[uuid]
185194
entity.uuid = uuid
186195
updateEntityPos(entity, pos)
187-
entity.height = NAMED_ENTITY_HEIGHT
188-
entity.width = NAMED_ENTITY_WIDTH
196+
entity.eyeHeight = PLAYER_EYEHEIGHT
197+
entity.height = PLAYER_HEIGHT
198+
entity.width = PLAYER_WIDTH
189199
if (bot.players[entity.username] !== undefined && !bot.players[entity.username].entity) {
190200
bot.players[entity.username].entity = entity
191201
}

lib/plugins/physics.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ function inject (bot, { physicsEnabled, maxCatchupTicks }) {
323323
}
324324

325325
bot.lookAt = async (point, force) => {
326-
const delta = point.minus(bot.entity.position.offset(0, bot.entity.height, 0))
326+
const delta = point.minus(bot.entity.position.offset(0, bot.entity.eyeHeight, 0))
327327
const yaw = Math.atan2(-delta.x, -delta.z)
328328
const groundDistance = Math.sqrt(delta.x * delta.x + delta.z * delta.z)
329329
const pitch = Math.atan2(delta.y, groundDistance)
@@ -332,7 +332,9 @@ function inject (bot, { physicsEnabled, maxCatchupTicks }) {
332332

333333
// player position and look (clientbound)
334334
bot._client.on('position', (packet) => {
335-
bot.entity.height = 1.62
335+
// Is this necessary? Feels like it might wrongly overwrite hitbox size sometimes
336+
// e.g. when crouching/crawling/swimming. Can someone confirm?
337+
bot.entity.height = 1.8
336338

337339
// Velocity is only set to 0 if the flag is not set, otherwise keep current velocity
338340
const vel = bot.entity.velocity

lib/plugins/ray_trace.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = (bot) => {
2828
.filter(entity => entity.type !== 'object' && entity.username !== bot.username && entity.position.distanceTo(bot.entity.position) <= maxDistance)
2929

3030
const dir = new Vec3(-Math.sin(bot.entity.yaw) * Math.cos(bot.entity.pitch), Math.sin(bot.entity.pitch), -Math.cos(bot.entity.yaw) * Math.cos(bot.entity.pitch))
31-
const iterator = new RaycastIterator(bot.entity.position.offset(0, bot.entity.height, 0), dir.normalize(), maxDistance)
31+
const iterator = new RaycastIterator(bot.entity.position.offset(0, bot.entity.eyeHeight, 0), dir.normalize(), maxDistance)
3232

3333
let targetEntity = null
3434
let targetDist = maxDistance
@@ -37,7 +37,7 @@ module.exports = (bot) => {
3737
const entity = entities[i]
3838
const w = entity.width / 2
3939

40-
const shapes = [[-w, 0, -w, w, entity.height + (entity.type === 'player' ? 0.18 : 0), w]]
40+
const shapes = [[-w, 0, -w, w, entity.height, w]]
4141
const intersect = iterator.intersect(shapes, entity.position)
4242
if (intersect) {
4343
const entityDir = entity.position.minus(bot.entity.position) // Can be combined into 1 line

0 commit comments

Comments
 (0)