2015-10-20 13:51:49 +02:00
|
|
|
/*
|
2019-01-01 17:14:11 +01:00
|
|
|
Copyright (C) 2015-2019 Parallel Realities
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
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, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "save.h"
|
|
|
|
|
|
|
|
static void saveStarSystems(cJSON *gameJSON);
|
2016-02-27 17:16:21 +01:00
|
|
|
static void saveChallenges(cJSON *gameJSON);
|
2015-10-20 13:51:49 +02:00
|
|
|
static cJSON *getMissionsJSON(StarSystem *starSystem);
|
|
|
|
static void saveStats(cJSON *gameJSON);
|
2016-05-15 09:19:26 +02:00
|
|
|
static void saveTrophies(cJSON *gameJSON);
|
2016-05-17 20:02:58 +02:00
|
|
|
static void saveFighterStats(cJSON *gameJSON);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
void saveGame(void)
|
|
|
|
{
|
|
|
|
char *out;
|
|
|
|
cJSON *root, *gameJSON;
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
SDL_LogMessage(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_INFO, "Saving Game ...");
|
|
|
|
|
|
|
|
root = cJSON_CreateObject();
|
|
|
|
gameJSON = cJSON_CreateObject();
|
|
|
|
cJSON_AddItemToObject(root, "game", gameJSON);
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-30 08:22:49 +01:00
|
|
|
cJSON_AddStringToObject(gameJSON, "selectedStarSystem", game.selectedStarSystem);
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
saveStarSystems(gameJSON);
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
saveChallenges(gameJSON);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
saveStats(gameJSON);
|
2016-05-15 09:19:26 +02:00
|
|
|
|
|
|
|
saveTrophies(gameJSON);
|
2016-05-17 20:02:58 +02:00
|
|
|
|
|
|
|
saveFighterStats(gameJSON);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
out = cJSON_Print(root);
|
|
|
|
|
2016-04-11 09:44:36 +02:00
|
|
|
writeFile(getSaveFilePath(SAVE_FILENAME), out);
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
cJSON_Delete(root);
|
|
|
|
free(out);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void saveStarSystems(cJSON *gameJSON)
|
|
|
|
{
|
|
|
|
cJSON *starSystemJSON, *starSystemsJSON;
|
|
|
|
StarSystem *starSystem;
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
starSystemsJSON = cJSON_CreateArray();
|
|
|
|
|
|
|
|
for (starSystem = game.starSystemHead.next ; starSystem != NULL ; starSystem = starSystem->next)
|
|
|
|
{
|
2016-05-15 09:19:26 +02:00
|
|
|
if (starSystem->totalMissions > 0)
|
|
|
|
{
|
|
|
|
starSystemJSON = cJSON_CreateObject();
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-05-15 09:19:26 +02:00
|
|
|
cJSON_AddStringToObject(starSystemJSON, "name", starSystem->name);
|
|
|
|
cJSON_AddStringToObject(starSystemJSON, "side", getLookupName("SIDE_", starSystem->side));
|
|
|
|
cJSON_AddItemToObject(starSystemJSON, "missions", getMissionsJSON(starSystem));
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-05-15 09:19:26 +02:00
|
|
|
cJSON_AddItemToArray(starSystemsJSON, starSystemJSON);
|
|
|
|
}
|
2015-10-20 13:51:49 +02:00
|
|
|
}
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
cJSON_AddItemToObject(gameJSON, "starSystems", starSystemsJSON);
|
|
|
|
}
|
|
|
|
|
|
|
|
static cJSON *getMissionsJSON(StarSystem *starSystem)
|
|
|
|
{
|
|
|
|
cJSON *missionJSON, *missionsJSON;
|
|
|
|
Mission *mission;
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
missionsJSON = cJSON_CreateArray();
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
for (mission = starSystem->missionHead.next ; mission != NULL ; mission = mission->next)
|
|
|
|
{
|
|
|
|
missionJSON = cJSON_CreateObject();
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
cJSON_AddStringToObject(missionJSON, "filename", mission->filename);
|
|
|
|
cJSON_AddNumberToObject(missionJSON, "completed", mission->completed);
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
cJSON_AddItemToArray(missionsJSON, missionJSON);
|
|
|
|
}
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
return missionsJSON;
|
|
|
|
}
|
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
static void saveChallenges(cJSON *gameJSON)
|
2015-10-20 13:51:49 +02:00
|
|
|
{
|
2016-03-03 00:20:37 +01:00
|
|
|
int i;
|
2016-02-27 17:16:21 +01:00
|
|
|
Mission *mission;
|
|
|
|
Challenge *c;
|
|
|
|
cJSON *missionsJSON, *missionJSON, *challengesJSON, *challengeJSON;
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
missionsJSON = cJSON_CreateArray();
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
for (mission = game.challengeMissionHead.next ; mission != NULL ; mission = mission->next)
|
2015-10-20 13:51:49 +02:00
|
|
|
{
|
2016-02-27 17:16:21 +01:00
|
|
|
missionJSON = cJSON_CreateObject();
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
cJSON_AddStringToObject(missionJSON, "filename", mission->filename);
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
challengesJSON = cJSON_CreateArray();
|
2015-10-20 13:51:49 +02:00
|
|
|
|
2016-03-03 00:20:37 +01:00
|
|
|
for (i = 0 ; i < MAX_CHALLENGES ; i++)
|
2016-02-27 17:16:21 +01:00
|
|
|
{
|
2016-03-03 00:20:37 +01:00
|
|
|
c = mission->challengeData.challenges[i];
|
|
|
|
|
2016-03-03 08:44:04 +01:00
|
|
|
if (c)
|
|
|
|
{
|
|
|
|
challengeJSON = cJSON_CreateObject();
|
|
|
|
cJSON_AddStringToObject(challengeJSON, "type", getLookupName("CHALLENGE_", c->type));
|
|
|
|
cJSON_AddNumberToObject(challengeJSON, "value", c->value);
|
|
|
|
cJSON_AddNumberToObject(challengeJSON, "passed", c->passed);
|
|
|
|
|
|
|
|
cJSON_AddItemToArray(challengesJSON, challengeJSON);
|
|
|
|
}
|
2016-02-27 17:16:21 +01:00
|
|
|
}
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
cJSON_AddItemToObject(missionJSON, "challenges", challengesJSON);
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
cJSON_AddItemToArray(missionsJSON, missionJSON);
|
2015-10-20 13:51:49 +02:00
|
|
|
}
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2016-02-27 17:16:21 +01:00
|
|
|
cJSON_AddItemToObject(gameJSON, "challenges", missionsJSON);
|
2015-10-20 13:51:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void saveStats(cJSON *gameJSON)
|
|
|
|
{
|
2015-10-25 01:01:46 +02:00
|
|
|
int i;
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-20 13:51:49 +02:00
|
|
|
cJSON *stats = cJSON_CreateObject();
|
2016-03-03 19:03:07 +01:00
|
|
|
|
2015-10-25 01:01:46 +02:00
|
|
|
for (i = 0 ; i < STAT_MAX ; i++)
|
|
|
|
{
|
|
|
|
cJSON_AddNumberToObject(stats, getLookupName("STAT_", i), game.stats[i]);
|
|
|
|
}
|
2015-10-20 13:51:49 +02:00
|
|
|
|
|
|
|
cJSON_AddItemToObject(gameJSON, "stats", stats);
|
|
|
|
}
|
2016-05-15 09:19:26 +02:00
|
|
|
|
|
|
|
static void saveTrophies(cJSON *gameJSON)
|
|
|
|
{
|
|
|
|
Trophy *t;
|
|
|
|
cJSON *trophiesJSON, *trophyJSON;
|
|
|
|
|
|
|
|
trophiesJSON = cJSON_CreateArray();
|
|
|
|
|
|
|
|
for (t = game.trophyHead.next ; t != NULL ; t = t->next)
|
|
|
|
{
|
|
|
|
if (t->awarded)
|
|
|
|
{
|
|
|
|
trophyJSON = cJSON_CreateObject();
|
|
|
|
|
|
|
|
cJSON_AddStringToObject(trophyJSON, "id", t->id);
|
|
|
|
cJSON_AddNumberToObject(trophyJSON, "awardDate", t->awardDate);
|
|
|
|
|
|
|
|
cJSON_AddItemToArray(trophiesJSON, trophyJSON);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
cJSON_AddItemToObject(gameJSON, "trophies", trophiesJSON);
|
|
|
|
}
|
2016-05-17 20:02:58 +02:00
|
|
|
|
|
|
|
static void saveFighterStats(cJSON *gameJSON)
|
|
|
|
{
|
|
|
|
Tuple *t;
|
|
|
|
cJSON *fighterStatsJSON, *fighterStatJSON;
|
|
|
|
|
|
|
|
fighterStatsJSON = cJSON_CreateArray();
|
|
|
|
|
|
|
|
for (t = game.fighterStatHead.next ; t != NULL ; t = t->next)
|
|
|
|
{
|
|
|
|
fighterStatJSON = cJSON_CreateObject();
|
|
|
|
|
|
|
|
cJSON_AddStringToObject(fighterStatJSON, "key", t->key);
|
|
|
|
cJSON_AddNumberToObject(fighterStatJSON, "value", t->value);
|
|
|
|
|
|
|
|
cJSON_AddItemToArray(fighterStatsJSON, fighterStatJSON);
|
|
|
|
}
|
|
|
|
|
|
|
|
cJSON_AddItemToObject(gameJSON, "fighterStats", fighterStatsJSON);
|
|
|
|
}
|