mirror of
https://github.com/vcmi/vcmi.git
synced 2024-11-26 08:41:13 +02:00
4edc6176dc
* headers fix * commented LUA stuff
107 lines
2.8 KiB
C++
107 lines
2.8 KiB
C++
#include "stdafx.h"
|
|
#include "CArtHandler.h"
|
|
#include "../CGameInfo.h"
|
|
#include "CGeneralTextHandler.h"
|
|
#include "CLodHandler.h"
|
|
|
|
void CArtHandler::loadArtifacts()
|
|
{
|
|
std::string buf = CGameInfo::mainObj->bitmaph->getTextFile("ARTRAITS.TXT");
|
|
int it=0;
|
|
std::string dump;
|
|
for(int i=0; i<2; ++i)
|
|
{
|
|
CGeneralTextHandler::loadToIt(dump,buf,it,3);
|
|
}
|
|
for (int i=0; i<ARTIFACTS_QUANTITY; i++)
|
|
{
|
|
CArtifact nart;
|
|
std::string pom;
|
|
CGeneralTextHandler::loadToIt(nart.name,buf,it,4);
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
nart.price=atoi(pom.c_str());
|
|
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.spellBook=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.warMachine4=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.warMachine3=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.warMachine2=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.warMachine1=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.misc5=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.misc4=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.misc3=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.misc2=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.misc1=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.feet=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.lRing=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.rRing=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.torso=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.lHand=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.rHand=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.neck=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.shoulders=true;
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
if (pom.length())
|
|
nart.head=true;
|
|
|
|
CGeneralTextHandler::loadToIt(pom,buf,it,4);
|
|
switch (pom[0])
|
|
{
|
|
case 'S':
|
|
nart.aClass=EartClass::SartClass;
|
|
break;
|
|
case 'T':
|
|
nart.aClass=EartClass::TartClass;
|
|
break;
|
|
case 'N':
|
|
nart.aClass=EartClass::NartClass;
|
|
break;
|
|
case 'J':
|
|
nart.aClass=EartClass::JartClass;
|
|
break;
|
|
case 'R':
|
|
nart.aClass=EartClass::RartClass;
|
|
break;
|
|
}
|
|
CGeneralTextHandler::loadToIt(nart.description,buf,it,3);
|
|
nart.id=artifacts.size();
|
|
|
|
artifacts.push_back(nart);
|
|
}
|
|
}
|