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

165 lines
3.5 KiB
C++
Raw Normal View History

/*
* WindowHandler.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 "WindowHandler.h"
#include "CGuiHandler.h"
#include "CIntObject.h"
#include "CursorHandler.h"
#include "../CMT.h"
#include "../CGameInfo.h"
#include "../render/Canvas.h"
#include "../render/Colors.h"
#include "../renderSDL/SDL_Extensions.h"
void WindowHandler::popWindow(std::shared_ptr<IShowActivatable> top)
{
2023-05-16 15:07:03 +02:00
assert(windowsStack.back() == top);
top->deactivate();
disposed.push_back(top);
2023-05-16 15:07:03 +02:00
windowsStack.pop_back();
if(!windowsStack.empty())
windowsStack.back()->activate();
totalRedraw();
}
void WindowHandler::pushWindow(std::shared_ptr<IShowActivatable> newInt)
{
assert(newInt);
2023-05-16 15:07:03 +02:00
assert(!vstd::contains(windowsStack, newInt)); // do not add same object twice
//a new interface will be present, we'll need to use buffer surface (unless it's advmapint that will alter screenBuf on activate anyway)
screenBuf = screen2;
2023-05-16 15:07:03 +02:00
if(!windowsStack.empty())
windowsStack.back()->deactivate();
windowsStack.push_back(newInt);
CCS->curh->set(Cursor::Map::POINTER);
newInt->activate();
totalRedraw();
}
bool WindowHandler::isTopWindowPopup() const
{
if (windowsStack.empty())
return false;
return windowsStack.back()->isPopupWindow();
}
void WindowHandler::popWindows(int howMany)
{
if(!howMany)
return; //senseless but who knows...
2023-05-16 15:07:03 +02:00
assert(windowsStack.size() >= howMany);
windowsStack.back()->deactivate();
for(int i = 0; i < howMany; i++)
{
2023-05-16 15:07:03 +02:00
disposed.push_back(windowsStack.back());
windowsStack.pop_back();
}
2023-05-16 15:07:03 +02:00
if(!windowsStack.empty())
{
2023-05-16 15:07:03 +02:00
windowsStack.back()->activate();
totalRedraw();
}
GH.fakeMouseMove();
}
2023-05-16 17:34:23 +02:00
std::shared_ptr<IShowActivatable> WindowHandler::topWindowImpl() const
{
2023-05-16 15:07:03 +02:00
if(windowsStack.empty())
return nullptr;
return windowsStack.back();
}
2023-05-16 17:34:23 +02:00
bool WindowHandler::isTopWindow(std::shared_ptr<IShowActivatable> window) const
{
assert(window != nullptr);
return !windowsStack.empty() && windowsStack.back() == window;
}
bool WindowHandler::isTopWindow(IShowActivatable * window) const
{
assert(window != nullptr);
return !windowsStack.empty() && windowsStack.back().get() == window;
}
void WindowHandler::totalRedraw()
{
totalRedrawRequested = true;
}
void WindowHandler::totalRedrawImpl()
{
logGlobal->debug("totalRedraw requested!");
CSDL_Ext::fillSurface(screen2, Colors::BLACK);
Canvas target = Canvas::createFromSurface(screen2);
2023-05-16 15:07:03 +02:00
for(auto & elem : windowsStack)
elem->showAll(target);
CSDL_Ext::blitAt(screen2, 0, 0, screen);
}
void WindowHandler::simpleRedraw()
{
if (totalRedrawRequested)
totalRedrawImpl();
else
simpleRedrawImpl();
totalRedrawRequested = false;
}
void WindowHandler::simpleRedrawImpl()
{
//update only top interface and draw background
2023-05-16 15:07:03 +02:00
if(windowsStack.size() > 1)
CSDL_Ext::blitAt(screen2, 0, 0, screen); //blit background
Canvas target = Canvas::createFromSurface(screen);
2023-05-16 15:07:03 +02:00
if(!windowsStack.empty())
windowsStack.back()->show(target); //blit active interface/window
}
void WindowHandler::onScreenResize()
{
2023-05-16 15:07:03 +02:00
for(const auto & entry : windowsStack)
entry->onScreenResize();
totalRedraw();
}
void WindowHandler::onFrameRendered()
{
disposed.clear();
}
2023-05-16 15:07:03 +02:00
size_t WindowHandler::count() const
{
return windowsStack.size();
}
void WindowHandler::clear()
{
2023-05-16 17:34:23 +02:00
if(!windowsStack.empty())
windowsStack.back()->deactivate();
2023-05-16 15:07:03 +02:00
windowsStack.clear();
disposed.clear();
}