2011-12-14 00:23:17 +03:00
|
|
|
#include "StdInc.h"
|
2008-06-13 11:16:51 +03:00
|
|
|
#include "Graphics.h"
|
2011-12-14 00:23:17 +03:00
|
|
|
|
2013-07-28 17:49:50 +03:00
|
|
|
#include "../lib/filesystem/Filesystem.h"
|
2013-07-08 23:55:22 +03:00
|
|
|
#include "../lib/filesystem/CBinaryReader.h"
|
2010-12-20 23:22:53 +02:00
|
|
|
#include "CDefHandler.h"
|
2013-04-07 14:52:07 +03:00
|
|
|
#include "gui/SDL_Extensions.h"
|
2010-02-04 17:50:59 +02:00
|
|
|
#include <SDL_ttf.h>
|
2011-12-14 00:23:17 +03:00
|
|
|
#include "../lib/CThreadHelper.h"
|
2009-05-21 03:55:30 +03:00
|
|
|
#include "CGameInfo.h"
|
2009-05-09 19:18:27 +03:00
|
|
|
#include "../lib/VCMI_Lib.h"
|
2009-07-20 04:47:49 +03:00
|
|
|
#include "../CCallback.h"
|
2012-12-16 16:47:53 +03:00
|
|
|
#include "../lib/CHeroHandler.h"
|
2010-12-20 23:22:53 +02:00
|
|
|
#include "../lib/CTownHandler.h"
|
|
|
|
#include "../lib/CObjectHandler.h"
|
|
|
|
#include "../lib/CGeneralTextHandler.h"
|
|
|
|
#include "../lib/CCreatureHandler.h"
|
2010-08-17 17:58:13 +03:00
|
|
|
#include "CBitmapHandler.h"
|
2010-12-20 23:22:53 +02:00
|
|
|
#include "../lib/CObjectHandler.h"
|
2014-03-10 19:00:58 +03:00
|
|
|
#include "../lib/CSpellHandler.h"
|
2010-12-20 23:22:53 +02:00
|
|
|
#include "../lib/CDefObjInfoHandler.h"
|
2011-05-10 01:20:47 +03:00
|
|
|
#include "../lib/CGameState.h"
|
2011-08-20 21:46:52 +03:00
|
|
|
#include "../lib/JsonNode.h"
|
2011-10-08 04:23:46 +03:00
|
|
|
#include "../lib/vcmi_endian.h"
|
2011-12-14 00:23:17 +03:00
|
|
|
#include "../lib/GameConstants.h"
|
2011-12-17 21:59:59 +03:00
|
|
|
#include "../lib/CStopWatch.h"
|
2014-03-10 19:00:58 +03:00
|
|
|
#include "CAnimation.h"
|
2009-10-26 17:01:12 +02:00
|
|
|
|
2008-06-16 17:56:48 +03:00
|
|
|
using namespace boost::assign;
|
2008-06-13 11:16:51 +03:00
|
|
|
using namespace CSDL_Ext;
|
2008-08-04 18:56:36 +03:00
|
|
|
#ifdef min
|
|
|
|
#undef min
|
|
|
|
#endif
|
|
|
|
#ifdef max
|
|
|
|
#undef max
|
|
|
|
#endif
|
2009-04-15 17:03:31 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Graphics.cpp, part of VCMI engine
|
|
|
|
*
|
|
|
|
* Authors: listed in file AUTHORS in main folder
|
|
|
|
*
|
|
|
|
* License: GNU General Public License v2.0 or later
|
|
|
|
* Full text of license available in license.txt file, in main folder
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2013-06-26 14:18:27 +03:00
|
|
|
Graphics * graphics = nullptr;
|
2009-04-15 17:03:31 +03:00
|
|
|
|
2008-06-30 03:06:41 +03:00
|
|
|
void Graphics::loadPaletteAndColors()
|
|
|
|
{
|
2013-07-28 17:49:50 +03:00
|
|
|
auto textFile = CResourceHandler::get()->load(ResourceID("DATA/PLAYERS.PAL"))->readAll();
|
2012-08-01 15:02:54 +03:00
|
|
|
std::string pals((char*)textFile.first.get(), textFile.second);
|
|
|
|
|
2008-06-30 03:06:41 +03:00
|
|
|
playerColorPalette = new SDL_Color[256];
|
|
|
|
neutralColor = new SDL_Color;
|
2013-03-03 20:06:03 +03:00
|
|
|
playerColors = new SDL_Color[PlayerColor::PLAYER_LIMIT_I];
|
2008-06-30 03:06:41 +03:00
|
|
|
int startPoint = 24; //beginning byte; used to read
|
|
|
|
for(int i=0; i<256; ++i)
|
|
|
|
{
|
|
|
|
SDL_Color col;
|
|
|
|
col.r = pals[startPoint++];
|
|
|
|
col.g = pals[startPoint++];
|
|
|
|
col.b = pals[startPoint++];
|
2014-05-23 13:51:38 +03:00
|
|
|
CSDL_Ext::colorSetAlpha(col,SDL_ALPHA_OPAQUE);
|
2012-08-29 17:55:31 +03:00
|
|
|
startPoint++;
|
2008-06-30 03:06:41 +03:00
|
|
|
playerColorPalette[i] = col;
|
|
|
|
}
|
2009-06-30 18:36:12 +03:00
|
|
|
|
|
|
|
neutralColorPalette = new SDL_Color[32];
|
2013-07-08 23:55:22 +03:00
|
|
|
|
|
|
|
auto stream = CResourceHandler::get()->load(ResourceID("config/NEUTRAL.PAL"));
|
|
|
|
CBinaryReader reader(stream.get());
|
|
|
|
|
2009-06-30 18:36:12 +03:00
|
|
|
for(int i=0; i<32; ++i)
|
|
|
|
{
|
2013-07-08 23:55:22 +03:00
|
|
|
neutralColorPalette[i].r = reader.readUInt8();
|
|
|
|
neutralColorPalette[i].g = reader.readUInt8();
|
|
|
|
neutralColorPalette[i].b = reader.readUInt8();
|
2014-05-23 13:51:38 +03:00
|
|
|
#ifdef VCMI_SDL1
|
2013-07-08 23:55:22 +03:00
|
|
|
neutralColorPalette[i].unused = reader.readUInt8();
|
2012-05-19 19:22:34 +03:00
|
|
|
neutralColorPalette[i].unused = !neutralColorPalette[i].unused;
|
2014-05-21 19:04:34 +03:00
|
|
|
#else
|
|
|
|
neutralColorPalette[i].a = reader.readUInt8();
|
|
|
|
neutralColorPalette[i].a = !neutralColorPalette[i].a;
|
|
|
|
#endif // 0
|
2009-06-30 18:36:12 +03:00
|
|
|
}
|
2008-06-30 03:06:41 +03:00
|
|
|
//colors initialization
|
|
|
|
int3 kolory[] = {int3(0xff,0,0),int3(0x31,0x52,0xff),int3(0x9c,0x73,0x52),int3(0x42,0x94,0x29),
|
|
|
|
int3(0xff,0x84,0x0),int3(0x8c,0x29,0xa5),int3(0x09,0x9c,0xa5),int3(0xc6,0x7b,0x8c)};
|
2014-05-23 13:51:38 +03:00
|
|
|
|
2014-05-21 19:04:34 +03:00
|
|
|
for(int i=0;i<8;i++)
|
|
|
|
{
|
|
|
|
playerColors[i].r = kolory[i].x;
|
|
|
|
playerColors[i].g = kolory[i].y;
|
|
|
|
playerColors[i].b = kolory[i].z;
|
2014-05-23 13:51:38 +03:00
|
|
|
CSDL_Ext::colorSetAlpha(playerColors[i],SDL_ALPHA_OPAQUE);
|
2014-05-21 19:04:34 +03:00
|
|
|
}
|
2014-05-23 13:51:38 +03:00
|
|
|
neutralColor->r = 0x84; neutralColor->g = 0x84; neutralColor->b = 0x84; //gray
|
|
|
|
CSDL_Ext::colorSetAlpha(*neutralColor,SDL_ALPHA_OPAQUE);
|
2008-12-23 15:59:03 +02:00
|
|
|
}
|
|
|
|
|
2008-07-02 11:39:56 +03:00
|
|
|
void Graphics::initializeBattleGraphics()
|
|
|
|
{
|
2012-08-02 14:03:26 +03:00
|
|
|
const JsonNode config(ResourceID("config/battles_graphics.json"));
|
2011-08-31 04:11:41 +03:00
|
|
|
|
|
|
|
// Reserve enough space for the terrains
|
2011-09-23 18:58:18 +03:00
|
|
|
int idx = config["backgrounds"].Vector().size();
|
2011-09-03 06:53:08 +03:00
|
|
|
battleBacks.resize(idx+1); // 1 to idx, 0 is unused
|
2011-08-31 04:11:41 +03:00
|
|
|
|
2011-09-03 06:53:08 +03:00
|
|
|
idx = 1;
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const JsonNode &t : config["backgrounds"].Vector()) {
|
2011-08-31 04:11:41 +03:00
|
|
|
battleBacks[idx].push_back(t.String());
|
|
|
|
idx++;
|
2008-07-02 11:39:56 +03:00
|
|
|
}
|
|
|
|
|
2008-10-19 18:41:18 +03:00
|
|
|
//initialization of AC->def name mapping
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const JsonNode &ac : config["ac_mapping"].Vector()) {
|
2011-08-31 06:27:18 +03:00
|
|
|
int ACid = ac["id"].Float();
|
|
|
|
std::vector< std::string > toAdd;
|
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const JsonNode &defname : ac["defnames"].Vector()) {
|
2011-08-31 06:27:18 +03:00
|
|
|
toAdd.push_back(defname.String());
|
2008-10-19 18:41:18 +03:00
|
|
|
}
|
2011-08-31 06:27:18 +03:00
|
|
|
|
|
|
|
battleACToDef[ACid] = toAdd;
|
2014-03-10 19:00:58 +03:00
|
|
|
}
|
2008-06-30 03:06:41 +03:00
|
|
|
}
|
2008-06-13 11:16:51 +03:00
|
|
|
Graphics::Graphics()
|
|
|
|
{
|
2014-05-21 21:43:44 +03:00
|
|
|
#if 0
|
2008-06-16 17:56:48 +03:00
|
|
|
std::vector<Task> tasks; //preparing list of graphics to load
|
2013-07-02 18:23:32 +03:00
|
|
|
tasks += boost::bind(&Graphics::loadFonts,this);
|
|
|
|
tasks += boost::bind(&Graphics::loadPaletteAndColors,this);
|
|
|
|
tasks += boost::bind(&Graphics::loadHeroFlags,this);
|
|
|
|
tasks += boost::bind(&Graphics::initializeBattleGraphics,this);
|
|
|
|
tasks += boost::bind(&Graphics::loadErmuToPicture,this);
|
|
|
|
tasks += boost::bind(&Graphics::initializeImageLists,this);
|
2014-03-10 19:00:58 +03:00
|
|
|
tasks += GET_DEF_ESS(resources32,"RESOURCE.DEF");
|
2011-02-23 20:21:51 +02:00
|
|
|
tasks += GET_DEF_ESS(heroMoveArrows,"ADAG.DEF");
|
2008-06-16 17:56:48 +03:00
|
|
|
|
2011-12-14 00:23:17 +03:00
|
|
|
CThreadHelper th(&tasks,std::max((ui32)1,boost::thread::hardware_concurrency()));
|
2008-06-16 17:56:48 +03:00
|
|
|
th.run();
|
2014-05-21 21:43:44 +03:00
|
|
|
#else
|
|
|
|
loadFonts();
|
|
|
|
loadPaletteAndColors();
|
|
|
|
loadHeroFlags();
|
|
|
|
initializeBattleGraphics();
|
|
|
|
loadErmuToPicture();
|
|
|
|
initializeImageLists();
|
|
|
|
resources32 = CDefHandler::giveDefEss("RESOURCE.DEF");
|
|
|
|
heroMoveArrows = CDefHandler::giveDefEss("ADAG.DEF");
|
|
|
|
#endif
|
2008-06-16 17:56:48 +03:00
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
for(auto & elem : heroMoveArrows->ourImages)
|
2011-02-23 20:21:51 +02:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
CSDL_Ext::alphaTransform(elem.bitmap);
|
2011-02-23 20:21:51 +02:00
|
|
|
}
|
2008-06-16 17:56:48 +03:00
|
|
|
}
|
2010-08-16 12:54:09 +03:00
|
|
|
|
2009-07-06 22:41:27 +03:00
|
|
|
void Graphics::loadHeroAnims()
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2008-06-17 20:48:32 +03:00
|
|
|
std::vector<std::pair<int,int> > rotations; //first - group number to be rotated1, second - group number after rotation1
|
|
|
|
rotations += std::make_pair(6,10), std::make_pair(7,11), std::make_pair(8,12), std::make_pair(1,13),
|
|
|
|
std::make_pair(2,14), std::make_pair(3,15);
|
2012-12-16 16:47:53 +03:00
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
for(auto & elem : CGI->heroh->classes.heroClasses)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
const CHeroClass * hc = elem;
|
2012-12-16 16:47:53 +03:00
|
|
|
|
|
|
|
if (!vstd::contains(heroAnims, hc->imageMapFemale))
|
|
|
|
heroAnims[hc->imageMapFemale] = loadHeroAnim(hc->imageMapFemale, rotations);
|
|
|
|
|
|
|
|
if (!vstd::contains(heroAnims, hc->imageMapMale))
|
|
|
|
heroAnims[hc->imageMapMale] = loadHeroAnim(hc->imageMapMale, rotations);
|
2012-09-26 16:13:39 +03:00
|
|
|
}
|
2009-07-06 22:41:27 +03:00
|
|
|
|
2012-12-16 16:47:53 +03:00
|
|
|
boatAnims.push_back(loadHeroAnim("AB01_.DEF", rotations));
|
|
|
|
boatAnims.push_back(loadHeroAnim("AB02_.DEF", rotations));
|
|
|
|
boatAnims.push_back(loadHeroAnim("AB03_.DEF", rotations));
|
2009-07-06 22:41:27 +03:00
|
|
|
}
|
|
|
|
|
2012-12-16 16:47:53 +03:00
|
|
|
CDefEssential * Graphics::loadHeroAnim( const std::string &name, const std::vector<std::pair<int,int> > &rotations)
|
2009-07-06 22:41:27 +03:00
|
|
|
{
|
|
|
|
CDefEssential *anim = CDefHandler::giveDefEss(name);
|
|
|
|
int pom = 0; //how many groups has been rotated
|
|
|
|
for(int o=7; pom<6; ++o)
|
|
|
|
{
|
|
|
|
for(int p=0;p<6;p++)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2009-07-06 22:41:27 +03:00
|
|
|
if(anim->ourImages[o].groupNumber == rotations[p].first)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2009-07-06 22:41:27 +03:00
|
|
|
for(int e=0; e<8; ++e)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2009-07-06 22:41:27 +03:00
|
|
|
Cimage nci;
|
2013-11-06 16:42:58 +03:00
|
|
|
nci.bitmap = CSDL_Ext::verticalFlip(anim->ourImages[o+e].bitmap);
|
2009-07-06 22:41:27 +03:00
|
|
|
nci.groupNumber = rotations[p].second;
|
|
|
|
nci.imName = std::string();
|
|
|
|
anim->ourImages.push_back(nci);
|
|
|
|
if(pom>2) //we need only one frame for groups 13/14/15
|
|
|
|
break;
|
2008-06-13 11:16:51 +03:00
|
|
|
}
|
2009-07-06 22:41:27 +03:00
|
|
|
if(pom<3) //there are eight frames of animtion of groups 6/7/8 so for speed we'll skip them
|
|
|
|
o+=8;
|
|
|
|
else //there is only one frame of 1/2/3
|
|
|
|
o+=1;
|
|
|
|
++pom;
|
|
|
|
if(p==2 && pom<4) //group1 starts at index 1
|
|
|
|
o = 1;
|
2008-06-13 11:16:51 +03:00
|
|
|
}
|
|
|
|
}
|
2009-07-06 22:41:27 +03:00
|
|
|
}
|
2013-06-29 16:05:48 +03:00
|
|
|
for(auto & elem : anim->ourImages)
|
2009-07-06 22:41:27 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
CSDL_Ext::alphaTransform(elem.bitmap);
|
2008-06-13 11:16:51 +03:00
|
|
|
}
|
2012-12-16 16:47:53 +03:00
|
|
|
return anim;
|
2008-06-16 13:51:14 +03:00
|
|
|
}
|
2008-06-13 11:16:51 +03:00
|
|
|
|
2013-06-26 14:18:27 +03:00
|
|
|
void Graphics::loadHeroFlagsDetail(std::pair<std::vector<CDefEssential *> Graphics::*, std::vector<const char *> > &pr, bool mode)
|
2008-06-16 13:51:14 +03:00
|
|
|
{
|
|
|
|
for(int i=0;i<8;i++)
|
2009-06-17 19:46:16 +03:00
|
|
|
(this->*pr.first).push_back(CDefHandler::giveDefEss(pr.second[i]));
|
2008-06-17 20:48:32 +03:00
|
|
|
std::vector<std::pair<int,int> > rotations; //first - group number to be rotated1, second - group number after rotation1
|
|
|
|
rotations += std::make_pair(6,10), std::make_pair(7,11), std::make_pair(8,12);
|
2008-06-13 11:16:51 +03:00
|
|
|
for(int q=0; q<8; ++q)
|
|
|
|
{
|
2009-07-19 06:10:24 +03:00
|
|
|
std::vector<Cimage> &curImgs = (this->*pr.first)[q]->ourImages;
|
|
|
|
for(size_t o=0; o<curImgs.size(); ++o)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
for(auto & rotation : rotations)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
if(curImgs[o].groupNumber==rotation.first)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2008-06-17 20:48:32 +03:00
|
|
|
for(int e=0; e<8; ++e)
|
|
|
|
{
|
|
|
|
Cimage nci;
|
2013-11-06 16:42:58 +03:00
|
|
|
nci.bitmap = CSDL_Ext::verticalFlip(curImgs[o+e].bitmap);
|
2013-06-29 16:05:48 +03:00
|
|
|
nci.groupNumber = rotation.second;
|
2008-06-17 20:48:32 +03:00
|
|
|
nci.imName = std::string();
|
2009-07-19 06:10:24 +03:00
|
|
|
curImgs.push_back(nci);
|
2008-06-17 20:48:32 +03:00
|
|
|
}
|
|
|
|
o+=8;
|
2008-06-13 11:16:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-06-16 13:51:14 +03:00
|
|
|
if (mode)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2009-07-19 06:10:24 +03:00
|
|
|
for(size_t o=0; o<curImgs.size(); ++o)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2009-07-25 15:49:45 +03:00
|
|
|
if(curImgs[o].groupNumber==1 || curImgs[o].groupNumber==2 || curImgs[o].groupNumber==3)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2008-06-16 13:51:14 +03:00
|
|
|
for(int e=0; e<8; ++e)
|
|
|
|
{
|
|
|
|
Cimage nci;
|
2013-11-06 16:42:58 +03:00
|
|
|
nci.bitmap = CSDL_Ext::verticalFlip(curImgs[o+e].bitmap);
|
2009-07-25 15:49:45 +03:00
|
|
|
nci.groupNumber = 12 + curImgs[o].groupNumber;
|
2008-06-16 13:51:14 +03:00
|
|
|
nci.imName = std::string();
|
2009-07-19 06:10:24 +03:00
|
|
|
curImgs.push_back(nci);
|
2008-06-16 13:51:14 +03:00
|
|
|
}
|
|
|
|
o+=8;
|
2008-06-13 11:16:51 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-06-29 16:05:48 +03:00
|
|
|
for(auto & curImg : curImgs)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
SDL_SetColorKey(curImg.bitmap, SDL_SRCCOLORKEY,
|
|
|
|
SDL_MapRGB(curImg.bitmap->format, 0, 255, 255)
|
2008-06-13 11:16:51 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-06-16 13:51:14 +03:00
|
|
|
|
|
|
|
void Graphics::loadHeroFlags()
|
|
|
|
{
|
|
|
|
using namespace boost::assign;
|
2011-12-17 21:59:59 +03:00
|
|
|
CStopWatch th;
|
2009-06-17 19:46:16 +03:00
|
|
|
std::pair<std::vector<CDefEssential *> Graphics::*, std::vector<const char *> > pr[4];
|
2008-06-16 13:51:14 +03:00
|
|
|
pr[0].first = &Graphics::flags1;
|
|
|
|
pr[0].second+=("ABF01L.DEF"),("ABF01G.DEF"),("ABF01R.DEF"),("ABF01D.DEF"),("ABF01B.DEF"),
|
|
|
|
("ABF01P.DEF"),("ABF01W.DEF"),("ABF01K.DEF");
|
|
|
|
pr[1].first = &Graphics::flags2;
|
|
|
|
pr[1].second+=("ABF02L.DEF"),("ABF02G.DEF"),("ABF02R.DEF"),("ABF02D.DEF"),("ABF02B.DEF"),
|
|
|
|
("ABF02P.DEF"),("ABF02W.DEF"),("ABF02K.DEF");
|
|
|
|
pr[2].first = &Graphics::flags3;
|
|
|
|
pr[2].second+=("ABF03L.DEF"),("ABF03G.DEF"),("ABF03R.DEF"),("ABF03D.DEF"),("ABF03B.DEF"),
|
|
|
|
("ABF03P.DEF"),("ABF03W.DEF"),("ABF03K.DEF");
|
|
|
|
pr[3].first = &Graphics::flags4;
|
|
|
|
pr[3].second+=("AF00.DEF"),("AF01.DEF"),("AF02.DEF"),("AF03.DEF"),("AF04.DEF"),
|
|
|
|
("AF05.DEF"),("AF06.DEF"),("AF07.DEF");
|
2014-05-21 21:43:44 +03:00
|
|
|
#if 0
|
2008-06-16 13:51:14 +03:00
|
|
|
boost::thread_group grupa;
|
2009-07-25 15:49:45 +03:00
|
|
|
for(int g=3; g>=0; --g)
|
|
|
|
{
|
2013-07-02 18:23:32 +03:00
|
|
|
grupa.create_thread(boost::bind(&Graphics::loadHeroFlagsDetail, this, boost::ref(pr[g]), true));
|
2009-07-25 15:49:45 +03:00
|
|
|
}
|
2008-06-16 13:51:14 +03:00
|
|
|
grupa.join_all();
|
2014-05-21 21:43:44 +03:00
|
|
|
#else
|
|
|
|
for(auto p: pr)
|
|
|
|
{
|
|
|
|
loadHeroFlagsDetail(p,true);
|
|
|
|
}
|
|
|
|
#endif
|
2013-04-09 17:31:36 +03:00
|
|
|
logGlobal->infoStream() << "Loading and transforming heroes' flags: "<<th.getDiff();
|
2008-06-16 13:51:14 +03:00
|
|
|
}
|
2008-06-30 03:06:41 +03:00
|
|
|
|
2013-03-03 20:06:03 +03:00
|
|
|
void Graphics::blueToPlayersAdv(SDL_Surface * sur, PlayerColor player)
|
2008-06-30 03:06:41 +03:00
|
|
|
{
|
2013-09-08 16:02:34 +03:00
|
|
|
if(sur->format->palette)
|
2008-06-30 03:06:41 +03:00
|
|
|
{
|
2013-06-26 14:18:27 +03:00
|
|
|
SDL_Color *palette = nullptr;
|
2013-03-03 20:06:03 +03:00
|
|
|
if(player < PlayerColor::PLAYER_LIMIT)
|
2009-06-30 18:36:12 +03:00
|
|
|
{
|
2013-03-03 20:06:03 +03:00
|
|
|
palette = playerColorPalette + 32*player.getNum();
|
2009-06-30 18:36:12 +03:00
|
|
|
}
|
2013-03-03 20:06:03 +03:00
|
|
|
else if(player == PlayerColor::NEUTRAL)
|
2009-06-30 18:36:12 +03:00
|
|
|
{
|
|
|
|
palette = neutralColorPalette;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-09 17:31:36 +03:00
|
|
|
logGlobal->errorStream() << "Wrong player id in blueToPlayersAdv (" << player << ")!";
|
2009-06-30 18:36:12 +03:00
|
|
|
return;
|
|
|
|
}
|
2009-09-20 15:47:40 +03:00
|
|
|
SDL_SetColors(sur, palette, 224, 32);
|
2008-06-30 03:06:41 +03:00
|
|
|
}
|
2013-09-08 16:02:34 +03:00
|
|
|
else
|
2008-06-30 03:06:41 +03:00
|
|
|
{
|
2013-09-08 16:02:34 +03:00
|
|
|
//TODO: implement. H3 method works only for images with palettes.
|
|
|
|
// Add some kind of player-colored overlay?
|
|
|
|
// Or keep palette approach here and replace only colors of specific value(s)
|
|
|
|
// Or just wait for OpenGL support?
|
|
|
|
logGlobal->warnStream() << "Image must have palette to be player-colored!";
|
2008-06-30 03:06:41 +03:00
|
|
|
}
|
2008-08-04 12:05:52 +03:00
|
|
|
}
|
2009-08-17 11:50:31 +03:00
|
|
|
|
2012-12-19 20:24:53 +03:00
|
|
|
void Graphics::loadFonts()
|
2009-08-17 11:50:31 +03:00
|
|
|
{
|
2012-12-19 20:24:53 +03:00
|
|
|
const JsonNode config(ResourceID("config/fonts.json"));
|
2010-11-05 22:48:54 +02:00
|
|
|
|
2012-12-19 20:24:53 +03:00
|
|
|
const JsonVector & bmpConf = config["bitmap"].Vector();
|
|
|
|
const JsonNode & ttfConf = config["trueType"];
|
2013-09-08 19:49:23 +03:00
|
|
|
const JsonNode & hanConf = config["bitmapHan"];
|
2010-11-05 22:48:54 +02:00
|
|
|
|
2012-12-19 20:24:53 +03:00
|
|
|
assert(bmpConf.size() == FONTS_NUMBER);
|
2009-08-17 11:50:31 +03:00
|
|
|
|
2012-12-19 20:24:53 +03:00
|
|
|
for (size_t i=0; i<FONTS_NUMBER; i++)
|
|
|
|
{
|
|
|
|
std::string filename = bmpConf[i].String();
|
2009-08-17 11:50:31 +03:00
|
|
|
|
2013-09-08 19:49:23 +03:00
|
|
|
if (!hanConf[filename].isNull())
|
|
|
|
fonts[i] = new CBitmapHanFont(hanConf[filename]);
|
|
|
|
else if (!ttfConf[filename].isNull()) // no ttf override
|
2012-12-19 20:24:53 +03:00
|
|
|
fonts[i] = new CTrueTypeFont(ttfConf[filename]);
|
2013-09-08 16:02:34 +03:00
|
|
|
else
|
|
|
|
fonts[i] = new CBitmapFont(filename);
|
2012-12-19 20:24:53 +03:00
|
|
|
}
|
2009-08-17 11:50:31 +03:00
|
|
|
}
|
|
|
|
|
2010-12-19 16:39:56 +02:00
|
|
|
CDefEssential * Graphics::getDef( const CGObjectInstance * obj )
|
|
|
|
{
|
2014-01-03 02:48:38 +03:00
|
|
|
return advmapobjGraphics[obj->appearance.animationFile];
|
2010-12-19 16:39:56 +02:00
|
|
|
}
|
|
|
|
|
2014-01-03 02:48:38 +03:00
|
|
|
CDefEssential * Graphics::getDef( const ObjectTemplate & info )
|
2010-12-19 16:39:56 +02:00
|
|
|
{
|
2014-01-03 02:48:38 +03:00
|
|
|
return advmapobjGraphics[info.animationFile];
|
2010-12-19 16:39:56 +02:00
|
|
|
}
|
|
|
|
|
2010-12-20 23:22:53 +02:00
|
|
|
void Graphics::loadErmuToPicture()
|
|
|
|
{
|
|
|
|
//loading ERMU to picture
|
2012-08-02 14:03:26 +03:00
|
|
|
const JsonNode config(ResourceID("config/ERMU_to_picture.json"));
|
2011-09-01 02:27:33 +03:00
|
|
|
int etp_idx = 0;
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const JsonNode &etp : config["ERMU_to_picture"].Vector()) {
|
2011-09-01 02:27:33 +03:00
|
|
|
int idx = 0;
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const JsonNode &n : etp.Vector()) {
|
2011-09-01 02:27:33 +03:00
|
|
|
ERMUtoPicture[idx][etp_idx] = n.String();
|
|
|
|
idx ++;
|
2010-12-20 23:22:53 +02:00
|
|
|
}
|
2011-09-01 02:27:33 +03:00
|
|
|
assert (idx == ARRAY_COUNT(ERMUtoPicture));
|
2010-12-20 23:22:53 +02:00
|
|
|
|
2011-09-01 02:27:33 +03:00
|
|
|
etp_idx ++;
|
|
|
|
}
|
|
|
|
assert (etp_idx == 44);
|
2010-12-20 23:22:53 +02:00
|
|
|
}
|
2013-04-22 22:51:22 +03:00
|
|
|
|
|
|
|
void Graphics::addImageListEntry(size_t index, std::string listName, std::string imageName)
|
|
|
|
{
|
|
|
|
if (!imageName.empty())
|
|
|
|
{
|
|
|
|
JsonNode entry;
|
|
|
|
entry["frame"].Float() = index;
|
|
|
|
entry["file"].String() = imageName;
|
|
|
|
|
|
|
|
imageLists["SPRITES/" + listName]["images"].Vector().push_back(entry);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Graphics::initializeImageLists()
|
|
|
|
{
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const CCreature * creature : CGI->creh->creatures)
|
2013-04-22 22:51:22 +03:00
|
|
|
{
|
|
|
|
addImageListEntry(creature->iconIndex, "CPRSMALL", creature->smallIconName);
|
|
|
|
addImageListEntry(creature->iconIndex, "TWCRPORT", creature->largeIconName);
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const CHero * hero : CGI->heroh->heroes)
|
2013-04-22 22:51:22 +03:00
|
|
|
{
|
|
|
|
addImageListEntry(hero->imageIndex, "UN32", hero->iconSpecSmall);
|
|
|
|
addImageListEntry(hero->imageIndex, "UN44", hero->iconSpecLarge);
|
|
|
|
addImageListEntry(hero->imageIndex, "PORTRAITSLARGE", hero->portraitLarge);
|
|
|
|
addImageListEntry(hero->imageIndex, "PORTRAITSSMALL", hero->portraitSmall);
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const CArtifact * art : CGI->arth->artifacts)
|
2013-04-22 22:51:22 +03:00
|
|
|
{
|
|
|
|
addImageListEntry(art->iconIndex, "ARTIFACT", art->image);
|
|
|
|
addImageListEntry(art->iconIndex, "ARTIFACTLARGE", art->large);
|
|
|
|
}
|
|
|
|
|
2013-06-29 16:05:48 +03:00
|
|
|
for(const CFaction * faction : CGI->townh->factions)
|
2013-04-22 22:51:22 +03:00
|
|
|
{
|
|
|
|
if (faction->town)
|
|
|
|
{
|
|
|
|
auto & info = faction->town->clientInfo;
|
|
|
|
addImageListEntry(info.icons[0][0], "ITPT", info.iconLarge[0][0]);
|
|
|
|
addImageListEntry(info.icons[0][1], "ITPT", info.iconLarge[0][1]);
|
|
|
|
addImageListEntry(info.icons[1][0], "ITPT", info.iconLarge[1][0]);
|
|
|
|
addImageListEntry(info.icons[1][1], "ITPT", info.iconLarge[1][1]);
|
|
|
|
|
|
|
|
addImageListEntry(info.icons[0][0] + 2, "ITPA", info.iconSmall[0][0]);
|
|
|
|
addImageListEntry(info.icons[0][1] + 2, "ITPA", info.iconSmall[0][1]);
|
|
|
|
addImageListEntry(info.icons[1][0] + 2, "ITPA", info.iconSmall[1][0]);
|
|
|
|
addImageListEntry(info.icons[1][1] + 2, "ITPA", info.iconSmall[1][1]);
|
|
|
|
}
|
|
|
|
}
|
2014-03-10 19:00:58 +03:00
|
|
|
|
|
|
|
for(const CSpell * spell : CGI->spellh->objects)
|
|
|
|
{
|
|
|
|
addImageListEntry(spell->id, "SPELLS", spell->iconBook);
|
|
|
|
addImageListEntry(spell->id+1, "SPELLINT", spell->iconEffect);
|
|
|
|
addImageListEntry(spell->id, "SPELLBON", spell->iconScenarioBonus);
|
|
|
|
addImageListEntry(spell->id, "SPELLSCR", spell->iconScroll);
|
|
|
|
}
|
2013-04-22 22:51:22 +03:00
|
|
|
}
|