add twister transform

reorganize transform options
This commit is contained in:
Chris Danford
2003-11-07 08:45:21 +00:00
parent 768b2e5846
commit 3ca893b0ca
11 changed files with 125 additions and 124 deletions
+8 -2
View File
@@ -87,15 +87,21 @@ public:
{
int iNum = 0;
for( int t=0; t<m_iNumTracks; t++ )
if( GetTapNote(t, index) == TAP_TAP )
{
TapNote tn = GetTapNote(t, index);
if( tn == TAP_TAP || tn == TAP_HOLD_HEAD )
iNum++;
}
return iNum;
}
inline int GetFirstTrackWithTap( int index ) const
{
for( int t=0; t<m_iNumTracks; t++ )
if( GetTapNote(t, index) == TAP_TAP )
{
TapNote tn = GetTapNote(t, index);
if( tn == TAP_TAP || tn == TAP_HOLD_HEAD )
return t;
}
return -1;
}
inline bool IsThereATapAtRow( int index ) const