]> git.jsancho.org Git - lugaru.git/blob - Source/Level/Campaign.cpp
Added braces to all statements with clang-tidy and ran clang-format again
[lugaru.git] / Source / Level / Campaign.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 "Level/Campaign.hpp"
22
23 #include "Game.hpp"
24 #include "Utils/Folders.hpp"
25
26 #include <dirent.h>
27
28 using namespace Game;
29
30 std::vector<CampaignLevel> campaignlevels;
31
32 bool campaign = false;
33
34 int actuallevel = 0;
35
36 std::vector<std::string> ListCampaigns()
37 {
38     errno = 0;
39     DIR* campaigns = opendir(Folders::getResourcePath("Campaigns").c_str());
40     struct dirent* campaign = NULL;
41     if (!campaigns) {
42         perror(("Problem while loading campaigns from " + Folders::getResourcePath("Campaigns")).c_str());
43         exit(EXIT_FAILURE);
44     }
45     std::vector<std::string> campaignNames;
46     while ((campaign = readdir(campaigns)) != NULL) {
47         std::string name(campaign->d_name);
48         if (name.length() < 5) {
49             continue;
50         }
51         if (!name.compare(name.length() - 4, 4, ".txt")) {
52             campaignNames.push_back(name.substr(0, name.length() - 4));
53         }
54     }
55     closedir(campaigns);
56     return campaignNames;
57 }
58
59 void LoadCampaign()
60 {
61     if (!Account::hasActive()) {
62         return;
63     }
64     std::ifstream ipstream(Folders::getResourcePath("Campaigns/" + Account::active().getCurrentCampaign() + ".txt"));
65     if (!ipstream.good()) {
66         if (Account::active().getCurrentCampaign() == "main") {
67             cerr << "Could not found main campaign!" << endl;
68             return;
69         }
70         cerr << "Could not found campaign \"" << Account::active().getCurrentCampaign() << "\", falling back to main." << endl;
71         Account::active().setCurrentCampaign("main");
72         return LoadCampaign();
73     }
74     ipstream.ignore(256, ':');
75     int numlevels;
76     ipstream >> numlevels;
77     campaignlevels.clear();
78     for (int i = 0; i < numlevels; i++) {
79         CampaignLevel cl;
80         ipstream >> cl;
81         campaignlevels.push_back(cl);
82     }
83     ipstream.close();
84
85     std::ifstream test(Folders::getResourcePath("Textures/" + Account::active().getCurrentCampaign() + "/World.png"));
86     if (test.good()) {
87         Mainmenuitems[7].load("Textures/" + Account::active().getCurrentCampaign() + "/World.png", 0);
88     } else {
89         Mainmenuitems[7].load("Textures/World.png", 0);
90     }
91
92     if (Account::active().getCampaignChoicesMade() == 0) {
93         Account::active().setCampaignScore(0);
94         Account::active().resetFasttime();
95     }
96 }
97
98 CampaignLevel::CampaignLevel()
99     : width(10)
100     , choosenext(1)
101 {
102     location.x = 0;
103     location.y = 0;
104 }
105
106 int CampaignLevel::getStartX()
107 {
108     return 30 + 120 + location.x * 400 / 512;
109 }
110
111 int CampaignLevel::getStartY()
112 {
113     return 30 + 30 + (512 - location.y) * 400 / 512;
114 }
115
116 int CampaignLevel::getEndX()
117 {
118     return getStartX() + width;
119 }
120
121 int CampaignLevel::getEndY()
122 {
123     return getStartY() + width;
124 }
125
126 XYZ CampaignLevel::getCenter()
127 {
128     XYZ center;
129     center.x = getStartX() + width / 2;
130     center.y = getStartY() + width / 2;
131     return center;
132 }
133
134 int CampaignLevel::getWidth()
135 {
136     return width;
137 }
138
139 istream& CampaignLevel::operator<<(istream& is)
140 {
141     is.ignore(256, ':');
142     is.ignore(256, ':');
143     is.ignore(256, ' ');
144     is >> mapname;
145     is.ignore(256, ':');
146     is >> description;
147     for (size_t pos = description.find('_'); pos != string::npos; pos = description.find('_', pos)) {
148         description.replace(pos, 1, 1, ' ');
149     }
150     is.ignore(256, ':');
151     is >> choosenext;
152     is.ignore(256, ':');
153     int numnext, next;
154     is >> numnext;
155     for (int j = 0; j < numnext; j++) {
156         is.ignore(256, ':');
157         is >> next;
158         nextlevel.push_back(next - 1);
159     }
160     is.ignore(256, ':');
161     is >> location.x;
162     is.ignore(256, ':');
163     is >> location.y;
164     return is;
165 }