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
|
|
|
|
2012-08-01 15:02:54 +03:00
|
|
|
#include "../lib/Filesystem/CResourceLoader.h"
|
2010-12-20 23:22:53 +02:00
|
|
|
#include "CDefHandler.h"
|
2011-12-22 16:05:19 +03:00
|
|
|
#include "UIFramework/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"
|
|
|
|
#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"
|
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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2008-06-13 11:16:51 +03:00
|
|
|
Graphics * graphics = NULL;
|
2009-04-15 17:03:31 +03:00
|
|
|
|
2008-06-30 03:06:41 +03:00
|
|
|
void Graphics::loadPaletteAndColors()
|
|
|
|
{
|
2012-08-01 15:02:54 +03:00
|
|
|
auto textFile = CResourceHandler::get()->loadData(ResourceID("DATA/PLAYERS.PAL"));
|
|
|
|
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;
|
2011-12-14 00:23:17 +03:00
|
|
|
playerColors = new SDL_Color[GameConstants::PLAYER_LIMIT];
|
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++];
|
2012-08-29 17:55:31 +03:00
|
|
|
col.unused = 255;
|
|
|
|
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];
|
|
|
|
std::ifstream ncp;
|
2012-08-06 10:34:37 +03:00
|
|
|
ncp.open(CResourceHandler::get()->getResourceName(ResourceID("config/NEUTRAL.PAL")), std::ios::binary);
|
2009-06-30 18:36:12 +03:00
|
|
|
for(int i=0; i<32; ++i)
|
|
|
|
{
|
|
|
|
ncp.read((char*)&neutralColorPalette[i].r,1);
|
|
|
|
ncp.read((char*)&neutralColorPalette[i].g,1);
|
|
|
|
ncp.read((char*)&neutralColorPalette[i].b,1);
|
|
|
|
ncp.read((char*)&neutralColorPalette[i].unused,1);
|
2012-05-19 19:22:34 +03:00
|
|
|
neutralColorPalette[i].unused = !neutralColorPalette[i].unused;
|
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)};
|
|
|
|
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;
|
2012-05-19 19:22:34 +03:00
|
|
|
playerColors[i].unused = 255;
|
2008-06-30 03:06:41 +03:00
|
|
|
}
|
2012-05-19 19:22:34 +03:00
|
|
|
neutralColor->r = 0x84; neutralColor->g = 0x84; neutralColor->b = 0x84; neutralColor->unused = 255;//gray
|
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;
|
2011-08-31 04:11:41 +03:00
|
|
|
BOOST_FOREACH(const JsonNode &t, config["backgrounds"].Vector()) {
|
|
|
|
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
|
2011-08-31 06:27:18 +03:00
|
|
|
BOOST_FOREACH(const JsonNode &ac, config["ac_mapping"].Vector()) {
|
|
|
|
int ACid = ac["id"].Float();
|
|
|
|
std::vector< std::string > toAdd;
|
|
|
|
|
|
|
|
BOOST_FOREACH(const JsonNode &defname, ac["defnames"].Vector()) {
|
|
|
|
toAdd.push_back(defname.String());
|
2008-10-19 18:41:18 +03:00
|
|
|
}
|
2011-08-31 06:27:18 +03:00
|
|
|
|
|
|
|
battleACToDef[ACid] = toAdd;
|
2008-10-19 18:41:18 +03:00
|
|
|
}
|
2011-08-31 06:27:18 +03:00
|
|
|
|
2009-06-17 19:46:16 +03:00
|
|
|
spellEffectsPics = CDefHandler::giveDefEss("SpellInt.def");
|
2008-06-30 03:06:41 +03:00
|
|
|
}
|
2008-06-13 11:16:51 +03:00
|
|
|
Graphics::Graphics()
|
|
|
|
{
|
2008-06-16 17:56:48 +03:00
|
|
|
std::vector<Task> tasks; //preparing list of graphics to load
|
2009-08-17 11:50:31 +03:00
|
|
|
tasks += boost::bind(&Graphics::loadFonts,this);
|
2008-06-30 03:06:41 +03:00
|
|
|
tasks += boost::bind(&Graphics::loadPaletteAndColors,this);
|
2008-06-16 17:56:48 +03:00
|
|
|
tasks += boost::bind(&Graphics::loadHeroFlags,this);
|
2008-07-02 11:39:56 +03:00
|
|
|
tasks += boost::bind(&Graphics::initializeBattleGraphics,this);
|
2010-12-20 23:22:53 +02:00
|
|
|
tasks += boost::bind(&Graphics::loadErmuToPicture,this);
|
2009-06-17 19:46:16 +03:00
|
|
|
tasks += GET_DEF_ESS(resources32,"RESOURCE.DEF");
|
|
|
|
tasks += GET_DEF_ESS(spellscr,"SPELLSCR.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();
|
|
|
|
|
2011-02-23 20:21:51 +02:00
|
|
|
for(size_t y=0; y < heroMoveArrows->ourImages.size(); ++y)
|
|
|
|
{
|
|
|
|
CSDL_Ext::alphaTransform(heroMoveArrows->ourImages[y].bitmap);
|
|
|
|
}
|
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
|
|
|
|
|
|
|
for(size_t i=0; i<CGI->heroh->classes.heroClasses.size(); ++i)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2012-12-16 16:47:53 +03:00
|
|
|
const CHeroClass * hc = CGI->heroh->classes.heroClasses[i];
|
|
|
|
|
|
|
|
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;
|
|
|
|
nci.bitmap = CSDL_Ext::rotate01(anim->ourImages[o+e].bitmap);
|
|
|
|
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
|
|
|
}
|
|
|
|
for(size_t ff=0; ff<anim->ourImages.size(); ++ff)
|
|
|
|
{
|
|
|
|
CSDL_Ext::alphaTransform(anim->ourImages[ff].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
|
|
|
|
2009-06-17 19:46:16 +03:00
|
|
|
void Graphics::loadHeroFlags(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
|
|
|
{
|
2009-07-25 15:49:45 +03:00
|
|
|
for(size_t p=0; p<rotations.size(); p++)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2009-07-19 06:10:24 +03:00
|
|
|
if(curImgs[o].groupNumber==rotations[p].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;
|
2009-07-19 06:10:24 +03:00
|
|
|
nci.bitmap = CSDL_Ext::rotate01(curImgs[o+e].bitmap);
|
2008-06-17 20:48:32 +03:00
|
|
|
nci.groupNumber = rotations[p].second;
|
|
|
|
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;
|
2009-07-19 06:10:24 +03:00
|
|
|
nci.bitmap = CSDL_Ext::rotate01(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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-07-19 06:10:24 +03:00
|
|
|
for(size_t ff=0; ff<curImgs.size(); ++ff)
|
2008-06-13 11:16:51 +03:00
|
|
|
{
|
2009-07-19 06:10:24 +03:00
|
|
|
SDL_SetColorKey(curImgs[ff].bitmap, SDL_SRCCOLORKEY,
|
|
|
|
SDL_MapRGB(curImgs[ff].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");
|
|
|
|
boost::thread_group grupa;
|
2009-07-25 15:49:45 +03:00
|
|
|
for(int g=3; g>=0; --g)
|
|
|
|
{
|
|
|
|
grupa.create_thread(boost::bind(&Graphics::loadHeroFlags,this,boost::ref(pr[g]),true));
|
|
|
|
}
|
2008-06-16 13:51:14 +03:00
|
|
|
grupa.join_all();
|
2011-12-14 00:23:17 +03:00
|
|
|
tlog0 << "Loading and transforming heroes' flags: "<<th.getDiff()<<std::endl;
|
2008-06-16 13:51:14 +03:00
|
|
|
}
|
2008-06-30 03:06:41 +03:00
|
|
|
|
|
|
|
void Graphics::blueToPlayersAdv(SDL_Surface * sur, int player)
|
|
|
|
{
|
2010-02-20 15:24:38 +02:00
|
|
|
// if(player==1) //it is actually blue...
|
|
|
|
// return;
|
2008-06-30 03:06:41 +03:00
|
|
|
if(sur->format->BitsPerPixel == 8)
|
|
|
|
{
|
2009-06-30 18:36:12 +03:00
|
|
|
SDL_Color *palette = NULL;
|
2011-12-14 00:23:17 +03:00
|
|
|
if(player < GameConstants::PLAYER_LIMIT && player >= 0)
|
2009-06-30 18:36:12 +03:00
|
|
|
{
|
|
|
|
palette = playerColorPalette + 32*player;
|
|
|
|
}
|
2009-07-20 05:56:35 +03:00
|
|
|
else if(player == 255 || player == -1)
|
2009-06-30 18:36:12 +03:00
|
|
|
{
|
|
|
|
palette = neutralColorPalette;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
tlog1 << "Wrong player id in blueToPlayersAdv (" << player << ")!\n";
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-09-20 15:47:40 +03:00
|
|
|
SDL_SetColors(sur, palette, 224, 32);
|
|
|
|
//for(int i=0; i<32; ++i)
|
|
|
|
//{
|
|
|
|
// sur->format->palette->colors[224+i] = palette[i];
|
|
|
|
//}
|
2008-06-30 03:06:41 +03:00
|
|
|
}
|
|
|
|
else if(sur->format->BitsPerPixel == 24) //should never happen in general
|
|
|
|
{
|
|
|
|
for(int y=0; y<sur->h; ++y)
|
|
|
|
{
|
|
|
|
for(int x=0; x<sur->w; ++x)
|
|
|
|
{
|
|
|
|
Uint8* cp = (Uint8*)sur->pixels + y*sur->pitch + x*3;
|
|
|
|
if(SDL_BYTEORDER == SDL_BIG_ENDIAN)
|
|
|
|
{
|
|
|
|
if(cp[2]>cp[1] && cp[2]>cp[0])
|
|
|
|
{
|
|
|
|
std::vector<long long int> sort1;
|
|
|
|
sort1.push_back(cp[0]);
|
|
|
|
sort1.push_back(cp[1]);
|
|
|
|
sort1.push_back(cp[2]);
|
|
|
|
std::vector< std::pair<long long int, Uint8*> > sort2;
|
|
|
|
sort2.push_back(std::make_pair(graphics->playerColors[player].r, &(cp[0])));
|
|
|
|
sort2.push_back(std::make_pair(graphics->playerColors[player].g, &(cp[1])));
|
|
|
|
sort2.push_back(std::make_pair(graphics->playerColors[player].b, &(cp[2])));
|
|
|
|
std::sort(sort1.begin(), sort1.end());
|
|
|
|
if(sort2[0].first>sort2[1].first)
|
|
|
|
std::swap(sort2[0], sort2[1]);
|
|
|
|
if(sort2[1].first>sort2[2].first)
|
|
|
|
std::swap(sort2[1], sort2[2]);
|
|
|
|
if(sort2[0].first>sort2[1].first)
|
|
|
|
std::swap(sort2[0], sort2[1]);
|
|
|
|
for(int hh=0; hh<3; ++hh)
|
|
|
|
{
|
|
|
|
(*sort2[hh].second) = (sort1[hh] + sort2[hh].first)/2.2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if(
|
|
|
|
(/*(mode==0) && (cp[0]>cp[1]) && (cp[0]>cp[2])) ||
|
|
|
|
((mode==1) &&*/ (cp[2]<45) && (cp[0]>80) && (cp[1]<70) && ((cp[0]-cp[1])>40))
|
|
|
|
)
|
|
|
|
{
|
|
|
|
std::vector<long long int> sort1;
|
|
|
|
sort1.push_back(cp[2]);
|
|
|
|
sort1.push_back(cp[1]);
|
|
|
|
sort1.push_back(cp[0]);
|
|
|
|
std::vector< std::pair<long long int, Uint8*> > sort2;
|
|
|
|
sort2.push_back(std::make_pair(graphics->playerColors[player].r, &(cp[2])));
|
|
|
|
sort2.push_back(std::make_pair(graphics->playerColors[player].g, &(cp[1])));
|
|
|
|
sort2.push_back(std::make_pair(graphics->playerColors[player].b, &(cp[0])));
|
|
|
|
std::sort(sort1.begin(), sort1.end());
|
|
|
|
if(sort2[0].first>sort2[1].first)
|
|
|
|
std::swap(sort2[0], sort2[1]);
|
|
|
|
if(sort2[1].first>sort2[2].first)
|
|
|
|
std::swap(sort2[1], sort2[2]);
|
|
|
|
if(sort2[0].first>sort2[1].first)
|
|
|
|
std::swap(sort2[0], sort2[1]);
|
|
|
|
for(int hh=0; hh<3; ++hh)
|
|
|
|
{
|
|
|
|
(*sort2[hh].second) = (sort1[hh]*0.8 + sort2[hh].first)/2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
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"];
|
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
|
|
|
|
2012-12-19 20:24:53 +03:00
|
|
|
if (ttfConf[filename].isNull()) // no ttf override
|
|
|
|
fonts[i] = new CBitmapFont(filename);
|
|
|
|
else
|
|
|
|
fonts[i] = new CTrueTypeFont(ttfConf[filename]);
|
|
|
|
}
|
2009-08-17 11:50:31 +03:00
|
|
|
}
|
|
|
|
|
2010-12-19 16:39:56 +02:00
|
|
|
CDefEssential * Graphics::getDef( const CGObjectInstance * obj )
|
|
|
|
{
|
2012-11-13 14:52:23 +03:00
|
|
|
return advmapobjGraphics[obj->defInfo->name];
|
2010-12-19 16:39:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
CDefEssential * Graphics::getDef( const CGDefInfo * info )
|
|
|
|
{
|
2012-11-13 14:52:23 +03:00
|
|
|
return advmapobjGraphics[info->name];
|
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;
|
|
|
|
BOOST_FOREACH(const JsonNode &etp, config["ERMU_to_picture"].Vector()) {
|
|
|
|
int idx = 0;
|
|
|
|
BOOST_FOREACH(const JsonNode &n, etp.Vector()) {
|
|
|
|
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
|
|
|
}
|