From 1a1640760502081c2dcded90cff351163fabce76 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Thu, 5 May 2016 09:27:39 -0400 Subject: bricing, controls jumps and sprints --- include/brice.hpp | 48 ++++++++++-------------------------------------- 1 file changed, 10 insertions(+), 38 deletions(-) (limited to 'include/brice.hpp') diff --git a/include/brice.hpp b/include/brice.hpp index 60fcec8..5f82fec 100644 --- a/include/brice.hpp +++ b/include/brice.hpp @@ -1,48 +1,20 @@ #ifndef BRICE_H_ #define BRICE_H_ -#include #include -#include -#include -#include +namespace game { + extern bool canJump; + extern bool canSprint; -class Brice { -private: - std::unordered_map ice; -public: - Brice(void){} - ~Brice(void){} + std::string getValue(const std::string& id); + + bool setValue(const std::string& id, const std::string& value); - std::string getValue(const std::string& id) const { - auto item = ice.find(id); - return (item == std::end(ice)) ? "" : item->second; - } + void briceSave(void); + void briceLoad(void); - void addValue(const std::string &id, const std::string& value) { - ice.emplace(std::make_pair(id, value)); - } - - void save(void) const { - std::ofstream out ("brice.dat", std::ios::out | std::ios::binary); - std::string data = std::to_string(ice.size()) + '\n'; - - if (!out.is_open()) - UserError("Cannot open brice data file"); - - for (const auto& i : ice) { - data.append(i.first + ',' ); - data.append(i.second + '\n'); - } - - out.write(data.data(), data.size()); - out.close(); - } - - void load(void) { - const std::string data = readFile("brice.dat"); - } -}; + void briceUpdate(void); +} #endif // BRICE_H_ -- cgit v1.2.3