1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-18 17:40:48 +02:00

Minimap implemented

This commit is contained in:
nordsoft 2022-09-05 14:10:39 +04:00
parent 3430edba22
commit 1e15a7c9c8
12 changed files with 264 additions and 67 deletions

View File

@ -120,8 +120,8 @@ MainWindow::MainWindow(QWidget *parent) :
ui->mapView->setController(&controller); ui->mapView->setController(&controller);
connect(ui->mapView, &MapView::openObjectProperties, this, &MainWindow::loadInspector); connect(ui->mapView, &MapView::openObjectProperties, this, &MainWindow::loadInspector);
sceneMini = new QGraphicsScene(this); ui->minimapView->setScene(controller.miniScene(0));
ui->minimapView->setScene(sceneMini); ui->minimapView->setController(&controller);
scenePreview = new QGraphicsScene(this); scenePreview = new QGraphicsScene(this);
ui->objectPreview->setScene(scenePreview); ui->objectPreview->setScene(scenePreview);
@ -176,6 +176,8 @@ void MainWindow::initializeMap(bool isNew)
mapLevel = 0; mapLevel = 0;
ui->mapView->setScene(controller.scene(mapLevel)); ui->mapView->setScene(controller.scene(mapLevel));
ui->minimapView->setScene(controller.miniScene(mapLevel));
ui->minimapView->dimensions();
setStatusMessage(QString("Scene objects: %1").arg(ui->mapView->scene()->items().size())); setStatusMessage(QString("Scene objects: %1").arg(ui->mapView->scene()->items().size()));
@ -551,6 +553,7 @@ void MainWindow::on_actionLevel_triggered()
{ {
mapLevel = mapLevel ? 0 : 1; mapLevel = mapLevel ? 0 : 1;
ui->mapView->setScene(controller.scene(mapLevel)); ui->mapView->setScene(controller.scene(mapLevel));
ui->minimapView->setScene(controller.miniScene(mapLevel));
} }
} }

View File

@ -95,9 +95,7 @@ private:
private: private:
Ui::MainWindow *ui; Ui::MainWindow *ui;
ObjectBrowser * objectBrowser = nullptr; ObjectBrowser * objectBrowser = nullptr;
QGraphicsScene * sceneMini;
QGraphicsScene * scenePreview; QGraphicsScene * scenePreview;
QPixmap minimap;
QString filename; QString filename;
bool unsaved = false; bool unsaved = false;

View File

@ -140,7 +140,7 @@
<number>0</number> <number>0</number>
</property> </property>
<item> <item>
<widget class="QGraphicsView" name="minimapView"> <widget class="MinimapView" name="minimapView">
<property name="sizePolicy"> <property name="sizePolicy">
<sizepolicy hsizetype="Fixed" vsizetype="Fixed"> <sizepolicy hsizetype="Fixed" vsizetype="Fixed">
<horstretch>0</horstretch> <horstretch>0</horstretch>
@ -830,6 +830,11 @@
<extends>QGraphicsView</extends> <extends>QGraphicsView</extends>
<header>mapview.h</header> <header>mapview.h</header>
</customwidget> </customwidget>
<customwidget>
<class>MinimapView</class>
<extends>QGraphicsView</extends>
<header>mapview.h</header>
</customwidget>
</customwidgets> </customwidgets>
<resources/> <resources/>
<connections/> <connections/>

View File

