// 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 #include #include #include #pragma comment(lib, "psapi.lib") namespace kiwano { namespace { class comma_numpunct : public std::numpunct { private: virtual wchar_t do_thousands_sep() const override { return L','; } virtual std::string do_grouping() const override { return "\03"; } }; } // namespace DebugActor::DebugActor() { SetName(L"kiwano-debug-actor"); SetPosition(Point{ 10, 10 }); SetResponsible(true); SetCascadeOpacityEnabled(true); comma_locale_ = std::locale(std::locale(), new comma_numpunct); background_brush_ = new Brush; background_brush_->SetColor(Color(0.0f, 0.0f, 0.0f, 0.7f)); BrushPtr fill_brush = new Brush; fill_brush->SetColor(Color::White); TextStyle style; style.font_family = L"Arial"; style.font_size = 16.f; style.font_weight = FontWeight::Normal; style.line_spacing = 20.f; style.fill_brush = fill_brush; debug_text_.SetStyle(style); AddListener([=](Event*) { SetOpacity(0.4f); }); AddListener([=](Event*) { SetOpacity(1.f); }); } DebugActor::~DebugActor() {} void DebugActor::OnRender(RenderContext& ctx) { ctx.SetCurrentBrush(background_brush_); ctx.FillRoundedRectangle(GetBounds(), Vec2{ 5.f, 5.f }); ctx.DrawTextLayout(debug_text_, Point(10, 10)); } void DebugActor::OnUpdate(Duration dt) { KGE_NOT_USED(dt); frame_time_.push_back(Time::Now()); while (frame_time_.back() - frame_time_.front() >= Duration::Second) { frame_time_.erase(frame_time_.begin()); } StringStream ss; // For formatting integers with commas (void)ss.imbue(comma_locale_); ss << "Fps: " << frame_time_.size() << std::endl; #if defined(KGE_DEBUG) if (ObjectBase::IsTracingLeaks()) { ss << "Objects: " << ObjectBase::GetTracingObjects().size() << std::endl; } #endif ss << "Render: " << Renderer::Instance().GetStatus().duration.Milliseconds() << "ms" << std::endl; ss << "Primitives / sec: " << std::fixed << Renderer::Instance().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); } ss << pmc.PrivateUsage / 1024 << "Kb"; } debug_text_.SetText(ss.str()); debug_text_.Update(); Size layout_size = debug_text_.GetLayoutSize(); if (layout_size.x > GetWidth() - 20) { SetWidth(20 + layout_size.x); } if (layout_size.y > GetHeight() - 20) { SetHeight(20 + layout_size.y); } } bool DebugActor::CheckVisibility(RenderContext& ctx) const { return true; } } // namespace kiwano