1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/client/mainmenu/CStatisticScreen.cpp

138 lines
5.1 KiB
C++
Raw Normal View History

2024-08-11 22:44:16 +02:00
/*
* CStatisticScreen.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 "CStatisticScreen.h"
2024-08-12 01:07:58 +02:00
#include "../CGameInfo.h"
2024-08-11 22:44:16 +02:00
#include "../gui/CGuiHandler.h"
#include "../gui/WindowHandler.h"
2024-08-12 01:07:58 +02:00
#include "../gui/Shortcut.h"
2024-08-11 22:44:16 +02:00
2024-08-12 21:47:59 +02:00
#include "../render/Graphics.h"
2024-08-11 22:44:16 +02:00
#include "../widgets/Images.h"
2024-08-12 01:07:58 +02:00
#include "../widgets/GraphicalPrimitiveCanvas.h"
#include "../widgets/TextControls.h"
#include "../widgets/Buttons.h"
2024-08-12 02:56:33 +02:00
#include "../windows/InfoWindows.h"
2024-08-11 22:44:16 +02:00
#include "../../lib/gameState/GameStatistics.h"
2024-08-12 01:07:58 +02:00
#include "../../lib/texts/CGeneralTextHandler.h"
2024-08-11 22:44:16 +02:00
2024-08-12 02:56:33 +02:00
#include <vstd/DateUtils.h>
2024-08-12 01:19:00 +02:00
CStatisticScreen::CStatisticScreen(StatisticDataSet stat)
: CWindowObject(BORDERED), statistic(stat)
2024-08-11 22:44:16 +02:00
{
OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
pos = center(Rect(0, 0, 800, 600));
filledBackground = std::make_shared<FilledTexturePlayerColored>(ImagePath::builtin("DiBoxBck"), Rect(0, 0, pos.w, pos.h));
2024-08-12 01:07:58 +02:00
filledBackground->setPlayerColor(PlayerColor(1));
2024-08-11 22:44:16 +02:00
2024-08-12 20:14:36 +02:00
auto contentArea = Rect(10, 40, 780, 510);
layout.push_back(std::make_shared<CLabel>(400, 20, FONT_BIG, ETextAlignment::CENTER, Colors::YELLOW, CGI->generaltexth->translate("vcmi.statisticWindow.statistic")));
layout.push_back(std::make_shared<TransparentFilledRectangle>(contentArea, ColorRGBA(0, 0, 0, 64), ColorRGBA(64, 80, 128, 255), 1));
2024-08-12 01:07:58 +02:00
layout.push_back(std::make_shared<CButton>(Point(725, 564), AnimationPath::builtin("MUBCHCK"), CButton::tooltip(), [this](){ close(); }, EShortcut::GLOBAL_ACCEPT));
2024-08-12 02:56:33 +02:00
buttonCsvSave = std::make_shared<CToggleButton>(Point(10, 564), AnimationPath::builtin("GSPBUT2"), CButton::tooltip(), [this](bool on){
2024-08-12 20:14:36 +02:00
std::string path = statistic.writeCsv();
CInfoWindow::showInfoDialog(CGI->generaltexth->translate("vcmi.statisticWindow.csvSaved") + "\n\n" + path, {});
2024-08-12 02:56:33 +02:00
});
buttonCsvSave->setTextOverlay(CGI->generaltexth->translate("vcmi.statisticWindow.csvSave"), EFonts::FONT_SMALL, Colors::YELLOW);
2024-08-12 20:14:36 +02:00
2024-08-12 21:47:59 +02:00
auto plotData = extractData(stat, [](StatisticDataSetEntry val){ return val.resources[EGameResID::GOLD]; });
chart = std::make_shared<LineChart>(contentArea.resize(-5), "test title", plotData);
}
std::map<ColorRGBA, std::vector<float>> CStatisticScreen::extractData(StatisticDataSet stat, std::function<float(StatisticDataSetEntry val)> selector)
{
auto tmpData = stat.data;
std::sort(tmpData.begin(), tmpData.end(), [](StatisticDataSetEntry v1, StatisticDataSetEntry v2){ return v1.player == v2.player ? v1.day < v2.day : v1.player < v2.player; });
PlayerColor tmpColor = PlayerColor::NEUTRAL;
std::vector<float> tmpColorSet;
std::map<ColorRGBA, std::vector<float>> plotData;
for(auto & val : tmpData)
{
if(tmpColor != val.player)
{
if(tmpColorSet.size())
2024-08-12 23:28:08 +02:00
{
plotData.emplace(graphics->playerColors[tmpColor.getNum()], std::vector<float>(tmpColorSet));
tmpColorSet.clear();
}
2024-08-12 21:47:59 +02:00
tmpColor = val.player;
}
2024-08-12 23:28:08 +02:00
if(val.status == EPlayerStatus::INGAME)
tmpColorSet.push_back(selector(val));
2024-08-12 21:47:59 +02:00
}
2024-08-12 23:28:08 +02:00
if(tmpColorSet.size())
plotData.emplace(graphics->playerColors[tmpColor.getNum()], std::vector<float>(tmpColorSet));
2024-08-12 21:47:59 +02:00
return plotData;
2024-08-12 20:14:36 +02:00
}
2024-08-12 21:47:59 +02:00
LineChart::LineChart(Rect position, std::string title, std::map<ColorRGBA, std::vector<float>> data) : CIntObject()
2024-08-12 20:14:36 +02:00
{
OBJ_CONSTRUCTION_CAPTURING_ALL_NO_DISPOSE;
pos = position + pos.topLeft();
auto chartArea = pos.resize(-50);
chartArea.moveTo(Point(50, 50));
layout.push_back(std::make_shared<CLabel>(pos.w / 2, 20, FONT_MEDIUM, ETextAlignment::CENTER, Colors::WHITE, title));
canvas = std::make_shared<GraphicalPrimitiveCanvas>(Rect(0, 0, pos.w, pos.h));
2024-08-12 23:28:08 +02:00
// additional calculations
float maxVal = 0;
int maxDay = 0;
for(auto & line : data)
{
for(auto & val : line.second)
if(maxVal < val)
maxVal = val;
if(maxDay < line.second.size())
maxDay = line.second.size();
}
// draw
for(auto & line : data)
{
Point lastPoint = Point(-1, -1);
for(int i = 0; i < line.second.size(); i++)
{
float x = ((float)chartArea.w / (float)(maxDay-1)) * (float)i;
float y = (float)chartArea.h - ((float)chartArea.h / maxVal) * line.second[i];
Point p = Point(x, y) + chartArea.topLeft();
if(lastPoint.x != -1)
canvas->addLine(lastPoint, p, line.first);
lastPoint = p;
}
}
2024-08-12 20:14:36 +02:00
// Axis
canvas->addLine(chartArea.topLeft() + Point(0, -10), chartArea.topLeft() + Point(0, chartArea.h + 10), Colors::WHITE);
canvas->addLine(chartArea.topLeft() + Point(-10, chartArea.h), chartArea.topLeft() + Point(chartArea.w + 10, chartArea.h), Colors::WHITE);
2024-08-12 23:28:08 +02:00
Point p = chartArea.topLeft() + Point(-5, chartArea.h + 10);
layout.push_back(std::make_shared<CLabel>(p.x, p.y, FONT_SMALL, ETextAlignment::CENTERRIGHT, Colors::WHITE, "0"));
p = chartArea.topLeft() + Point(chartArea.w + 10, chartArea.h + 10);
layout.push_back(std::make_shared<CLabel>(p.x, p.y, FONT_SMALL, ETextAlignment::CENTER, Colors::WHITE, std::to_string(maxDay)));
p = chartArea.topLeft() + Point(-5, -10);
layout.push_back(std::make_shared<CLabel>(p.x, p.y, FONT_SMALL, ETextAlignment::CENTERRIGHT, Colors::WHITE, std::to_string((int)maxVal)));
2024-08-11 22:54:19 +02:00
}