@ -18,6 +18,8 @@ MapController::MapController(MainWindow * m): main(m)
{ {
_scenes[0].reset(new MapScene(0)); _scenes[0].reset(new MapScene(0));
_scenes[1].reset(new MapScene(1)); _scenes[1].reset(new MapScene(1));
_miniscenes[0].reset(new MinimapScene(0));
_miniscenes[1].reset(new MinimapScene(1));
} }
MapController::~MapController() MapController::~MapController()
@ -39,11 +41,18 @@ MapScene * MapController::scene(int level)
return _scenes[level].get(); return _scenes[level].get();
} }
MinimapScene * MapController::miniScene(int level)
{
return _miniscenes[level].get();
}
void MapController::setMap(std::unique_ptr<CMap> cmap) void MapController::setMap(std::unique_ptr<CMap> cmap)
{ {
_map = std::move(cmap); _map = std::move(cmap);
_scenes[0].reset(new MapScene(0)); _scenes[0].reset(new MapScene(0));
_scenes[1].reset(new MapScene(1)); _scenes[1].reset(new MapScene(1));
_miniscenes[0].reset(new MinimapScene(0));
_miniscenes[1].reset(new MinimapScene(1));
resetMapHandler(); resetMapHandler();
sceneForceUpdate(); sceneForceUpdate();
} }
@ -51,13 +60,18 @@ void MapController::setMap(std::unique_ptr<CMap> cmap)
void MapController::sceneForceUpdate() void MapController::sceneForceUpdate()
{ {
_scenes[0]->updateViews(); _scenes[0]->updateViews();
_miniscenes[0]->updateViews();
if(_map->twoLevel) if(_map->twoLevel)
{
_scenes[1]->updateViews(); _scenes[1]->updateViews();
_miniscenes[1]->updateViews();
}
} }
void MapController::sceneForceUpdate(int level) void MapController::sceneForceUpdate(int level)
{ {
_scenes[level]->updateViews(); _scenes[level]->updateViews();
_miniscenes[level]->updateViews();
} }
void MapController::resetMapHandler() void MapController::resetMapHandler()
@ -65,6 +79,8 @@ void MapController::resetMapHandler()
_mapHandler.reset(new MapHandler(_map.get())); _mapHandler.reset(new MapHandler(_map.get()));
_scenes[0]->initialize(*this); _scenes[0]->initialize(*this);
_scenes[1]->initialize(*this); _scenes[1]->initialize(*this);
_miniscenes[0]->initialize(*this);
_miniscenes[1]->initialize(*this);
} }
void MapController::commitTerrainChange(int level, const Terrain & terrain) void MapController::commitTerrainChange(int level, const Terrain & terrain)
@ -84,6 +100,7 @@ void MapController::commitTerrainChange(int level, const Terrain & terrain)
_scenes[level]->terrainView.setDirty(t); _scenes[level]->terrainView.setDirty(t);
_scenes[level]->terrainView.draw(); _scenes[level]->terrainView.draw();
_miniscenes[level]->updateViews();
main->mapChanged(); main->mapChanged();
} }
@ -98,6 +115,7 @@ void MapController::commitObjectErase(int level)
resetMapHandler(); resetMapHandler();
_scenes[level]->updateViews(); _scenes[level]->updateViews();
_miniscenes[level]->updateViews();
main->mapChanged(); main->mapChanged();
} }
@ -149,6 +167,7 @@ void MapController::commitObstacleFill(int level)
resetMapHandler(); resetMapHandler();
_scenes[level]->updateViews(); _scenes[level]->updateViews();
_miniscenes[level]->updateViews();
main->mapChanged(); main->mapChanged();
} }
@ -158,6 +177,7 @@ void MapController::commitObjectChange(int level)
_scenes[level]->objectsView.draw(); _scenes[level]->objectsView.draw();
_scenes[level]->selectionObjectsView.draw(); _scenes[level]->selectionObjectsView.draw();
_miniscenes[level]->updateViews();
main->mapChanged(); main->mapChanged();
} }
@ -198,6 +218,7 @@ void MapController::commitObjectShiftOrCreate(int level)
resetMapHandler(); resetMapHandler();
_scenes[level]->updateViews(); _scenes[level]->updateViews();
_miniscenes[level]->updateViews();
main->mapChanged(); main->mapChanged();
} }

View File

