diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-05 09:27:39 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-05-05 09:27:39 -0400 |
commit | 1a1640760502081c2dcded90cff351163fabce76 (patch) | |
tree | 5f6b4f493fe57916261b22950a55482fbee6b7fe /include/brice.hpp | |
parent | 095293277dbca80e91c4f25b05923b7cb3a79396 (diff) |
bricing, controls jumps and sprints
Diffstat (limited to 'include/brice.hpp')
-rw-r--r-- | include/brice.hpp | 48 |
1 files changed, 10 insertions, 38 deletions
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 <unordered_map> #include <string> -#include <istream> -#include <fstream> -#include <common.hpp> +namespace game { + extern bool canJump; + extern bool canSprint; -class Brice { -private: - std::unordered_map<std::string, std::string> 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_ |