123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472 |
- /*
- * maphandler.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
- *
- */
- //code is copied from vcmiclient/mapHandler.cpp with minimal changes
- #include "StdInc.h"
- #include "maphandler.h"
- #include "graphics.h"
- #include "../lib/RoadHandler.h"
- #include "../lib/RiverHandler.h"
- #include "../lib/TerrainHandler.h"
- #include "../lib/mapping/CMap.h"
- #include "../lib/mapObjects/CGHeroInstance.h"
- #include "../lib/mapObjects/ObjectTemplate.h"
- #include "../lib/mapObjects/MiscObjects.h"
- #include "../lib/GameConstants.h"
- const int tileSize = 32;
- static bool objectBlitOrderSorter(const ObjectRect & a, const ObjectRect & b)
- {
- return MapHandler::compareObjectBlitOrder(a.obj, b.obj);
- }
- int MapHandler::index(int x, int y, int z) const
- {
- return z * (map->width * map->height) + y * map->width + x;
- }
- int MapHandler::index(const int3 & p) const
- {
- return index(p.x, p.y, p.z);
- }
- MapHandler::MapHandler()
- {
- initTerrainGraphics();
- logGlobal->info("\tPreparing terrain, roads, rivers, borders");
- }
- void MapHandler::reset(const CMap * Map)
- {
- map = Map;
- initObjectRects();
- logGlobal->info("\tMaking object rects");
- }
- void MapHandler::initTerrainGraphics()
- {
- auto loadFlipped = [](TFlippedAnimations & animation, TFlippedCache & cache, const std::map<std::string, std::string> & files)
- {
- for(auto & type : files)
- {
- animation[type.first] = std::make_unique<Animation>(type.second);
- animation[type.first]->preload();
- const size_t views = animation[type.first]->size(0);
- cache[type.first].resize(views);
-
- for(int j = 0; j < views; j++)
- cache[type.first][j] = animation[type.first]->getImage(j);
- }
- };
-
- std::map<std::string, std::string> terrainFiles;
- std::map<std::string, std::string> roadFiles;
- std::map<std::string, std::string> riverFiles;
- for(const auto & terrain : LIBRARY->terrainTypeHandler->objects)
- {
- terrainFiles[terrain->getJsonKey()] = terrain->tilesFilename.getName();
- }
- for(const auto & river : LIBRARY->riverTypeHandler->objects)
- {
- riverFiles[river->getJsonKey()] = river->tilesFilename.getName();
- }
- for(const auto & road : LIBRARY->roadTypeHandler->objects)
- {
- roadFiles[road->getJsonKey()] = road->tilesFilename.getName();
- }
-
- loadFlipped(terrainAnimations, terrainImages, terrainFiles);
- loadFlipped(riverAnimations, riverImages, riverFiles);
- loadFlipped(roadAnimations, roadImages, roadFiles);
- }
- void MapHandler::drawTerrainTile(QPainter & painter, int x, int y, int z)
- {
- auto & tinfo = map->getTile(int3(x, y, z));
- ui8 rotation = tinfo.extTileFlags % 4;
-
- auto terrainName = tinfo.getTerrain()->getJsonKey();
-
- if(terrainImages.at(terrainName).size() <= tinfo.terView)
- return;
-
- bool hflip = (rotation == 1 || rotation == 3);
- bool vflip = (rotation == 2 || rotation == 3);
- painter.drawImage(x * tileSize, y * tileSize, terrainImages.at(terrainName)[tinfo.terView]->mirrored(hflip, vflip));
- }
- void MapHandler::drawRoad(QPainter & painter, int x, int y, int z)
- {
- auto & tinfo = map->getTile(int3(x, y, z));
- auto * tinfoUpper = map->isInTheMap(int3(x, y - 1, z)) ? &map->getTile(int3(x, y - 1, z)) : nullptr;
-
- if(tinfoUpper && tinfoUpper->roadType)
- {
- auto roadName = tinfoUpper->getRoad()->getJsonKey();
- QRect source(0, tileSize / 2, tileSize, tileSize / 2);
- ui8 rotation = (tinfoUpper->extTileFlags >> 4) % 4;
- bool hflip = (rotation == 1 || rotation == 3);
- bool vflip = (rotation == 2 || rotation == 3);
- if(roadImages.at(roadName).size() > tinfoUpper->roadDir)
- {
- painter.drawImage(QPoint(x * tileSize, y * tileSize), roadImages.at(roadName)[tinfoUpper->roadDir]->mirrored(hflip, vflip), source);
- }
- }
-
- if(tinfo.roadType) //print road from this tile
- {
- auto roadName = tinfo.getRoad()->getJsonKey();
- QRect source(0, 0, tileSize, tileSize / 2);
- ui8 rotation = (tinfo.extTileFlags >> 4) % 4;
- bool hflip = (rotation == 1 || rotation == 3);
- bool vflip = (rotation == 2 || rotation == 3);
- if(roadImages.at(roadName).size() > tinfo.roadDir)
- {
- painter.drawImage(QPoint(x * tileSize, y * tileSize + tileSize / 2), roadImages.at(roadName)[tinfo.roadDir]->mirrored(hflip, vflip), source);
- }
- }
- }
- void MapHandler::drawRiver(QPainter & painter, int x, int y, int z)
- {
- auto & tinfo = map->getTile(int3(x, y, z));
- if(!tinfo.hasRiver())
- return;
-
- //TODO: use ui8 instead of string key
- auto riverName = tinfo.getRiver()->getJsonKey();
- if(riverImages.at(riverName).size() <= tinfo.riverDir)
- return;
- ui8 rotation = (tinfo.extTileFlags >> 2) % 4;
- bool hflip = (rotation == 1 || rotation == 3);
- bool vflip = (rotation == 2 || rotation == 3);
- painter.drawImage(x * tileSize, y * tileSize, riverImages.at(riverName)[tinfo.riverDir]->mirrored(hflip, vflip));
- }
- void setPlayerColor(QImage * sur, PlayerColor player)
- {
- if(player == PlayerColor::UNFLAGGABLE)
- return;
- if(sur->format() == QImage::Format_Indexed8)
- {
- QRgb color = graphics->neutralColor;
- if(player != PlayerColor::NEUTRAL && player < PlayerColor::PLAYER_LIMIT)
- color = graphics->playerColors.at(player.getNum());
- sur->setColor(5, color);
- }
- else
- logGlobal->warn("Warning, setPlayerColor called on not 8bpp surface!");
- }
- std::shared_ptr<QImage> MapHandler::getObjectImage(const CGObjectInstance * obj)
- {
- if( !obj
- || (obj->ID==Obj::HERO && static_cast<const CGHeroInstance*>(obj)->isGarrisoned()) //garrisoned hero
- || (obj->ID==Obj::BOAT && static_cast<const CGBoat*>(obj)->hero)) //boat with hero (hero graphics is used)
- {
- return nullptr;
- }
-
- std::shared_ptr<Animation> animation = graphics->getAnimation(obj);
-
- //no animation at all
- if(!animation)
- return nullptr;
-
- //empty animation
- if(animation->size(0) == 0)
- return nullptr;
-
- auto image = animation->getImage(0, obj->ID == Obj::HERO ? 2 : 0);
- if(!image)
- {
- //workaround for prisons
- image = animation->getImage(0, 0);
- }
-
- return image;
- }
- std::set<int3> MapHandler::removeObject(const CGObjectInstance *object)
- {
- std::set<int3> result = tilesCache[object];
- for(auto & t : result)
- {
- auto & objects = getObjects(t);
- for(auto iter = objects.begin(); iter != objects.end(); ++iter)
- {
- if(iter->obj == object)
- {
- objects.erase(iter);
- break;
- }
- }
- }
-
- tilesCache.erase(object);
- return result;
- }
- std::set<int3> MapHandler::addObject(const CGObjectInstance * object)
- {
- auto image = getObjectImage(object);
- if(!image)
- return std::set<int3>{};
-
- for(int fx = 0; fx < object->getWidth(); ++fx)
- {
- for(int fy = 0; fy < object->getHeight(); ++fy)
- {
- int3 currTile(object->pos.x - fx, object->pos.y - fy, object->pos.z);
- QRect cr(image->width() - fx * tileSize - tileSize,
- image->height() - fy * tileSize - tileSize,
- tileSize,
- tileSize);
-
- if( map->isInTheMap(currTile) && // within map
- cr.x() + cr.width() > 0 && // image has data on this tile
- cr.y() + cr.height() > 0)
- {
- getObjects(currTile).emplace_back(object, cr);
- tilesCache[object].insert(currTile);
- }
- }
- }
-
- return tilesCache[object];
- }
- void MapHandler::initObjectRects()
- {
- tileObjects.clear();
- tilesCache.clear();
- if(!map)
- return;
-
- tileObjects.resize(map->width * map->height * (map->twoLevel ? 2 : 1));
-
- //initializing objects / rects
- for(const auto & elem : map->objects)
- {
- addObject(elem.get());
- }
-
- for(auto & tt : tileObjects)
- stable_sort(tt.begin(), tt.end(), objectBlitOrderSorter);
- }
- bool MapHandler::compareObjectBlitOrder(const CGObjectInstance * a, const CGObjectInstance * b)
- {
- if (!a)
- return true;
- if (!b)
- return false;
- if (a->appearance->printPriority != b->appearance->printPriority)
- return a->appearance->printPriority > b->appearance->printPriority;
-
- if(a->pos.y != b->pos.y)
- return a->pos.y < b->pos.y;
-
- if(b->ID == Obj::HERO && a->ID != Obj::HERO)
- return true;
- if(b->ID != Obj::HERO && a->ID == Obj::HERO)
- return false;
-
- if(!a->isVisitable() && b->isVisitable())
- return true;
- if(!b->isVisitable() && a->isVisitable())
- return false;
- if(a->pos.x < b->pos.x)
- return true;
- return false;
- }
- ObjectRect::ObjectRect(const CGObjectInstance * obj_, QRect rect_)
- : obj(obj_),
- rect(rect_)
- {
- }
- ObjectRect::~ObjectRect()
- {
- }
- std::shared_ptr<QImage> MapHandler::findFlagBitmap(const CGHeroInstance * hero, int anim, const PlayerColor color, int group) const
- {
- if(!hero || hero->boat)
- return std::shared_ptr<QImage>();
-
- return findFlagBitmapInternal(graphics->heroFlagAnimations.at(color.getNum()), anim, group, hero->moveDir, true);
- }
- std::shared_ptr<QImage> MapHandler::findFlagBitmapInternal(std::shared_ptr<Animation> animation, int anim, int group, ui8 dir, bool moving) const
- {
- size_t groupSize = animation->size(group);
- if(groupSize == 0)
- return nullptr;
-
- if(moving)
- return animation->getImage(anim % groupSize, group);
- else
- return animation->getImage((anim / 4) % groupSize, group);
- }
- MapHandler::BitmapHolder MapHandler::findObjectBitmap(const CGObjectInstance * obj, int anim, int group) const
- {
- if(!obj)
- return MapHandler::BitmapHolder();
- // normal object
- std::shared_ptr<Animation> animation = graphics->getAnimation(obj);
- size_t groupSize = animation->size(group);
- if(groupSize == 0)
- return MapHandler::BitmapHolder();
-
- animation->playerColored(obj->tempOwner);
- auto bitmap = animation->getImage(anim % groupSize, group);
-
- if(!bitmap)
- return MapHandler::BitmapHolder();
- setPlayerColor(bitmap.get(), obj->tempOwner);
-
- return MapHandler::BitmapHolder(bitmap);
- }
- std::vector<ObjectRect> & MapHandler::getObjects(const int3 & tile)
- {
- return tileObjects[index(tile)];
- }
- std::vector<ObjectRect> & MapHandler::getObjects(int x, int y, int z)
- {
- return tileObjects[index(x, y, z)];
- }
- void MapHandler::drawObjects(QPainter & painter, int x, int y, int z, const std::set<const CGObjectInstance *> & locked)
- {
- painter.setRenderHint(QPainter::Antialiasing, false);
- painter.setRenderHint(QPainter::SmoothPixmapTransform, false);
- for(auto & object : getObjects(x, y, z))
- {
- const CGObjectInstance * obj = object.obj;
- if(!obj)
- {
- logGlobal->error("Stray map object that isn't fading");
- return;
- }
- uint8_t animationFrame = 0;
- auto objData = findObjectBitmap(obj, animationFrame, obj->ID == Obj::HERO ? 2 : 0);
- if(obj->ID == Obj::HERO && obj->tempOwner.isValidPlayer())
- objData.flagBitmap = findFlagBitmap(dynamic_cast<const CGHeroInstance*>(obj), 0, obj->tempOwner, 4);
-
- if(objData.objBitmap)
- {
- auto pos = obj->anchorPos();
- painter.drawImage(QPoint(x * tileSize, y * tileSize), *objData.objBitmap, object.rect, Qt::AutoColor | Qt::NoOpaqueDetection);
- if(locked.count(obj))
- {
- painter.setCompositionMode(QPainter::CompositionMode_DestinationIn);
- painter.fillRect(x * tileSize, y * tileSize, object.rect.width(), object.rect.height(), Qt::Dense4Pattern);
- painter.setCompositionMode(QPainter::CompositionMode_SourceOver);
- }
- if(objData.flagBitmap)
- {
- if(x == pos.x && y == pos.y)
- painter.drawImage(QPoint((x - 2) * tileSize, (y - 1) * tileSize), *objData.flagBitmap);
- }
- }
- }
- }
- void MapHandler::drawObjectAt(QPainter & painter, const CGObjectInstance * obj, int x, int y)
- {
- if (!obj)
- {
- logGlobal->error("Stray map object that isn't fading");
- return;
- }
- uint8_t animationFrame = 0;
- auto objData = findObjectBitmap(obj, animationFrame, obj->ID == Obj::HERO ? 2 : 0);
- if(obj->ID == Obj::HERO && obj->tempOwner.isValidPlayer())
- objData.flagBitmap = findFlagBitmap(dynamic_cast<const CGHeroInstance*>(obj), 0, obj->tempOwner, 4);
-
- if (objData.objBitmap)
- {
- painter.drawImage(QPoint((x + 1) * tileSize - objData.objBitmap->width(), (y + 1) * tileSize - objData.objBitmap->height()), *objData.objBitmap);
-
- if (objData.flagBitmap)
- painter.drawImage(QPoint((x + 1) * tileSize - objData.objBitmap->width(), (y + 1) * tileSize - objData.objBitmap->height()), *objData.flagBitmap);
- }
- }
- QRgb MapHandler::getTileColor(int x, int y, int z)
- {
- // if object at tile is owned - it will be colored as its owner
- for(auto & object : getObjects(x, y, z))
- {
- if(!object.obj->getBlockedPos().count(int3(x, y, z)))
- continue;
-
- PlayerColor player = object.obj->getOwner();
- if(player == PlayerColor::NEUTRAL)
- return graphics->neutralColor;
- else
- if (player.isValidPlayer())
- return graphics->playerColors[player.getNum()];
- }
-
- // else - use terrain color (blocked version or normal)
-
- auto & tile = map->getTile(int3(x, y, z));
-
- auto color = tile.getTerrain()->minimapUnblocked;
- if (tile.blocked() && (!tile.visitable()))
- color = tile.getTerrain()->minimapBlocked;
-
- return qRgb(color.r, color.g, color.b);
- }
- void MapHandler::drawMinimapTile(QPainter & painter, int x, int y, int z)
- {
- painter.setPen(getTileColor(x, y, z));
- painter.drawPoint(x, y);
- }
- std::set<int3> MapHandler::invalidate(const CGObjectInstance * obj)
- {
- auto t1 = removeObject(obj);
- auto t2 = addObject(obj);
- t1.insert(t2.begin(), t2.end());
-
- for(auto & tt : t2)
- stable_sort(tileObjects[index(tt)].begin(), tileObjects[index(tt)].end(), objectBlitOrderSorter);
-
- return t1;
- }
- void MapHandler::invalidateObjects()
- {
- initObjectRects();
- }
|