f57c71bd23
Since the EPSILON variable in the header file was declared but not assigned any value, it could lead to undefined behavior or calculation errors when the variable is used without initialization. This ensures a consistent value is always used and is also defined at compile time for further safety.
293 lines
8.1 KiB
C++
293 lines
8.1 KiB
C++
#include "global.h"
|
|
#include "TimingSegments.h"
|
|
#include "EnumHelper.h"
|
|
|
|
#include <vector>
|
|
|
|
static const char *TimingSegmentTypeNames[] = {
|
|
"BPM",
|
|
"Stop",
|
|
"Delay",
|
|
"Time Sig",
|
|
"Warp",
|
|
"Label",
|
|
"Tickcount",
|
|
"Combo",
|
|
"Speed",
|
|
"Scroll",
|
|
"Fake"
|
|
};
|
|
XToString( TimingSegmentType );
|
|
|
|
#define LTCOMPARE(x) if(this->x < other.x) return true; if(this->x > other.x) return false;
|
|
|
|
void TimingSegment::Scale( int start, int length, int newLength )
|
|
{
|
|
SetRow( ScalePosition( start, length, newLength, this->GetRow() ) );
|
|
}
|
|
|
|
void TimingSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\tTimingSegment(%d [%f])", GetRow(), GetBeat() );
|
|
}
|
|
|
|
void BPMSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %f)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetBPM()
|
|
);
|
|
}
|
|
|
|
void StopSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %f)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetPause()
|
|
);
|
|
}
|
|
|
|
void DelaySegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %f)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetPause()
|
|
);
|
|
}
|
|
|
|
void TimeSignatureSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %d/%d)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetNum(), GetDen()
|
|
);
|
|
}
|
|
|
|
void WarpSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %d [%f])",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetLengthRows(), GetLengthBeats()
|
|
);
|
|
}
|
|
|
|
void LabelSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %s)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetLabel().c_str()
|
|
);
|
|
}
|
|
|
|
void TickcountSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %d)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetTicks()
|
|
);
|
|
}
|
|
|
|
void ComboSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %d, %d)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetCombo(), GetMissCombo()
|
|
);
|
|
}
|
|
|
|
void SpeedSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %f, %f, %d)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetRatio(), GetDelay(), GetUnit()
|
|
);
|
|
}
|
|
|
|
void ScrollSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %f)",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetRatio()
|
|
);
|
|
}
|
|
|
|
void FakeSegment::DebugPrint() const
|
|
{
|
|
LOG->Trace( "\t%s(%d [%f], %d [%f])",
|
|
TimingSegmentTypeToString(GetType()).c_str(),
|
|
GetRow(), GetBeat(), GetLengthRows(), GetLengthBeats()
|
|
);
|
|
}
|
|
|
|
RString FakeSegment::ToString(int dec) const
|
|
{
|
|
RString str = "%.0" + std::to_string(dec)
|
|
+ "f=%.0" + std::to_string(dec) + "f";
|
|
return ssprintf(str.c_str(), GetBeat(), GetLength());
|
|
}
|
|
|
|
void FakeSegment::Scale( int start, int length, int newLength )
|
|
{
|
|
float startBeat = GetBeat();
|
|
float endBeat = startBeat + GetLength();
|
|
float newStartBeat = ScalePosition( NoteRowToBeat(start), NoteRowToBeat(length), NoteRowToBeat(newLength), startBeat );
|
|
float newEndBeat = ScalePosition( NoteRowToBeat(start), NoteRowToBeat(length), NoteRowToBeat(newLength), endBeat );
|
|
SetLength( newEndBeat - newStartBeat );
|
|
TimingSegment::Scale( start, length, newLength );
|
|
}
|
|
|
|
RString WarpSegment::ToString(int dec) const
|
|
{
|
|
RString str = "%.0" + std::to_string(dec)
|
|
+ "f=%.0" + std::to_string(dec) + "f";
|
|
return ssprintf(str.c_str(), GetBeat(), GetLength());
|
|
}
|
|
|
|
void WarpSegment::Scale( int start, int length, int newLength )
|
|
{
|
|
// XXX: this function is duplicated, there should be a better way
|
|
float startBeat = GetBeat();
|
|
float endBeat = startBeat + GetLength();
|
|
float newStartBeat = ScalePosition( NoteRowToBeat(start), NoteRowToBeat(length), NoteRowToBeat(newLength), startBeat );
|
|
float newEndBeat = ScalePosition( NoteRowToBeat(start), NoteRowToBeat(length), NoteRowToBeat(newLength), endBeat );
|
|
SetLength( newEndBeat - newStartBeat );
|
|
TimingSegment::Scale( start, length, newLength );
|
|
}
|
|
|
|
RString TickcountSegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec) + "f=%i";
|
|
return ssprintf(str.c_str(), GetBeat(), GetTicks());
|
|
}
|
|
RString ComboSegment::ToString(int dec) const
|
|
{
|
|
RString str = "%.0" + std::to_string(dec) + "f=%i";
|
|
if (GetCombo() == GetMissCombo())
|
|
{
|
|
return ssprintf(str.c_str(), GetBeat(), GetCombo());
|
|
}
|
|
str += "=%i";
|
|
return ssprintf(str.c_str(), GetBeat(), GetCombo(), GetMissCombo());
|
|
}
|
|
|
|
std::vector<float> ComboSegment::GetValues() const
|
|
{
|
|
std::vector<float> ret;
|
|
ret.push_back(GetCombo());
|
|
ret.push_back(GetMissCombo());
|
|
return ret;
|
|
}
|
|
|
|
RString LabelSegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec) + "f=%s";
|
|
return ssprintf(str.c_str(), GetBeat(), GetLabel().c_str());
|
|
}
|
|
|
|
RString BPMSegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec)
|
|
+ "f=%.0" + std::to_string(dec) + "f";
|
|
return ssprintf(str.c_str(), GetBeat(), GetBPM());
|
|
}
|
|
|
|
RString TimeSignatureSegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec) + "f=%i=%i";
|
|
return ssprintf(str.c_str(), GetBeat(), GetNum(), GetDen());
|
|
}
|
|
|
|
std::vector<float> TimeSignatureSegment::GetValues() const
|
|
{
|
|
std::vector<float> ret;
|
|
ret.push_back(GetNum());
|
|
ret.push_back(GetDen());
|
|
return ret;
|
|
}
|
|
|
|
RString SpeedSegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec)
|
|
+ "f=%.0" + std::to_string(dec) + "f=%.0"
|
|
+ std::to_string(dec) + "f=%u";
|
|
return ssprintf(str.c_str(), GetBeat(), GetRatio(),
|
|
GetDelay(), static_cast<unsigned int>(GetUnit()));
|
|
}
|
|
|
|
std::vector<float> SpeedSegment::GetValues() const
|
|
{
|
|
std::vector<float> ret;
|
|
ret.push_back(GetRatio());
|
|
ret.push_back(GetDelay());
|
|
ret.push_back(GetUnit());
|
|
return ret;
|
|
}
|
|
|
|
void SpeedSegment::Scale( int start, int oldLength, int newLength )
|
|
{
|
|
if( GetUnit() == 0 )
|
|
{
|
|
// XXX: this function is duplicated, there should be a better way
|
|
float startBeat = GetBeat();
|
|
float endBeat = startBeat + GetDelay();
|
|
float newStartBeat = ScalePosition(NoteRowToBeat(start),
|
|
NoteRowToBeat(oldLength),
|
|
NoteRowToBeat(newLength),
|
|
startBeat);
|
|
float newEndBeat = ScalePosition(NoteRowToBeat(start),
|
|
NoteRowToBeat(oldLength),
|
|
NoteRowToBeat(newLength),
|
|
endBeat);
|
|
SetDelay( newEndBeat - newStartBeat );
|
|
}
|
|
TimingSegment::Scale( start, oldLength, newLength );
|
|
}
|
|
|
|
RString ScrollSegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec)
|
|
+ "f=%.0" + std::to_string(dec) + "f";
|
|
return ssprintf(str.c_str(), GetBeat(), GetRatio());
|
|
}
|
|
|
|
RString StopSegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec)
|
|
+ "f=%.0" + std::to_string(dec) + "f";
|
|
return ssprintf(str.c_str(), GetBeat(), GetPause());
|
|
}
|
|
|
|
RString DelaySegment::ToString(int dec) const
|
|
{
|
|
const RString str = "%.0" + std::to_string(dec)
|
|
+ "f=%.0" + std::to_string(dec) + "f";
|
|
return ssprintf(str.c_str(), GetBeat(), GetPause());
|
|
}
|
|
|
|
/**
|
|
* @file
|
|
* @author Jason Felds (c) 2011
|
|
* @section LICENSE
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|