diff options
author | madmaxoft <github@xoft.cz> | 2013-08-30 17:29:46 +0200 |
---|---|---|
committer | madmaxoft <github@xoft.cz> | 2013-08-30 17:29:46 +0200 |
commit | 88f3fe7f000992fe7a3c47d4e235f725e9b77b69 (patch) | |
tree | d6b7590cc71e3849ae3388760bb2c87b03d6c4be /source/Entities/Player.cpp | |
parent | Updated ProtectionAreas to the latest version. (diff) | |
download | cuberite-88f3fe7f000992fe7a3c47d4e235f725e9b77b69.tar cuberite-88f3fe7f000992fe7a3c47d4e235f725e9b77b69.tar.gz cuberite-88f3fe7f000992fe7a3c47d4e235f725e9b77b69.tar.bz2 cuberite-88f3fe7f000992fe7a3c47d4e235f725e9b77b69.tar.lz cuberite-88f3fe7f000992fe7a3c47d4e235f725e9b77b69.tar.xz cuberite-88f3fe7f000992fe7a3c47d4e235f725e9b77b69.tar.zst cuberite-88f3fe7f000992fe7a3c47d4e235f725e9b77b69.zip |
Diffstat (limited to '')
-rw-r--r-- | source/Entities/Player.cpp | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/source/Entities/Player.cpp b/source/Entities/Player.cpp index 0cb047933..0943f61ff 100644 --- a/source/Entities/Player.cpp +++ b/source/Entities/Player.cpp @@ -857,6 +857,36 @@ void cPlayer::TeleportToCoords(double a_PosX, double a_PosY, double a_PosZ) +Vector3d cPlayer::GetThrowStartPos(void) const +{ + Vector3d res = GetEyePosition(); + + // Adjust the position to be just outside the player's bounding box: + res.x += 0.16 * cos(GetPitch()); + res.y += -0.1; + res.z += 0.16 * sin(GetPitch()); + + return res; +} + + + + + +Vector3d cPlayer::GetThrowSpeed(double a_SpeedCoeff) const +{ + Vector3d res = GetLookVector(); + res.Normalize(); + + // TODO: Add a slight random change (+-0.0075 in each direction) + + return res * a_SpeedCoeff; +} + + + + + void cPlayer::MoveTo( const Vector3d & a_NewPos ) { if ((a_NewPos.y < -990) && (GetPosY() > -100)) |