forked from cataclysmbnteam/Cataclysm-BN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anatomy.h
61 lines (46 loc) · 1.69 KB
/
anatomy.h
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
49
50
51
52
53
54
55
56
57
58
59
60
61
#pragma once
#ifndef CATA_SRC_ANATOMY_H
#define CATA_SRC_ANATOMY_H
#include <string>
#include <vector>
#include "bodypart.h"
#include "string_id.h"
class JsonObject;
class anatomy;
using anatomy_id = string_id<anatomy>;
/**
* A structure that contains body parts.
* Keeps caches for weighted selections.
*/
class anatomy
{
private:
std::vector<bodypart_str_id> unloaded_bps;
std::vector<bodypart_id> cached_bps;
/** Sum of chances to hit a body part randomly, without aiming. */
float size_sum = 0.0f;
// TODO: get_better_name_for_function
bodypart_str_id get_part_with_cumulative_hit_size( float size ) const;
public:
anatomy_id id;
bool was_loaded = false;
anatomy() = default;
anatomy( const anatomy & ) = default;
anatomy &operator=( const anatomy & ) = default;
/** Returns a random body_part token. main_parts_only will limit it to arms, legs, torso, and head. */
bodypart_id random_body_part() const;
/** Returns a random body part dependent on attacker's relative size and hit roll. */
bodypart_id select_body_part( int size_diff, int hit_roll ) const;
std::vector<bodypart_id> get_bodyparts() const;
void add_body_part( const bodypart_str_id &new_bp );
// TODO: remove_body_part
void load( const JsonObject &jo, const std::string &src );
void finalize();
void check() const;
static void load_anatomy( const JsonObject &jo, const std::string &src );
static void reset();
static void finalize_all();
static void check_consistency();
};
extern anatomy_id human_anatomy;
#endif // CATA_SRC_ANATOMY_H