aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-09-05 12:54:48 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-09-05 12:54:48 -0400
commit643e94897ba5fab0570d118a7aafc7772949d4e3 (patch)
tree0c9580cccee3bba95664eddef37572f496573cc3 /src
parentb1f93a4f8a5a3e84db9f00d0b41749d4fb32ed26 (diff)
saving inventory
Diffstat (limited to 'src')
-rw-r--r--src/inventory.cpp44
-rw-r--r--src/systems/dialog.cpp2
-rwxr-xr-xsrc/tinyxml2.cpp6
-rw-r--r--src/ui.cpp5
4 files changed, 49 insertions, 8 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp
index f200705..b96d5cf 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -4,12 +4,15 @@
#include <components.hpp>
#include <engine.hpp>
#include <error.hpp>
+#include <fileio.hpp>
#include <font.hpp>
#include <player.hpp>
#include <render.hpp>
#include <ui.hpp>
#include <forward_list>
+#include <iostream>
+#include <fstream>
#include <unordered_map>
#include <tinyxml2.h>
@@ -248,7 +251,7 @@ bool InventorySystem::receive(const MouseClickEvent &mce)
game::events.emit<UseItemEvent>(mce.position, items[0].item, &attack->second);
}
}
- return true;
+ return false;
}
bool InventorySystem::receive(const MouseReleaseEvent &mre)
@@ -384,3 +387,42 @@ bool InventorySystem::take(const std::string& name, int count)
return true;
}
+
+bool InventorySystem::save(void)
+{
+ std::ofstream s (game::config::xmlFolder + "inventory.dat");
+
+ // signature?
+ s << "831998\n";
+
+ for (const auto& i : items) {
+ if (i.item != nullptr && i.count > 0)
+ s << std::string(i.item->name) << '\n' << i.count << '\n';
+ }
+
+ // end of list?
+ s.close();
+ return true;
+}
+
+void InventorySystem::load(void)
+{
+ // attempt to load data
+ std::ifstream sf (game::config::xmlFolder + "inventory.dat");
+ if (sf.good()) {
+ sf.close();
+ auto lines = readFileA(game::config::xmlFolder + "inventory.dat");
+
+ // check signature
+ if (std::stoi(lines[0]) != 831998)
+ UserError("Save file signature is invalid... (delete it)");
+
+ for (unsigned int i = 1; i < lines.size(); i += 2) {
+ if (lines[i].size() > 0) {
+ int count = std::stoi(lines[i + 1]);
+ if (count > 0)
+ add(lines[i], count);
+ }
+ }
+ }
+}
diff --git a/src/systems/dialog.cpp b/src/systems/dialog.cpp
index dd07ab8..ee7c834 100644
--- a/src/systems/dialog.cpp
+++ b/src/systems/dialog.cpp
@@ -144,7 +144,7 @@ bool DialogSystem::receive(const MouseClickEvent &mce)
}
}
});
- return true;
+ return false;
}
void DialogSystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
diff --git a/src/tinyxml2.cpp b/src/tinyxml2.cpp
index 7473881..d765357 100755
--- a/src/tinyxml2.cpp
+++ b/src/tinyxml2.cpp
@@ -409,17 +409,17 @@ void XMLUtil::ConvertUTF32ToUTF8(unsigned long input, char* output, int* length)
--output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
- //[[fallthrough]];
+ [[fallthrough]];
case 3:
--output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
- //[[fallthrough]];
+ [[fallthrough]];
case 2:
--output;
*output = (char)((input | BYTE_MARK) & BYTE_MASK);
input >>= 6;
- //[[fallthrough]];
+ [[fallthrough]];
case 1:
--output;
*output = (char)(input | FIRST_BYTE_MARK[*length]);
diff --git a/src/ui.cpp b/src/ui.cpp
index 7a10b20..1043ae9 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -691,10 +691,9 @@ bool InputSystem::receive(const MainSDLEvent& event)
case SDL_KEYUP:
ev.emit<KeyUpEvent>(SDL_KEY);
- if (SDL_KEY == SDLK_ESCAPE)
+ if (SDL_KEY == SDLK_ESCAPE) {
ui::menu::toggle();
-
- if (SDL_KEY == SDLK_h) {
+ } else if (SDL_KEY == SDLK_h) {
quest::toggle();
} else switch (SDL_KEY) {
case SDLK_F3: