2019-04-11 14:40:54 +08:00
|
|
|
// Copyright (c) 2016-2018 Kiwano - Nomango
|
2019-03-31 01:37:06 +08:00
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
// in the Software without restriction, including without limitation the rights
|
|
|
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
|
|
|
|
// The above copyright notice and this permission notice shall be included in
|
|
|
|
|
// all copies or substantial portions of the Software.
|
|
|
|
|
//
|
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
// THE SOFTWARE.
|
|
|
|
|
|
2019-10-11 21:55:29 +08:00
|
|
|
#include <kiwano/2d/DebugActor.h>
|
|
|
|
|
#include <kiwano/2d/Text.h>
|
|
|
|
|
#include <kiwano/renderer/Renderer.h>
|
2019-03-31 01:37:06 +08:00
|
|
|
#include <psapi.h>
|
|
|
|
|
|
|
|
|
|
#pragma comment(lib, "psapi.lib")
|
|
|
|
|
|
2019-04-11 14:40:54 +08:00
|
|
|
namespace kiwano
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-20 14:55:36 +08:00
|
|
|
namespace
|
|
|
|
|
{
|
|
|
|
|
class comma_numpunct : public std::numpunct<wchar_t>
|
|
|
|
|
{
|
|
|
|
|
protected:
|
|
|
|
|
virtual wchar_t do_thousands_sep() const override
|
|
|
|
|
{
|
|
|
|
|
return L',';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
virtual std::string do_grouping() const override
|
|
|
|
|
{
|
|
|
|
|
return "\03";
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-14 00:28:25 +08:00
|
|
|
DebugActor::DebugActor()
|
2019-08-03 23:28:45 +08:00
|
|
|
: background_color_(0.0f, 0.0f, 0.0f, 0.7f)
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-13 21:16:38 +08:00
|
|
|
SetName(L"kiwano-debug-actor");
|
2019-08-20 19:32:36 +08:00
|
|
|
SetPosition(Point{ 10, 10 });
|
2019-08-03 23:28:45 +08:00
|
|
|
SetResponsible(true);
|
|
|
|
|
SetCascadeOpacityEnabled(true);
|
|
|
|
|
|
2019-08-02 13:57:17 +08:00
|
|
|
debug_text_ = new Text;
|
2019-08-20 19:32:36 +08:00
|
|
|
debug_text_->SetPosition(Point{ 10, 10 });
|
2019-03-31 01:37:06 +08:00
|
|
|
this->AddChild(debug_text_);
|
|
|
|
|
|
|
|
|
|
Font font;
|
2019-08-20 14:55:36 +08:00
|
|
|
font.family = L"Arial";
|
2019-03-31 01:37:06 +08:00
|
|
|
font.size = 16.f;
|
|
|
|
|
font.weight = FontWeight::Normal;
|
|
|
|
|
debug_text_->SetFont(font);
|
|
|
|
|
|
|
|
|
|
TextStyle style;
|
|
|
|
|
style.line_spacing = 20.f;
|
|
|
|
|
debug_text_->SetStyle(style);
|
2019-08-03 23:28:45 +08:00
|
|
|
|
2019-11-14 13:18:16 +08:00
|
|
|
AddListener(event::MouseHover, [=](Event&) { SetOpacity(0.4f); });
|
|
|
|
|
AddListener(event::MouseOut, [=](Event&) { SetOpacity(1.f); });
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
2019-08-14 00:28:25 +08:00
|
|
|
DebugActor::~DebugActor()
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2019-08-20 19:32:36 +08:00
|
|
|
void DebugActor::OnRender(RenderTarget* rt)
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-08-20 19:32:36 +08:00
|
|
|
PrepareRender(rt);
|
2019-03-31 01:37:06 +08:00
|
|
|
|
2019-09-09 22:02:53 +08:00
|
|
|
rt->SetDefaultBrushColor(background_color_);
|
|
|
|
|
rt->FillRoundedRectangle(GetBounds(), Vec2{ 5.f, 5.f });
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
2019-08-14 00:28:25 +08:00
|
|
|
void DebugActor::OnUpdate(Duration dt)
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
2019-10-31 20:34:38 +08:00
|
|
|
KGE_NOT_USED(dt);
|
2019-03-31 01:37:06 +08:00
|
|
|
|
2019-04-09 02:25:17 +08:00
|
|
|
frame_time_.push_back(Time::Now());
|
2019-11-13 14:33:15 +08:00
|
|
|
while (frame_time_.back() - frame_time_.front() >= Duration::Second)
|
2019-03-31 01:37:06 +08:00
|
|
|
{
|
|
|
|
|
frame_time_.erase(frame_time_.begin());
|
|
|
|
|
}
|
2019-08-20 14:55:36 +08:00
|
|
|
|
|
|
|
|
StringStream ss;
|
|
|
|
|
|
|
|
|
|
{
|
|
|
|
|
// For formatting integers with commas
|
|
|
|
|
static std::locale comma_locale(std::locale(), new comma_numpunct);
|
|
|
|
|
(void)ss.imbue(comma_locale);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-31 01:37:06 +08:00
|
|
|
ss << "Fps: " << frame_time_.size() << std::endl;
|
|
|
|
|
|
2019-08-03 23:28:45 +08:00
|
|
|
#if defined(KGE_DEBUG)
|
2019-08-18 10:23:54 +08:00
|
|
|
if (ObjectBase::IsTracingLeaks())
|
2019-08-03 23:28:45 +08:00
|
|
|
{
|
2019-08-18 10:23:54 +08:00
|
|
|
ss << "Objects: " << ObjectBase::__GetTracingObjects().size() << std::endl;
|
2019-08-03 23:28:45 +08:00
|
|
|
}
|
2019-03-31 01:37:06 +08:00
|
|
|
#endif
|
|
|
|
|
|
2019-12-17 20:47:55 +08:00
|
|
|
ss << "Render: " << Renderer::instance().GetStatus().duration.Milliseconds() << "ms" << std::endl;
|
2019-03-31 01:37:06 +08:00
|
|
|
|
2019-12-17 20:47:55 +08:00
|
|
|
ss << "Primitives / sec: " << std::fixed << Renderer::instance().GetStatus().primitives * frame_time_.size() << std::endl;
|
2019-08-20 14:55:36 +08:00
|
|
|
|
|
|
|
|
ss << "Memory: ";
|
|
|
|
|
{
|
|
|
|
|
PROCESS_MEMORY_COUNTERS_EX pmc;
|
|
|
|
|
GetProcessMemoryInfo(GetCurrentProcess(), (PROCESS_MEMORY_COUNTERS*)&pmc, sizeof(pmc));
|
|
|
|
|
|
|
|
|
|
if (pmc.PrivateUsage > 1024 * 1024)
|
|
|
|
|
{
|
|
|
|
|
ss << pmc.PrivateUsage / (1024 * 1024) << "Mb ";
|
|
|
|
|
pmc.PrivateUsage %= (1024 * 1024);
|
|
|
|
|
}
|
2019-03-31 01:37:06 +08:00
|
|
|
|
2019-08-20 14:55:36 +08:00
|
|
|
ss << pmc.PrivateUsage / 1024 << "Kb";
|
|
|
|
|
}
|
2019-03-31 01:37:06 +08:00
|
|
|
|
|
|
|
|
debug_text_->SetText(ss.str());
|
2019-08-23 13:22:21 +08:00
|
|
|
|
|
|
|
|
if (debug_text_->GetWidth() > GetWidth() - 20)
|
|
|
|
|
{
|
|
|
|
|
SetWidth(20 + debug_text_->GetWidth());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (debug_text_->GetHeight() > GetHeight() - 20)
|
|
|
|
|
{
|
|
|
|
|
SetHeight(20 + debug_text_->GetHeight());
|
|
|
|
|
}
|
2019-03-31 01:37:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|