mirror of
https://github.com/isledecomp/isle.git
synced 2025-10-23 00:14:22 +00:00
Implement LegoVideoManager::Create and related (#393)
* WIP * Match * Changes * Fix format * Style fixes * Update naming.yml * Match to ~85%
This commit is contained in:

committed by
GitHub

parent
1e43f20af5
commit
935ebe6910
179
LEGO1/mxdirectx/mxstopwatch.h
Normal file
179
LEGO1/mxdirectx/mxstopwatch.h
Normal file
@@ -0,0 +1,179 @@
|
||||
#ifndef _MxStopWatch_h
|
||||
#define _MxStopWatch_h
|
||||
|
||||
#include "assert.h"
|
||||
#include "winbase.h"
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// MxStopWatch
|
||||
//
|
||||
// NOTE: MxStopWatch measures elapsed (wall clock) time.
|
||||
//
|
||||
|
||||
class MxStopWatch {
|
||||
public:
|
||||
MxStopWatch();
|
||||
~MxStopWatch() {}
|
||||
|
||||
void Start();
|
||||
void Stop();
|
||||
void Reset();
|
||||
|
||||
double ElapsedSeconds() const;
|
||||
|
||||
protected:
|
||||
unsigned long TicksPerSeconds() const;
|
||||
|
||||
private:
|
||||
LARGE_INTEGER m_startTick;
|
||||
// ??? when we provide LARGE_INTEGER arithmetic, use a
|
||||
// LARGE_INTEGER m_elapsedTicks rather than m_elapsedSeconds
|
||||
double m_elapsedSeconds;
|
||||
unsigned long m_ticksPerSeconds;
|
||||
};
|
||||
|
||||
inline MxStopWatch::MxStopWatch()
|
||||
{
|
||||
Reset();
|
||||
m_ticksPerSeconds = TicksPerSeconds();
|
||||
}
|
||||
|
||||
inline void MxStopWatch::Start()
|
||||
{
|
||||
QueryPerformanceCounter(&m_startTick);
|
||||
}
|
||||
|
||||
inline void MxStopWatch::Stop()
|
||||
{
|
||||
LARGE_INTEGER endTick;
|
||||
BOOL result;
|
||||
|
||||
result = QueryPerformanceCounter(&endTick);
|
||||
assert(result);
|
||||
|
||||
if (endTick.HighPart != m_startTick.HighPart) {
|
||||
// LARGE_INTEGER arithmetic not yet provided
|
||||
m_elapsedSeconds = HUGE_VAL;
|
||||
}
|
||||
else {
|
||||
m_elapsedSeconds += ((endTick.LowPart - m_startTick.LowPart) / (double) m_ticksPerSeconds);
|
||||
}
|
||||
}
|
||||
|
||||
inline void MxStopWatch::Reset()
|
||||
{
|
||||
m_startTick.LowPart = 0;
|
||||
m_startTick.HighPart = 0;
|
||||
m_elapsedSeconds = 0;
|
||||
}
|
||||
|
||||
inline unsigned long MxStopWatch::TicksPerSeconds() const
|
||||
{
|
||||
LARGE_INTEGER ticksPerSeconds;
|
||||
BOOL result;
|
||||
|
||||
result = QueryPerformanceFrequency(&ticksPerSeconds);
|
||||
assert(result);
|
||||
|
||||
if (ticksPerSeconds.HighPart) {
|
||||
// LARGE_INTEGER arithmetic not yet provided
|
||||
|
||||
// timer is too fast (faster than 32bits/s, i.e. faster than 4GHz)
|
||||
return ULONG_MAX;
|
||||
}
|
||||
else {
|
||||
return ticksPerSeconds.LowPart;
|
||||
}
|
||||
}
|
||||
|
||||
inline double MxStopWatch::ElapsedSeconds() const
|
||||
{
|
||||
return m_elapsedSeconds;
|
||||
}
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// MxFrequencyMeter
|
||||
//
|
||||
|
||||
class MxFrequencyMeter {
|
||||
public:
|
||||
MxFrequencyMeter();
|
||||
|
||||
void StartOperation();
|
||||
void EndOperation();
|
||||
double Frequency() const;
|
||||
void Reset();
|
||||
|
||||
unsigned long OperationCount() const;
|
||||
double ElapsedSeconds() const;
|
||||
|
||||
void IncreaseOperationCount(unsigned long);
|
||||
|
||||
private:
|
||||
unsigned long m_operationCount;
|
||||
MxStopWatch m_stopWatch;
|
||||
};
|
||||
|
||||
//////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// MxFrequencyMeter implementation
|
||||
//
|
||||
|
||||
inline MxFrequencyMeter::MxFrequencyMeter() : m_operationCount(0)
|
||||
{
|
||||
}
|
||||
|
||||
inline void MxFrequencyMeter::StartOperation()
|
||||
{
|
||||
m_stopWatch.Start();
|
||||
}
|
||||
|
||||
inline void MxFrequencyMeter::EndOperation()
|
||||
{
|
||||
m_stopWatch.Stop();
|
||||
m_operationCount++;
|
||||
}
|
||||
|
||||
inline double MxFrequencyMeter::Frequency() const
|
||||
{
|
||||
double elapsedSeconds = m_stopWatch.ElapsedSeconds();
|
||||
|
||||
if (elapsedSeconds > 0) {
|
||||
return m_operationCount / elapsedSeconds;
|
||||
}
|
||||
else {
|
||||
if (m_operationCount) {
|
||||
// operations performed - no time elapsed
|
||||
return HUGE_VAL;
|
||||
}
|
||||
else {
|
||||
// no operations performed - no time elapsed
|
||||
return 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
inline void MxFrequencyMeter::Reset()
|
||||
{
|
||||
m_stopWatch.Reset();
|
||||
m_operationCount = 0;
|
||||
}
|
||||
|
||||
inline unsigned long MxFrequencyMeter::OperationCount() const
|
||||
{
|
||||
return m_operationCount;
|
||||
}
|
||||
|
||||
inline void MxFrequencyMeter::IncreaseOperationCount(unsigned long delta)
|
||||
{
|
||||
m_operationCount += delta;
|
||||
}
|
||||
|
||||
inline double MxFrequencyMeter::ElapsedSeconds() const
|
||||
{
|
||||
return m_stopWatch.ElapsedSeconds();
|
||||
}
|
||||
|
||||
#endif /* _MxStopWatch_h */
|
Reference in New Issue
Block a user