1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
|
/*
* The ManaPlus Client
* Copyright (C) 2011-2020 The ManaPlus Developers
* Copyright (C) 2020-2023 The ManaVerse Developers
*
* This file is part of The ManaPlus Client.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "gui/widgets/tabs/statdebugtab.h"
#include "const/utils/timer.h"
#include "gui/widgets/button.h"
#include "gui/widgets/containerplacer.h"
#include "gui/widgets/label.h"
#include "gui/widgets/layouthelper.h"
#include "gui/windows/chatwindow.h"
#include "utils/gettext.h"
#include "utils/perfstat.h"
#include "utils/stringutils.h"
#include "utils/timer.h"
#include "debug.h"
StatDebugTab::StatDebugTab(const Widget2 *const widget) :
DebugTab(widget),
// TRANSLATORS: debug window label, logic per second
mLPSLabel(new Label(this, strprintf(_("LPS: %d"), 0))),
// TRANSLATORS: debug window stats reset button
mResetButton(new Button(this, _("Reset"), "reset", BUTTON_SKIN, this)),
// TRANSLATORS: debug window stats copy button
mCopyButton(new Button(this, _("Copy"), "copy", BUTTON_SKIN, this)),
mStatLabels(),
mWorseStatLabels(),
mDrawIndex(0)
{
LayoutHelper h(this);
ContainerPlacer place = h.getPlacer(0, 0);
mResetButton->adjustSize();
mCopyButton->adjustSize();
place(0, 0, mLPSLabel, 2, 1);
place(0, 1, mResetButton, 1, 1);
place(1, 1, mCopyButton, 1, 1);
for (size_t f = 1; f < PERFSTAT_LAST_STAT; f ++)
{
mStatLabels[f - 1] = new Label(this,
// TRANSLATORS: debug window stat label
strprintf(_("stat%u: %d ms"), CAST_U32(f), 1000));
mStatLabels[f - 1]->adjustSize();
mWorseStatLabels[f - 1] = new Label(this,
// TRANSLATORS: debug window stat label
strprintf(_("%d ms"), 1000));
place(0, CAST_S32(f + 1), mStatLabels[f - 1], 3, 1);
place(3, CAST_S32(f + 1), mWorseStatLabels[f - 1], 1, 1);
}
setDimension(Rect(0, 0, 200, 300));
}
void StatDebugTab::logic()
{
BLOCK_START("StatDebugTab::logic")
// TRANSLATORS: debug window label, logic per second
mLPSLabel->setCaption(strprintf(_("LPS: %d"), lps));
for (size_t f = 1; f < PERFSTAT_LAST_STAT; f ++)
{
mStatLabels[f - 1]->setCaption(
// TRANSLATORS: debug window stat label
strprintf(_("stat%u: %d ms"),
CAST_U32(f),
Perf::getTime(prevPerfFrameId, f) * MILLISECONDS_IN_A_TICK));
mWorseStatLabels[f - 1]->setCaption(
// TRANSLATORS: debug window stat label
strprintf(_("%d ms"),
Perf::getWorstTime(f) * MILLISECONDS_IN_A_TICK));
}
mDrawIndex = prevPerfFrameId;
BLOCK_END("StatDebugTab::logic")
}
void StatDebugTab::action(const ActionEvent &event)
{
const std::string &eventId = event.getId();
if (eventId == "reset")
{
Perf::init();
}
else if (eventId == "copy")
{
std::string data("perf:");
for (size_t f = 1; f < PERFSTAT_LAST_STAT; f ++)
{
data.append(strprintf(" %d",
Perf::getTime(mDrawIndex, f) * MILLISECONDS_IN_A_TICK));
}
data.append(",");
for (size_t f = 1; f < PERFSTAT_LAST_STAT; f ++)
{
data.append(strprintf(" %d",
Perf::getWorstTime(f) * MILLISECONDS_IN_A_TICK));
}
chatWindow->addInputText(data,
true);
}
}
|