]> git.jsancho.org Git - lugaru.git/blob - Source/Account.cpp
1d7bbd1d4951c94692b4e5fe7771aabf47ad955e
[lugaru.git] / Source / Account.cpp
1 /*
2 Copyright (C) 2003, 2010 - Wolfire Games
3 Copyright (C) 2010-2016 - Lugaru contributors (see AUTHORS file)
4
5 This file is part of Lugaru.
6
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.
11
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.
16
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/>.
19 */
20
21 #include "Account.h"
22 #include "binio.h"
23 #include <fstream>
24 #include "MacCompatibility.h"
25 #include "string.h"
26
27 using namespace std;
28
29 extern bool debugmode;
30
31 vector<Account*> Account::accounts = vector<Account*>();
32
33 Account::Account(const string& name) : name(name), campaignProgress()
34 {
35     difficulty = 0;
36     progress = 0;
37     points = 0;
38     memset(highscore, 0, sizeof(highscore));
39     memset(fasttime, 0, sizeof(fasttime));
40     memset(unlocked, 0, sizeof(unlocked));
41
42     setCurrentCampaign("main");
43 }
44
45 void Account::setCurrentCampaign(const string& name)
46 {
47     currentCampaign = name;
48 }
49
50 Account* Account::add(const string& name)
51 {
52     accounts.push_back(new Account(name));
53     return accounts.back();
54 }
55
56 Account* Account::get(int i)
57 {
58
59     if ((i >= 0) && (i < int(accounts.size()))) {
60         return accounts[i];
61     } else
62         return NULL;
63 }
64
65 void Account::destroy(int i)
66 {
67     accounts.erase(accounts.begin() + i);
68 }
69 Account* Account::destroy(Account* a)
70 {
71     for (unsigned i = 0; i < accounts.size(); i++) {
72         if (accounts[i] == a) {
73             accounts.erase(accounts.begin() + i);
74             return NULL;
75         }
76     }
77     printf("Unexpected error : User %s not found\n", a->getName());
78     return accounts.front();
79 }
80
81 int Account::getDifficulty()
82 {
83     return difficulty;
84 }
85
86 void Account::endGame()
87 {
88     campaignProgress[currentCampaign].choices.clear();
89     campaignProgress[currentCampaign].score = 0;
90     campaignProgress[currentCampaign].time = 0;
91 }
92
93 void Account::winCampaignLevel(int choice, float score, float time)
94 {
95     campaignProgress[currentCampaign].choices.push_back(choice);
96     setCampaignScore(campaignProgress[currentCampaign].score + score);
97     campaignProgress[currentCampaign].time = time;
98 }
99
100 void Account::winLevel(int level, float score, float time)
101 {
102     if (!debugmode) {
103         if (score > highscore[level])
104             highscore[level] = score;
105         if (time < fasttime[level] || fasttime[level] == 0)
106             fasttime[level] = time;
107     }
108     if (progress < level + 1)
109         progress = level + 1;
110 }
111
112 Account* Account::loadFile(string filename)
113 {
114     FILE *tfile;
115     int numaccounts;
116     int accountactive;
117
118     tfile = fopen(ConvertFileName(filename.c_str()), "rb" );
119
120     if (tfile) {
121         funpackf(tfile, "Bi", &numaccounts);
122         funpackf(tfile, "Bi", &accountactive);
123         printf("number of accounts %d\n", numaccounts);
124         for (int i = 0; i < numaccounts; i++) {
125             printf("loading account %d/%d\n", i, numaccounts);
126             Account* acc = new Account();
127             funpackf(tfile, "Bi", &(acc->difficulty));
128             funpackf(tfile, "Bi", &(acc->progress));
129             int nbCampaigns;
130             funpackf(tfile, "Bi", &nbCampaigns);
131             //~ printf("loading %d campaign progress info\n",nbCampaigns);
132
133             for (int k = 0; k < nbCampaigns; ++k) {
134                 string campaignName = "";
135                 int t;
136                 char c;
137                 funpackf(tfile, "Bi",  &t);
138                 for (int j = 0; j < t; j++) {
139                     funpackf(tfile, "Bb",  &c);
140                     campaignName.append(1, c);
141                 }
142                 //~ printf("loading %s campaign progress info\n",campaignName.c_str());
143                 funpackf(tfile, "Bf", &(acc->campaignProgress[campaignName].time));
144                 funpackf(tfile, "Bf", &(acc->campaignProgress[campaignName].score));
145                 funpackf(tfile, "Bf", &(acc->campaignProgress[campaignName].fasttime));
146                 funpackf(tfile, "Bf", &(acc->campaignProgress[campaignName].highscore));
147                 int campaignchoicesmade, campaignchoice;
148                 funpackf(tfile, "Bi", &campaignchoicesmade);
149                 for (int j = 0; j < campaignchoicesmade; j++) {
150                     funpackf(tfile, "Bi", &campaignchoice);
151                     if (campaignchoice >= 10) { // what is that for?
152                         campaignchoice = 0;
153                     }
154                     acc->campaignProgress[campaignName].choices.push_back(campaignchoice);
155                 }
156             }
157
158             acc->currentCampaign = "";
159             int t;
160             char c;
161             funpackf(tfile, "Bi",  &t);
162             for (int i = 0; i < t; i++) {
163                 funpackf(tfile, "Bb",  &c);
164                 acc->currentCampaign.append(1, c);
165             }
166
167             funpackf(tfile, "Bf", &(acc->points));
168             for (int i = 0; i < 50; i++) {
169                 funpackf(tfile, "Bf", &(acc->highscore[i]));
170                 funpackf(tfile, "Bf", &(acc->fasttime[i]));
171             }
172             for (int i = 0; i < 60; i++) {
173                 funpackf(tfile, "Bb",  &(acc->unlocked[i]));
174             }
175             int temp;
176             char ctemp;
177             funpackf(tfile, "Bi",  &temp);
178             for (int i = 0; i < temp; i++) {
179                 funpackf(tfile, "Bb",  &ctemp);
180                 acc->name.append(1, ctemp);
181             }
182             if (!strcmp(acc->name.c_str(), ""))
183                 acc->name = "Lugaru Player"; // no empty player name security.
184             accounts.push_back(acc);
185         }
186
187         fclose(tfile);
188         return get(accountactive);
189     } else {
190         printf("filenotfound\n");
191         return NULL;
192     }
193 }
194
195 void Account::saveFile(string filename, Account* accountactive)
196 {
197     FILE *tfile;
198
199     tfile = fopen(ConvertFileName(filename.c_str(), "wb"), "wb" );
200     if (tfile) {
201         printf("writing %d accounts :\n", getNbAccounts());
202         fpackf(tfile, "Bi", getNbAccounts());
203         fpackf(tfile, "Bi", indice(accountactive));
204
205         for (int i = 0; i < getNbAccounts(); i++) {
206             Account* a = Account::get(i);
207             printf("writing account %d/%d (%s)\n", i + 1, getNbAccounts(), a->getName());
208             fpackf(tfile, "Bi", a->difficulty);
209             fpackf(tfile, "Bi", a->progress);
210             fpackf(tfile, "Bi", a->campaignProgress.size());
211
212             map<string, CampaignProgress>::const_iterator it;
213             for (it = a->campaignProgress.begin(); it != a->campaignProgress.end(); ++it) {
214                 fpackf(tfile, "Bi",  it->first.size());
215                 for (unsigned j = 0; j < it->first.size(); j++) {
216                     fpackf(tfile, "Bb",  it->first[j]);
217                 }
218                 fpackf(tfile, "Bf", it->second.time);
219                 fpackf(tfile, "Bf", it->second.score);
220                 fpackf(tfile, "Bf", it->second.fasttime);
221                 fpackf(tfile, "Bf", it->second.highscore);
222                 fpackf(tfile, "Bi", it->second.choices.size());
223                 for (unsigned j = 0; j < it->second.choices.size(); j++) {
224                     fpackf(tfile, "Bi", it->second.choices[j]);
225                 }
226             }
227
228             fpackf(tfile, "Bi", a->getCurrentCampaign().size());
229             for (unsigned j = 0; j < a->getCurrentCampaign().size(); j++) {
230                 fpackf(tfile, "Bb", a->getCurrentCampaign()[j]);
231             }
232
233             fpackf(tfile, "Bf", a->points);
234             for (unsigned j = 0; j < 50; j++) {
235                 fpackf(tfile, "Bf", a->highscore[j]);
236                 fpackf(tfile, "Bf", a->fasttime[j]);
237             }
238             for (unsigned j = 0; j < 60; j++) {
239                 fpackf(tfile, "Bb",  a->unlocked[j]);
240             }
241             fpackf(tfile, "Bi",  a->name.size());
242             for (unsigned j = 0; j < a->name.size(); j++) {
243                 fpackf(tfile, "Bb",  a->name[j]);
244             }
245         }
246
247         fclose(tfile);
248     }
249 }
250
251 int Account::indice(Account* a)
252 {
253     for (unsigned i = 0; i < accounts.size(); i++) {
254         if (accounts[i] == a)
255             return i;
256     }
257     return -1;
258 }