2023-05-24 12:38:22 +00:00
|
|
|
/*
|
|
|
|
This file is part of Telegram Desktop,
|
|
|
|
the official desktop application for the Telegram messaging service.
|
|
|
|
|
|
|
|
For license and copyright information please follow this link:
|
|
|
|
https://github.com/telegramdesktop/tdesktop/blob/master/LEGAL
|
|
|
|
*/
|
2023-10-02 23:07:05 +00:00
|
|
|
#include "statistics/chart_rulers_data.h"
|
2023-05-24 12:38:22 +00:00
|
|
|
|
|
|
|
#include "lang/lang_tag.h"
|
|
|
|
|
|
|
|
namespace Statistic {
|
|
|
|
namespace {
|
|
|
|
|
|
|
|
constexpr auto kMinLines = int(2);
|
|
|
|
constexpr auto kMaxLines = int(6);
|
|
|
|
constexpr auto kStep = 5.;
|
|
|
|
|
|
|
|
[[nodiscard]] int Round(int maxValue) {
|
|
|
|
const auto k = int(maxValue / kStep);
|
|
|
|
return (k % 10 == 0) ? maxValue : ((maxValue / 10 + 1) * 10);
|
|
|
|
}
|
|
|
|
|
2023-09-11 15:10:30 +00:00
|
|
|
[[nodiscard]] QString Format(int absoluteValue) {
|
2023-10-02 23:07:05 +00:00
|
|
|
constexpr auto kTooMuch = int(10'000);
|
|
|
|
return (absoluteValue >= kTooMuch)
|
2023-09-11 15:10:30 +00:00
|
|
|
? Lang::FormatCountToShort(absoluteValue).string
|
2023-10-02 23:07:05 +00:00
|
|
|
: QString::number(absoluteValue);
|
2023-09-11 15:10:30 +00:00
|
|
|
}
|
|
|
|
|
2023-05-24 12:38:22 +00:00
|
|
|
} // namespace
|
|
|
|
|
2023-10-02 23:07:05 +00:00
|
|
|
ChartRulersData::ChartRulersData(
|
2023-05-24 12:38:22 +00:00
|
|
|
int newMaxHeight,
|
|
|
|
int newMinHeight,
|
2023-09-11 15:10:30 +00:00
|
|
|
bool useMinHeight,
|
|
|
|
float64 rightRatio) {
|
2023-05-24 12:38:22 +00:00
|
|
|
if (!useMinHeight) {
|
|
|
|
const auto v = (newMaxHeight > 100)
|
|
|
|
? Round(newMaxHeight)
|
|
|
|
: newMaxHeight;
|
|
|
|
|
|
|
|
const auto step = std::max(1, int(std::ceil(v / kStep)));
|
|
|
|
|
|
|
|
auto n = kMaxLines;
|
|
|
|
if (v < kMaxLines) {
|
|
|
|
n = std::max(2, v + 1);
|
|
|
|
} else if (v / 2 < kMaxLines) {
|
|
|
|
n = v / 2 + 1;
|
|
|
|
if (v % 2 != 0) {
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lines.resize(n);
|
|
|
|
|
|
|
|
for (auto i = 1; i < n; i++) {
|
|
|
|
auto &line = lines[i];
|
|
|
|
line.absoluteValue = i * step;
|
|
|
|
line.caption = Lang::FormatCountToShort(
|
|
|
|
line.absoluteValue).string;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
auto n = int(0);
|
|
|
|
const auto diff = newMaxHeight - newMinHeight;
|
|
|
|
auto step = 0.;
|
|
|
|
if (diff == 0) {
|
|
|
|
newMinHeight--;
|
|
|
|
n = kMaxLines / 2;
|
|
|
|
step = 1.;
|
|
|
|
} else if (diff < kMaxLines) {
|
|
|
|
n = std::max(kMinLines, diff + 1);
|
|
|
|
step = 1.;
|
|
|
|
} else if (diff / 2 < kMaxLines) {
|
|
|
|
n = diff / 2 + diff % 2 + 1;
|
|
|
|
step = 2.;
|
|
|
|
} else {
|
|
|
|
step = (newMaxHeight - newMinHeight) / kStep;
|
|
|
|
if (step <= 0) {
|
|
|
|
step = 1;
|
|
|
|
n = std::max(kMinLines, newMaxHeight - newMinHeight + 1);
|
|
|
|
} else {
|
|
|
|
n = 6;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
lines.resize(n);
|
|
|
|
const auto diffAbsoluteValue = int((n - 1) * step);
|
2023-09-11 15:10:30 +00:00
|
|
|
const auto skipFloatValues = (step / rightRatio) < 1;
|
2023-05-24 12:38:22 +00:00
|
|
|
for (auto i = 0; i < n; i++) {
|
|
|
|
auto &line = lines[i];
|
|
|
|
const auto value = int(i * step);
|
|
|
|
line.absoluteValue = newMinHeight + value;
|
2023-06-09 14:16:58 +00:00
|
|
|
line.relativeValue = 1. - value / float64(diffAbsoluteValue);
|
2023-09-11 15:10:30 +00:00
|
|
|
line.caption = Format(line.absoluteValue);
|
|
|
|
if (rightRatio > 0) {
|
|
|
|
const auto v = (newMinHeight + i * step) / rightRatio;
|
|
|
|
line.scaledLineCaption = (!skipFloatValues)
|
|
|
|
? Format(v)
|
|
|
|
: ((v - int(v)) < 0.01)
|
|
|
|
? Format(v)
|
|
|
|
: QString();
|
|
|
|
}
|
2023-05-24 12:38:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-02 23:07:05 +00:00
|
|
|
void ChartRulersData::computeRelative(
|
2023-06-09 14:16:58 +00:00
|
|
|
int newMaxHeight,
|
|
|
|
int newMinHeight) {
|
|
|
|
for (auto &line : lines) {
|
|
|
|
line.relativeValue = 1.
|
|
|
|
- ((line.absoluteValue - newMinHeight)
|
|
|
|
/ (newMaxHeight - newMinHeight));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-02 23:07:05 +00:00
|
|
|
int ChartRulersData::LookupHeight(int maxValue) {
|
2023-05-24 12:38:22 +00:00
|
|
|
const auto v = (maxValue > 100) ? Round(maxValue) : maxValue;
|
|
|
|
|
|
|
|
const auto step = int(std::ceil(v / kStep));
|
|
|
|
return step * kStep;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace Statistic
|