summaryrefslogtreecommitdiffhomepage
path: root/src/character.hpp
blob: 24e0e173e7879b3e23f460d2fa7db03cf32b9281 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#pragma once
#include "src/global-coords.hpp"
#include "src/rotation.hpp"
#include "src/entity.hpp"
#include <Corrade/Containers/String.h>

namespace floormat {

struct anim_atlas;
struct world;

struct character_proto : entity_proto
{
    String name;
    bool playable : 1 = false;

    character_proto();
    character_proto(const character_proto&);
    ~character_proto() noexcept override;
    character_proto& operator=(const character_proto&);
    bool operator==(const entity_proto& proto) const override;
};

struct character final : entity
{
    entity_type type() const noexcept override;
    explicit operator character_proto() const;

    void set_keys(bool L, bool R, bool U, bool D);
    bool update(size_t i, float dt) override;

    String name;
    Vector2s offset_frac;
    bool b_L : 1 = false, b_R : 1 = false, b_U : 1 = false, b_D : 1 = false;
    bool playable : 1 = false;

private:
    int allocate_frame_time(float dt);
    static Vector2 move_vec(int left_right, int top_bottom);

    friend struct world;
    character(object_id id, struct chunk& c, const character_proto& proto);
};

template<> struct entity_type_<struct character> : std::integral_constant<entity_type, entity_type::character> {};
template<> struct entity_type_<struct character_proto> : std::integral_constant<entity_type, entity_type::character> {};

} // namespace floormat