mirror of https://github.com/PrimeDecomp/prime.git
43 lines
895 B
C++
43 lines
895 B
C++
#ifndef _TAVERAGE
|
|
#define _TAVERAGE
|
|
|
|
#include "types.h"
|
|
|
|
#include "rstl/optional_object.hpp"
|
|
#include "rstl/vector.hpp"
|
|
|
|
template < typename T >
|
|
T GetAverageValue(const T* ptr, int count); // TODO
|
|
|
|
template < typename T >
|
|
class TAverage : rstl::vector< T > {
|
|
public:
|
|
TAverage() {}
|
|
TAverage(int capacity, const T& value);
|
|
|
|
void AddValue(const T& value);
|
|
rstl::optional_object< T > GetAverage() const {
|
|
if (this->empty()) {
|
|
return rstl::optional_object_null();
|
|
} else {
|
|
return GetAverageValue(this->data(), this->size());
|
|
}
|
|
}
|
|
};
|
|
|
|
template < typename T >
|
|
TAverage< T >::TAverage(int capacity, const T& value) {
|
|
this->resize(capacity, value);
|
|
}
|
|
|
|
template < typename T >
|
|
void TAverage< T >::AddValue(const T& value) {
|
|
if (this->size() == this->capacity()) {
|
|
// TODO ?
|
|
this->x4_count -= 1;
|
|
}
|
|
this->insert(this->begin(), value);
|
|
}
|
|
|
|
#endif // _TAVERAGE
|