1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131
|
/*
===========================================================================
blockattack - Block Attack - Rise of the Blocks
Copyright (C) 2005-2015 Poul Sander
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see http://www.gnu.org/licenses/
Source information and contacts persons can be found at
http://www.blockattack.net
===========================================================================
*/
#include "stageclearhandler.hpp"
#include "SDL.h"
#include <vector>
#include <iostream>
#include <sstream>
#include "cereal/cereal.hpp"
#include "cereal/types/vector.hpp"
#include "cereal/archives/json.hpp"
#include "sago/SagoMisc.hpp"
//paths
const char* const stageClearSaveName = "stageClear.json.SCsave";
struct StageClearElement {
bool cleared = false;
int time = 0;
int score = 0;
template<class Archive>
void serialize(Archive& archive) {
archive( cereal::make_nvp("cleared", cleared), cereal::make_nvp("time", time), cereal::make_nvp("score", score) );
}
};
std::vector<StageClearElement> stages(nrOfStageLevels);
std::vector<bool> stageCleared(nrOfStageLevels); //vector that tells if a stage is cleared
std::vector<Sint32> stageTimes(nrOfStageLevels); //For statistical puposes
std::vector<Sint32> stageScores(nrOfStageLevels); //--||--
Sint32 totalScore = 0;
Sint32 totalTime = 0;
using std::string;
using std::cerr;
using std::vector;
static void SaveStageClearStages() {
std::stringstream ss;
{
cereal::JSONOutputArchive archive(ss);
archive(cereal::make_nvp("stages", stages));
}
sago::WriteFileContent(stageClearSaveName, ss.str());
}
void StageClearSetClear(int Level, int score, int time) {
stages.at(Level).cleared = true;
int gameEndedAfter = time;
if (stages.at(Level).score<score) {
stages[Level].score = score;
stages[Level].time = gameEndedAfter;
}
SaveStageClearStages();
}
void LoadStageClearStages() {
std::string readFileContent = sago::GetFileContent(stageClearSaveName);
if (readFileContent.length() > 0) {
std::stringstream ss(readFileContent);
{
try {
cereal::JSONInputArchive archive(ss);
archive(cereal::make_nvp("stages", stages));
}
catch (cereal::Exception& e) {
std::cerr << "Failed to load file \"" << stageClearSaveName << "\". Reason: " << e.what() << "\n";
stages.clear();
}
}
}
else {
stages.clear();
}
stages.resize(nrOfStageLevels);
totalScore = 0;
totalTime = 0;
for (const StageClearElement& s : stages) {
totalScore += s.score;
totalTime += s.time;
}
}
int GetTotalScore() {
return totalScore;
}
int GetTotalTime() {
return totalTime;
}
int GetNrOfLevels() {
return nrOfStageLevels;
}
bool IsStageCleared(int level) {
return stages.at(level).cleared;
}
int GetStageScores(int level) {
return stages.at(level).score;
}
int GetStageTime(int level) {
return stages.at(level).time;
}
|