1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/hch/CBuildingHandler.cpp

155 lines
4.4 KiB
C++
Raw Normal View History

2008-06-19 09:08:05 +03:00
#define VCMI_DLL
2008-01-09 19:21:31 +02:00
#include "../stdafx.h"
#include "CBuildingHandler.h"
#include "CGeneralTextHandler.h"
#include "CLodHandler.h"
#include "../lib/VCMI_Lib.h"
2008-03-02 20:16:08 +02:00
#include <sstream>
2008-03-10 01:06:35 +02:00
#include <fstream>
2008-06-19 09:08:05 +03:00
extern CLodHandler * bitmaph;
unsigned int readNr(std::string &in, int &it)
2008-03-02 20:16:08 +02:00
{
int last=it;
for(;last<in.size();last++)
if(in[last]=='\t' || in[last]=='\n' || in[last]==' ' || in[last]=='\r' || in[last]=='\n')
break;
if(last==in.size())
throw std::string("Cannot read number...");
2008-03-02 20:16:08 +02:00
std::stringstream ss(in.substr(it,last-it));
it+=(1+last-it);
ss >> last;
return last;
}
CBuilding * readBg(std::string &buf, int& it)
2008-03-02 20:16:08 +02:00
{
CBuilding * nb = new CBuilding();
nb->resources.resize(RESOURCE_QUANTITY);
2008-03-02 20:16:08 +02:00
for(int res=0;res<7;res++)
nb->resources[res] = readNr(buf,it);
/*nb->refName = */readTo(buf,it,'\n');
//reference name is ommitted, it's seems to be useless
2008-03-02 20:16:08 +02:00
return nb;
}
void CBuildingHandler::loadBuildings()
{
2008-06-19 09:08:05 +03:00
std::string buf = bitmaph->getTextFile("BUILDING.TXT"), temp;
unsigned int andame = buf.size();
int it=0; //buf iterator
2008-03-02 20:16:08 +02:00
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//read 2 lines of file info
2008-03-02 20:16:08 +02:00
//read 9 special buildings for every faction
for(int i=0;i<F_NUMBER;i++)
{
2008-03-02 20:16:08 +02:00
temp = readTo(buf,it,'\n');//read blank line and faction name
temp = readTo(buf,it,'\n');
for(int bg = 0; bg<9; bg++)
{
2008-03-02 20:16:08 +02:00
CBuilding *nb = readBg(buf,it);
nb->tid = i;
nb->bid = bg+17;
2008-03-02 20:16:08 +02:00
buildings[i][bg+17] = nb;
}
}
2008-03-02 20:16:08 +02:00
//reading 17 neutral (common) buildings
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//neutral buildings - skip 3 lines
for(int bg = 0; bg<17; bg++)
{
2008-03-02 20:16:08 +02:00
CBuilding *nb = readBg(buf,it);
for(int f=0;f<F_NUMBER;f++)
{
2008-03-02 20:16:08 +02:00
buildings[f][bg] = new CBuilding(*nb);
buildings[f][bg]->tid = f;
buildings[f][bg]->bid = bg;
}
2008-03-02 20:16:08 +02:00
delete nb;
}
//reading 14 per faction dwellings
2008-03-02 20:16:08 +02:00
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//dwellings - skip 2 lines
for(int i=0;i<F_NUMBER;i++)
{
2008-03-02 20:16:08 +02:00
temp = readTo(buf,it,'\n');//read blank line
temp = readTo(buf,it,'\n');// and faction name
for(int bg = 0; bg<14; bg++)
{
2008-03-02 20:16:08 +02:00
CBuilding *nb = readBg(buf,it);
nb->tid = i;
nb->bid = bg+30;
2008-03-02 20:16:08 +02:00
buildings[i][bg+30] = nb;
}
}
2008-03-02 20:16:08 +02:00
/////done reading BUILDING.TXT*****************************
char line[100]; //bufor
2008-03-10 01:06:35 +02:00
std::ifstream ofs("config/hall.txt");
int castles;
ofs>>castles;
for(int i=0;i<castles;i++)
{
int tid;
unsigned int it, box=0;
std::string pom;
ofs >> tid >> pom;
hall[tid].first = pom;
(hall[tid].second).resize(5); //rows
for(int j=0;j<5;j++)
{
box = it = 0;
ofs.getline(line,100);
if(!line[0] || line[0] == '\n' || line[0] == '\r')
2008-03-10 01:06:35 +02:00
ofs.getline(line,100);
std::string linia(line);
bool areboxes=true;
while(areboxes) //read all boxes
{
(hall[tid].second)[j].push_back(std::vector<int>()); //push new box
int seppos = linia.find_first_of('|',it); //position of end of this box data
if(seppos<0)
seppos = linia.length();
while(it<seppos)
{
int last = linia.find_first_of(' ',it);
std::stringstream ss(linia.substr(it,last-it));
it = last + 1;
ss >> last;
(hall[tid].second)[j][box].push_back(last);
2008-03-21 02:03:31 +02:00
areboxes = it; //wyzeruje jak nie znajdzie kolejnej spacji = koniec linii
2008-03-10 01:06:35 +02:00
if(!it)
it = seppos+1;
2008-03-10 01:06:35 +02:00
}
box++;
it+=2;
}
}
}
}
CBuildingHandler::~CBuildingHandler()
{
for(std::map<int, std::map<int, CBuilding*> >::iterator i=buildings.begin(); i!=buildings.end(); i++)
for(std::map<int, CBuilding*>::iterator j=i->second.begin(); j!=i->second.end(); j++)
delete j->second;
}
const std::string & CBuilding::Name()
{
if(name.length())
return name;
else if(vstd::contains(VLC->generaltexth->buildings,tid) && vstd::contains(VLC->generaltexth->buildings[tid],bid))
return VLC->generaltexth->buildings[tid][bid].first;
tlog2 << "Warning: Cannot find name text for building " << bid << "for " << tid << "town.\n";
return "";
}
const std::string & CBuilding::Description()
{
if(description.length())
return description;
else if(vstd::contains(VLC->generaltexth->buildings,tid) && vstd::contains(VLC->generaltexth->buildings[tid],bid))
return VLC->generaltexth->buildings[tid][bid].second;
tlog2 << "Warning: Cannot find description text for building " << bid << "for " << tid << "town.\n";
return "";
}