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 62 63 64 65 66 67 68 69 70 71 72 73
|
#pragma once
#ifndef CATA_SRC_AMMO_EFFECT_H
#define CATA_SRC_AMMO_EFFECT_H
#include <cstddef>
#include <iosfwd>
#include <string>
#include <vector>
#include "explosion.h"
#include "field_type.h"
#include "type_id.h"
class JsonObject;
generic_factory<ammo_effect> &get_all_ammo_effects();
struct ammo_effect {
public:
void load( const JsonObject &jo, std::string_view src );
void finalize();
void check() const;
field_type_id aoe_field_type = fd_null.id_or( INVALID_FIELD_TYPE_ID );
/** used during JSON loading only */
int trigger_chance = 1;
std::string aoe_field_type_name = "fd_null";
int aoe_intensity_min = 0;
int aoe_intensity_max = 0;
int aoe_radius = 1;
int aoe_radius_z = 0;
int aoe_chance = 100;
int aoe_size = 0;
explosion_data aoe_explosion_data;
bool aoe_check_passable = false;
bool aoe_check_sees = false;
int aoe_check_sees_radius = 0;
bool do_flashbang = false;
bool do_emp_blast = false;
bool foamcrete_build = false;
field_type_id trail_field_type = fd_null.id_or( INVALID_FIELD_TYPE_ID );
/** used during JSON loading only */
std::string trail_field_type_name = "fd_null";
int trail_intensity_min = 0;
int trail_intensity_max = 0;
int trail_chance = 100;
// Used by generic_factory
string_id<ammo_effect> id;
std::vector<std::pair<string_id<ammo_effect>, mod_id>> src;
bool was_loaded = false;
static size_t count();
};
namespace ammo_effects
{
void load( const JsonObject &jo, const std::string &src );
void finalize_all();
void check_consistency();
void reset();
const std::vector<ammo_effect> &get_all();
} // namespace ammo_effects
extern ammo_effect_id AE_NULL;
#endif // CATA_SRC_AMMO_EFFECT_H
|