@ -20,6 +20,7 @@ public:
CMap * map(); CMap * map();
MapHandler * mapHandler(); MapHandler * mapHandler();
MapScene * scene(int level); MapScene * scene(int level);
MinimapScene * miniScene(int level);
void resetMapHandler(); void resetMapHandler();
@ -42,6 +43,7 @@ private:
std::unique_ptr<MapHandler> _mapHandler; std::unique_ptr<MapHandler> _mapHandler;
MainWindow * main; MainWindow * main;
mutable std::array<std::unique_ptr<MapScene>, 2> _scenes; mutable std::array<std::unique_ptr<MapScene>, 2> _scenes;
mutable std::array<std::unique_ptr<MinimapScene>, 2> _miniscenes;
}; };
#endif // MAPCONTROLLER_H #endif // MAPCONTROLLER_H

View File

@ -502,3 +502,39 @@ void MapHandler::drawObjectAt(QPainter & painter, const CGObjectInstance * obj,
} }
} }
} }
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))
{
//heroes will be blitted later
switch (object.obj->ID)
{
case Obj::HERO:
case Obj::PRISON:
continue;
}
PlayerColor player = object.obj->getOwner();
if(player == PlayerColor::NEUTRAL)
return graphics->neutralColor;
else
if (player < PlayerColor::PLAYER_LIMIT)
return graphics->playerColors[player.getNum()];
}
// else - use terrain color (blocked version or normal)
auto & tile = map->getTile(int3(x, y, z));
auto color = Terrain::Manager::getInfo(tile.terType).minimapUnblocked;
if (tile.blocked && (!tile.visitable))
color = Terrain::Manager::getInfo(tile.terType).minimapBlocked;
return qRgb(color[0], color[1], color[2]);
}
void MapHandler::drawMinimapTile(QPainter & painter, int x, int y, int z)
{
painter.setPen(getTileColor(x, y, z));
painter.drawPoint(x, y);
}

View File

@ -98,7 +98,9 @@ public:
std::vector<TerrainTileObject> & getObjects(int x, int y, int z); std::vector<TerrainTileObject> & getObjects(int x, int y, int z);
//void drawObject(SDL_Surface * targetSurf, std::shared_ptr<IImage> source, SDL_Rect * sourceRect, bool moving) const; //void drawObject(SDL_Surface * targetSurf, std::shared_ptr<IImage> source, SDL_Rect * sourceRect, bool moving) const;
//void drawHeroFlag(SDL_Surface * targetSurf, std::shared_ptr<IImage> source, SDL_Rect * sourceRect, SDL_Rect * destRect, bool moving) const; //void drawHeroFlag(SDL_Surface * targetSurf, std::shared_ptr<IImage> source, SDL_Rect * sourceRect, SDL_Rect * destRect, bool moving) const;
QRgb getTileColor(int x, int y, int z);
void drawMinimapTile(QPainter & painter, int x, int y, int z);
mutable std::map<const CGObjectInstance*, ui8> animationPhase; mutable std::map<const CGObjectInstance*, ui8> animationPhase;
MapHandler(const CMap * Map); MapHandler(const CMap * Map);

View File

@ -4,6 +4,37 @@
#include <QGraphicsSceneMouseEvent> #include <QGraphicsSceneMouseEvent>
#include "mapcontroller.h" #include "mapcontroller.h"
MinimapView::MinimapView(QWidget * parent):
QGraphicsView(parent)
{
// Disable scrollbars
setHorizontalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOff);
}
void MinimapView::dimensions()
{
fitInView(0, 0, controller->map()->width, controller->map()->height, Qt::KeepAspectRatio);
}
void MinimapView::setController(MapController * ctrl)
{
controller = ctrl;
}
void MinimapView::mousePressEvent(QMouseEvent *event)
{
this->update();
auto * sc = static_cast<MapScene*>(scene());
if(!sc)
return;
}
void MinimapView::cameraPositionChange(const QPoint & newPosition)
{
}
MapView::MapView(QWidget * parent): MapView::MapView(QWidget * parent):
QGraphicsView(parent), QGraphicsView(parent),
selectionTool(MapView::SelectionTool::None) selectionTool(MapView::SelectionTool::None)
@ -273,15 +304,32 @@ void MapView::mouseReleaseEvent(QMouseEvent *event)
} }
} }
MapScene::MapScene(int lev): MapSceneBase::MapSceneBase(int lvl):
QGraphicsScene(nullptr), QGraphicsScene(nullptr),
level(lvl)
{
}
void MapSceneBase::initialize(MapController & controller)
{
for(auto * layer : getAbstractLayers())
layer->initialize(controller);
}
void MapSceneBase::updateViews()
{
for(auto * layer : getAbstractLayers())
layer->update();
}
MapScene::MapScene(int lvl):
MapSceneBase(lvl),
gridView(this), gridView(this),
passabilityView(this), passabilityView(this),
selectionTerrainView(this), selectionTerrainView(this),
terrainView(this), terrainView(this),
objectsView(this), objectsView(this),
selectionObjectsView(this), selectionObjectsView(this)
level(lev)
{ {
} }
@ -298,19 +346,33 @@ std::list<AbstractLayer *> MapScene::getAbstractLayers()
}; };
} }
void MapScene::initialize(MapController & controller)
{
for(auto * layer : getAbstractLayers())
layer->initialize(controller);
}
void MapScene::updateViews() void MapScene::updateViews()
{ {
for(auto * layer : getAbstractLayers()) MapSceneBase::updateViews();
layer->update();
terrainView.show(true); terrainView.show(true);
objectsView.show(true); objectsView.show(true);
selectionTerrainView.show(true); selectionTerrainView.show(true);
selectionObjectsView.show(true); selectionObjectsView.show(true);
} }
MinimapScene::MinimapScene(int lvl):
MapSceneBase(lvl),
minimapView(this)
{
}
std::list<AbstractLayer *> MinimapScene::getAbstractLayers()
{
//sequence is important because it defines rendering order
return {
&minimapView
};
}
void MinimapScene::updateViews()
{
MapSceneBase::updateViews();
minimapView.show(true);
}

View File

@ -11,13 +11,39 @@ class CGObjectInstance;
class MainWindow; class MainWindow;
class MapController; class MapController;
class MapScene : public QGraphicsScene class MapSceneBase : public QGraphicsScene
{ {
public: public:
MapScene(int lev); MapSceneBase(int lvl);
void updateViews(); const int level;
void initialize(MapController &);
virtual void updateViews();
virtual void initialize(MapController &);
protected:
virtual std::list<AbstractLayer *> getAbstractLayers() = 0;
};
class MinimapScene : public MapSceneBase
{
public:
MinimapScene(int lvl);
void updateViews() override;
MinimapLayer minimapView;
protected:
virtual std::list<AbstractLayer *> getAbstractLayers();
};
class MapScene : public MapSceneBase
{
public:
MapScene(int lvl);
void updateViews() override;
GridLayer gridView; GridLayer gridView;
PassabilityLayer passabilityView; PassabilityLayer passabilityView;
@ -26,10 +52,8 @@ public:
ObjectsLayer objectsView; ObjectsLayer objectsView;
SelectionObjectsLayer selectionObjectsView; SelectionObjectsLayer selectionObjectsView;
const int level; protected:
std::list<AbstractLayer *> getAbstractLayers() override;
private:
std::list<AbstractLayer *> getAbstractLayers();
}; };
class MapView : public QGraphicsView class MapView : public QGraphicsView
@ -63,4 +87,27 @@ private:
bool pressedOnSelected; bool pressedOnSelected;
}; };
class MinimapView : public QGraphicsView
{
Q_OBJECT
public:
MinimapView(QWidget * parent);
void setController(MapController *);
void dimensions();
public slots:
void mousePressEvent(QMouseEvent *event) override;
void cameraPositionChange(const QPoint & newPosition);
signals:
void cameraPositionChanged(const QPoint & newPosition);
private:
MapController * controller = nullptr;
int displayWidth = 192;
int displayHeight = 192;
};
#endif // MAPVIEW_H #endif // MAPVIEW_H

