| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- #define VCMI_DLL
- #include "../stdafx.h"
- #include "CArtHandler.h"
- #include "CLodHandler.h"
- #include "CGeneralTextHandler.h"
- #include <boost/assign/std/vector.hpp>
- #include <boost/assign/list_of.hpp>
- #include "../lib/VCMI_Lib.h"
- extern CLodHandler *bitmaph;
- using namespace boost::assign;
- CArtHandler::CArtHandler()
- {
- VLC->arth = this;
- }
- void CArtHandler::loadArtifacts(bool onlyTxt)
- {
- std::vector<ui16> slots;
- slots += 17, 16, 15,14,13, 18, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0;
- std::map<char,EartClass> classes =
- map_list_of('S',SartClass)('T',TartClass)('N',NartClass)('J',JartClass)('R',RartClass);
- std::string buf = bitmaph->getTextFile("ARTRAITS.TXT"), dump, pom;
- int it=0;
- for(int i=0; i<2; ++i)
- {
- loadToIt(dump,buf,it,3);
- }
- VLC->generaltexth->artifNames.resize(ARTIFACTS_QUANTITY);
- VLC->generaltexth->artifDescriptions.resize(ARTIFACTS_QUANTITY);
- for (int i=0; i<ARTIFACTS_QUANTITY; i++)
- {
- CArtifact nart;
- loadToIt(VLC->generaltexth->artifNames[i],buf,it,4);
- loadToIt(pom,buf,it,4);
- nart.price=atoi(pom.c_str());
- for(int j=0;j<slots.size();j++)
- {
- loadToIt(pom,buf,it,4);
- if(pom[0]=='x')
- nart.possibleSlots.push_back(slots[j]);
- }
- loadToIt(pom,buf,it,4);
- nart.aClass = classes[pom[0]];
- loadToIt(VLC->generaltexth->artifDescriptions[i],buf,it,3);
- nart.id=i;
- if(!onlyTxt)
- artifacts.push_back(nart);
- }
- sortArts();
- }
- int CArtHandler::convertMachineID(int id, bool creToArt )
- {
- int dif = 142;
- if(creToArt)
- {
- switch (id)
- {
- case 147:
- dif--;
- break;
- case 148:
- dif++;
- break;
- }
- dif = -dif;
- }
- else
- {
- switch (id)
- {
- case 6:
- dif--;
- break;
- case 5:
- dif++;
- break;
- }
- }
- return id + dif;
- }
- void CArtHandler::sortArts()
- {
- for(int i=0;i<144;i++) //do 144, bo nie chcemy bzdurek
- {
- switch (artifacts[i].aClass)
- {
- case TartClass:
- treasures.push_back(&(artifacts[i]));
- break;
- case NartClass:
- minors.push_back(&(artifacts[i]));
- break;
- case JartClass:
- majors.push_back(&(artifacts[i]));
- break;
- case RartClass:
- relics.push_back(&(artifacts[i]));
- break;
- }
- }
- }
- const std::string & CArtifact::Name() const
- {
- if(name.size())
- return name;
- else
- return VLC->generaltexth->artifNames[id];
- }
- const std::string & CArtifact::Description() const
- {
- if(description.size())
- return description;
- else
- return VLC->generaltexth->artifDescriptions[id];
- }
|