From 7bc603db086cdc3831b19490d263eee7626fad35 Mon Sep 17 00:00:00 2001 From: joey-lunarg Date: Thu, 3 Nov 2016 13:45:54 -0600 Subject: [PATCH] demos: Add Game class file for smoke Change-Id: I385f8fd0676f665b1d774f38767b5691ddae6f7a --- demos/smoke/Game.cpp | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 demos/smoke/Game.cpp diff --git a/demos/smoke/Game.cpp b/demos/smoke/Game.cpp new file mode 100644 index 0000000..186b395 --- /dev/null +++ b/demos/smoke/Game.cpp @@ -0,0 +1,40 @@ +/* +* Copyright (C) 2016 Google, Inc. +* +* Licensed under the Apache License, Version 2.0 (the "License"); +* you may not use this file except in compliance with the License. +* You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, software +* distributed under the License is distributed on an "AS IS" BASIS, +* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +* See the License for the specific language governing permissions and +* limitations under the License. +*/ + +#include "Game.h" +#include "Shell.h" + +#if (defined(_MSC_VER) && _MSC_VER < 1900 /*vs2015*/) || \ + defined MINGW_HAS_SECURE_API +#include +#define snprintf sprintf_s +#endif + +void Game::print_stats() { + // Output frame count and measured elapsed time + auto now = std::chrono::system_clock::now(); + auto elapsed = now - start_time; + long elapsed_millis = + std::chrono::duration_cast(elapsed).count(); + char msg[256]; + snprintf(msg, 255, "frames:%d, elapsedms:%d", frame_count, elapsed_millis); + shell_->log(Shell::LogPriority::LOG_INFO, msg); +} + +void Game::quit() { + print_stats(); + shell_->quit(); +} \ No newline at end of file -- 2.7.4