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 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201
|
/*
===========================================================================
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://blockattack.net
===========================================================================
*/
#include "puzzlehandler.hpp"
#include "nlohmann/json.hpp"
#include <vector>
#include <iostream>
#include <sstream>
#include "stats.h"
#include <physfs.h> //Abstract file system. To use containers
#include <fmt/core.h>
#include "sago/SagoMisc.hpp"
using json = nlohmann::json;
const int maxNrOfPuzzleStages = 50; //Maximum number of puzzle stages
static std::string puzzleSavePath;
static std::string puzzleName; //The filename of
static std::vector<bool> puzzleCleared(maxNrOfPuzzleStages); //vector that tells if puzzle cleared
static std::vector<int> nrOfMovesAllowed(maxNrOfPuzzleStages); //Moves to clear
static int puzzleLevels[maxNrOfPuzzleStages][6][12]; //Contains board layout;
static int nrOfPuzzles; //How many are there actually?
int PuzzleNumberOfMovesAllowed(size_t level) {
if (level >= nrOfMovesAllowed.size()) {
return -1;
}
return nrOfMovesAllowed.at(level);
}
void PuzzleNumberOfMovesAllowedSet(size_t level, int numbler_of_moves) {
if (level >= nrOfMovesAllowed.size()) {
return;
}
nrOfMovesAllowed[level] = numbler_of_moves;
}
int PuzzleGetBrick(size_t level, int x, int y) {
if (level >= maxNrOfPuzzleStages || x >= 6 || y >= 12 || x < 0 || y < 0) {
return -1;
}
return puzzleLevels[level][x][y];
}
void PuzzleSetBrick(size_t level, int x, int y, int brick) {
if (level >= maxNrOfPuzzleStages || x >= 6 || y >= 12 || x < 0 || y < 0) {
return;
}
if (brick >= 7) {
return;
}
puzzleLevels[level][x][y] = brick;
}
int PuzzleGetNumberOfPuzzles() {
return nrOfPuzzles;
}
bool PuzzleIsCleared(size_t level) {
return puzzleCleared.at(level);
}
const std::string& PuzzleGetName() {
return puzzleName;
}
void PuzzleSetName(const std::string& name) {
puzzleName = name;
puzzleSavePath = name + ".json.save";
}
void LoadClearData() {
std::string readFileContent = sago::GetFileContent(puzzleSavePath.c_str());
if (readFileContent.length()) {
json j = json::parse(readFileContent);
try {
j.at("cleared").get_to(puzzleCleared);
} catch (json::exception& e) {
std::cerr << "Failed to read \"" << puzzleSavePath << "\". File will be regenerated. Reason: " << e.what() << "\n";
puzzleCleared.clear();
}
}
else {
puzzleCleared.clear();
}
puzzleCleared.resize(nrOfPuzzles);
}
void SaveClearData() {
json j = json{ { "cleared", puzzleCleared } };
const std::string s = j.dump(4);
sago::WriteFileContent(puzzleSavePath.c_str(), s);
}
void PuzzleSetClear(size_t Level) {
if (puzzleCleared[Level]==false) {
Stats::getInstance()->addOne("puzzlesSolved");
}
puzzleCleared[Level] = true;
SaveClearData();
}
/*Loads all the puzzle levels*/
int LoadPuzzleStages( ) {
const std::string filename = fmt::format("puzzles/{}",puzzleName);
if (!PHYSFS_exists(filename.c_str())) {
std::cerr << "Warning: File not in blockattack.data: " << filename << "\n";
return -1; //file doesn't exist
}
const std::string fileContent = sago::GetFileContent(filename.c_str());
std::stringstream inFile(fileContent);
inFile >> nrOfPuzzles;
if (nrOfPuzzles>maxNrOfPuzzleStages) {
nrOfPuzzles=maxNrOfPuzzleStages;
}
if (nrOfPuzzles < 0) {
nrOfPuzzles = 0;
}
for (int k=0; k<nrOfPuzzles ; k++) {
inFile >> nrOfMovesAllowed.at(k);
for (int i=11; i>=0; i--)
for (int j=0; j<6; j++) {
inFile >> puzzleLevels[k][j][i];
}
}
LoadClearData();
return 0;
}
int SavePuzzleStages() {
if (puzzleName.empty()) {
std::cerr << "Error: No puzzle name set. Cannot save.\n";
return -1;
}
std::string fileContent = std::to_string(nrOfPuzzles) + "\n";
for (int k=0; k<nrOfPuzzles ; k++) {
fileContent += std::to_string(nrOfMovesAllowed.at(k)) + "\n";
for (int i=11; i>=0; i--)
for (int j=0; j<6; j++) {
fileContent += std::to_string(puzzleLevels[k][j][i]) + " ";
}
fileContent += "\n";
}
sago::WriteFileContent(((std::string)("puzzles/"+puzzleName)).c_str(), fileContent);
return 0;
}
void EditorRemovePuzzle(size_t level) {
if (level >= nrOfPuzzles) {
return;
}
//Shift all puzzles up.
memmove(puzzleLevels[level], puzzleLevels[level+1], sizeof(puzzleLevels[0])*(nrOfPuzzles-level-1));
nrOfPuzzles--;
}
void EditorAddPuzzle(size_t level) {
if (nrOfPuzzles >= maxNrOfPuzzleStages) {
return;
}
if (level >= maxNrOfPuzzleStages)
{
level = 0;
}
memmove( puzzleLevels[level+1], puzzleLevels[level], sizeof(puzzleLevels[0])*(maxNrOfPuzzleStages-level-1) );
nrOfPuzzles++;
for (size_t i = 0; i < 6; i++) {
for (size_t j =0; j < 12; j++) {
puzzleLevels[level][i][j] = -1;
}
}
}
void EditorResizePuzzleNumber(size_t number_of_puzzles) {
if (number_of_puzzles > 50) {
number_of_puzzles = 50;
}
nrOfPuzzles = number_of_puzzles;
}
|