View File

@ -6,7 +6,7 @@
#include "mapview.h" #include "mapview.h"
#include "mapcontroller.h" #include "mapcontroller.h"
AbstractLayer::AbstractLayer(MapScene * s): scene(s) AbstractLayer::AbstractLayer(MapSceneBase * s): scene(s)
{ {
} }
@ -21,29 +21,9 @@ void AbstractLayer::show(bool show)
if(isShown == show) if(isShown == show)
return; return;
if(show)
{
if(pixmap)
{
if(item)
item->setPixmap(*pixmap);
else
item.reset(scene->addPixmap(*pixmap));
}
else
{
if(item)
item->setPixmap(emptyPixmap);
else
item.reset(scene->addPixmap(emptyPixmap));
}
}
else
{
item->setPixmap(emptyPixmap);
}
isShown = show; isShown = show;
redraw();
} }
void AbstractLayer::redraw() void AbstractLayer::redraw()
@ -64,7 +44,7 @@ void AbstractLayer::redraw()
} }
} }
GridLayer::GridLayer(MapScene * s): AbstractLayer(s) GridLayer::GridLayer(MapSceneBase * s): AbstractLayer(s)
{ {
} }
@ -90,7 +70,7 @@ void GridLayer::update()
redraw(); redraw();
} }
PassabilityLayer::PassabilityLayer(MapScene * s): AbstractLayer(s) PassabilityLayer::PassabilityLayer(MapSceneBase * s): AbstractLayer(s)
{ {
} }
@ -121,7 +101,7 @@ void PassabilityLayer::update()
redraw(); redraw();
} }
SelectionTerrainLayer::SelectionTerrainLayer(MapScene * s): AbstractLayer(s) SelectionTerrainLayer::SelectionTerrainLayer(MapSceneBase * s): AbstractLayer(s)
{ {
} }
@ -200,7 +180,7 @@ const std::set<int3> & SelectionTerrainLayer::selection() const
return area; return area;
} }
TerrainLayer::TerrainLayer(MapScene * s): AbstractLayer(s) TerrainLayer::TerrainLayer(MapSceneBase * s): AbstractLayer(s)
{ {
} }
@ -275,7 +255,7 @@ void TerrainLayer::draw(bool onlyDirty)
redraw(); redraw();
} }
ObjectsLayer::ObjectsLayer(MapScene * s): AbstractLayer(s) ObjectsLayer::ObjectsLayer(MapSceneBase * s): AbstractLayer(s)
{ {
} }
@ -342,7 +322,7 @@ void ObjectsLayer::setDirty(const CGObjectInstance * object)
dirty.insert(object); dirty.insert(object);
} }
SelectionObjectsLayer::SelectionObjectsLayer(MapScene * s): AbstractLayer(s), newObject(nullptr) SelectionObjectsLayer::SelectionObjectsLayer(MapSceneBase * s): AbstractLayer(s), newObject(nullptr)
{ {
} }
@ -491,3 +471,28 @@ void SelectionObjectsLayer::clear()
shift.setX(0); shift.setX(0);
shift.setY(0); shift.setY(0);
} }
MinimapLayer::MinimapLayer(MapSceneBase * s): AbstractLayer(s)
{
}
void MinimapLayer::update()
{
if(!map)
return;
pixmap.reset(new QPixmap(map->width, map->height));
QPainter painter(pixmap.get());
//coordinate transfomation
for(int j = 0; j < map->height; ++j)
{
for(int i = 0; i < map->width; ++i)
{
handler->drawMinimapTile(painter, i, j, scene->level);
}
}
redraw();
}

View File

