From ace2b0b32b402703ed65f395e8e7b9aa47561f21 Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 7 Jan 2023 15:45:59 +0100 Subject: Removed SampleRepository because JsonRepo does everything needed --- universe/src/SampleRepository.cpp | 70 --------------------------------------- 1 file changed, 70 deletions(-) delete mode 100644 universe/src/SampleRepository.cpp (limited to 'universe/src/SampleRepository.cpp') diff --git a/universe/src/SampleRepository.cpp b/universe/src/SampleRepository.cpp deleted file mode 100644 index a81c2bb..0000000 --- a/universe/src/SampleRepository.cpp +++ /dev/null @@ -1,70 +0,0 @@ -#include "SampleRepository.h" - -#include -#include -#include -#include - -#include -#include -#include - - -namespace kurator -{ -namespace universe -{ - - -static const std::map ships { - {"Anvil", {"Anvil", 600.0, 218.0}}, - {"Eclipse", {"Eclipse", 600.0, 263.0}}, - {"Warbringer", {"Warbringer", 600.0, 336.0}}, -}; - - -static const std::map 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}}, - {"GaussCannon", {"GaussCannon", 2, 55.0, 0.0, 5.5, 12000.0, 0.2}}, -}; - - -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); -} - - -void -SampleRepository::for_ship_types(std::function func) const -{ - for (const auto& [_, type] : ships) - func(type); -} - - -void -SampleRepository::for_turret_types(std::function func) const -{ - for (const auto& [_, type] : turrets) - func(type); -} - - -} // namespace universe -} // namespace kurator -- cgit v1.1