1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-28 08:48:48 +02:00
vcmi/CDefObjInfoHandler.cpp
mateuszb ae279c79c5 * first version of player interface displaying
* taking some txt files from lods
* some minor changes
2007-08-04 19:01:22 +00:00

30 lines
618 B
C++

#include "stdafx.h"
#include "CDefObjInfoHandler.h"
#include "CGameInfo.h"
#include <sstream>
bool DefObjInfo::operator==(const std::string & por) const
{
return this->defName == por;
}
void CDefObjInfoHandler::load()
{
std::istringstream inp(CGameInfo::mainObj->bitmaph->getTextFile("ZOBJCTS.TXT"));
int objNumber;
inp>>objNumber;
for(int hh=0; hh<objNumber; ++hh)
{
DefObjInfo nobj;
std::string dump;
inp>>nobj.defName;
for(int yy=0; yy<4; ++yy)
inp>>dump;
inp>>nobj.type;
inp>>nobj.subtype;
inp>>nobj.objType;
inp>>nobj.priority;
objs.push_back(nobj);
}
}