SyndicatQuebecoisdelaConstr.../SQCSim2021/player.cpp

190 lines
6.2 KiB
C++
Raw Normal View History

2021-09-27 13:15:57 -04:00
#include "player.h"
2021-12-01 21:21:45 -05:00
#include "world.h"
2021-09-27 13:15:57 -04:00
2021-11-15 20:58:13 -05:00
Player::Player(const Vector3f& position, float rotX, float rotY) : m_position(position), m_rotX(rotX), m_rotY(rotY) {
2021-10-26 17:28:37 -04:00
m_velocity = Vector3f(0, 0, 0);
2021-11-15 20:58:13 -05:00
m_airborne = true;
2021-10-26 17:28:37 -04:00
}
2021-09-27 13:15:57 -04:00
2021-11-15 20:58:13 -05:00
void Player::TurnLeftRight(float value) {
m_rotY += value;
2021-10-04 12:29:10 -04:00
if (m_rotY > 360) m_rotY = 0;
else if (m_rotY < -360) m_rotY = 0;
}
2021-11-15 20:58:13 -05:00
void Player::TurnTopBottom(float value) {
2021-09-27 13:15:57 -04:00
m_rotX += value;
2021-11-27 13:35:39 -05:00
if (m_rotX > 80) m_rotX = 80;
else if (m_rotX < -80) m_rotX = -80;
2021-09-27 13:15:57 -04:00
}
2021-12-07 18:59:50 -05:00
Vector3f Player::GetInput(bool front, bool back, bool left, bool right, bool jump, bool shoot, float elapsedTime) {
2021-11-15 20:58:13 -05:00
Vector3f delta = Vector3f(0, 0, 0);
2021-10-08 08:14:23 -04:00
2021-11-16 20:48:52 -05:00
float yrotrad = (m_rotY / 57.2957795056f); // 180/Pi = 57.295...
float xrotrad = (m_rotX / 57.2957795056f);
2021-10-31 00:31:08 -04:00
2021-11-27 13:35:39 -05:00
m_direction = Vector3f(cos(xrotrad) * sin(yrotrad),
-sin(xrotrad),
cos(xrotrad) * -cos(yrotrad));
m_direction.Normalize();
2021-09-27 13:15:57 -04:00
2021-11-16 20:48:52 -05:00
if (front) {
delta.x += float(sin(yrotrad)) * elapsedTime * 10.f;
delta.z += float(-cos(yrotrad)) * elapsedTime * 10.f;
}
else if (back) {
2021-11-27 13:35:39 -05:00
delta.x += float(-sin(yrotrad)) * elapsedTime * 10.f;
delta.z += float(cos(yrotrad)) * elapsedTime * 10.f;
2021-10-04 15:01:25 -04:00
}
2021-10-04 21:50:54 -04:00
2021-11-16 20:48:52 -05:00
if (left) {
delta.x += float(-cos(yrotrad)) * elapsedTime * 10.f;
delta.z += float(-sin(yrotrad)) * elapsedTime * 10.f;
}
else if (right) {
2021-11-27 13:35:39 -05:00
delta.x += float(cos(yrotrad)) * elapsedTime * 10.f;
delta.z += float(sin(yrotrad)) * elapsedTime * 10.f;
2021-10-02 15:00:48 -04:00
}
2021-10-01 10:52:33 -04:00
2021-11-16 20:48:52 -05:00
delta.Normalize();
delta.x *= .6f;
delta.z *= .6f;
2021-10-04 12:29:10 -04:00
2021-12-07 18:59:50 -05:00
if ((jump || shoot ) && !m_airborne) {
delta.y += jump? .32f: shoot? .1f : 0.f;
2021-11-16 20:48:52 -05:00
m_airborne = true;
2021-10-02 15:00:48 -04:00
}
2021-12-07 18:59:50 -05:00
if (shoot) // Recoil!
TurnTopBottom(-1);
2021-11-15 20:58:13 -05:00
return delta;
}
2021-10-26 17:28:37 -04:00
2021-12-07 18:59:50 -05:00
void Player::ApplyPhysics(Vector3f input, World world, float elapsedTime, Audio* audio) {
static irrklang::ISound* step; // Pour les sons de pas.
static float timing = 0.f;
2021-11-16 20:48:52 -05:00
/* Gestion de collisions */
2021-11-15 20:58:13 -05:00
BlockType bt1, bt2, bt3;
2021-11-15 22:54:01 -05:00
2021-12-01 21:21:45 -05:00
bt1 = world.BlockAt(GetPosition().x, GetPosition().y + input.y, GetPosition().z);
bt2 = world.BlockAt(GetPosition().x, GetPosition().y + input.y - 0.9f, GetPosition().z);
bt3 = world.BlockAt(GetPosition().x, GetPosition().y + input.y - 1.7f, GetPosition().z);
2021-11-27 14:14:05 -05:00
if ((bt1 != BTYPE_AIR || bt2 != BTYPE_AIR || bt3 != BTYPE_AIR) && m_position.y < 129.7f) {
2021-12-01 21:21:45 -05:00
bt1 = world.BlockAt(GetPosition().x, GetPosition().y + .3f, GetPosition().z);
2021-11-15 22:54:01 -05:00
if (bt1 == BTYPE_AIR) m_position.y = (int)m_position.y + .7f;
m_velocity.y = input.y = 0;
2021-11-15 20:58:13 -05:00
m_airborne = false;
2021-09-27 13:15:57 -04:00
}
2021-11-15 22:54:01 -05:00
else {
2021-11-15 20:58:13 -05:00
if (abs(m_velocity.y) < 1.1f) m_velocity.y += input.y - 1.1f * elapsedTime;
2021-12-01 21:21:45 -05:00
bt3 = world.BlockAt(GetPosition().x, GetPosition().y + m_velocity.y - 1.7f, GetPosition().z);
bt1 = world.BlockAt(GetPosition().x, GetPosition().y + .3f, GetPosition().z);
2021-11-15 22:54:01 -05:00
if (bt3 != BTYPE_AIR) {
m_velocity.y = 0;
2021-12-07 18:59:50 -05:00
if (timing == 0.f) {
if (m_airborne) audio->Create3DAudioObj(step, AUDIO_PATH "hit.wav", GetPosition(), GetVelocity(), 1.f);
timing = .3f;
}
2021-11-15 22:54:01 -05:00
m_airborne = false;
}
2021-11-16 20:48:52 -05:00
else if (bt1 != BTYPE_AIR) {
m_velocity.y = -.1f;
}
2021-11-15 22:54:01 -05:00
else m_airborne = true;
2021-09-27 13:15:57 -04:00
}
2021-12-07 18:59:50 -05:00
if (timing > 0.f) timing -= elapsedTime;
if (timing < 0.f) timing = 0.f;
2021-12-01 21:21:45 -05:00
bt1 = world.BlockAt(GetPosition().x + input.x, GetPosition().y, GetPosition().z);
bt2 = world.BlockAt(GetPosition().x + input.x, GetPosition().y - 0.9f, GetPosition().z);
bt3 = world.BlockAt(GetPosition().x + input.x, GetPosition().y - 1.7f, GetPosition().z);
2021-11-15 20:58:13 -05:00
if (bt1 != BTYPE_AIR || bt2 != BTYPE_AIR || bt3 != BTYPE_AIR) {
2021-11-16 20:48:52 -05:00
input.x = m_velocity.x = 0;
m_velocity.z *= .5f;
2021-10-01 10:52:33 -04:00
}
2021-12-01 21:21:45 -05:00
bt1 = world.BlockAt(GetPosition().x, GetPosition().y, GetPosition().z + input.z);
bt2 = world.BlockAt(GetPosition().x, GetPosition().y - 0.9f, GetPosition().z + input.z);
bt3 = world.BlockAt(GetPosition().x, GetPosition().y - 1.7f, GetPosition().z + input.z);
2021-11-15 20:58:13 -05:00
if (bt1 != BTYPE_AIR || bt2 != BTYPE_AIR || bt3 != BTYPE_AIR) {
2021-11-16 20:48:52 -05:00
input.z = m_velocity.z = 0;
m_velocity.x *= .5f;
2021-09-27 13:15:57 -04:00
}
2021-10-31 00:31:08 -04:00
2021-11-15 20:58:13 -05:00
/* Fin gestion de collisions */
2021-11-16 20:48:52 -05:00
/* Gestion de la friction */
if (!m_airborne) {
m_velocity.x += input.x * 2.f * elapsedTime;
m_velocity.z += input.z * 2.f * elapsedTime;
if (input.x == 0.f)
m_velocity.x *= .8f;
2021-11-16 20:48:52 -05:00
if (input.z == 0.f)
m_velocity.z *= .8f;
2021-11-16 20:48:52 -05:00
}
else {
m_velocity.x += input.x * .4f * elapsedTime; // Techniquement contre les lois de la physique, mais c'est beaucoup moins chiant pour grimper sur les blocs.
m_velocity.z += input.z * .4f * elapsedTime;
m_velocity.x *= .99f;
m_velocity.z *= .99f;
}
/* Fin gestion de la friction */
float vy = m_velocity.y;
m_velocity.y = 1.f; // Padding pour limiter le x et z lors du Normalize().
if (m_velocity.Length() >= 1.f) m_velocity.Normalize(); // Limiteur de vitesse en x/z.
m_velocity.y = 0;
if (m_velocity.Length() < .005f) m_velocity.Zero(); // Threshold en x/z.
m_velocity.y = vy;
2021-11-15 20:58:13 -05:00
2021-11-15 22:54:01 -05:00
m_position += m_velocity;
static float bobbingtime = 0; // Gestion de la cam<61>ra
2021-12-07 18:59:50 -05:00
static bool leftright = false;
static bool isStep = false;
if (bobbingtime <= 360.f)
bobbingtime += elapsedTime * 20.f; else bobbingtime = 0;
if ((sin(bobbingtime) - 0.5f) * (abs(m_velocity.x) + abs(m_velocity.z)) < -.2f && !m_airborne) {
Vector3f vstep;
if (leftright)
2021-12-08 16:29:36 -05:00
vstep = Vector3f(GetPosition().x + GetDirection().z, GetPosition().y - 1.7f, GetPosition().z + GetDirection().x);
else vstep = Vector3f(GetPosition().x - GetDirection().z, GetPosition().y - 1.7f, GetPosition().z - GetDirection().x);
2021-12-07 18:59:50 -05:00
if (!isStep) {
audio->Create3DAudioObj(step, AUDIO_PATH "step.wav", vstep, GetVelocity(), .8f);
2021-12-08 16:29:36 -05:00
leftright = !leftright;
2021-12-07 18:59:50 -05:00
}
isStep = true;
}
else isStep = false;
2021-11-16 20:48:52 -05:00
m_POV = m_position.y;
m_POV += m_airborne ? 0 : (sin(bobbingtime) - 0.5f) * (abs(m_velocity.x) + abs(m_velocity.z)) * .2f;
2021-09-27 13:15:57 -04:00
}
2021-09-27 13:56:29 -04:00
void Player::ApplyTransformation(Transformation& transformation, bool rel) const {
2021-10-01 10:52:33 -04:00
transformation.ApplyRotation(-m_rotX, 1, 0, 0);
transformation.ApplyRotation(-m_rotY, 0, 1, 0);
2021-12-01 21:21:45 -05:00
if (rel) transformation.ApplyTranslation(-GetPOV());
2021-09-27 13:15:57 -04:00
}
2021-10-25 10:50:08 -04:00
2021-12-06 12:05:05 -05:00
Vector3f Player::GetPosition() const { return Vector3f(m_position.x + CHUNK_SIZE_X * WORLD_SIZE_X / 2, m_position.y, m_position.z + CHUNK_SIZE_Z * WORLD_SIZE_Y / 2); }
2021-10-25 10:50:08 -04:00
2021-10-26 17:28:37 -04:00
Vector3f Player::GetVelocity() const { return m_velocity; }
2021-12-01 21:21:45 -05:00
Vector3f Player::GetPOV() const { return Vector3f(GetPosition().x, m_POV, GetPosition().z); }
2021-11-15 20:58:13 -05:00
2021-10-31 00:31:08 -04:00
Vector3f Player::GetDirection() const { return m_direction; }
2021-12-01 21:21:45 -05:00
2021-12-03 11:49:59 -05:00
void Player::Teleport(int& x, int& z) {
2021-12-01 21:21:45 -05:00
m_position.x -= x * CHUNK_SIZE_X;
m_position.z -= z * CHUNK_SIZE_Z;
}