[timingdata] merge!
This commit is contained in:
@@ -1231,7 +1231,7 @@ Enter a new Time Signature denominator value.=Enter the note value that represen
|
|||||||
Enter a new Tickcount value.=Enter a new Tickcount value.
|
Enter a new Tickcount value.=Enter a new Tickcount value.
|
||||||
Enter a new Combo value.=Enter a new Combo value.
|
Enter a new Combo value.=Enter a new Combo value.
|
||||||
Enter a new Label value.=Enter a name for this section of the chart.
|
Enter a new Label value.=Enter a name for this section of the chart.
|
||||||
Enter a new Warp value.=Enter the beat you will warp to when you reach this point.
|
Enter a new Warp value.=Enter the number of beats you will warp over.
|
||||||
Enter a new Speed percent value.=Enter the ratio for speed scrolling.\n\n1 is the default scroll.
|
Enter a new Speed percent value.=Enter the ratio for speed scrolling.\n\n1 is the default scroll.
|
||||||
Enter a new Speed wait value.=Enter how long in seconds/beats it takes to change.\n\n0 is instant.
|
Enter a new Speed wait value.=Enter how long in seconds/beats it takes to change.\n\n0 is instant.
|
||||||
Enter a new Speed mode value.=Enter how this segment is handled.\n\nType "0" for beats, "1" for seconds.
|
Enter a new Speed mode value.=Enter how this segment is handled.\n\nType "0" for beats, "1" for seconds.
|
||||||
|
|||||||
+5
-2
@@ -2763,8 +2763,11 @@ void ScreenEdit::HandleScreenMessage( const ScreenMessage SM )
|
|||||||
else if ( SM == SM_BackFromWarpChange )
|
else if ( SM == SM_BackFromWarpChange )
|
||||||
{
|
{
|
||||||
float fWarp = StringToFloat( ScreenTextEntry::s_sLastAnswer );
|
float fWarp = StringToFloat( ScreenTextEntry::s_sLastAnswer );
|
||||||
GetAppropriateTiming().SetWarpAtBeat( GetBeat(), fWarp );
|
if( fWarp >= 0 ) // allow 0 to kill a warp.
|
||||||
SetDirty( true );
|
{
|
||||||
|
GetAppropriateTiming().SetWarpAtBeat( GetBeat(), fWarp );
|
||||||
|
SetDirty( true );
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else if( SM == SM_BackFromSpeedPercentChange )
|
else if( SM == SM_BackFromSpeedPercentChange )
|
||||||
{
|
{
|
||||||
|
|||||||
+8
-8
@@ -328,8 +328,8 @@ struct WarpSegment
|
|||||||
* @param s the starting row of this segment.
|
* @param s the starting row of this segment.
|
||||||
* @param r the number of rows to jump ahead.
|
* @param r the number of rows to jump ahead.
|
||||||
*/
|
*/
|
||||||
WarpSegment( int s, int r ): m_iStartRow(max(0, (s < r ? s : r))),
|
WarpSegment( int s, int r ): m_iStartRow(s),
|
||||||
m_fLengthBeats(max(0, NoteRowToBeat((r > s ? r : s)))) {}
|
m_fLengthBeats(NoteRowToBeat(r)) {}
|
||||||
/**
|
/**
|
||||||
* @brief Creates a Warp Segment with the specified starting row and beat to warp to.
|
* @brief Creates a Warp Segment with the specified starting row and beat to warp to.
|
||||||
* @param s the starting row of this segment.
|
* @param s the starting row of this segment.
|
||||||
@@ -351,8 +351,8 @@ struct WarpSegment
|
|||||||
* @param b the number of beats to jump ahead.
|
* @param b the number of beats to jump ahead.
|
||||||
*/
|
*/
|
||||||
WarpSegment( float s, float b ):
|
WarpSegment( float s, float b ):
|
||||||
m_iStartRow(max(0, BeatToNoteRow((s < b ? s : b)))),
|
m_iStartRow(BeatToNoteRow(s)),
|
||||||
m_fLengthBeats(max(0, (b > s ? b : s))) {}
|
m_fLengthBeats(b) {}
|
||||||
/**
|
/**
|
||||||
* @brief The row in which the WarpSegment activates.
|
* @brief The row in which the WarpSegment activates.
|
||||||
*/
|
*/
|
||||||
@@ -801,8 +801,8 @@ struct FakeSegment
|
|||||||
* @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 ): m_iStartRow(max(0, (s < r ? s : r))),
|
FakeSegment( int s, int r ): m_iStartRow(s),
|
||||||
m_fLengthBeats(max(0, NoteRowToBeat((r > s ? r : s)))) {}
|
m_fLengthBeats(NoteRowToBeat(r)) {}
|
||||||
/**
|
/**
|
||||||
* @brief Creates a Fake Segment with the specified values.
|
* @brief Creates a Fake Segment with the specified values.
|
||||||
* @param s the starting row of this segment.
|
* @param s the starting row of this segment.
|
||||||
@@ -824,8 +824,8 @@ struct FakeSegment
|
|||||||
* @param b the number of beats this segment lasts.
|
* @param b the number of beats this segment lasts.
|
||||||
*/
|
*/
|
||||||
FakeSegment( float s, float b ):
|
FakeSegment( float s, float b ):
|
||||||
m_iStartRow(max(0, BeatToNoteRow((s < b ? s : b)))),
|
m_iStartRow(BeatToNoteRow(s)),
|
||||||
m_fLengthBeats(max(0, (b > s ? b : s))) {}
|
m_fLengthBeats(b) {}
|
||||||
/**
|
/**
|
||||||
* @brief The row in which the FakeSegment activates.
|
* @brief The row in which the FakeSegment activates.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user