2008-01-09 19:21:31 +02:00
|
|
|
#include "../stdafx.h"
|
2007-08-30 13:11:53 +03:00
|
|
|
#include "../CGameInfo.h"
|
2007-06-10 21:04:15 +03:00
|
|
|
#include "CBuildingHandler.h"
|
2007-08-29 15:18:31 +03:00
|
|
|
#include "CLodHandler.h"
|
2008-03-02 20:16:08 +02:00
|
|
|
#include <sstream>
|
|
|
|
std::string readTo(std::string in, unsigned int &it, char end)
|
|
|
|
{
|
|
|
|
int pom = it;
|
|
|
|
int last = in.find_first_of(end,it);
|
|
|
|
it+=(1+last-it);
|
|
|
|
return in.substr(pom,last-pom);
|
|
|
|
}
|
|
|
|
unsigned int readNr(std::string in, unsigned int &it)
|
|
|
|
{
|
|
|
|
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 new std::exception("Cannot read number...");
|
|
|
|
std::stringstream ss(in.substr(it,last-it));
|
|
|
|
it+=(1+last-it);
|
|
|
|
ss >> last;
|
|
|
|
return last;
|
|
|
|
}
|
|
|
|
CBuilding * readBg(std::string &buf, unsigned int& it)
|
|
|
|
{
|
|
|
|
CBuilding * nb = new CBuilding();
|
|
|
|
for(int res=0;res<7;res++)
|
|
|
|
nb->resources[res] = readNr(buf,it);
|
|
|
|
nb->refName = readTo(buf,it,'\n');
|
|
|
|
return nb;
|
|
|
|
}
|
2007-06-10 21:04:15 +03:00
|
|
|
void CBuildingHandler::loadBuildings()
|
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
std::string buf = CGameInfo::mainObj->bitmaph->getTextFile("BUILDING.TXT"), temp;
|
|
|
|
unsigned int andame = buf.size(), it=0; //buf iterator
|
2007-06-10 21:04:15 +03:00
|
|
|
|
2008-03-02 20:16:08 +02:00
|
|
|
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//read 2 lines of file info
|
2007-06-10 21:04:15 +03:00
|
|
|
|
2008-03-02 20:16:08 +02:00
|
|
|
//read 9 special buildings for every faction
|
|
|
|
for(int i=0;i<F_NUMBER;i++)
|
2007-06-10 21:04:15 +03:00
|
|
|
{
|
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++)
|
2007-06-10 21:04:15 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
CBuilding *nb = readBg(buf,it);
|
|
|
|
buildings[i][bg+17] = nb;
|
2007-06-10 21:04:15 +03:00
|
|
|
}
|
|
|
|
}
|
2007-06-10 23:14:37 +03:00
|
|
|
|
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++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
CBuilding *nb = readBg(buf,it);
|
|
|
|
for(int f=0;f<F_NUMBER;f++)
|
|
|
|
buildings[f][bg] = new CBuilding(*nb);
|
|
|
|
delete nb;
|
2007-06-10 23:14:37 +03:00
|
|
|
}
|
|
|
|
|
2008-03-02 20:16:08 +02:00
|
|
|
//reading 14 per faction dwellings
|
|
|
|
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//dwellings - skip 2 lines
|
|
|
|
for(int i=0;i<F_NUMBER;i++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
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++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
CBuilding *nb = readBg(buf,it);
|
|
|
|
buildings[i][bg+30] = nb;
|
2007-06-10 23:14:37 +03:00
|
|
|
}
|
|
|
|
}
|
2008-03-02 20:16:08 +02:00
|
|
|
/////done reading BUILDING.TXT*****************************
|
2007-06-10 23:14:37 +03:00
|
|
|
|
2008-03-02 20:16:08 +02:00
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("BLDGNEUT.TXT");
|
|
|
|
andame = buf.size(), it=0;
|
2007-06-10 23:14:37 +03:00
|
|
|
|
2008-03-02 20:16:08 +02:00
|
|
|
for(int b=0;b<15;b++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
std::string name = readTo(buf,it,'\t'),
|
|
|
|
description = readTo(buf,it,'\n');
|
|
|
|
for(int fi=0;fi<F_NUMBER;fi++)
|
|
|
|
{
|
|
|
|
buildings[fi][b]->name = name;
|
|
|
|
buildings[fi][b]->description = description;
|
|
|
|
}
|
2007-06-10 23:14:37 +03:00
|
|
|
}
|
2008-03-02 20:16:08 +02:00
|
|
|
temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');temp = readTo(buf,it,'\n');//silo,blacksmith,moat - useless???
|
|
|
|
//shipyard with the ship
|
|
|
|
std::string name = readTo(buf,it,'\t'),
|
|
|
|
description = readTo(buf,it,'\n');
|
|
|
|
for(int fi=0;fi<F_NUMBER;fi++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
buildings[fi][20]->name = name;
|
|
|
|
buildings[fi][20]->description = description;
|
2007-06-10 23:14:37 +03:00
|
|
|
}
|
|
|
|
|
2008-03-02 20:16:08 +02:00
|
|
|
for(int fi=0;fi<F_NUMBER;fi++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
buildings[fi][16]->name = readTo(buf,it,'\t'),
|
|
|
|
buildings[fi][16]->description = readTo(buf,it,'\n');
|
2007-06-10 23:14:37 +03:00
|
|
|
}
|
2008-03-02 20:16:08 +02:00
|
|
|
/////done reading "BLDGNEUT.TXT"******************************
|
|
|
|
|
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("BLDGSPEC.TXT");
|
|
|
|
andame = buf.size(), it=0;
|
|
|
|
for(int f=0;f<F_NUMBER;f++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
for(int b=0;b<9;b++)
|
2007-06-10 23:14:37 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
buildings[f][17+b]->name = readTo(buf,it,'\t');
|
|
|
|
buildings[f][17+b]->description = readTo(buf,it,'\n');
|
2007-06-10 23:14:37 +03:00
|
|
|
}
|
2008-03-02 20:16:08 +02:00
|
|
|
buildings[f][26] = new CBuilding();//grail
|
|
|
|
buildings[f][26]->name = readTo(buf,it,'\t');
|
|
|
|
buildings[f][26]->description = readTo(buf,it,'\n');
|
|
|
|
buildings[f][15]->name = readTo(buf,it,'\t'); //resource silo
|
|
|
|
buildings[f][15]->description = readTo(buf,it,'\n');//resource silo
|
2007-06-10 23:14:37 +03:00
|
|
|
}
|
2008-03-02 20:16:08 +02:00
|
|
|
/////done reading BLDGSPEC.TXT*********************************
|
2007-06-11 20:21:27 +03:00
|
|
|
|
2008-03-02 20:16:08 +02:00
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("DWELLING.TXT");
|
|
|
|
andame = buf.size(), it=0;
|
|
|
|
for(int f=0;f<F_NUMBER;f++)
|
2007-06-11 20:21:27 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
for(int b=0;b<14;b++)
|
2007-06-11 20:21:27 +03:00
|
|
|
{
|
2008-03-02 20:16:08 +02:00
|
|
|
buildings[f][30+b]->name = readTo(buf,it,'\t');
|
|
|
|
buildings[f][30+b]->description = readTo(buf,it,'\n');
|
2007-06-11 20:21:27 +03:00
|
|
|
}
|
|
|
|
}
|
2008-03-02 20:16:08 +02:00
|
|
|
}
|