2008-01-09 19:21:31 +02:00
|
|
|
#include "../stdafx.h"
|
2007-06-12 12:33:20 +03:00
|
|
|
#include "CObjectHandler.h"
|
2007-08-30 13:11:53 +03:00
|
|
|
#include "../CGameInfo.h"
|
2007-08-06 07:03:34 +03:00
|
|
|
#include "CGeneralTextHandler.h"
|
2007-08-29 15:18:31 +03:00
|
|
|
#include "CLodHandler.h"
|
|
|
|
#include "CAmbarCendamo.h"
|
2007-10-27 22:38:48 +03:00
|
|
|
#include "../mapHandler.h"
|
2007-10-26 20:55:33 +03:00
|
|
|
#include "CDefObjInfoHandler.h"
|
2007-10-27 22:38:48 +03:00
|
|
|
#include "../CLua.h"
|
2007-11-19 00:58:28 +02:00
|
|
|
#include "CHeroHandler.h"
|
2007-11-24 00:33:55 +02:00
|
|
|
#include <boost/algorithm/string/replace.hpp>
|
2007-06-11 20:21:27 +03:00
|
|
|
void CObjectHandler::loadObjects()
|
|
|
|
{
|
2007-08-06 07:03:34 +03:00
|
|
|
int ID=0;
|
|
|
|
std::string buf = CGameInfo::mainObj->bitmaph->getTextFile("OBJNAMES.TXT");
|
|
|
|
int it=0;
|
|
|
|
while (it<buf.length()-1)
|
2007-06-11 20:21:27 +03:00
|
|
|
{
|
|
|
|
CObject nobj;
|
2007-08-06 07:03:34 +03:00
|
|
|
CGeneralTextHandler::loadToIt(nobj.name,buf,it,3);
|
2007-10-07 19:01:53 +03:00
|
|
|
if(nobj.name.size() && (nobj.name[nobj.name.size()-1]==(char)10 || nobj.name[nobj.name.size()-1]==(char)13 || nobj.name[nobj.name.size()-1]==(char)9))
|
2007-10-05 21:10:33 +03:00
|
|
|
nobj.name = nobj.name.substr(0, nobj.name.size()-1);
|
2007-06-11 20:21:27 +03:00
|
|
|
objects.push_back(nobj);
|
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
|
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("ADVEVENT.TXT");
|
|
|
|
it=0;
|
|
|
|
std::string temp;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
|
|
|
CGeneralTextHandler::loadToIt(temp,buf,it,3);
|
2007-12-22 20:04:34 +02:00
|
|
|
if (temp[0]=='\"')
|
|
|
|
temp = temp.substr(1,temp.length()-2);
|
2007-11-24 00:33:55 +02:00
|
|
|
boost::algorithm::replace_all(temp,"\"\"","\"");
|
2007-11-19 00:58:28 +02:00
|
|
|
advobtxt.push_back(temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("XTRAINFO.TXT");
|
|
|
|
it=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
|
|
|
CGeneralTextHandler::loadToIt(temp,buf,it,3);
|
|
|
|
xtrainfo.push_back(temp);
|
|
|
|
}
|
2007-11-24 16:17:57 +02:00
|
|
|
|
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("MINENAME.TXT");
|
|
|
|
it=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
|
|
|
CGeneralTextHandler::loadToIt(temp,buf,it,3);
|
|
|
|
mines.push_back(std::pair<std::string,std::string>(temp,""));
|
|
|
|
}
|
|
|
|
|
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("MINEEVNT.TXT");
|
|
|
|
it=0;
|
|
|
|
int i=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
|
|
|
CGeneralTextHandler::loadToIt(temp,buf,it,3);
|
|
|
|
temp = temp.substr(1,temp.length()-2);
|
|
|
|
mines[i++].second = temp;
|
|
|
|
}
|
2007-11-25 15:16:45 +02:00
|
|
|
|
|
|
|
buf = CGameInfo::mainObj->bitmaph->getTextFile("RESTYPES.TXT");
|
|
|
|
it=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
|
|
|
CGeneralTextHandler::loadToIt(temp,buf,it,3);
|
|
|
|
restypes.push_back(temp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-11-19 00:58:28 +02:00
|
|
|
|
2007-08-09 19:28:01 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
bool CObjectInstance::operator <(const CObjectInstance &cmp) const
|
|
|
|
{
|
2007-10-27 22:38:48 +03:00
|
|
|
//if(CGI->ac->map.defy[this->defNumber].printPriority==1 && CGI->ac->map.defy[cmp.defNumber].printPriority==0)
|
|
|
|
// return true;
|
|
|
|
//if(CGI->ac->map.defy[cmp.defNumber].printPriority==1 && CGI->ac->map.defy[this->defNumber].printPriority==0)
|
|
|
|
// return false;
|
|
|
|
//if(this->pos.y<cmp.pos.y)
|
|
|
|
// return true;
|
|
|
|
//if(this->pos.y>cmp.pos.y)
|
|
|
|
// return false;
|
|
|
|
//if(CGI->ac->map.defy[this->defNumber].isOnDefList && !(CGI->ac->map.defy[cmp.defNumber].isOnDefList))
|
|
|
|
// return true;
|
|
|
|
//if(CGI->ac->map.defy[cmp.defNumber].isOnDefList && !(CGI->ac->map.defy[this->defNumber].isOnDefList))
|
|
|
|
// return false;
|
|
|
|
//if(!CGI->ac->map.defy[this->defNumber].isVisitable() && CGI->ac->map.defy[cmp.defNumber].isVisitable())
|
|
|
|
// return true;
|
|
|
|
//if(!CGI->ac->map.defy[cmp.defNumber].isVisitable() && CGI->ac->map.defy[this->defNumber].isVisitable())
|
|
|
|
// return false;
|
|
|
|
//if(this->pos.x<cmp.pos.x)
|
|
|
|
// return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CObjectInstance::getWidth() const
|
|
|
|
{
|
|
|
|
return -1;//CGI->mh->reader->map.defy[defNumber].handler->ourImages[0].bitmap->w/32;
|
|
|
|
}
|
|
|
|
|
|
|
|
int CObjectInstance::getHeight() const
|
|
|
|
{
|
|
|
|
return -1;//CGI->mh->reader->map.defy[defNumber].handler->ourImages[0].bitmap->h/32;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CObjectInstance::visitableAt(int x, int y) const
|
|
|
|
{
|
|
|
|
//if(x<0 || y<0 || x>=getWidth() || y>=getHeight() || defObjInfoNumber<0)
|
|
|
|
// return false;
|
|
|
|
//if((CGI->dobjinfo->objs[defObjInfoNumber].visitMap[y+6-getHeight()] >> (7-(8-getWidth()+x) )) & 1)
|
|
|
|
// return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool CGObjectInstance::isHero() const
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
int CGObjectInstance::getOwner() const
|
|
|
|
{
|
2007-11-19 00:58:28 +02:00
|
|
|
//if (state)
|
|
|
|
// return state->owner;
|
|
|
|
//else
|
|
|
|
return tempOwner; //won't have owner
|
|
|
|
}
|
|
|
|
|
|
|
|
void CGObjectInstance::setOwner(int ow)
|
|
|
|
{
|
|
|
|
//if (state)
|
|
|
|
// state->owner = ow;
|
|
|
|
//else
|
|
|
|
tempOwner = ow;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
int CGObjectInstance::getWidth() const//returns width of object graphic in tiles
|
|
|
|
{
|
|
|
|
return defInfo->handler->ourImages[0].bitmap->w/32;
|
|
|
|
}
|
|
|
|
int CGObjectInstance::getHeight() const //returns height of object graphic in tiles
|
|
|
|
{
|
|
|
|
return defInfo->handler->ourImages[0].bitmap->h/32;
|
|
|
|
}
|
|
|
|
bool CGObjectInstance::visitableAt(int x, int y) const //returns true if ibject is visitable at location (x, y) form left top tile of image (x, y in tiles)
|
|
|
|
{
|
|
|
|
if(x<0 || y<0 || x>=getWidth() || y>=getHeight() || defInfo==NULL)
|
|
|
|
return false;
|
|
|
|
if((defInfo->visitMap[y+6-getHeight()] >> (7-(8-getWidth()+x) )) & 1)
|
2007-08-09 19:28:01 +03:00
|
|
|
return true;
|
2007-10-27 22:38:48 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
bool CGObjectInstance::operator<(const CGObjectInstance & cmp) const //screen printing priority comparing
|
|
|
|
{
|
2007-11-24 00:33:55 +02:00
|
|
|
if(defInfo->printPriority==1 && cmp.defInfo->printPriority==0)
|
2007-10-27 22:38:48 +03:00
|
|
|
return true;
|
2007-11-24 00:33:55 +02:00
|
|
|
if(cmp.defInfo->printPriority==1 && defInfo->printPriority==0)
|
2007-08-09 19:28:01 +03:00
|
|
|
return false;
|
|
|
|
if(this->pos.y<cmp.pos.y)
|
|
|
|
return true;
|
|
|
|
if(this->pos.y>cmp.pos.y)
|
|
|
|
return false;
|
2007-10-28 13:34:33 +02:00
|
|
|
if(!defInfo->isVisitable() && cmp.defInfo->isVisitable())
|
2007-08-09 19:28:01 +03:00
|
|
|
return true;
|
2007-10-28 13:34:33 +02:00
|
|
|
if(!cmp.defInfo->isVisitable() && defInfo->isVisitable())
|
2007-08-09 19:28:01 +03:00
|
|
|
return false;
|
2008-01-15 23:38:01 +02:00
|
|
|
//if(defInfo->isOnDefList && !(cmp.defInfo->isOnDefList))
|
|
|
|
// return true;
|
|
|
|
//if(cmp.defInfo->isOnDefList && !(defInfo->isOnDefList))
|
|
|
|
// return false;
|
2007-08-09 19:28:01 +03:00
|
|
|
if(this->pos.x<cmp.pos.x)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
2007-10-26 20:55:33 +03:00
|
|
|
|
2007-10-27 22:38:48 +03:00
|
|
|
bool CGDefInfo::isVisitable()
|
2007-10-26 20:55:33 +03:00
|
|
|
{
|
2007-10-28 19:56:16 +02:00
|
|
|
for (int i=0; i<6; i++)
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
2007-10-28 19:56:16 +02:00
|
|
|
if (visitMap[i])
|
2007-10-27 22:38:48 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2007-10-26 20:55:33 +03:00
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
|
|
|
|
bool CGHeroInstance::isHero() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
unsigned int CGHeroInstance::getTileCost(EterrainType & ttype, Eroad & rdtype, Eriver & rvtype)
|
|
|
|
{
|
|
|
|
unsigned int ret = type->heroClass->terrCosts[ttype];
|
|
|
|
switch(rdtype)
|
|
|
|
{
|
|
|
|
case Eroad::dirtRoad:
|
|
|
|
ret*=0.75;
|
|
|
|
break;
|
|
|
|
case Eroad::grazvelRoad:
|
|
|
|
ret*=0.667;
|
|
|
|
break;
|
|
|
|
case Eroad::cobblestoneRoad:
|
|
|
|
ret*=0.5;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
unsigned int CGHeroInstance::getLowestCreatureSpeed()
|
2007-10-26 20:55:33 +03:00
|
|
|
{
|
2007-10-27 22:38:48 +03:00
|
|
|
unsigned int sl = 100;
|
|
|
|
for(int h=0; h<army.slots.size(); ++h)
|
|
|
|
{
|
|
|
|
if(army.slots[h].first->speed<sl)
|
|
|
|
sl = army.slots[h].first->speed;
|
|
|
|
}
|
|
|
|
return sl;
|
|
|
|
}
|
|
|
|
int3 CGHeroInstance::convertPosition(int3 src, bool toh3m) //toh3m=true: manifest->h3m; toh3m=false: h3m->manifest
|
|
|
|
{
|
|
|
|
if (toh3m)
|
|
|
|
{
|
|
|
|
src.x+=1;
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
src.x-=1;
|
|
|
|
return src;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
int3 CGHeroInstance::getPosition(bool h3m) const //h3m=true - returns position of hero object; h3m=false - returns position of hero 'manifestation'
|
|
|
|
{
|
|
|
|
if (h3m)
|
|
|
|
return pos;
|
|
|
|
else return convertPosition(pos,false);
|
|
|
|
}
|
|
|
|
int CGHeroInstance::getSightDistance() const //returns sight distance of this hero
|
|
|
|
{
|
|
|
|
return 6;
|
|
|
|
}
|
|
|
|
void CGHeroInstance::setPosition(int3 Pos, bool h3m) //as above, but sets position
|
|
|
|
{
|
|
|
|
if (h3m)
|
|
|
|
pos = Pos;
|
|
|
|
else
|
|
|
|
pos = convertPosition(Pos,true);
|
2007-10-26 20:55:33 +03:00
|
|
|
}
|
|
|
|
|
2007-10-27 22:38:48 +03:00
|
|
|
bool CGHeroInstance::canWalkOnSea() const
|
2007-10-26 20:55:33 +03:00
|
|
|
{
|
2007-10-27 22:38:48 +03:00
|
|
|
//TODO: write it - it should check if hero is flying, or something similiar
|
2007-10-26 20:55:33 +03:00
|
|
|
return false;
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
int CGHeroInstance::getCurrentLuck() const
|
|
|
|
{
|
|
|
|
//TODO: write it
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int CGHeroInstance::getCurrentMorale() const
|
|
|
|
{
|
|
|
|
//TODO: write it
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int CGTownInstance::getSightDistance() const //returns sight distance
|
|
|
|
{
|
|
|
|
return 10;
|
|
|
|
}
|
2008-01-09 19:21:31 +02:00
|
|
|
bool CGTownInstance::hasFort() const
|
|
|
|
{
|
|
|
|
return (builtBuildings.find(7))!=builtBuildings.end();
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
CGTownInstance::CGTownInstance()
|
|
|
|
{
|
|
|
|
pos = int3(-1,-1,-1);
|
|
|
|
builded=-1;
|
|
|
|
destroyed=-1;
|
|
|
|
garrisonHero=NULL;
|
2007-11-19 00:58:28 +02:00
|
|
|
//state->owner=-1;
|
2007-10-27 22:38:48 +03:00
|
|
|
town=NULL;
|
2008-01-09 19:21:31 +02:00
|
|
|
income = 500;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CGObjectInstance::CGObjectInstance()
|
|
|
|
{
|
|
|
|
//std::cout << "Tworze obiekt "<<this<<std::endl;
|
2007-11-19 00:58:28 +02:00
|
|
|
//state = new CLuaObjectScript();
|
|
|
|
//state = NULL;
|
2007-10-27 22:38:48 +03:00
|
|
|
defObjInfoNumber = -1;
|
2007-11-19 00:58:28 +02:00
|
|
|
tempOwner = 254;
|
2007-11-25 15:16:45 +02:00
|
|
|
blockVisit = false;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
CGObjectInstance::~CGObjectInstance()
|
|
|
|
{
|
|
|
|
//std::cout << "Usuwam obiekt "<<this<<std::endl;
|
2007-11-19 00:58:28 +02:00
|
|
|
//if (state)
|
|
|
|
// delete state;
|
|
|
|
//state=NULL;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
CGHeroInstance::~CGHeroInstance()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
CGTownInstance::~CGTownInstance()
|
|
|
|
{}
|
|
|
|
CGObjectInstance::CGObjectInstance(const CGObjectInstance & right)
|
|
|
|
{
|
|
|
|
pos = right.pos;
|
|
|
|
ID = right.ID;
|
|
|
|
subID = right.subID;
|
|
|
|
id = right.id;
|
|
|
|
defInfo = right.defInfo;
|
|
|
|
info = right.info;
|
|
|
|
defObjInfoNumber = right.defObjInfoNumber;
|
2007-11-25 15:16:45 +02:00
|
|
|
blockVisit = right.blockVisit;
|
2007-11-19 00:58:28 +02:00
|
|
|
//state = new CLuaObjectScript(right.state->);
|
|
|
|
//*state = *right.state;
|
|
|
|
//state = right.state;
|
|
|
|
tempOwner = right.tempOwner;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
CGObjectInstance& CGObjectInstance::operator=(const CGObjectInstance & right)
|
|
|
|
{
|
|
|
|
pos = right.pos;
|
|
|
|
ID = right.ID;
|
|
|
|
subID = right.subID;
|
|
|
|
id = right.id;
|
|
|
|
defInfo = right.defInfo;
|
|
|
|
info = right.info;
|
|
|
|
defObjInfoNumber = right.defObjInfoNumber;
|
2007-11-24 00:33:55 +02:00
|
|
|
blockVisit = right.blockVisit;
|
2007-10-28 13:34:33 +02:00
|
|
|
//state = new CLuaObjectScript();
|
2007-11-19 00:58:28 +02:00
|
|
|
//*state = *right.state;
|
|
|
|
tempOwner = right.tempOwner;
|
2007-10-27 22:38:48 +03:00
|
|
|
return *this;
|
|
|
|
}
|