mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-24 08:32:34 +02:00
f9ae91d88c
* added info about author & license in files
408 lines
9.5 KiB
C++
408 lines
9.5 KiB
C++
#define VCMI_DLL
|
|
#include "../stdafx.h"
|
|
#include "../lib/VCMI_Lib.h"
|
|
#include "CGeneralTextHandler.h"
|
|
#include "CLodHandler.h"
|
|
#include <boost/algorithm/string.hpp>
|
|
#include <boost/algorithm/string/replace.hpp>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
|
|
/*
|
|
* CGeneralTextHandler.cpp, part of VCMI engine
|
|
*
|
|
* Authors: listed in file AUTHORS in main folder
|
|
*
|
|
* License: GNU General Public License v2.0 or later
|
|
* Full text of license available in license.txt file, in main folder
|
|
*
|
|
*/
|
|
|
|
std::string readTo(std::string &in, 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);
|
|
}
|
|
void CGeneralTextHandler::load()
|
|
{
|
|
std::string buf1 = bitmaph->getTextFile("ZELP.TXT");
|
|
int itr=0, eol=-1, eolnext=-1, pom;
|
|
eolnext = buf1.find_first_of('\r',itr);
|
|
while(itr<buf1.size())
|
|
{
|
|
eol = eolnext; //end of this line
|
|
eolnext = buf1.find_first_of('\r',eol+1); //end of the next line
|
|
pom=buf1.find_first_of('\t',itr); //upcoming tab
|
|
if(eol<0 || pom<0)
|
|
break;
|
|
if(pom>eol) //in current line there is not tab
|
|
zelp.push_back(std::pair<std::string,std::string>());
|
|
else
|
|
{
|
|
zelp.push_back
|
|
(std::pair<std::string,std::string>
|
|
(buf1.substr(itr,pom-itr),
|
|
buf1.substr(pom+1,eol-pom-1)));
|
|
boost::algorithm::replace_all(zelp[zelp.size()-1].first,"\t","");
|
|
boost::algorithm::replace_all(zelp[zelp.size()-1].second,"\t","");
|
|
}
|
|
itr=eol+2;
|
|
}
|
|
std::string buf = bitmaph->getTextFile("VCDESC.TXT");
|
|
int andame = buf.size();
|
|
int i=0; //buf iterator
|
|
for(int gg=0; gg<14; ++gg)
|
|
{
|
|
int befi=i;
|
|
for(i; i<andame; ++i)
|
|
{
|
|
if(buf[i]=='\r')
|
|
break;
|
|
}
|
|
victoryConditions[gg] = buf.substr(befi, i-befi);
|
|
i+=2;
|
|
}
|
|
buf = bitmaph->getTextFile("LCDESC.TXT");
|
|
andame = buf.size();
|
|
i=0; //buf iterator
|
|
for(int gg=0; gg<4; ++gg)
|
|
{
|
|
int befi=i;
|
|
for(i; i<andame; ++i)
|
|
{
|
|
if(buf[i]=='\r')
|
|
break;
|
|
}
|
|
lossCondtions[gg] = buf.substr(befi, i-befi);
|
|
i+=2;
|
|
}
|
|
|
|
hTxts.resize(HEROES_QUANTITY);
|
|
|
|
buf = bitmaph->getTextFile("HEROSPEC.TXT");
|
|
i=0;
|
|
std::string dump;
|
|
for(int iii=0; iii<2; ++iii)
|
|
{
|
|
loadToIt(dump,buf,i,3);
|
|
}
|
|
for (int iii=0;iii<hTxts.size();iii++)
|
|
{
|
|
loadToIt(hTxts[iii].bonusName,buf,i,4);
|
|
loadToIt(hTxts[iii].shortBonus,buf,i,4);
|
|
loadToIt(hTxts[iii].longBonus,buf,i,3);
|
|
}
|
|
|
|
buf = bitmaph->getTextFile("HEROBIOS.TXT");
|
|
i=0;
|
|
for (int iii=0;iii<hTxts.size();iii++)
|
|
{
|
|
loadToIt(hTxts[iii].biography,buf,i,3);
|
|
}
|
|
|
|
int it;
|
|
buf = bitmaph->getTextFile("BLDGNEUT.TXT");
|
|
andame = buf.size(), it=0;
|
|
|
|
for(int b=0;b<15;b++)
|
|
{
|
|
std::string name = readTo(buf,it,'\t'),
|
|
description = readTo(buf,it,'\n');
|
|
for(int fi=0;fi<F_NUMBER;fi++)
|
|
{
|
|
buildings[fi][b].first = name;
|
|
buildings[fi][b].second = description;
|
|
}
|
|
}
|
|
buf1 = readTo(buf,it,'\n');buf1 = readTo(buf,it,'\n');buf1 = 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++)
|
|
{
|
|
buildings[fi][20].first = name;
|
|
buildings[fi][20].second = description;
|
|
}
|
|
|
|
for(int fi=0;fi<F_NUMBER;fi++)
|
|
{
|
|
buildings[fi][16].first = readTo(buf,it,'\t'),
|
|
buildings[fi][16].second = readTo(buf,it,'\n');
|
|
}
|
|
/////done reading "BLDGNEUT.TXT"******************************
|
|
|
|
buf = bitmaph->getTextFile("BLDGSPEC.TXT");
|
|
andame = buf.size(), it=0;
|
|
for(int f=0;f<F_NUMBER;f++)
|
|
{
|
|
for(int b=0;b<9;b++)
|
|
{
|
|
buildings[f][17+b].first = readTo(buf,it,'\t');
|
|
buildings[f][17+b].second = readTo(buf,it,'\n');
|
|
}
|
|
buildings[f][26].first = readTo(buf,it,'\t');
|
|
buildings[f][26].second = readTo(buf,it,'\n');
|
|
buildings[f][15].first = readTo(buf,it,'\t'); //resource silo
|
|
buildings[f][15].second = readTo(buf,it,'\n');//resource silo
|
|
}
|
|
/////done reading BLDGSPEC.TXT*********************************
|
|
|
|
buf = bitmaph->getTextFile("DWELLING.TXT");
|
|
andame = buf.size(), it=0;
|
|
for(int f=0;f<F_NUMBER;f++)
|
|
{
|
|
for(int b=0;b<14;b++)
|
|
{
|
|
buildings[f][30+b].first = readTo(buf,it,'\t');
|
|
buildings[f][30+b].second = readTo(buf,it,'\n');
|
|
}
|
|
}
|
|
|
|
buf = bitmaph->getTextFile("TCOMMAND.TXT");
|
|
itr=0;
|
|
while(itr<buf.length()-1)
|
|
{
|
|
std::string tmp;
|
|
loadToIt(tmp, buf, itr, 3);
|
|
tcommands.push_back(tmp);
|
|
}
|
|
|
|
buf = bitmaph->getTextFile("HALLINFO.TXT");
|
|
itr=0;
|
|
while(itr<buf.length()-1)
|
|
{
|
|
std::string tmp;
|
|
loadToIt(tmp, buf, itr, 3);
|
|
hcommands.push_back(tmp);
|
|
}
|
|
|
|
std::istringstream ins, namess;
|
|
ins.str(bitmaph->getTextFile("TOWNTYPE.TXT"));
|
|
namess.str(bitmaph->getTextFile("TOWNNAME.TXT"));
|
|
int si=0;
|
|
char bufname[75];
|
|
while (!ins.eof())
|
|
{
|
|
ins.getline(bufname,50);
|
|
townTypes.push_back(std::string(bufname).substr(0,strlen(bufname)-1));
|
|
townNames.resize(si+1);
|
|
|
|
for (int i=0; i<NAMES_PER_TOWN; i++)
|
|
{
|
|
namess.getline(bufname,50);
|
|
townNames[si].push_back(std::string(bufname).substr(0,strlen(bufname)-1));
|
|
}
|
|
si++;
|
|
}
|
|
|
|
tlog5 << "\t\tReading OBJNAMES \n";
|
|
buf = bitmaph->getTextFile("OBJNAMES.TXT");
|
|
it=0; //hope that -1 will not break this
|
|
while (it<buf.length()-1)
|
|
{
|
|
std::string nobj;
|
|
loadToIt(nobj, buf, it, 3);
|
|
if(nobj.size() && (nobj[nobj.size()-1]==(char)10 || nobj[nobj.size()-1]==(char)13 || nobj[nobj.size()-1]==(char)9))
|
|
{
|
|
nobj = nobj.substr(0, nobj.size()-1);
|
|
}
|
|
names.push_back(nobj);
|
|
}
|
|
|
|
tlog5 << "\t\tReading ADVEVENT \n";
|
|
buf = bitmaph->getTextFile("ADVEVENT.TXT");
|
|
it=0;
|
|
std::string temp;
|
|
while (it<buf.length()-1)
|
|
{
|
|
loadToIt(temp,buf,it,3);
|
|
if (temp[0]=='\"')
|
|
{
|
|
temp = temp.substr(1,temp.length()-2);
|
|
}
|
|
boost::algorithm::replace_all(temp,"\"\"","\"");
|
|
advobtxt.push_back(temp);
|
|
}
|
|
|
|
tlog5 << "\t\tReading XTRAINFO \n";
|
|
buf = bitmaph->getTextFile("XTRAINFO.TXT");
|
|
it=0;
|
|
while (it<buf.length()-1)
|
|
{
|
|
loadToIt(temp,buf,it,3);
|
|
xtrainfo.push_back(temp);
|
|
}
|
|
|
|
tlog5 << "\t\tReading MINENAME \n";
|
|
buf = bitmaph->getTextFile("MINENAME.TXT");
|
|
it=0;
|
|
while (it<buf.length()-1)
|
|
{
|
|
loadToIt(temp,buf,it,3);
|
|
mines.push_back(std::pair<std::string,std::string>(temp,""));
|
|
}
|
|
|
|
tlog5 << "\t\tReading MINEEVNT \n";
|
|
buf = bitmaph->getTextFile("MINEEVNT.TXT");
|
|
it=0;
|
|
i=0;
|
|
while (it<buf.length()-1)
|
|
{
|
|
loadToIt(temp,buf,it,3);
|
|
temp = temp.substr(1,temp.length()-2);
|
|
if(i < mines.size())
|
|
mines[i++].second = temp;
|
|
else
|
|
tlog2 << "Warning - too much entries in MINEEVNT. Omitting this one: " << temp << std::endl;
|
|
}
|
|
|
|
tlog5 << "\t\tReading RESTYPES \n";
|
|
buf = bitmaph->getTextFile("RESTYPES.TXT");
|
|
it=0;
|
|
while (it<buf.length()-1)
|
|
{
|
|
loadToIt(temp,buf,it,3);
|
|
restypes.push_back(temp);
|
|
}
|
|
|
|
tlog5 << "\t\tReading RANDSIGN \n";
|
|
buf = bitmaph->getTextFile("RANDSIGN.TXT");
|
|
it=0;
|
|
while (it<buf.length()-1)
|
|
{
|
|
loadToIt(temp,buf,it,3);
|
|
randsign.push_back(temp);
|
|
}
|
|
|
|
tlog5 << "\t\tReading ZCRGN1 \n";
|
|
buf = bitmaph->getTextFile("ZCRGN1.TXT");
|
|
it=0;
|
|
while (it<buf.length()-1)
|
|
{
|
|
loadToIt(temp,buf,it,3);
|
|
creGens.push_back(temp);
|
|
}
|
|
|
|
buf = bitmaph->getTextFile("GENRLTXT.TXT");
|
|
std::string tmp;
|
|
andame = buf.size();
|
|
i=0; //buf iterator
|
|
for(i; i<andame; ++i)
|
|
{
|
|
if(buf[i]=='\r')
|
|
break;
|
|
}
|
|
|
|
i+=2;
|
|
std::string buflet;
|
|
for(int jj=0; jj<764; ++jj)
|
|
{
|
|
loadToIt(buflet, buf, i, 2);
|
|
if(buflet[0] == '"' && buflet[buflet.size()-1] == '"')
|
|
buflet = buflet.substr(1,buflet.size()-2);
|
|
allTexts.push_back(buflet);
|
|
}
|
|
|
|
std::string strs = bitmaph->getTextFile("ARRAYTXT.TXT");
|
|
|
|
itr=0;
|
|
while(itr<strs.length()-1)
|
|
{
|
|
loadToIt(tmp, strs, itr, 3);
|
|
if(tmp[0] == '"' && tmp[tmp.size()-1] == '"')
|
|
tmp = tmp.substr(1,tmp.size()-2);
|
|
arraytxt.push_back(tmp);
|
|
}
|
|
|
|
itr = 0;
|
|
std::string strin = bitmaph->getTextFile("PRISKILL.TXT");
|
|
for(int hh=0; hh<4; ++hh)
|
|
{
|
|
loadToIt(tmp, strin, itr, 3);
|
|
primarySkillNames.push_back(tmp);
|
|
}
|
|
|
|
itr = 0;
|
|
strin = bitmaph->getTextFile("JKTEXT.TXT");
|
|
for(int hh=0; hh<45; ++hh)
|
|
{
|
|
loadToIt(tmp, strin, itr, 3);
|
|
jktexts.push_back(tmp);
|
|
}
|
|
|
|
itr = 0;
|
|
strin = bitmaph->getTextFile("TVRNINFO.TXT");
|
|
for(int hh=0; hh<8; ++hh)
|
|
{
|
|
loadToIt(tmp, strin, itr, 3);
|
|
tavernInfo.push_back(tmp);
|
|
}
|
|
|
|
itr = 0;
|
|
strin = bitmaph->getTextFile("HEROSCRN.TXT");
|
|
for(int hh=0; hh<33; ++hh)
|
|
{
|
|
loadToIt(tmp, strin, itr, 3);
|
|
heroscrn.push_back(tmp);
|
|
}
|
|
|
|
strin = bitmaph->getTextFile("ARTEVENT.TXT");
|
|
for(itr = 0; itr<strin.size();itr++)
|
|
{
|
|
loadToIt(tmp, strin, itr, 3);
|
|
artifEvents.push_back(tmp);
|
|
}
|
|
|
|
buf = bitmaph->getTextFile("SSTRAITS.TXT");
|
|
it=0;
|
|
|
|
for(int i=0; i<2; ++i)
|
|
loadToIt(dump,buf,it,3);
|
|
|
|
skillName.resize(SKILL_QUANTITY);
|
|
skillInfoTexts.resize(SKILL_QUANTITY);
|
|
for (int i=0; i<SKILL_QUANTITY; i++)
|
|
{
|
|
skillInfoTexts[i].resize(3);
|
|
loadToIt(skillName[i],buf,it,4);
|
|
loadToIt(skillInfoTexts[i][0],buf,it,4);
|
|
loadToIt(skillInfoTexts[i][1],buf,it,4);
|
|
loadToIt(skillInfoTexts[i][2],buf,it,3);
|
|
}
|
|
buf = bitmaph->getTextFile("SKILLLEV.TXT");
|
|
it=0;
|
|
for(int i=0; i<6; ++i)
|
|
{
|
|
std::string buffo;
|
|
loadToIt(buffo,buf,it,3);
|
|
levels.push_back(buffo);
|
|
}
|
|
}
|
|
|
|
|
|
std::string CGeneralTextHandler::getTitle(std::string text)
|
|
{
|
|
std::string ret;
|
|
int i=0;
|
|
while ((text[i++]!='{'));
|
|
while ((text[i]!='}') && (i<text.length()))
|
|
ret+=text[i++];
|
|
return ret;
|
|
}
|
|
std::string CGeneralTextHandler::getDescr(std::string text)
|
|
{
|
|
std::string ret;
|
|
int i=0;
|
|
while ((text[i++]!='}'));
|
|
i+=2;
|
|
while ((text[i]!='"') && (i<text.length()))
|
|
ret+=text[i++];
|
|
return ret;
|
|
}
|
|
|
|
CGeneralTextHandler::CGeneralTextHandler()
|
|
{
|
|
|
|
} |