diff options
Diffstat (limited to 'frontend/GameData.h')
-rw-r--r-- | frontend/GameData.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/frontend/GameData.h b/frontend/GameData.h index 0d7577d..b0c9415 100644 --- a/frontend/GameData.h +++ b/frontend/GameData.h @@ -1,7 +1,5 @@ #pragma once -#include <memory> - #include "DB.h" class Enemy; @@ -12,21 +10,24 @@ class GameData { public: static GameData & get_instance(); +private: + DB db { "kerkersendraken.db" }; + public: Enemy * create_enemy(const std::string & name) const; Object * create_object(const std::string & name) const; Location * create_location(const std::string & name) const; public: - void leaderbord_add(const std::string & name, unsigned int gold) const; + void leaderbord_add(const std::string & name, unsigned int gold); void leaderbord_print() const; - std::vector<std::string> random_locations(unsigned count = 1); -private: - GameData(); - virtual ~GameData() = default; +public: + std::vector<std::string> random_objects(unsigned count = 1) const; + std::vector<std::string> random_locations(unsigned count = 1) const; + std::vector<std::string> random_enemies(unsigned count = 1) const; private: - std::unique_ptr<DB> db = nullptr; + std::vector<std::string> random_names(const std::string & table, unsigned count) const; }; |