@ -3,7 +3,7 @@
#include "../lib/int3.h" #include "../lib/int3.h"
class MapScene; class MapSceneBase;
class CGObjectInstance; class CGObjectInstance;
class MapController; class MapController;
class CMap; class CMap;
@ -12,7 +12,7 @@ class MapHandler;
class AbstractLayer class AbstractLayer
{ {
public: public:
AbstractLayer(MapScene * s); AbstractLayer(MapSceneBase * s);
virtual void update() = 0; virtual void update() = 0;
@ -21,7 +21,7 @@ public:
void initialize(MapController & controller); void initialize(MapController & controller);
protected: protected:
MapScene * scene; MapSceneBase * scene;
CMap * map = nullptr; CMap * map = nullptr;
MapHandler * handler = nullptr; MapHandler * handler = nullptr;
bool isShown = false; bool isShown = false;
@ -37,7 +37,7 @@ private:
class GridLayer: public AbstractLayer class GridLayer: public AbstractLayer
{ {
public: public:
GridLayer(MapScene * s); GridLayer(MapSceneBase * s);
void update() override; void update() override;
}; };
@ -45,7 +45,7 @@ public:
class PassabilityLayer: public AbstractLayer class PassabilityLayer: public AbstractLayer
{ {
public: public:
PassabilityLayer(MapScene * s); PassabilityLayer(MapSceneBase * s);
void update() override; void update() override;
}; };
@ -54,7 +54,7 @@ public:
class SelectionTerrainLayer: public AbstractLayer class SelectionTerrainLayer: public AbstractLayer
{ {
public: public:
SelectionTerrainLayer(MapScene * s); SelectionTerrainLayer(MapSceneBase * s);
void update() override; void update() override;
@ -73,7 +73,7 @@ private:
class TerrainLayer: public AbstractLayer class TerrainLayer: public AbstractLayer
{ {
public: public:
TerrainLayer(MapScene * s); TerrainLayer(MapSceneBase * s);
void update() override; void update() override;
@ -88,7 +88,7 @@ private:
class ObjectsLayer: public AbstractLayer class ObjectsLayer: public AbstractLayer
{ {
public: public:
ObjectsLayer(MapScene * s); ObjectsLayer(MapSceneBase * s);
void update() override; void update() override;
@ -105,7 +105,7 @@ private:
class SelectionObjectsLayer: public AbstractLayer class SelectionObjectsLayer: public AbstractLayer
{ {
public: public:
SelectionObjectsLayer(MapScene * s); SelectionObjectsLayer(MapSceneBase * s);
void update() override; void update() override;
@ -127,4 +127,12 @@ private:
std::set<CGObjectInstance *> selectedObjects; std::set<CGObjectInstance *> selectedObjects;
}; };
class MinimapLayer: public AbstractLayer
{
public:
MinimapLayer(MapSceneBase * s);
void update() override;
};
#endif // SCENELAYER_H #endif // SCENELAYER_H

View File

@ -250,15 +250,23 @@ void WindowNewMap::on_templateCombo_activated(int index)
void WindowNewMap::on_widthTxt_textChanged(const QString &arg1) void WindowNewMap::on_widthTxt_textChanged(const QString &arg1)
{ {
mapGenOptions.setWidth(arg1.toInt()); int sz = arg1.toInt();
updateTemplateList(); if(sz > 1)
{
mapGenOptions.setWidth(arg1.toInt());
updateTemplateList();
}
} }
void WindowNewMap::on_heightTxt_textChanged(const QString &arg1) void WindowNewMap::on_heightTxt_textChanged(const QString &arg1)
{ {
mapGenOptions.setHeight(arg1.toInt()); int sz = arg1.toInt();
updateTemplateList(); if(sz > 1)
{
mapGenOptions.setHeight(arg1.toInt());
updateTemplateList();
}
} }
void WindowNewMap::updateTemplateList() void WindowNewMap::updateTemplateList()