further refactorization of TimingSegments (use more templates!)
This commit is contained in:
@@ -307,6 +307,35 @@ inline int BeatToNoteRowNotRounded( float fBeatNum ) { return (int)( fBeatNum
|
|||||||
* @return the beat. */
|
* @return the beat. */
|
||||||
inline float NoteRowToBeat( int iRow ) { return iRow / (float)ROWS_PER_BEAT; }
|
inline float NoteRowToBeat( int iRow ) { return iRow / (float)ROWS_PER_BEAT; }
|
||||||
|
|
||||||
|
// These functions can be useful for function templates,
|
||||||
|
// where both rows and beats can be specified.
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Convert the note row to note row (returns itself).
|
||||||
|
* @param row the row to convert.
|
||||||
|
*/
|
||||||
|
static inline int ToNoteRow(int row) { return row; }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Convert the beat to note row.
|
||||||
|
* @param beat the beat to convert.
|
||||||
|
*/
|
||||||
|
static inline int ToNoteRow(float beat) { return BeatToNoteRow(beat); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Convert the note row to beat.
|
||||||
|
* @param row the row to convert.
|
||||||
|
*/
|
||||||
|
static inline float ToBeat(int row) { return NoteRowToBeat(row); }
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Convert the beat row to beat (return itself).
|
||||||
|
* @param beat the beat to convert.
|
||||||
|
*/
|
||||||
|
static inline float ToBeat(float beat) { return beat; }
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+23
-99
@@ -1,49 +1,40 @@
|
|||||||
#include "TimingSegments.h"
|
#include "TimingSegments.h"
|
||||||
|
|
||||||
TimingSegment::TimingSegment() :
|
#define LTCOMPARE(x) if(this->x < other.x) return true; if(this->x > other.x) return false;
|
||||||
startingRow(-1) {}
|
|
||||||
|
|
||||||
TimingSegment::TimingSegment(int s) :
|
BaseTimingSegment::~BaseTimingSegment() {}
|
||||||
startingRow(s) {}
|
|
||||||
|
|
||||||
TimingSegment::TimingSegment(float s) :
|
|
||||||
startingRow(BeatToNoteRow(s)) {}
|
|
||||||
|
|
||||||
TimingSegment::~TimingSegment() {}
|
void BaseTimingSegment::SetRow(const int s)
|
||||||
|
|
||||||
void TimingSegment::SetRow(const int s)
|
|
||||||
{
|
{
|
||||||
this->startingRow = s;
|
this->startingRow = s;
|
||||||
}
|
}
|
||||||
void TimingSegment::SetBeat(const float s)
|
|
||||||
|
void BaseTimingSegment::SetBeat(const float s)
|
||||||
{
|
{
|
||||||
this->startingRow = BeatToNoteRow(s);
|
SetRow(BeatToNoteRow(s));
|
||||||
}
|
}
|
||||||
|
|
||||||
int TimingSegment::GetRow() const
|
int BaseTimingSegment::GetRow() const
|
||||||
{
|
{
|
||||||
return this->startingRow;
|
return this->startingRow;
|
||||||
}
|
}
|
||||||
|
|
||||||
float TimingSegment::GetBeat() const
|
float BaseTimingSegment::GetBeat() const
|
||||||
{
|
{
|
||||||
return NoteRowToBeat(this->startingRow);
|
return NoteRowToBeat(GetRow());
|
||||||
}
|
}
|
||||||
|
|
||||||
FakeSegment::FakeSegment():
|
template <class DerivedSegment>
|
||||||
TimingSegment(), lengthBeats(-1) {}
|
bool TimingSegment<DerivedSegment>::operator<( const DerivedSegment &other ) const
|
||||||
|
{
|
||||||
|
LTCOMPARE(GetRow());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
FakeSegment::FakeSegment( int s, int r ):
|
|
||||||
TimingSegment(max(0, s)), lengthBeats(NoteRowToBeat(max(0, r))) {}
|
|
||||||
|
|
||||||
FakeSegment::FakeSegment( int s, float b ):
|
/* ======================================================
|
||||||
TimingSegment(max(0, s)), lengthBeats(max(0, b)) {}
|
Here comes the actual timing segments implementation!! */
|
||||||
|
|
||||||
FakeSegment::FakeSegment( float s, int r ):
|
|
||||||
TimingSegment(max(0, s)), lengthBeats(max(0, NoteRowToBeat(r))) {}
|
|
||||||
|
|
||||||
FakeSegment::FakeSegment( float s, float b ):
|
|
||||||
TimingSegment(max(0, s)), lengthBeats(max(0, b)) {}
|
|
||||||
|
|
||||||
float FakeSegment::GetLength() const
|
float FakeSegment::GetLength() const
|
||||||
{
|
{
|
||||||
@@ -55,54 +46,14 @@ void FakeSegment::SetLength(const float b)
|
|||||||
this->lengthBeats = b;
|
this->lengthBeats = b;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FakeSegment::operator==( const FakeSegment &other ) const
|
|
||||||
{
|
|
||||||
if (this->GetRow() != other.GetRow()) return false;
|
|
||||||
if (this->GetLength() != other.GetLength()) return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool FakeSegment::operator!=( const FakeSegment &other ) const
|
|
||||||
{
|
|
||||||
return !this->operator==(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool FakeSegment::operator<( const FakeSegment &other ) const
|
bool FakeSegment::operator<( const FakeSegment &other ) const
|
||||||
{
|
{
|
||||||
if (this->GetRow() < other.GetRow()) return true;
|
LTCOMPARE(GetRow());
|
||||||
if (this->GetRow() > other.GetRow()) return false;
|
LTCOMPARE(GetLength());
|
||||||
return this->GetLength() < other.GetLength();
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool FakeSegment::operator<=( const FakeSegment &other ) const
|
|
||||||
{
|
|
||||||
return ( this->operator<(other) || this->operator==(other) );
|
|
||||||
}
|
|
||||||
|
|
||||||
bool FakeSegment::operator>( const FakeSegment &other ) const
|
|
||||||
{
|
|
||||||
return !this->operator<=(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool FakeSegment::operator>=( const FakeSegment &other ) const
|
|
||||||
{
|
|
||||||
return !this->operator<(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
TickcountSegment::TickcountSegment() :
|
|
||||||
TimingSegment(), ticks(4) {}
|
|
||||||
|
|
||||||
TickcountSegment::TickcountSegment(int s) :
|
|
||||||
TimingSegment(s), ticks(4) {}
|
|
||||||
|
|
||||||
TickcountSegment::TickcountSegment(float s) :
|
|
||||||
TimingSegment(s), ticks(4) {}
|
|
||||||
|
|
||||||
TickcountSegment::TickcountSegment( int s, int t ):
|
|
||||||
TimingSegment(max(0, s)), ticks(max(0, t)) {}
|
|
||||||
|
|
||||||
TickcountSegment::TickcountSegment( float s, int t ):
|
|
||||||
TimingSegment(max(0, s)), ticks(max(0, t)) {}
|
|
||||||
|
|
||||||
int TickcountSegment::GetTicks() const
|
int TickcountSegment::GetTicks() const
|
||||||
{
|
{
|
||||||
@@ -114,38 +65,11 @@ void TickcountSegment::SetTicks(const int i)
|
|||||||
this->ticks = i;
|
this->ticks = i;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool TickcountSegment::operator==( const TickcountSegment &other ) const
|
|
||||||
{
|
|
||||||
if (this->GetRow() != other.GetRow()) return false;
|
|
||||||
if (this->GetTicks() != other.GetTicks()) return false;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
bool TickcountSegment::operator!=( const TickcountSegment &other ) const
|
|
||||||
{
|
|
||||||
return !this->operator==(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool TickcountSegment::operator<( const TickcountSegment &other ) const
|
bool TickcountSegment::operator<( const TickcountSegment &other ) const
|
||||||
{
|
{
|
||||||
if (this->GetRow() < other.GetRow()) return true;
|
LTCOMPARE(GetRow());
|
||||||
if (this->GetRow() > other.GetRow()) return false;
|
LTCOMPARE(GetTicks());
|
||||||
return this->GetTicks() < other.GetTicks();
|
return false;
|
||||||
}
|
|
||||||
|
|
||||||
bool TickcountSegment::operator<=( const TickcountSegment &other ) const
|
|
||||||
{
|
|
||||||
return ( this->operator<(other) || this->operator==(other) );
|
|
||||||
}
|
|
||||||
|
|
||||||
bool TickcountSegment::operator>( const TickcountSegment &other ) const
|
|
||||||
{
|
|
||||||
return !this->operator<=(other);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool TickcountSegment::operator>=( const TickcountSegment &other ) const
|
|
||||||
{
|
|
||||||
return !this->operator<(other);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
+108
-109
@@ -10,52 +10,116 @@
|
|||||||
#define COMPARE(x) if(x!=other.x) return false;
|
#define COMPARE(x) if(x!=other.x) return false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief The general TimingSegment for all of the changing glory.
|
* @brief The base timing segment for all of the changing glory.
|
||||||
*
|
*
|
||||||
* Each segment is supposed to derive from this one. */
|
* Do not derive from this class!! Instead, derive from TimingSegment<DerivedClass>!
|
||||||
struct TimingSegment
|
*/
|
||||||
|
struct BaseTimingSegment
|
||||||
{
|
{
|
||||||
/** @brief Set up a TimingSegment with default values. */
|
|
||||||
TimingSegment();
|
|
||||||
/**
|
|
||||||
* @brief Set up a TimingSegment with specified values.
|
|
||||||
* @param s the starting row. */
|
|
||||||
TimingSegment(int s);
|
|
||||||
/**
|
|
||||||
* @brief Set up a TimingSegment with specified values.
|
|
||||||
* @param s the starting beat. */
|
|
||||||
TimingSegment(float s);
|
|
||||||
|
|
||||||
virtual ~TimingSegment();
|
/** @brief Set up a BaseTimingSegment with default values. */
|
||||||
|
BaseTimingSegment():
|
||||||
|
startingRow(-1) {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the starting row of the TimingSegment.
|
* @brief Set up a BaseTimingSegment with specified values.
|
||||||
|
* @param s the starting row / beat. */
|
||||||
|
template <typename StartType>
|
||||||
|
BaseTimingSegment(StartType s):
|
||||||
|
startingRow(ToNoteRow(s)) {};
|
||||||
|
|
||||||
|
virtual ~BaseTimingSegment();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Set the starting row of the BaseTimingSegment.
|
||||||
*
|
*
|
||||||
* This is virtual to allow other segments to implement validation
|
* This is virtual to allow other segments to implement validation
|
||||||
* as required by them.
|
* as required by them.
|
||||||
* @param s the supplied row. */
|
* @param s the supplied row. */
|
||||||
virtual void SetRow( const int s );
|
virtual void SetRow( const int s );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Set the starting beat of the TimingSegment.
|
* @brief Set the starting beat of the BaseTimingSegment.
|
||||||
*
|
*
|
||||||
* This is virtual to allow other segments to implement validation
|
|
||||||
* as required by them.
|
|
||||||
* @param s the supplied beat. */
|
* @param s the supplied beat. */
|
||||||
virtual void SetBeat( const float s );
|
void SetBeat( const float s );
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the starting row of the TimingSegment.
|
* @brief Get the starting row of the BaseTimingSegment.
|
||||||
* @return the starting row. */
|
* @return the starting row. */
|
||||||
int GetRow() const;
|
int GetRow() const;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the starting beat of the TimingSegment.
|
* @brief Get the starting beat of the BaseTimingSegment.
|
||||||
* @return the starting beat. */
|
* @return the starting beat. */
|
||||||
float GetBeat() const;
|
float GetBeat() const;
|
||||||
|
|
||||||
private:
|
protected:
|
||||||
/** @brief The row in which this segment activates. */
|
/** @brief The row in which this segment activates. */
|
||||||
int startingRow;
|
int startingRow;
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief The general TimingSegment for all of the changing glory.
|
||||||
|
*
|
||||||
|
* Each segment is supposed to derive from this one. */
|
||||||
|
template <class DerivedSegment>
|
||||||
|
struct TimingSegment: public BaseTimingSegment
|
||||||
|
{
|
||||||
|
|
||||||
|
TimingSegment(): BaseTimingSegment() {};
|
||||||
|
|
||||||
|
template <typename StartType>
|
||||||
|
TimingSegment(StartType s): BaseTimingSegment(s) {};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Compares two DrivedSegments to see if one is less than the other.
|
||||||
|
* @param other the other TimingSegments to compare to.
|
||||||
|
* @return the truth/falsehood of if the first is less than the second.
|
||||||
|
*
|
||||||
|
* This is virtual to allow other segments to implement comparison
|
||||||
|
* as required by them.
|
||||||
|
*/
|
||||||
|
virtual bool operator<( const DerivedSegment &other ) const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @brief Compares two DrivedSegments to see if they are equal to each other.
|
||||||
|
* @param other the other FakeSegment to compare to.
|
||||||
|
* @return the equality of the two segments.
|
||||||
|
*
|
||||||
|
* This is virtual to allow other segments to implement comparison
|
||||||
|
* as required by them.
|
||||||
|
*/
|
||||||
|
bool operator==( const DerivedSegment &other ) const { return !this->operator<(other) && !other.operator<(*static_cast<const DerivedSegment *>(this)); };
|
||||||
|
/**
|
||||||
|
* @brief Compares two DrivedSegments to see if they are not equal to each other.
|
||||||
|
* @param other the other DrivedSegments to compare to.
|
||||||
|
* @return the inequality of the two segments.
|
||||||
|
*/
|
||||||
|
bool operator!=( const DerivedSegment &other ) const { return !this->operator==(other); };
|
||||||
|
/**
|
||||||
|
* @brief Compares two DrivedSegments to see if one is less than or equal to the other.
|
||||||
|
* @param other the other DrivedSegments to compare to.
|
||||||
|
* @return the truth/falsehood of if the first is less or equal to than the second.
|
||||||
|
*/
|
||||||
|
bool operator<=( const DerivedSegment &other ) const { return !this->operator>(other); };
|
||||||
|
/**
|
||||||
|
* @brief Compares two DrivedSegments to see if one is greater than the other.
|
||||||
|
* @param other the other DrivedSegments to compare to.
|
||||||
|
* @return the truth/falsehood of if the first is greater than the second.
|
||||||
|
*/
|
||||||
|
bool operator>( const DerivedSegment &other ) const { return other.operator<(*static_cast<const DerivedSegment *>(this)); };
|
||||||
|
/**
|
||||||
|
* @brief Compares two DrivedSegments to see if one is greater than or equal to the other.
|
||||||
|
* @param other the other DrivedSegments to compare to.
|
||||||
|
* @return the truth/falsehood of if the first is greater than or equal to the second.
|
||||||
|
*/
|
||||||
|
bool operator>=( const DerivedSegment &other ) const { return !this->operator<(other); };
|
||||||
|
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Identifies when a whole region of arrows is to be ignored.
|
* @brief Identifies when a whole region of arrows is to be ignored.
|
||||||
*
|
*
|
||||||
@@ -67,38 +131,24 @@ private:
|
|||||||
* drawn normally.
|
* drawn normally.
|
||||||
*
|
*
|
||||||
* These were inspired by the Pump It Up series. */
|
* These were inspired by the Pump It Up series. */
|
||||||
struct FakeSegment : public TimingSegment
|
struct FakeSegment : public TimingSegment<FakeSegment>
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Create a simple Fake Segment with default values.
|
* @brief Create a simple Fake Segment with default values.
|
||||||
*
|
*
|
||||||
* It is best to override the values as soon as possible.
|
* It is best to override the values as soon as possible.
|
||||||
*/
|
*/
|
||||||
FakeSegment();
|
FakeSegment():
|
||||||
|
TimingSegment<FakeSegment>(), lengthBeats(-1) {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Create a Fake Segment with the specified values.
|
* @brief Create a Fake Segment with the specified values.
|
||||||
* @param s the starting row of this segment.
|
* @param s the starting row of this segment.
|
||||||
* @param r the number of rows this segment lasts.
|
* @param r the number of rows this segment lasts.
|
||||||
*/
|
*/
|
||||||
FakeSegment( int s, int r );
|
template <typename StartType, typename LengthType>
|
||||||
/**
|
FakeSegment( StartType s, LengthType r ):
|
||||||
* @brief Creates a Fake Segment with the specified values.
|
TimingSegment<FakeSegment>(max((StartType)0, s)), lengthBeats(ToBeat(max((LengthType)0, r))) {};
|
||||||
* @param s the starting row of this segment.
|
|
||||||
* @param b the number of beats this segment lasts.
|
|
||||||
*/
|
|
||||||
FakeSegment( int s, float b );
|
|
||||||
/**
|
|
||||||
* @brief Create a Fake Segment with the specified values.
|
|
||||||
* @param s the starting beat in this segment.
|
|
||||||
* @param r the number of rows this segment lasts.
|
|
||||||
*/
|
|
||||||
FakeSegment( float s, int r );
|
|
||||||
/**
|
|
||||||
* @brief Creates a Fake Segment with the specified values.
|
|
||||||
* @param s the starting beat of this segment.
|
|
||||||
* @param b the number of beats this segment lasts.
|
|
||||||
*/
|
|
||||||
FakeSegment( float s, float b );
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the length in beats of the FakeSegment.
|
* @brief Get the length in beats of the FakeSegment.
|
||||||
@@ -116,36 +166,13 @@ struct FakeSegment : public TimingSegment
|
|||||||
* @return the equality of the two segments.
|
* @return the equality of the two segments.
|
||||||
*/
|
*/
|
||||||
bool operator==( const FakeSegment &other ) const;
|
bool operator==( const FakeSegment &other ) const;
|
||||||
/**
|
|
||||||
* @brief Compares two FakeSegments to see if they are not equal to each other.
|
|
||||||
* @param other the other FakeSegment to compare to.
|
|
||||||
* @return the inequality of the two segments.
|
|
||||||
*/
|
|
||||||
bool operator!=( const FakeSegment &other ) const;
|
|
||||||
/**
|
/**
|
||||||
* @brief Compares two FakeSegments to see if one is less than the other.
|
* @brief Compares two FakeSegments to see if one is less than the other.
|
||||||
* @param other the other FakeSegment to compare to.
|
* @param other the other FakeSegment to compare to.
|
||||||
* @return the truth/falsehood of if the first is less than the second.
|
* @return the truth/falsehood of if the first is less than the second.
|
||||||
*/
|
*/
|
||||||
bool operator<( const FakeSegment &other ) const;
|
bool operator<( const FakeSegment &other ) const;
|
||||||
/**
|
|
||||||
* @brief Compares two FakeSegments to see if one is less than or equal to the other.
|
|
||||||
* @param other the other FakeSegment to compare to.
|
|
||||||
* @return the truth/falsehood of if the first is less or equal to than the second.
|
|
||||||
*/
|
|
||||||
bool operator<=( const FakeSegment &other ) const;
|
|
||||||
/**
|
|
||||||
* @brief Compares two FakeSegments to see if one is greater than the other.
|
|
||||||
* @param other the other FakeSegment to compare to.
|
|
||||||
* @return the truth/falsehood of if the first is greater than the second.
|
|
||||||
*/
|
|
||||||
bool operator>( const FakeSegment &other ) const;
|
|
||||||
/**
|
|
||||||
* @brief Compares two FakeSegments to see if one is greater than or equal to the other.
|
|
||||||
* @param other the other FakeSegment to compare to.
|
|
||||||
* @return the truth/falsehood of if the first is greater than or equal to the second.
|
|
||||||
*/
|
|
||||||
bool operator>=( const FakeSegment &other ) const;
|
|
||||||
private:
|
private:
|
||||||
/**
|
/**
|
||||||
* @brief The number of beats the FakeSegment is alive for.
|
* @brief The number of beats the FakeSegment is alive for.
|
||||||
@@ -161,34 +188,30 @@ private:
|
|||||||
* system used by various based video games. The number is used to
|
* system used by various based video games. The number is used to
|
||||||
* represent how many ticks can be counted in one beat.
|
* represent how many ticks can be counted in one beat.
|
||||||
*/
|
*/
|
||||||
struct TickcountSegment : public TimingSegment
|
struct TickcountSegment : public TimingSegment<TickcountSegment>
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @brief Creates a simple Tickcount Segment with default values.
|
* @brief Creates a simple Tickcount Segment with default values.
|
||||||
*
|
*
|
||||||
* It is best to override the values as soon as possible.
|
* It is best to override the values as soon as possible.
|
||||||
*/
|
*/
|
||||||
TickcountSegment();
|
TickcountSegment():
|
||||||
|
TimingSegment<TickcountSegment>(), ticks(4) {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Creates a TickcountSegment with specified values.
|
* @brief Creates a TickcountSegment with specified values.
|
||||||
* @param s the starting row. */
|
* @param s the starting row / beat. */
|
||||||
TickcountSegment(int s);
|
template <typename StartType>
|
||||||
|
TickcountSegment( StartType s ):
|
||||||
|
TimingSegment<TickcountSegment>(max((StartType)0, s)), ticks(4) {};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Creates a TickcountSegment with specified values.
|
* @brief Creates a TickcountSegment with specified values.
|
||||||
* @param s the starting beat. */
|
* @param s the starting row / beat.
|
||||||
TickcountSegment(float s);
|
* @param t the amount of ticks counted per beat. */
|
||||||
/**
|
template <typename StartType>
|
||||||
* @brief Creates a Tickcount Segment with the specified values.
|
TickcountSegment( StartType s, int t ):
|
||||||
* @param s the starting row.
|
TimingSegment<TickcountSegment>(max((StartType)0, s)), ticks(max(0, t)) {};
|
||||||
* @param t the amount of ticks counted per beat.
|
|
||||||
*/
|
|
||||||
TickcountSegment( int s, int t );
|
|
||||||
/**
|
|
||||||
* @brief Creates a Tickcount Segment with the specified values.
|
|
||||||
* @param s the starting beat.
|
|
||||||
* @param t the amount of ticks counted per beat.
|
|
||||||
*/
|
|
||||||
TickcountSegment( float s, int t );
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Get the number of ticks in this TickcountSegment.
|
* @brief Get the number of ticks in this TickcountSegment.
|
||||||
@@ -206,36 +229,12 @@ struct TickcountSegment : public TimingSegment
|
|||||||
* @return the equality of the two segments.
|
* @return the equality of the two segments.
|
||||||
*/
|
*/
|
||||||
bool operator==( const TickcountSegment &other ) const;
|
bool operator==( const TickcountSegment &other ) const;
|
||||||
/**
|
|
||||||
* @brief Compares two TickcountSegments to see if they are not equal to each other.
|
|
||||||
* @param other the other TickcountSegment to compare to.
|
|
||||||
* @return the inequality of the two segments.
|
|
||||||
*/
|
|
||||||
bool operator!=( const TickcountSegment &other ) const;
|
|
||||||
/**
|
/**
|
||||||
* @brief Compares two TickcountSegments to see if one is less than the other.
|
* @brief Compares two TickcountSegments to see if one is less than the other.
|
||||||
* @param other the other TickcountSegment to compare to.
|
* @param other the other TickcountSegment to compare to.
|
||||||
* @return the truth/falsehood of if the first is less than the second.
|
* @return the truth/falsehood of if the first is less than the second.
|
||||||
*/
|
*/
|
||||||
bool operator<( const TickcountSegment &other ) const;
|
bool operator<( const TickcountSegment &other ) const;
|
||||||
/**
|
|
||||||
* @brief Compares two TickcountSegments to see if one is less than or equal to the other.
|
|
||||||
* @param other the other TickcountSegment to compare to.
|
|
||||||
* @return the truth/falsehood of if the first is less or equal to than the second.
|
|
||||||
*/
|
|
||||||
bool operator<=( const TickcountSegment &other ) const;
|
|
||||||
/**
|
|
||||||
* @brief Compares two TickcountSegments to see if one is greater than the other.
|
|
||||||
* @param other the other TickcountSegment to compare to.
|
|
||||||
* @return the truth/falsehood of if the first is greater than the second.
|
|
||||||
*/
|
|
||||||
bool operator>( const TickcountSegment &other ) const;
|
|
||||||
/**
|
|
||||||
* @brief Compares two TickcountSegments to see if one is greater than or equal to the other.
|
|
||||||
* @param other the other TickcountSegment to compare to.
|
|
||||||
* @return the truth/falsehood of if the first is greater than or equal to the second.
|
|
||||||
*/
|
|
||||||
bool operator>=( const TickcountSegment &other ) const;
|
|
||||||
|
|
||||||
private:
|
private:
|
||||||
/**
|
/**
|
||||||
|
|||||||
Reference in New Issue
Block a user