1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-11-24 08:32:34 +02:00
vcmi/client/Graphics.cpp

464 lines
13 KiB
C++
Raw Normal View History

/*
* 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
*
*/
#include "StdInc.h"
#include "Graphics.h"
#include "../lib/filesystem/Filesystem.h"
#include "../lib/filesystem/CBinaryReader.h"
#include "gui/SDL_Extensions.h"
2016-10-18 09:31:31 +02:00
#include "gui/CAnimation.h"
#include <SDL_ttf.h>
#include "../lib/CThreadHelper.h"
2009-05-21 03:55:30 +03:00
#include "CGameInfo.h"
#include "../lib/VCMI_Lib.h"
#include "../CCallback.h"
#include "../lib/CHeroHandler.h"
#include "../lib/CTownHandler.h"
#include "../lib/CGeneralTextHandler.h"
#include "../lib/CCreatureHandler.h"
2010-08-17 17:58:13 +03:00
#include "CBitmapHandler.h"
#include "../lib/spells/CSpellHandler.h"
#include "../lib/CGameState.h"
#include "../lib/JsonNode.h"
#include "../lib/vcmi_endian.h"
#include "../lib/CStopWatch.h"
#include "../lib/mapObjects/CObjectClassesHandler.h"
#include "../lib/mapObjects/CObjectHandler.h"
using namespace CSDL_Ext;
#ifdef min
#undef min
#endif
#ifdef max
#undef max
#endif
Graphics * graphics = nullptr;
void Graphics::loadPaletteAndColors()
{
auto textFile = CResourceHandler::get()->load(ResourceID("DATA/PLAYERS.PAL"))->readAll();
std::string pals((char*)textFile.first.get(), textFile.second);
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];
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++];
2015-09-02 17:49:29 +02:00
col.a = SDL_ALPHA_OPAQUE;
startPoint++;
playerColorPalette[i] = col;
}
neutralColorPalette = new SDL_Color[32];
auto stream = CResourceHandler::get()->load(ResourceID("config/NEUTRAL.PAL"));
CBinaryReader reader(stream.get());
for(int i=0; i<32; ++i)
{
neutralColorPalette[i].r = reader.readUInt8();
neutralColorPalette[i].g = reader.readUInt8();
neutralColorPalette[i].b = reader.readUInt8();
reader.readUInt8(); // this is "flags" entry, not alpha
2015-09-02 17:49:29 +02:00
neutralColorPalette[i].a = SDL_ALPHA_OPAQUE;
}
//colors initialization
2016-10-16 01:47:03 +02:00
SDL_Color colors[] = {
{0xff,0, 0, SDL_ALPHA_OPAQUE},
2014-07-02 19:12:15 +03:00
{0x31,0x52,0xff,SDL_ALPHA_OPAQUE},
{0x9c,0x73,0x52,SDL_ALPHA_OPAQUE},
{0x42,0x94,0x29,SDL_ALPHA_OPAQUE},
2016-10-16 01:47:03 +02:00
2014-07-02 19:12:15 +03:00
{0xff,0x84,0, SDL_ALPHA_OPAQUE},
{0x8c,0x29,0xa5,SDL_ALPHA_OPAQUE},
{0x09,0x9c,0xa5,SDL_ALPHA_OPAQUE},
2016-10-16 01:47:03 +02:00
{0xc6,0x7b,0x8c,SDL_ALPHA_OPAQUE}};
for(int i=0;i<8;i++)
{
2014-07-02 19:12:15 +03:00
playerColors[i] = colors[i];
}
2015-09-02 17:49:29 +02:00
//gray
neutralColor->r = 0x84;
neutralColor->g = 0x84;
neutralColor->b = 0x84;
neutralColor->a = SDL_ALPHA_OPAQUE;
}
2008-07-02 11:39:56 +03:00
void Graphics::initializeBattleGraphics()
{
const JsonNode config(ResourceID("config/battles_graphics.json"));
2016-10-16 01:47:03 +02:00
// Reserve enough space for the terrains
int idx = config["backgrounds"].Vector().size();
battleBacks.resize(idx+1); // 1 to idx, 0 is unused
idx = 1;
for(const JsonNode &t : config["backgrounds"].Vector()) {
battleBacks[idx].push_back(t.String());
idx++;
2008-07-02 11:39:56 +03:00
}
//initialization of AC->def name mapping
for(const JsonNode &ac : config["ac_mapping"].Vector()) {
int ACid = ac["id"].Float();
std::vector< std::string > toAdd;
for(const JsonNode &defname : ac["defnames"].Vector()) {
toAdd.push_back(defname.String());
}
battleACToDef[ACid] = toAdd;
2016-10-16 01:47:03 +02:00
}
}
Graphics::Graphics()
{
#if 0
2016-10-16 01:47:03 +02:00
std::vector<Task> tasks; //preparing list of graphics to load
tasks += std::bind(&Graphics::loadFonts,this);
tasks += std::bind(&Graphics::loadPaletteAndColors,this);
tasks += std::bind(&Graphics::initializeBattleGraphics,this);
tasks += std::bind(&Graphics::loadErmuToPicture,this);
tasks += std::bind(&Graphics::initializeImageLists,this);
CThreadHelper th(&tasks,std::max((ui32)1,boost::thread::hardware_concurrency()));
th.run();
#else
loadFonts();
loadPaletteAndColors();
initializeBattleGraphics();
loadErmuToPicture();
initializeImageLists();
#endif
2016-10-18 09:31:31 +02:00
//(!) do not load any CAnimation here
}
Graphics::~Graphics()
{
delete[] playerColors;
delete neutralColor;
delete[] playerColorPalette;
delete[] neutralColorPalette;
}
2016-10-18 09:31:31 +02:00
void Graphics::load()
{
heroMoveArrows = std::make_shared<CAnimation>("ADAG");
heroMoveArrows->preload();
2016-11-07 23:19:53 +02:00
loadHeroAnimations();
loadHeroFlagAnimations();
loadFogOfWar();
}
2016-11-07 23:19:53 +02:00
void Graphics::loadHeroAnimations()
{
for(auto & elem : CGI->heroh->classes.heroClasses)
{
for (auto & templ : VLC->objtypeh->getHandlerFor(Obj::HERO, elem->id)->getTemplates())
{
2016-11-07 23:19:53 +02:00
if (!heroAnimations.count(templ.animationFile))
heroAnimations[templ.animationFile] = loadHeroAnimation(templ.animationFile);
}
}
2016-11-07 23:19:53 +02:00
boatAnimations[0] = loadHeroAnimation("AB01_.DEF");
boatAnimations[1] = loadHeroAnimation("AB02_.DEF");
boatAnimations[2] = loadHeroAnimation("AB03_.DEF");
2016-11-07 23:19:53 +02:00
mapObjectAnimations["AB01_.DEF"] = boatAnimations[0];
mapObjectAnimations["AB02_.DEF"] = boatAnimations[1];
mapObjectAnimations["AB03_.DEF"] = boatAnimations[2];
}
void Graphics::loadHeroFlagAnimations()
{
2016-11-07 23:19:53 +02:00
static const std::vector<std::string> HERO_FLAG_ANIMATIONS =
{
2016-11-07 23:19:53 +02:00
"AF00", "AF01","AF02","AF03",
"AF04", "AF05","AF06","AF07"
};
static const std::vector< std::vector<std::string> > BOAT_FLAG_ANIMATIONS =
{
{
"ABF01L", "ABF01G", "ABF01R", "ABF01D",
"ABF01B", "ABF01P", "ABF01W", "ABF01K"
},
{
2016-11-07 23:19:53 +02:00
"ABF02L", "ABF02G", "ABF02R", "ABF02D",
"ABF02B", "ABF02P", "ABF02W", "ABF02K"
},
{
"ABF03L", "ABF03G", "ABF03R", "ABF03D",
"ABF03B", "ABF03P", "ABF03W", "ABF03K"
}
2016-11-07 23:19:53 +02:00
};
for(const auto & name : HERO_FLAG_ANIMATIONS)
heroFlagAnimations.push_back(loadHeroFlagAnimation(name));
for(int i = 0; i < BOAT_FLAG_ANIMATIONS.size(); i++)
for(const auto & name : BOAT_FLAG_ANIMATIONS[i])
boatFlagAnimations[i].push_back(loadHeroFlagAnimation(name));
}
2016-11-07 23:19:53 +02:00
std::shared_ptr<CAnimation> Graphics::loadHeroFlagAnimation(const std::string & name)
{
2016-11-07 23:19:53 +02:00
//first - group number to be rotated, second - group number after rotation
static const std::vector<std::pair<int,int> > rotations =
{
2016-11-07 23:19:53 +02:00
{6,10}, {7,11}, {8,12}, {1,13},
{2,14}, {3,15}
};
2016-11-07 23:19:53 +02:00
std::shared_ptr<CAnimation> anim = std::make_shared<CAnimation>(name);
anim->preload();
for(const auto & rotation : rotations)
{
2016-11-07 23:19:53 +02:00
const int sourceGroup = rotation.first;
const int targetGroup = rotation.second;
for(size_t frame = 0; frame < anim->size(sourceGroup); ++frame)
{
2016-11-07 23:19:53 +02:00
anim->duplicateImage(sourceGroup, frame, targetGroup);
IImage * image = anim->getImage(frame, targetGroup);
image->verticalFlip();
}
}
2016-11-07 23:19:53 +02:00
return anim;
}
2016-11-07 23:19:53 +02:00
std::shared_ptr<CAnimation> Graphics::loadHeroAnimation(const std::string &name)
{
2016-11-07 23:19:53 +02:00
//first - group number to be rotated, second - group number after rotation
static const std::vector<std::pair<int,int> > rotations =
{
2016-11-07 23:19:53 +02:00
{6,10}, {7,11}, {8,12}, {1,13},
{2,14}, {3,15}
};
2016-11-07 23:19:53 +02:00
std::shared_ptr<CAnimation> anim = std::make_shared<CAnimation>(name);
anim->preload();
for(const auto & rotation : rotations)
{
2016-11-07 23:19:53 +02:00
const int sourceGroup = rotation.first;
const int targetGroup = rotation.second;
for(size_t frame = 0; frame < anim->size(sourceGroup); ++frame)
{
anim->duplicateImage(sourceGroup, frame, targetGroup);
IImage * image = anim->getImage(frame, targetGroup);
image->verticalFlip();
}
}
2016-11-07 23:19:53 +02:00
return anim;
}
2013-03-03 20:06:03 +03:00
void Graphics::blueToPlayersAdv(SDL_Surface * sur, PlayerColor player)
{
if(sur->format->palette)
{
SDL_Color *palette = nullptr;
2013-03-03 20:06:03 +03:00
if(player < PlayerColor::PLAYER_LIMIT)
{
2013-03-03 20:06:03 +03:00
palette = playerColorPalette + 32*player.getNum();
}
2013-03-03 20:06:03 +03:00
else if(player == PlayerColor::NEUTRAL)
{
palette = neutralColorPalette;
}
else
{
2017-08-11 13:38:10 +02:00
logGlobal->error("Wrong player id in blueToPlayersAdv (%s)!", player.getStr(false));
return;
}
SDL_SetColors(sur, palette, 224, 32);
}
else
{
//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?
2017-08-10 18:39:27 +02:00
logGlobal->warn("Image must have palette to be player-colored!");
}
}
2016-11-07 23:19:53 +02:00
void Graphics::loadFogOfWar()
{
fogOfWarFullHide = std::make_shared<CAnimation>("TSHRC");
fogOfWarFullHide->preload();
fogOfWarPartialHide = std::make_shared<CAnimation>("TSHRE");
fogOfWarPartialHide->preload();
static const int rotations [] = {22, 15, 2, 13, 12, 16, 28, 17, 20, 19, 7, 24, 26, 25, 30, 32, 27};
size_t size = fogOfWarPartialHide->size(0);//group size after next rotation
for(const int rotation : rotations)
{
fogOfWarPartialHide->duplicateImage(0, rotation, 0);
IImage * image = fogOfWarPartialHide->getImage(size, 0);
image->verticalFlip();
size++;
}
}
void Graphics::loadFonts()
{
const JsonNode config(ResourceID("config/fonts.json"));
2010-11-05 22:48:54 +02:00
const JsonVector & bmpConf = config["bitmap"].Vector();
const JsonNode & ttfConf = config["trueType"];
const JsonNode & hanConf = config["bitmapHan"];
2010-11-05 22:48:54 +02:00
assert(bmpConf.size() == FONTS_NUMBER);
for (size_t i=0; i<FONTS_NUMBER; i++)
{
std::string filename = bmpConf[i].String();
if (!hanConf[filename].isNull())
2016-11-07 23:19:53 +02:00
fonts[i] = std::make_shared<CBitmapHanFont>(hanConf[filename]);
else if (!ttfConf[filename].isNull()) // no ttf override
2016-11-07 23:19:53 +02:00
fonts[i] = std::make_shared<CTrueTypeFont>(ttfConf[filename]);
else
2016-11-07 23:19:53 +02:00
fonts[i] = std::make_shared<CBitmapFont>(filename);
}
}
2016-11-07 23:19:53 +02:00
std::shared_ptr<CAnimation> Graphics::getAnimation(const CGObjectInstance* obj)
{
2016-11-07 23:19:53 +02:00
return getAnimation(obj->appearance);
}
2016-11-07 23:19:53 +02:00
std::shared_ptr<CAnimation> Graphics::getAnimation(const ObjectTemplate & info)
{
2016-11-07 23:19:53 +02:00
//the only(?) invisible object
if(info.id == Obj::EVENT)
{
return std::shared_ptr<CAnimation>();
}
if(info.animationFile.empty())
{
2017-08-10 19:17:10 +02:00
logGlobal->warn("Def name for obj (%d,%d) is empty!", info.id, info.subid);
2016-11-07 23:19:53 +02:00
return std::shared_ptr<CAnimation>();
}
2016-11-07 23:19:53 +02:00
std::shared_ptr<CAnimation> ret = mapObjectAnimations[info.animationFile];
//already loaded
if(ret)
{
ret->preload();
return ret;
}
ret = std::make_shared<CAnimation>(info.animationFile);
mapObjectAnimations[info.animationFile] = ret;
ret->preload();
return ret;
}
void Graphics::loadErmuToPicture()
{
//loading ERMU to picture
const JsonNode config(ResourceID("config/ERMU_to_picture.json"));
int etp_idx = 0;
for(const JsonNode &etp : config["ERMU_to_picture"].Vector()) {
int idx = 0;
for(const JsonNode &n : etp.Vector()) {
ERMUtoPicture[idx][etp_idx] = n.String();
idx ++;
}
assert (idx == ARRAY_COUNT(ERMUtoPicture));
etp_idx ++;
}
assert (etp_idx == 44);
}
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()
{
for(const CCreature * creature : CGI->creh->creatures)
{
addImageListEntry(creature->iconIndex, "CPRSMALL", creature->smallIconName);
addImageListEntry(creature->iconIndex, "TWCRPORT", creature->largeIconName);
}
for(const CHero * hero : CGI->heroh->heroes)
{
addImageListEntry(hero->imageIndex, "UN32", hero->iconSpecSmall);
addImageListEntry(hero->imageIndex, "UN44", hero->iconSpecLarge);
addImageListEntry(hero->imageIndex, "PORTRAITSLARGE", hero->portraitLarge);
addImageListEntry(hero->imageIndex, "PORTRAITSSMALL", hero->portraitSmall);
}
for(const CArtifact * art : CGI->arth->artifacts)
{
addImageListEntry(art->iconIndex, "ARTIFACT", art->image);
addImageListEntry(art->iconIndex, "ARTIFACTLARGE", art->large);
}
for(const CFaction * faction : CGI->townh->factions)
{
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]);
}
}
2016-10-16 01:47:03 +02: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);
2016-10-16 01:47:03 +02:00
addImageListEntry(spell->id, "SPELLSCR", spell->iconScroll);
}
}