Magic_Game/src/kiwano/platform/Runner.cpp

118 lines
2.9 KiB
C++
Raw Normal View History

2020-02-14 22:01:56 +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 <kiwano/platform/Runner.h>
#include <kiwano/platform/Application.h>
namespace kiwano
{
RunnerPtr Runner::Create(WindowPtr main_window)
{
RunnerPtr ptr = new (std::nothrow) Runner;
if (ptr)
{
ptr->SetMainWindow(main_window);
}
return ptr;
}
RunnerPtr Runner::Create(WindowPtr main_window, Function<void()> on_ready, Function<void()> on_destroy)
{
class CallbackRunner : public Runner
{
public:
void OnReady() override
{
if (on_ready)
on_ready();
}
void OnDestroy() override
{
if (on_destroy)
on_destroy();
}
Function<void()> on_ready;
Function<void()> on_destroy;
};
SmartPtr<CallbackRunner> ptr = new (std::nothrow) CallbackRunner;
if (ptr)
{
ptr->on_ready = on_ready;
2020-02-14 22:01:56 +08:00
ptr->on_destroy = on_destroy;
ptr->SetMainWindow(main_window);
}
return ptr;
}
Runner::Runner() {}
Runner::~Runner() {}
bool Runner::MainLoop()
{
if (main_window_->ShouldClose())
{
if (this->OnClosing())
return false;
main_window_->SetShouldClose(false);
}
Application& app = Application::GetInstance();
// Poll events
while (EventPtr evt = main_window_->PollEvent())
{
2020-02-15 17:32:32 +08:00
app.DispatchEvent(evt.Get());
2020-02-14 22:01:56 +08:00
}
// Update & render
const Time now = Time::Now();
const Duration dt = (now - last_update_time_);
last_update_time_ = now;
app.Update(dt);
app.Render();
return true;
}
void Runner::Ready()
{
OnReady();
last_update_time_ = Time::Now();
}
void Runner::Destroy()
{
OnDestroy();
if (main_window_)
{
main_window_->Destroy();
main_window_.Reset();
}
}
2020-02-14 22:01:56 +08:00
} // namespace kiwano