2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
5 This file is part of Lugaru.
7 Lugaru is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
12 Lugaru is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with Lugaru. If not, see <http://www.gnu.org/licenses/>.
21 #include "User/Account.hpp"
23 #include "MacCompatibility.hpp"
24 #include "Utils/binio.h"
34 vector<Account> Account::accounts;
35 int Account::i_active = -1;
37 Account::Account(const string& name)
44 memset(highscore, 0, sizeof(highscore));
45 memset(fasttime, 0, sizeof(fasttime));
46 memset(unlocked, 0, sizeof(unlocked));
48 setCurrentCampaign("main");
51 Account::Account(FILE* tfile)
54 funpackf(tfile, "Bi", &difficulty);
55 funpackf(tfile, "Bi", &progress);
57 funpackf(tfile, "Bi", &nbCampaigns);
59 for (int k = 0; k < nbCampaigns; ++k) {
60 string campaignName = "";
63 funpackf(tfile, "Bi", &t);
64 for (int j = 0; j < t; j++) {
65 funpackf(tfile, "Bb", &c);
66 campaignName.append(1, c);
68 funpackf(tfile, "Bf", &(campaignProgress[campaignName].time));
69 funpackf(tfile, "Bf", &(campaignProgress[campaignName].score));
70 funpackf(tfile, "Bf", &(campaignProgress[campaignName].fasttime));
71 funpackf(tfile, "Bf", &(campaignProgress[campaignName].highscore));
72 int campaignchoicesmade, campaignchoice;
73 funpackf(tfile, "Bi", &campaignchoicesmade);
74 for (int j = 0; j < campaignchoicesmade; j++) {
75 funpackf(tfile, "Bi", &campaignchoice);
76 if (campaignchoice >= 10) { // what is that for?
79 campaignProgress[campaignName].choices.push_back(campaignchoice);
86 funpackf(tfile, "Bi", &t);
87 for (int i = 0; i < t; i++) {
88 funpackf(tfile, "Bb", &c);
89 currentCampaign.append(1, c);
92 funpackf(tfile, "Bf", &points);
93 for (int i = 0; i < 50; i++) {
94 funpackf(tfile, "Bf", &(highscore[i]));
95 funpackf(tfile, "Bf", &(fasttime[i]));
97 for (int i = 0; i < 60; i++) {
98 funpackf(tfile, "Bb", &(unlocked[i]));
102 funpackf(tfile, "Bi", &temp);
103 for (int i = 0; i < temp; i++) {
104 funpackf(tfile, "Bb", &ctemp);
105 name.append(1, ctemp);
108 name = "Lugaru Player"; // no empty player name security.
112 void Account::save(FILE* tfile)
114 fpackf(tfile, "Bi", difficulty);
115 fpackf(tfile, "Bi", progress);
116 fpackf(tfile, "Bi", campaignProgress.size());
118 map<string, CampaignProgress>::const_iterator it;
119 for (it = campaignProgress.begin(); it != campaignProgress.end(); ++it) {
120 fpackf(tfile, "Bi", it->first.size());
121 for (unsigned j = 0; j < it->first.size(); j++) {
122 fpackf(tfile, "Bb", it->first[j]);
124 fpackf(tfile, "Bf", it->second.time);
125 fpackf(tfile, "Bf", it->second.score);
126 fpackf(tfile, "Bf", it->second.fasttime);
127 fpackf(tfile, "Bf", it->second.highscore);
128 fpackf(tfile, "Bi", it->second.choices.size());
129 for (unsigned j = 0; j < it->second.choices.size(); j++) {
130 fpackf(tfile, "Bi", it->second.choices[j]);
134 fpackf(tfile, "Bi", getCurrentCampaign().size());
135 for (unsigned j = 0; j < getCurrentCampaign().size(); j++) {
136 fpackf(tfile, "Bb", getCurrentCampaign()[j]);
139 fpackf(tfile, "Bf", points);
140 for (unsigned j = 0; j < 50; j++) {
141 fpackf(tfile, "Bf", highscore[j]);
142 fpackf(tfile, "Bf", fasttime[j]);
144 for (unsigned j = 0; j < 60; j++) {
145 fpackf(tfile, "Bb", unlocked[j]);
147 fpackf(tfile, "Bi", name.size());
148 for (unsigned j = 0; j < name.size(); j++) {
149 fpackf(tfile, "Bb", name[j]);
153 void Account::setCurrentCampaign(const string& name)
155 currentCampaign = name;
158 void Account::add(const string& name)
160 accounts.emplace_back(name);
161 i_active = accounts.size() - 1;
164 Account& Account::get(int i)
166 return accounts.at(i);
169 int Account::getNbAccounts()
171 return accounts.size();
174 bool Account::hasActive()
176 return (i_active >= 0);
179 Account& Account::active()
181 return accounts.at(i_active);
184 void Account::setActive(int i)
186 if ((i >= 0) && (i < int(accounts.size()))) {
189 cerr << "Tried to set active account to " << i << " but there is not such account" << endl;
194 void Account::destroyActive()
196 if ((i_active >= 0) && (i_active < int(accounts.size()))) {
197 accounts.erase(accounts.begin() + i_active);
200 cerr << "Tried to destroy active account " << i_active << " but there is not such account" << endl;
205 int Account::getDifficulty()
210 void Account::endGame()
212 campaignProgress[currentCampaign].choices.clear();
213 campaignProgress[currentCampaign].score = 0;
214 campaignProgress[currentCampaign].time = 0;
217 void Account::winCampaignLevel(int choice, float score, float time)
219 campaignProgress[currentCampaign].choices.push_back(choice);
220 setCampaignScore(campaignProgress[currentCampaign].score + score);
221 campaignProgress[currentCampaign].time = time;
224 void Account::winLevel(int level, float score, float time)
227 if (score > highscore[level])
228 highscore[level] = score;
229 if (time < fasttime[level] || fasttime[level] == 0)
230 fasttime[level] = time;
232 if (progress < level + 1)
233 progress = level + 1;
236 void Account::loadFile(string filename)
243 tfile = fopen(filename.c_str(), "rb");
246 funpackf(tfile, "Bi", &numaccounts);
247 funpackf(tfile, "Bi", &iactive);
248 printf("Loading %d accounts\n", numaccounts);
249 for (int i = 0; i < numaccounts; i++) {
250 printf("Loading account %d/%d\n", i, numaccounts);
251 accounts.emplace_back(tfile);
257 perror(("Couldn't load users from " + filename).c_str());
262 void Account::saveFile(string filename)
267 tfile = fopen(filename.c_str(), "wb");
269 fpackf(tfile, "Bi", getNbAccounts());
270 fpackf(tfile, "Bi", i_active);
272 for (int i = 0; i < getNbAccounts(); i++) {
273 printf("writing account %d/%d (%s)\n", i + 1, getNbAccounts(), accounts[i].getName().c_str());
274 accounts[i].save(tfile);
279 perror(("Couldn't save users in " + filename).c_str());