summaryrefslogtreecommitdiff
path: root/universe/src/SampleRepository.cpp
blob: 857d175ee5567e01d7676b5bbdf93ef35fcc57ac (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
#include "SampleRepository.h"

#include <stdexcept>
#include <string>
#include <unordered_map>

#include <kurator/universe/NotFound.h>
#include <kurator/universe/ShipType.h>
#include <kurator/universe/TurretType.h>


namespace kurator
{
namespace universe
{


static const std::unordered_map<std::string, ShipType> ships {
	{"Anvil", {"Anvil", 600.0, 218.0}},
	{"Eclipse", {"Eclipse", 600.0, 263.0}},
	{"Warbringer", {"Warbringer", 600.0, 336.0}},
};


static const std::unordered_map<std::string, TurretType> turrets {
	{"ChargeLaser", {"ChargeLaser", 1, 85.0, 4.5, 0.0, 7000.0, 0.05}},
	{"BurstLaser", {"BurstLaser", 3, 21.0, 0.25, 2.75, 3500.0, 0.05}},
};


ShipType
SampleRepository::ship_type(const std::string& id) const
try {
	return ships.at(id);
}
catch (const std::out_of_range&) {
	throw NotFound(id);
}


TurretType
SampleRepository::turret_type(const std::string& id) const
try {
	return turrets.at(id);
}
catch (const std::out_of_range&) {
	throw NotFound(id);
}


}  // namespace universe
}  // namespace kurator