navContext.cpp
Engine/source/navigation/navContext.cpp
Detailed Description
1 2//----------------------------------------------------------------------------- 3// Copyright (c) 2014 Daniel Buckmaster 4// 5// Permission is hereby granted, free of charge, to any person obtaining a copy 6// of this software and associated documentation files (the "Software"), to 7// deal in the Software without restriction, including without limitation the 8// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or 9// sell copies of the Software, and to permit persons to whom the Software is 10// furnished to do so, subject to the following conditions: 11// 12// The above copyright notice and this permission notice shall be included in 13// all copies or substantial portions of the Software. 14// 15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 20// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS 21// IN THE SOFTWARE. 22//----------------------------------------------------------------------------- 23 24#include "navContext.h" 25#include "console/sim.h" 26 27void NavContext::doResetLog() 28{ 29} 30 31void NavContext::log(const rcLogCategory category, const String &msg) 32{ 33 doLog(category, msg.c_str(), msg.length()); 34} 35 36void NavContext::doLog(const rcLogCategory category, const char* msg, const int len) 37{ 38 if(category == RC_LOG_ERROR) 39 Con::errorf(msg); 40 else 41 Con::printf(msg); 42} 43 44void NavContext::doResetTimers() 45{ 46 for(U32 i = 0; i < RC_MAX_TIMERS; i++) 47 { 48 mTimers[i][0] = -1; 49 mTimers[i][1] = -1; 50 } 51} 52 53void NavContext::doStartTimer(const rcTimerLabel label) 54{ 55 // Store starting time. 56 mTimers[label][0] = Platform::getRealMilliseconds(); 57} 58 59void NavContext::doStopTimer(const rcTimerLabel label) 60{ 61 // Compute final time based on starting time. 62 mTimers[label][1] = Platform::getRealMilliseconds() - mTimers[label][0]; 63} 64 65int NavContext::doGetAccumulatedTime(const rcTimerLabel label) const 66{ 67 return mTimers[label][1] == -1 68 ? Platform::getRealMilliseconds() - mTimers[label][0] 69 : mTimers[label][1]; 70} 71