summaryrefslogtreecommitdiffhomepage
path: root/Snapshot.cpp
blob: 99cf40094f4ccea549b066ceb4872894029696c2 (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
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
74
75
#include "Snapshot.h"

#include <ctime>
#include <sstream>
#include <string>
#include <unordered_map>
#include <vector>

#include <nlohmann/json.hpp>
#include <raylib.h>

#include "Killmail.h"


using json = nlohmann::json;
using tm = std::tm;


void from_json(const json& j, tm& d);
void from_json(const json& j, Killmail& km);


NLOHMANN_DEFINE_TYPE_NON_INTRUSIVE(LongVector3, x, y, z)


Snapshot::Snapshot(const char* filename) :
    m_killmails {}
{
    if (!FileExists(filename))
        throw "File does not exist";
    char* text = LoadFileText(filename);
    auto dump = json::parse(text);
    std::unordered_map<long int, long int> group_lookup;
    for (const auto& item : dump["types"]) {
        const auto type_id = item["type_id"].get<long int>();
        item["group_id"].get_to(group_lookup[type_id]);
    }
    dump.at("killmails").get_to(m_killmails);
    for (auto& km : m_killmails)
        km.group = group_lookup[km.ship];
    UnloadFileText(text);
}


std::vector<Killmail>
Snapshot::killmails() const
{
    return m_killmails;
}


void
from_json(const json& j, tm& d)
{
    std::istringstream str(j.get<std::string>());
    str >> std::get_time(&d, "%Y-%m-%dT%H:%M:%SZ");
}


void
from_json(const json& j, Killmail& km)
{
    j.at("solar_system_id").get_to(km.location);
    j.at("victim").at("ship_type_id").get_to(km.ship);
    j.at("victim").at("position").get_to(km.position);
    if (j.at("victim").contains("character_id"))
	    j.at("victim").at("character_id").get_to(km.owner.character);
    j.at("victim").at("corporation_id").get_to(km.owner.corporation);
    if (j.at("victim").contains("alliance_id"))
	    j.at("victim").at("alliance_id").get_to(km.owner.alliance);
    if (j.at("victim").contains("faction_id"))
	    j.at("victim").at("faction_id").get_to(km.owner.faction);
    auto calendar = j.at("killmail_time").get<tm>();
    km.time = std::mktime(&calendar);
}