2008-06-17 20:48:32 +03:00
|
|
|
#define VCMI_DLL
|
2008-01-09 19:21:31 +02:00
|
|
|
#include "../stdafx.h"
|
2007-06-12 12:33:20 +03:00
|
|
|
#include "CObjectHandler.h"
|
2008-06-13 11:16:51 +03:00
|
|
|
#include "CDefObjInfoHandler.h"
|
2007-08-29 15:18:31 +03:00
|
|
|
#include "CLodHandler.h"
|
2007-10-26 20:55:33 +03:00
|
|
|
#include "CDefObjInfoHandler.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>
|
2008-04-14 20:45:01 +03:00
|
|
|
#include "CTownHandler.h"
|
2008-06-08 03:58:29 +03:00
|
|
|
#include "CArtHandler.h"
|
2008-06-17 20:48:32 +03:00
|
|
|
#include "../lib/VCMI_Lib.h"
|
2008-06-13 11:16:51 +03:00
|
|
|
DLL_EXPORT void loadToIt(std::string &dest, std::string &src, int &iter, int mode);
|
2008-06-17 20:48:32 +03:00
|
|
|
extern CLodHandler * bitmaph;
|
2007-06-11 20:21:27 +03:00
|
|
|
void CObjectHandler::loadObjects()
|
|
|
|
{
|
2008-06-30 03:06:41 +03:00
|
|
|
VLC->objh = this;
|
2007-08-06 07:03:34 +03:00
|
|
|
int ID=0;
|
2008-06-17 20:48:32 +03:00
|
|
|
std::string buf = bitmaph->getTextFile("OBJNAMES.TXT");
|
2007-08-06 07:03:34 +03:00
|
|
|
int it=0;
|
|
|
|
while (it<buf.length()-1)
|
2007-06-11 20:21:27 +03:00
|
|
|
{
|
2008-07-30 20:51:19 +03:00
|
|
|
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);
|
2007-06-11 20:21:27 +03:00
|
|
|
}
|
2007-11-19 00:58:28 +02:00
|
|
|
|
2008-06-17 20:48:32 +03:00
|
|
|
buf = bitmaph->getTextFile("ADVEVENT.TXT");
|
2007-11-19 00:58:28 +02:00
|
|
|
it=0;
|
|
|
|
std::string temp;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
2008-06-13 11:16:51 +03:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2008-06-17 20:48:32 +03:00
|
|
|
buf = bitmaph->getTextFile("XTRAINFO.TXT");
|
2007-11-19 00:58:28 +02:00
|
|
|
it=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
2008-06-13 11:16:51 +03:00
|
|
|
loadToIt(temp,buf,it,3);
|
2007-11-19 00:58:28 +02:00
|
|
|
xtrainfo.push_back(temp);
|
|
|
|
}
|
2007-11-24 16:17:57 +02:00
|
|
|
|
2008-06-17 20:48:32 +03:00
|
|
|
buf = bitmaph->getTextFile("MINENAME.TXT");
|
2007-11-24 16:17:57 +02:00
|
|
|
it=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
2008-06-13 11:16:51 +03:00
|
|
|
loadToIt(temp,buf,it,3);
|
2007-11-24 16:17:57 +02:00
|
|
|
mines.push_back(std::pair<std::string,std::string>(temp,""));
|
|
|
|
}
|
|
|
|
|
2008-06-17 20:48:32 +03:00
|
|
|
buf = bitmaph->getTextFile("MINEEVNT.TXT");
|
2007-11-24 16:17:57 +02:00
|
|
|
it=0;
|
|
|
|
int i=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
2008-06-13 11:16:51 +03:00
|
|
|
loadToIt(temp,buf,it,3);
|
2007-11-24 16:17:57 +02:00
|
|
|
temp = temp.substr(1,temp.length()-2);
|
|
|
|
mines[i++].second = temp;
|
|
|
|
}
|
2007-11-25 15:16:45 +02:00
|
|
|
|
2008-06-17 20:48:32 +03:00
|
|
|
buf = bitmaph->getTextFile("RESTYPES.TXT");
|
2007-11-25 15:16:45 +02:00
|
|
|
it=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
2008-06-13 11:16:51 +03:00
|
|
|
loadToIt(temp,buf,it,3);
|
2007-11-25 15:16:45 +02:00
|
|
|
restypes.push_back(temp);
|
|
|
|
}
|
|
|
|
|
2008-02-05 05:56:45 +02:00
|
|
|
cregens.resize(110); //TODO: hardcoded value - change
|
|
|
|
for(int i=0; i<cregens.size();i++)
|
|
|
|
cregens[i]=-1;
|
|
|
|
std::ifstream ifs("config/cregens.txt");
|
|
|
|
while(!ifs.eof())
|
|
|
|
{
|
|
|
|
int dw, cr;
|
|
|
|
ifs >> dw >> cr;
|
|
|
|
cregens[dw]=cr;
|
|
|
|
}
|
2008-03-01 00:14:53 +02:00
|
|
|
ifs.close();
|
|
|
|
ifs.clear();
|
2008-06-17 20:48:32 +03:00
|
|
|
buf = bitmaph->getTextFile("ZCRGN1.TXT");
|
2008-03-01 00:14:53 +02:00
|
|
|
it=0;
|
|
|
|
while (it<buf.length()-1)
|
|
|
|
{
|
2008-06-13 11:16:51 +03:00
|
|
|
loadToIt(temp,buf,it,3);
|
2008-03-01 00:14:53 +02:00
|
|
|
creGens.push_back(temp);
|
|
|
|
}
|
|
|
|
|
2007-08-09 19:28:01 +03:00
|
|
|
}
|
|
|
|
|
2007-10-27 22:38:48 +03:00
|
|
|
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
|
|
|
|
{
|
2008-06-17 20:48:32 +03:00
|
|
|
return defInfo->width;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
int CGObjectInstance::getHeight() const //returns height of object graphic in tiles
|
|
|
|
{
|
2008-06-17 20:48:32 +03:00
|
|
|
return defInfo->width;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
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;
|
2008-02-23 21:20:41 +02:00
|
|
|
if(cmp.ID==34 && ID!=34)
|
|
|
|
return true;
|
|
|
|
if(cmp.ID!=34 && ID==34)
|
|
|
|
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;
|
|
|
|
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 CGHeroInstance::isHero() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
unsigned int CGHeroInstance::getTileCost(const EterrainType & ttype, const Eroad & rdtype, const Eriver & rvtype) const
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
|
|
|
unsigned int ret = type->heroClass->terrCosts[ttype];
|
|
|
|
switch(rdtype)
|
|
|
|
{
|
2008-06-13 11:16:51 +03:00
|
|
|
case dirtRoad:
|
2007-10-27 22:38:48 +03:00
|
|
|
ret*=0.75;
|
|
|
|
break;
|
2008-06-13 11:16:51 +03:00
|
|
|
case grazvelRoad:
|
2007-10-27 22:38:48 +03:00
|
|
|
ret*=0.667;
|
|
|
|
break;
|
2008-06-13 11:16:51 +03:00
|
|
|
case cobblestoneRoad:
|
2007-10-27 22:38:48 +03:00
|
|
|
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;
|
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
int CGHeroInstance::getSecSkillLevel(const int & ID) const
|
2008-02-25 01:06:27 +02:00
|
|
|
{
|
|
|
|
for(int i=0;i<secSkills.size();i++)
|
|
|
|
if(secSkills[i].first==ID)
|
|
|
|
return secSkills[i].second;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-06-08 03:58:29 +03:00
|
|
|
const CArtifact * CGHeroInstance::getArt(int pos)
|
|
|
|
{
|
2008-06-11 04:53:57 +03:00
|
|
|
if(artifWorn.find(pos)!=artifWorn.end())
|
2008-06-17 20:48:32 +03:00
|
|
|
return &VLC->arth->artifacts[artifWorn[pos]];
|
2008-06-11 04:53:57 +03:00
|
|
|
else
|
|
|
|
return NULL;
|
2008-06-08 03:58:29 +03:00
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
|
|
|
|
int CGTownInstance::getSightDistance() const //returns sight distance
|
|
|
|
{
|
|
|
|
return 10;
|
|
|
|
}
|
2008-02-18 23:14:28 +02:00
|
|
|
int CGTownInstance::fortLevel() const //0 - none, 1 - fort, 2 - citadel, 3 - castle
|
|
|
|
{
|
|
|
|
if((builtBuildings.find(9))!=builtBuildings.end())
|
|
|
|
return 3;
|
|
|
|
if((builtBuildings.find(8))!=builtBuildings.end())
|
|
|
|
return 2;
|
|
|
|
if((builtBuildings.find(7))!=builtBuildings.end())
|
|
|
|
return 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
int CGTownInstance::hallLevel() const // -1 - none, 0 - village, 1 - town, 2 - city, 3 - capitol
|
|
|
|
{
|
|
|
|
if ((builtBuildings.find(13))!=builtBuildings.end())
|
|
|
|
return 3;
|
|
|
|
if ((builtBuildings.find(12))!=builtBuildings.end())
|
|
|
|
return 2;
|
|
|
|
if ((builtBuildings.find(11))!=builtBuildings.end())
|
|
|
|
return 1;
|
|
|
|
if ((builtBuildings.find(10))!=builtBuildings.end())
|
|
|
|
return 0;
|
|
|
|
return -1;
|
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
bool CGTownInstance::creatureDwelling(const int & level, bool upgraded) const
|
2008-04-04 20:30:53 +03:00
|
|
|
{
|
|
|
|
return builtBuildings.find(30+level+upgraded*7)!=builtBuildings.end();
|
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
int CGTownInstance::getHordeLevel(const int & HID) const//HID - 0 or 1; returns creature level or -1 if that horde structure is not present
|
2008-04-04 20:30:53 +03:00
|
|
|
{
|
2008-04-14 20:45:01 +03:00
|
|
|
return town->hordeLvl[HID];
|
2008-04-04 20:30:53 +03:00
|
|
|
}
|
2008-06-03 16:15:34 +03:00
|
|
|
int CGTownInstance::creatureGrowth(const int & level) const
|
2008-04-11 20:41:02 +03:00
|
|
|
{
|
2008-06-17 20:48:32 +03:00
|
|
|
int ret = VLC->creh->creatures[town->basicCreatures[level]].growth;
|
2008-04-14 20:45:01 +03:00
|
|
|
switch(fortLevel())
|
|
|
|
{
|
|
|
|
case 3:
|
|
|
|
ret*=2;break;
|
|
|
|
case 2:
|
|
|
|
ret*=(1.5); break;
|
|
|
|
}
|
2008-06-01 16:42:29 +03:00
|
|
|
if(builtBuildings.find(26)!=builtBuildings.end()) //grail
|
2008-06-17 20:48:32 +03:00
|
|
|
ret+=VLC->creh->creatures[town->basicCreatures[level]].growth;
|
2008-04-14 20:45:01 +03:00
|
|
|
if(getHordeLevel(0)==level)
|
|
|
|
if((builtBuildings.find(18)!=builtBuildings.end()) || (builtBuildings.find(19)!=builtBuildings.end()))
|
2008-06-17 20:48:32 +03:00
|
|
|
ret+=VLC->creh->creatures[town->basicCreatures[level]].hordeGrowth;
|
2008-04-14 20:45:01 +03:00
|
|
|
if(getHordeLevel(1)==level)
|
|
|
|
if((builtBuildings.find(24)!=builtBuildings.end()) || (builtBuildings.find(25)!=builtBuildings.end()))
|
2008-06-17 20:48:32 +03:00
|
|
|
ret+=VLC->creh->creatures[town->basicCreatures[level]].hordeGrowth;
|
2008-04-14 20:45:01 +03:00
|
|
|
return ret;
|
2008-04-11 20:41:02 +03:00
|
|
|
}
|
2008-02-18 23:14:28 +02:00
|
|
|
int CGTownInstance::dailyIncome() const
|
|
|
|
{
|
|
|
|
int ret = 0;
|
|
|
|
if ((builtBuildings.find(26))!=builtBuildings.end())
|
|
|
|
ret+=5000;
|
|
|
|
if ((builtBuildings.find(13))!=builtBuildings.end())
|
|
|
|
ret+=4000;
|
|
|
|
else if ((builtBuildings.find(12))!=builtBuildings.end())
|
|
|
|
ret+=2000;
|
|
|
|
else if ((builtBuildings.find(11))!=builtBuildings.end())
|
|
|
|
ret+=1000;
|
|
|
|
else if ((builtBuildings.find(10))!=builtBuildings.end())
|
|
|
|
ret+=500;
|
|
|
|
return ret;
|
|
|
|
}
|
2008-01-09 19:21:31 +02:00
|
|
|
bool CGTownInstance::hasFort() const
|
|
|
|
{
|
|
|
|
return (builtBuildings.find(7))!=builtBuildings.end();
|
|
|
|
}
|
2008-02-05 05:56:45 +02:00
|
|
|
bool CGTownInstance::hasCapitol() const
|
|
|
|
{
|
|
|
|
return (builtBuildings.find(13))!=builtBuildings.end();
|
|
|
|
}
|
2007-10-27 22:38:48 +03:00
|
|
|
CGTownInstance::CGTownInstance()
|
|
|
|
{
|
|
|
|
pos = int3(-1,-1,-1);
|
|
|
|
builded=-1;
|
|
|
|
destroyed=-1;
|
|
|
|
garrisonHero=NULL;
|
|
|
|
town=NULL;
|
2008-01-28 16:01:09 +02:00
|
|
|
visitingHero = NULL;
|
2007-10-27 22:38:48 +03:00
|
|
|
}
|
|
|
|
|
2008-06-03 16:15:34 +03:00
|
|
|
CGObjectInstance::CGObjectInstance(): animPhaseShift(rand()%0xff)
|
2007-10-27 22:38:48 +03:00
|
|
|
{
|
|
|
|
//std::cout << "Tworze obiekt "<<this<<std::endl;
|
2007-11-19 00:58:28 +02:00
|
|
|
//state = new CLuaObjectScript();
|
2008-06-16 13:51:14 +03:00
|
|
|
state = NULL;
|
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
|
|
|
}
|
2008-02-07 20:45:22 +02:00
|
|
|
CGHeroInstance::CGHeroInstance()
|
|
|
|
{
|
|
|
|
level = exp = -1;
|
2008-02-10 17:43:11 +02:00
|
|
|
isStanding = true;
|
|
|
|
moveDir = 4;
|
|
|
|
mana = 0;
|
2008-05-31 23:37:54 +03:00
|
|
|
visitedTown = NULL;
|
2008-06-11 04:53:57 +03:00
|
|
|
type = NULL;
|
2008-02-07 20:45:22 +02:00
|
|
|
}
|
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;
|
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;
|
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;
|
|
|
|
}
|