tiny_link/src/components/player.cpp

242 lines
5.0 KiB
C++
Raw Normal View History

2021-01-03 09:05:12 +08:00
#include "player.h"
#include "mover.h"
2021-01-04 05:04:11 +08:00
#include "animator.h"
2021-01-04 07:11:49 +08:00
#include "collider.h"
#include "../masks.h"
2021-01-03 09:05:12 +08:00
using namespace TL;
namespace
{
constexpr float max_ground_speed = 60;
constexpr float max_air_speed = 70;
constexpr float ground_accel = 500;
constexpr float air_accel = 20;
constexpr float friction = 800;
2021-01-04 07:11:49 +08:00
constexpr float hurt_friction = 200;
2021-01-03 09:05:12 +08:00
constexpr float gravity = 450;
constexpr float jump_force = -105;
constexpr float jump_time = 0.18f;
2021-01-04 07:11:49 +08:00
constexpr float hurt_duration = 0.5f;
constexpr float invincible_duration = 1.5f;
2021-01-03 09:05:12 +08:00
}
Player::Player()
{
input_move = VirtualStick()
.add_keys(Key::Left, Key::Right, Key::Up, Key::Down)
.add_buttons(0, Button::Left, Button::Right, Button::Up, Button::Down)
.add_axes(0, Axis::LeftX, Axis::LeftY, 0.2f);
input_jump = VirtualButton()
.press_buffer(0.15f)
.add_key(Key::X)
.add_button(0, Button::A);
2021-01-04 06:08:22 +08:00
input_attack = VirtualButton()
.press_buffer(0.15f)
.add_key(Key::C)
.add_button(0, Button::X);
2021-01-03 09:05:12 +08:00
}
void Player::update()
{
input_move.update();
input_jump.update();
2021-01-04 06:08:22 +08:00
input_attack.update();
2021-01-03 09:05:12 +08:00
auto mover = get<Mover>();
2021-01-04 05:04:11 +08:00
auto anim = get<Animator>();
2021-01-04 07:11:49 +08:00
auto hitbox = get<Collider>();
2021-01-04 05:04:11 +08:00
auto was_on_ground = m_on_ground;
m_on_ground = mover->on_ground();
2021-01-03 09:05:12 +08:00
int input = input_move.value_i().x;
2021-01-04 05:04:11 +08:00
// Sprite Stuff
2021-01-03 09:05:12 +08:00
{
2021-01-04 05:04:11 +08:00
// land squish
if (!was_on_ground && m_on_ground)
2021-01-04 06:08:22 +08:00
anim->scale = Vec2(m_facing * 1.5f, 0.7f);
2021-01-04 05:04:11 +08:00
// lerp scale back to one
2021-01-04 06:08:22 +08:00
anim->scale = Calc::approach(anim->scale, Vec2(m_facing, 1.0f), Time::delta * 4);
// set m_facing
anim->scale.x = Calc::abs(anim->scale.x) * m_facing;
2021-01-04 05:04:11 +08:00
}
2021-01-03 09:05:12 +08:00
2021-01-04 09:03:48 +08:00
// START
if (m_state == st_start)
{
2021-01-04 10:55:56 +08:00
while (hitbox->check(Mask::solid))
entity()->position.y++;
2021-01-04 09:03:48 +08:00
anim->play("sword");
m_start_timer -= Time::delta;
if (m_start_timer <= 0)
m_state = st_normal;
}
2021-01-04 06:08:22 +08:00
// NORMAL STATE
2021-01-04 09:03:48 +08:00
else if (m_state == st_normal)
2021-01-04 05:04:11 +08:00
{
2021-01-04 06:08:22 +08:00
// Current Animation
if (m_on_ground)
{
if (input != 0)
anim->play("run");
else
anim->play("idle");
}
else
{
anim->play("jump");
}
2021-01-03 09:05:12 +08:00
2021-01-04 06:08:22 +08:00
// Horizontal Movement
2021-01-03 09:05:12 +08:00
{
2021-01-04 06:08:22 +08:00
// Acceleration
mover->speed.x += input * (m_on_ground ? ground_accel : air_accel) * Time::delta;
// Maxspeed
auto maxspd = (m_on_ground ? max_ground_speed : max_air_speed);
if (Calc::abs(mover->speed.x) > maxspd)
{
mover->speed.x = Calc::approach(
mover->speed.x,
Calc::sign(mover->speed.x) * maxspd,
2000 * Time::delta);
}
// Friction
if (input == 0 && m_on_ground)
mover->speed.x = Calc::approach(mover->speed.x, 0, friction * Time::delta);
// Facing Direction
if (input != 0 && m_on_ground)
m_facing = input;
2021-01-03 09:05:12 +08:00
}
2021-01-04 06:08:22 +08:00
// Invoke Jumping
{
if (input_jump.pressed() && mover->on_ground())
{
input_jump.clear_press_buffer();
anim->scale = Vec2(m_facing * 0.65f, 1.4f);
mover->speed.x = input * max_air_speed;
m_jump_timer = jump_time;
}
}
// Begin Attack
if (input_attack.pressed())
{
input_attack.clear_press_buffer();
m_state = st_attack;
2021-01-04 07:11:49 +08:00
m_attack_timer = 0;
if (!m_attack_collider)
m_attack_collider = entity()->add(Collider::make_rect(RectI()));
m_attack_collider->mask = Mask::player_attack;
2021-01-04 05:04:11 +08:00
2021-01-04 06:08:22 +08:00
if (m_on_ground)
mover->speed.x = 0;
}
}
// ATTACK STATE
else if (m_state == st_attack)
{
anim->play("attack");
2021-01-04 07:11:49 +08:00
m_attack_timer += Time::delta;
// setup hitbox
if (m_attack_timer < 0.2f)
{
m_attack_collider->set_rect(RectI(-16, -12, 16, 8));
}
else if (m_attack_timer < 0.5f)
{
m_attack_collider->set_rect(RectI(8, -8, 16, 8));
}
else if (m_attack_collider)
{
m_attack_collider->destroy();
m_attack_collider = nullptr;
}
2021-01-04 06:08:22 +08:00
2021-01-04 07:11:49 +08:00
// flip hitbox if you're facing left
if (m_facing < 0 && m_attack_collider)
{
auto rect = m_attack_collider->get_rect();
rect.x = -(rect.x + rect.w);
m_attack_collider->set_rect(rect);
}
// end the attack
if (m_attack_timer >= anim->animation()->duration())
2021-01-04 06:08:22 +08:00
{
anim->play("idle");
m_state = st_normal;
}
}
2021-01-04 07:11:49 +08:00
// HURT STATE
else if (m_state == st_hurt)
{
m_hurt_timer -= Time::delta;
if (m_hurt_timer <= 0)
m_state = st_normal;
mover->speed.x = Calc::approach(mover->speed.x, 0, hurt_friction * Time::delta);
}
2021-01-04 06:08:22 +08:00
// Variable Jumping
if (m_jump_timer > 0)
{
mover->speed.y = -100;
m_jump_timer -= Time::delta;
if (!input_jump.down())
m_jump_timer = 0;
2021-01-03 09:05:12 +08:00
}
2021-01-04 07:11:49 +08:00
// Invincible timer
if (m_state != st_hurt && m_invincible_timer > 0)
{
if (Time::on_interval(0.05f))
anim->visible = !anim->visible;
m_invincible_timer -= Time::delta;
if (m_invincible_timer <= 0)
anim->visible = true;
}
2021-01-03 09:05:12 +08:00
// Gravity
2021-01-04 05:04:11 +08:00
if (!m_on_ground)
2021-01-03 09:05:12 +08:00
{
float grav = gravity;
2021-01-04 07:11:49 +08:00
if (m_state == st_normal && Calc::abs(mover->speed.y) < 20 && input_jump.down())
2021-01-03 09:05:12 +08:00
grav *= 0.4f;
mover->speed.y += grav * Time::delta;
}
2021-01-04 07:11:49 +08:00
// Hurt Check!
if (m_invincible_timer <= 0 && hitbox->check(Mask::enemy))
{
Time::pause_for(0.1f);
anim->play("hurt");
if (m_attack_collider)
{
m_attack_collider->destroy();
m_attack_collider = nullptr;
}
mover->speed = Vec2(-m_facing * 100, -80);
health--;
m_hurt_timer = hurt_duration;
m_invincible_timer = invincible_duration;
m_state = st_hurt;
}
2021-01-03 09:05:12 +08:00
}