Magic_Game/src/kiwano/2d/DebugActor.cpp

143 lines
3.7 KiB
C++
Raw Normal View History

2019-04-11 14:40:54 +08:00
// Copyright (c) 2016-2018 Kiwano - Nomango
//
// 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.
#include "DebugActor.h"
#include "Text.h"
2019-08-14 21:52:49 +08:00
#include "../renderer/Renderer.h"
#include <psapi.h>
#pragma comment(lib, "psapi.lib")
2019-04-11 14:40:54 +08:00
namespace kiwano
{
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()
: background_color_(0.0f, 0.0f, 0.0f, 0.7f)
{
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 });
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 });
this->AddChild(debug_text_);
Font font;
2019-08-20 14:55:36 +08:00
font.family = L"Arial";
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-05 00:12:47 +08:00
AddListener(Event::MouseHover, [=](const Event&) { SetOpacity(0.4f); });
AddListener(Event::MouseOut, [=](const Event&) { SetOpacity(1.f); });
}
2019-08-14 00:28:25 +08:00
DebugActor::~DebugActor()
{
}
2019-08-20 19:32:36 +08:00
void DebugActor::OnRender(RenderTarget* rt)
{
2019-08-20 19:32:36 +08:00
PrepareRender(rt);
2019-08-20 19:32:36 +08:00
rt->FillRoundedRectangle(GetBounds(), Vec2{ 5.f, 5.f }, background_color_);
}
2019-08-14 00:28:25 +08:00
void DebugActor::OnUpdate(Duration dt)
{
2019-08-12 14:51:54 +08:00
KGE_UNUSED(dt);
2019-04-09 02:25:17 +08:00
frame_time_.push_back(Time::Now());
while (frame_time_.back() - frame_time_.front() >= time::Sec)
{
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);
}
ss << "Fps: " << frame_time_.size() << std::endl;
#if defined(KGE_DEBUG)
2019-08-18 10:23:54 +08:00
if (ObjectBase::IsTracingLeaks())
{
2019-08-18 10:23:54 +08:00
ss << "Objects: " << ObjectBase::__GetTracingObjects().size() << std::endl;
}
#endif
ss << "Render: " << Renderer::GetInstance()->GetStatus().duration.Milliseconds() << "ms" << std::endl;
2019-08-20 14:55:36 +08:00
ss << "Primitives / sec: " << std::fixed << Renderer::GetInstance()->GetStatus().primitives * frame_time_.size() << std::endl;
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-08-20 14:55:36 +08:00
ss << pmc.PrivateUsage / 1024 << "Kb";
}
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());
}
}
}