mirror of
https://github.com/Armored-Dragon/overte.git
synced 2025-03-11 16:13:16 +01:00
67 lines
1.7 KiB
C++
67 lines
1.7 KiB
C++
//
|
|
// SimpleMovingAverage.h
|
|
// libraries/shared/src
|
|
//
|
|
// Created by Stephen Birarda on 4/18/13.
|
|
// Copyright 2013 High Fidelity, Inc.
|
|
//
|
|
// Replaces Brad Hefta-Gaub's CounterStats class (RIP)
|
|
//
|
|
// Distributed under the Apache License, Version 2.0.
|
|
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
|
//
|
|
|
|
#ifndef hifi_SimpleMovingAverage_h
|
|
#define hifi_SimpleMovingAverage_h
|
|
|
|
#include <stdint.h>
|
|
|
|
class SimpleMovingAverage {
|
|
public:
|
|
SimpleMovingAverage(int numSamplesToAverage = 100);
|
|
|
|
int updateAverage(float sample);
|
|
void reset();
|
|
|
|
int getSampleCount() const { return _numSamples; };
|
|
float getAverage() const { return _average; };
|
|
float getEventDeltaAverage() const; // returned in seconds
|
|
float getAverageSampleValuePerSecond() const { return _average * (1.0f / getEventDeltaAverage()); }
|
|
|
|
uint64_t getUsecsSinceLastEvent() const;
|
|
|
|
private:
|
|
int _numSamples;
|
|
uint64_t _lastEventTimestamp;
|
|
float _average;
|
|
float _eventDeltaAverage;
|
|
|
|
float WEIGHTING;
|
|
float ONE_MINUS_WEIGHTING;
|
|
};
|
|
|
|
|
|
template <class T, int MAX_NUM_SAMPLES> class MovingAverage {
|
|
public:
|
|
const float WEIGHTING = 1.0f / (float)MAX_NUM_SAMPLES;
|
|
const float ONE_MINUS_WEIGHTING = 1.0f - WEIGHTING;
|
|
int numSamples{ 0 };
|
|
T average;
|
|
|
|
void clear() {
|
|
numSamples = 0;
|
|
}
|
|
|
|
bool isAverageValid() const { return (numSamples > 0); }
|
|
|
|
void addSample(T sample) {
|
|
if (numSamples > 0) {
|
|
average = (sample * WEIGHTING) + (average * ONE_MINUS_WEIGHTING);
|
|
} else {
|
|
average = sample;
|
|
}
|
|
numSamples++;
|
|
}
|
|
};
|
|
|
|
#endif // hifi_SimpleMovingAverage_h
|