mirror of
https://github.com/isledecomp/isle.git
synced 2024-11-22 15:48:09 -05:00
ccb6223d70
* mxdirectdraw: no need to explicitly add a terminating '\0' in C * mxstopwatch must include LIMITS.H for ULONG_MAX * Add Config app * 88.78% * style fixes * Test more CONFIG things * Add a few assertions on MFC classes * reformat * actionSSSSSSSSSSSSSSS * actions again * decomplint needed a shebang * Fix annotations of Message Map entries * ci: We're building CONFIG.EXE, not CONFIG.DLL * remove ninja.exe * Fix CAboutDialog::GetMessageMap annotation * format reloaded * Fix global CConfigApp object annotation * trigger worflows * ci: request at least python 3 * oops :) * curl CONFIGPROGRESS-OLD.TXT will fail * Forget about actions/setup-python (for now) * Annotation fixes * Config tweaks and MxDirect3d annotations * It's important to compare against the correct file * Introduce common CDialog parent for CAboutDialog and CMainDialog * format * Remove CSerializer --------- Co-authored-by: disinvite <disinvite@users.noreply.github.com>
192 lines
3.6 KiB
C++
192 lines
3.6 KiB
C++
#ifndef _MxStopWatch_h
|
|
#define _MxStopWatch_h
|
|
|
|
#include "assert.h"
|
|
|
|
#include <limits.h> // ULONG_MAX
|
|
#include <math.h>
|
|
#include <windows.h>
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// MxStopWatch
|
|
//
|
|
// NOTE: MxStopWatch measures elapsed (wall clock) time.
|
|
//
|
|
|
|
#define HUGE_VAL_IMMEDIATE 1.7976931348623157e+308
|
|
|
|
// SIZE 0x18
|
|
class MxStopWatch {
|
|
public:
|
|
MxStopWatch();
|
|
~MxStopWatch() {}
|
|
|
|
void Start();
|
|
void Stop();
|
|
void Reset();
|
|
|
|
double ElapsedSeconds() const;
|
|
|
|
protected:
|
|
unsigned long TicksPerSeconds() const;
|
|
|
|
private:
|
|
LARGE_INTEGER m_startTick; // 0x00
|
|
// ??? when we provide LARGE_INTEGER arithmetic, use a
|
|
// LARGE_INTEGER m_elapsedTicks rather than m_elapsedSeconds
|
|
double m_elapsedSeconds; // 0x0c
|
|
unsigned long m_ticksPerSeconds; // 0x14
|
|
};
|
|
|
|
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_IMMEDIATE;
|
|
}
|
|
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;
|
|
}
|
|
|
|
// SYNTHETIC: LEGO1 0x100a6fc0
|
|
// MxStopWatch::~MxStopWatch
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// MxFrequencyMeter
|
|
//
|
|
|
|
// SIZE 0x20
|
|
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; // 0x00
|
|
MxStopWatch m_stopWatch; // 0x08
|
|
};
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//
|
|
// 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();
|
|
}
|
|
|
|
// SYNTHETIC: LEGO1 0x100abd10
|
|
// MxFrequencyMeter::~MxFrequencyMeter
|
|
|
|
#endif /* _MxStopWatch_h */
|