Mercurial > minori
annotate src/gui/pages/statistics.cc @ 178:bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Mon, 04 Dec 2023 11:51:30 -0500 |
parents | 45a0967485f1 |
children | 9613d72b097e |
rev | line source |
---|---|
9 | 1 #include "gui/pages/statistics.h" |
15 | 2 #include "core/anime_db.h" |
3 #include "core/session.h" | |
9 | 4 #include "gui/pages/anime_list.h" |
46 | 5 #include "gui/widgets/text.h" |
93 | 6 #include "gui/widgets/graph.h" |
178
bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
Paper <mrpapersonic@gmail.com>
parents:
172
diff
changeset
|
7 |
9 | 8 #include <QString> |
9 #include <QTextDocument> | |
10 #include <QTextStream> | |
11 #include <QTimer> | |
12 #include <QVBoxLayout> | |
13 #include <QWidget> | |
178
bc8d2ccff09c
win32/dark: use existing STL classes for dwmapi
Paper <mrpapersonic@gmail.com>
parents:
172
diff
changeset
|
14 |
9 | 15 #include <sstream> |
16 | |
64 | 17 StatisticsPage::StatisticsPage(QWidget* parent) : QFrame(parent) { |
18 QVBoxLayout* layout = new QVBoxLayout(this); | |
9 | 19 |
64 | 20 setFrameShape(QFrame::Box); |
9 | 21 setFrameShadow(QFrame::Sunken); |
22 | |
46 | 23 setAutoFillBackground(true); |
37
9ae9365dd4ea
window.cpp: fix sidebar on Linux
Paper <mrpapersonic@gmail.com>
parents:
15
diff
changeset
|
24 |
93 | 25 _anime_list.reset(new TextWidgets::LabelledSection( |
51 | 26 tr("Anime list"), |
63 | 27 tr("Anime count:\nEpisode count:\nTime spent watching:\nTime to complete:\nAverage score:\nScore deviation:"), |
93 | 28 "", this)); |
172
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
29 layout->addWidget(_anime_list.get()); |
93 | 30 |
172
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
31 { |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
32 QWidget* score_dist_widget = new QWidget(this); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
33 QVBoxLayout* score_dist_layout = new QVBoxLayout(score_dist_widget); |
9 | 34 |
172
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
35 score_dist_layout->addWidget(new TextWidgets::Header(tr("Score distribution"), score_dist_widget)); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
36 |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
37 /* Ew */ |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
38 { |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
39 QWidget* score_graph_parent = new QWidget(score_dist_widget); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
40 QVBoxLayout* score_parent_layout = new QVBoxLayout(score_graph_parent); |
94
2f373d48f889
*: etc changes to graph stuff
Paper <mrpapersonic@gmail.com>
parents:
93
diff
changeset
|
41 |
172
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
42 _score_distribution_graph.reset(new Graph<int>(score_graph_parent)); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
43 score_parent_layout->addWidget(_score_distribution_graph.get()); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
44 |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
45 score_parent_layout->setSpacing(0); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
46 score_parent_layout->setContentsMargins(12, 0, 0, 0); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
47 |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
48 score_graph_parent->setContentsMargins(3, 0, 0, 0); |
9 | 49 |
172
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
50 score_dist_layout->addWidget(score_graph_parent); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
51 } |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
52 |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
53 score_dist_layout->setContentsMargins(0, 0, 0, 0); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
54 |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
55 layout->addWidget(score_dist_widget); |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
56 } |
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
57 |
93 | 58 |
59 _application.reset(new TextWidgets::LabelledSection(tr("Minori"), tr("Uptime:\nRequests made:"), "\n\n", this)); | |
172
45a0967485f1
graph, statistics: make my code a little less messy
Paper <mrpapersonic@gmail.com>
parents:
105
diff
changeset
|
60 layout->addWidget(_application.get()); |
93 | 61 |
64 | 62 layout->addStretch(); |
9 | 63 |
64 QTimer* timer = new QTimer(this); | |
65 connect(timer, &QTimer::timeout, this, [this] { | |
66 if (isVisible()) | |
67 UpdateStatistics(); | |
68 }); | |
69 timer->start(1000); // update statistics every second | |
70 } | |
71 | |
64 | 72 void StatisticsPage::showEvent(QShowEvent*) { |
9 | 73 UpdateStatistics(); |
74 } | |
75 | |
76 /* me abusing macros :) */ | |
15 | 77 #define ADD_TIME_SEGMENT(r, x, s, p) \ |
64 | 78 if (x > 0) \ |
79 r << x << ((x == 1) ? s : p) | |
102 | 80 std::string StatisticsPage::MinutesToDateString(const int minutes) { |
9 | 81 /* ew */ |
82 int years = (minutes * (1 / 525949.2F)); | |
83 int months = (minutes * (1 / 43829.1F)) - (years * 12); | |
84 int days = (minutes * (1 / 1440.0F)) - (years * 365.2425F) - (months * 30.436875F); | |
85 int hours = (minutes * (1 / 60.0F)) - (years * 8765.82F) - (months * 730.485F) - (days * 24); | |
86 int rest_minutes = (minutes) - (years * 525949.2F) - (months * 43829.1F) - (days * 1440) - (hours * 60); | |
87 std::ostringstream return_stream; | |
88 ADD_TIME_SEGMENT(return_stream, years, " year ", " years "); | |
89 ADD_TIME_SEGMENT(return_stream, months, " month ", " months "); | |
90 ADD_TIME_SEGMENT(return_stream, days, " day ", " days "); | |
91 ADD_TIME_SEGMENT(return_stream, hours, " hour ", " hours "); | |
92 if (rest_minutes > 0 || return_stream.str().size() == 0) | |
93 return_stream << rest_minutes << ((rest_minutes == 1) ? " minute" : " minutes"); | |
94 return return_stream.str(); | |
95 } | |
96 | |
102 | 97 std::string StatisticsPage::SecondsToDateString(const int sec) { |
9 | 98 /* this is all fairly unnecessary, but works:tm: */ |
10 | 99 int years = sec * (1 / 31556952.0F); |
100 int months = sec * (1 / 2629746.0F) - (years * 12); | |
101 int days = sec * (1 / 86400.0F) - (years * 365.2425F) - (months * 30.436875F); | |
102 int hours = sec * (1 / 3600.0F) - (years * 8765.82F) - (months * 730.485F) - (days * 24); | |
103 int minutes = (sec) * (1 / 60.0F) - (years * 525949.2F) - (months * 43829.1F) - (days * 1440.0F) - (hours * 60.0F); | |
15 | 104 int seconds = |
105 sec - (years * 31556952.0F) - (months * 2629746.0F) - (days * 86400.0F) - (hours * 3600.0F) - (minutes * 60.0F); | |
9 | 106 std::ostringstream return_stream; |
10 | 107 ADD_TIME_SEGMENT(return_stream, years, " year ", " years "); |
108 ADD_TIME_SEGMENT(return_stream, months, " month ", " months "); | |
109 ADD_TIME_SEGMENT(return_stream, days, " day ", " days "); | |
110 ADD_TIME_SEGMENT(return_stream, hours, " hour ", " hours "); | |
111 ADD_TIME_SEGMENT(return_stream, minutes, " minute ", " minutes "); | |
112 if (seconds > 0 || return_stream.str().size() == 0) | |
113 return_stream << seconds << ((seconds == 1) ? " second" : " seconds"); | |
9 | 114 return return_stream.str(); |
115 } | |
116 #undef ADD_TIME_SEGMENT | |
117 | |
102 | 118 inline int GetTotalWithScore(const int score) { |
93 | 119 int count = 0; |
120 for (const auto& item : Anime::db.items) | |
121 if (item.second.IsInUserList() && item.second.GetUserScore() == score) | |
122 count++; | |
123 return count; | |
124 } | |
125 | |
64 | 126 void StatisticsPage::UpdateStatistics() { |
9 | 127 /* Anime list */ |
128 QString string = ""; | |
129 QTextStream ts(&string); | |
10 | 130 ts << Anime::db.GetTotalAnimeAmount() << '\n'; |
131 ts << Anime::db.GetTotalEpisodeAmount() << '\n'; | |
132 ts << MinutesToDateString(Anime::db.GetTotalWatchedAmount()).c_str() << '\n'; | |
133 ts << MinutesToDateString(Anime::db.GetTotalPlannedAmount()).c_str() << '\n'; | |
134 ts << Anime::db.GetAverageScore() << '\n'; | |
135 ts << Anime::db.GetScoreDeviation(); | |
93 | 136 _anime_list->GetParagraph()->SetText(string); |
137 | |
138 _score_distribution_graph->Clear(); | |
139 for (int i = 10; i <= 100; i += 10) | |
140 _score_distribution_graph->AddItem(i, GetTotalWithScore(i)); | |
9 | 141 |
47
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
142 string = ""; |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
143 ts << QString::fromUtf8(SecondsToDateString(session.uptime() / 1000).c_str()) << '\n'; |
d8eb763e6661
information.cpp: add widgets to the list tab, and add an
Paper <mrpapersonic@gmail.com>
parents:
46
diff
changeset
|
144 ts << session.GetRequests(); |
9 | 145 /* Application */ |
146 // UiUtils::SetPlainTextEditData(application_data, QString::number(session.uptime() / 1000)); | |
93 | 147 _application->GetParagraph()->SetText(string); |
9 | 148 } |
149 | |
10 | 150 #include "gui/pages/moc_statistics.cpp" |