Files
itgmania212121/stepmania/src/NotesWriterDWI.cpp
T

264 lines
7.5 KiB
C++
Raw Normal View History

#include "stdafx.h"
#include "NotesWriterDWI.h"
#include "NoteTypes.h"
#include "NoteData.h"
#include "RageUtil.h"
#include "RageLog.h"
char NotesWriterDWI::NotesToDWIChar( bool bCol1, bool bCol2, bool bCol3, bool bCol4, bool bCol5, bool bCol6 )
{
struct DWICharLookup {
char c;
bool bCol[6];
} const lookup[] = {
{ '0', 0, 0, 0, 0, 0, 0 },
{ '1', 0, 1, 1, 0, 0, 0 },
{ '2', 0, 0, 1, 0, 0, 0 },
{ '3', 0, 0, 1, 0, 1, 0 },
{ '4', 0, 1, 0, 0, 0, 0 },
{ '6', 0, 0, 0, 0, 1, 0 },
{ '7', 0, 1, 0, 1, 0, 0 },
{ '8', 0, 0, 0, 1, 0, 0 },
{ '9', 0, 0, 0, 1, 1, 0 },
{ 'A', 0, 0, 1, 1, 0, 0 },
{ 'B', 0, 1, 0, 0, 1, 0 },
{ 'C', 0, 1, 0, 0, 0, 0 },
{ 'D', 0, 0, 0, 0, 1, 0 },
{ 'E', 1, 1, 0, 0, 0, 0 },
{ 'F', 0, 1, 1, 0, 0, 0 },
{ 'G', 0, 1, 0, 1, 0, 0 },
{ 'H', 0, 1, 0, 0, 0, 1 },
{ 'I', 1, 0, 0, 0, 1, 0 },
{ 'J', 0, 0, 1, 0, 1, 0 },
{ 'K', 0, 0, 0, 1, 1, 0 },
{ 'L', 0, 0, 0, 0, 1, 1 },
{ 'M', 0, 1, 0, 0, 1, 0 },
};
const int iNumLookups = sizeof(lookup) / sizeof(*lookup);
for( int i=0; i<iNumLookups; i++ )
{
const DWICharLookup& l = lookup[i];
if( l.bCol[0]==bCol1 && l.bCol[1]==bCol2 && l.bCol[2]==bCol3 && l.bCol[3]==bCol4 && l.bCol[4]==bCol5 && l.bCol[5]==bCol6 )
return l.c;
}
ASSERT(0);
return '0';
}
char NotesWriterDWI::NotesToDWIChar( bool bCol1, bool bCol2, bool bCol3, bool bCol4 )
{
return NotesToDWIChar( 0, bCol1, bCol2, bCol3, bCol4, 0 );
}
CString NotesWriterDWI::NotesToDWIString( char cNoteCol1, char cNoteCol2, char cNoteCol3, char cNoteCol4, char cNoteCol5, char cNoteCol6 )
{
char cShow = NotesToDWIChar( cNoteCol1!='0', cNoteCol2!='0', cNoteCol3!='0', cNoteCol4!='0', cNoteCol5!='0', cNoteCol6!='0' );
char cHold = NotesToDWIChar( cNoteCol1=='2', cNoteCol2=='2', cNoteCol3=='2', cNoteCol4=='2', cNoteCol5=='2', cNoteCol6=='2' );
if( cHold != '0' )
return ssprintf( "%c!%c", cShow, cHold );
else
return cShow;
}
CString NotesWriterDWI::NotesToDWIString( char cNoteCol1, char cNoteCol2, char cNoteCol3, char cNoteCol4 )
{
return NotesToDWIString( '0', cNoteCol1, cNoteCol2, cNoteCol3, cNoteCol4, '0' );
}
2002-09-09 02:23:03 +00:00
void NotesWriterDWI::WriteDWINotesField( FILE* fp, const Notes &out, int start )
{
NoteData notedata;
out.GetNoteData( &notedata );
notedata.ConvertHoldNotesTo2sAnd3s();
const int iLastMeasure = int( notedata.GetLastBeat()/BEATS_PER_MEASURE );
2002-09-09 02:23:03 +00:00
for( int m=0; m<=iLastMeasure; m++ ) // foreach measure
{
2002-09-09 02:23:03 +00:00
NoteType nt = notedata.GetSmallestNoteTypeForMeasure( m );
2002-09-09 02:23:03 +00:00
double fCurrentIncrementer;
switch( nt )
{
2002-09-09 02:23:03 +00:00
case NOTE_TYPE_4TH:
case NOTE_TYPE_8TH:
fCurrentIncrementer = 1.0/8 * BEATS_PER_MEASURE;
break;
case NOTE_TYPE_12TH:
2002-09-11 04:49:07 +00:00
case NOTE_TYPE_24TH:
2002-09-09 02:23:03 +00:00
fprintf( fp, "[" );
fCurrentIncrementer = 1.0/24 * BEATS_PER_MEASURE;
break;
case NOTE_TYPE_16TH:
fprintf( fp, "(" );
fCurrentIncrementer = 1.0/16 * BEATS_PER_MEASURE;
break;
default:
ASSERT(0);
// fall though
2002-09-11 04:49:07 +00:00
case NOTE_TYPE_32ND:
2002-09-09 02:23:03 +00:00
case NOTE_TYPE_INVALID:
2002-09-11 04:49:07 +00:00
fprintf( fp, "{" );
fCurrentIncrementer = 1.0/64 * BEATS_PER_MEASURE;
2002-09-09 02:23:03 +00:00
break;
}
2002-09-09 02:23:03 +00:00
double fFirstBeatInMeasure = m * BEATS_PER_MEASURE;
double fLastBeatInMeasure = (m+1) * BEATS_PER_MEASURE;
2002-09-11 04:49:07 +00:00
for( double b=fFirstBeatInMeasure; b<=fLastBeatInMeasure-1/64.0f; b+=fCurrentIncrementer ) // need the -0.0001 to account for rounding errors
2002-09-09 02:23:03 +00:00
{
int row = BeatToNoteRow( (float)b );
2002-09-09 02:23:03 +00:00
switch( out.m_NotesType )
{
2002-09-09 02:23:03 +00:00
case NOTES_TYPE_DANCE_SINGLE:
2002-09-12 08:37:12 +00:00
case NOTES_TYPE_DANCE_COUPLE:
2002-09-09 02:23:03 +00:00
case NOTES_TYPE_DANCE_DOUBLE:
2002-09-11 04:49:07 +00:00
fprintf( fp, NotesToDWIString(
notedata.m_TapNotes[start+0][row],
notedata.m_TapNotes[start+1][row],
notedata.m_TapNotes[start+2][row],
notedata.m_TapNotes[start+3][row] ) );
// Blank out the notes so we don't write them again if the incrementer is small
notedata.m_TapNotes[start+0][row] = '0';
notedata.m_TapNotes[start+1][row] = '0';
notedata.m_TapNotes[start+2][row] = '0';
notedata.m_TapNotes[start+3][row] = '0';
break;
2002-09-09 02:23:03 +00:00
case NOTES_TYPE_DANCE_SOLO:
2002-09-11 04:49:07 +00:00
fprintf( fp, NotesToDWIString(
notedata.m_TapNotes[0][row],
notedata.m_TapNotes[1][row],
notedata.m_TapNotes[2][row],
notedata.m_TapNotes[3][row],
notedata.m_TapNotes[4][row],
notedata.m_TapNotes[5][row] ) );
// Blank out the notes so we don't write them again if the incrementer is small
notedata.m_TapNotes[start+0][row] = '0';
notedata.m_TapNotes[start+1][row] = '0';
notedata.m_TapNotes[start+2][row] = '0';
notedata.m_TapNotes[start+3][row] = '0';
notedata.m_TapNotes[start+4][row] = '0';
notedata.m_TapNotes[start+5][row] = '0';
break;
2002-09-11 04:49:07 +00:00
default:
ASSERT(0); // not a type supported by DWI. We shouldn't have called in here if that's the case
}
}
2002-09-09 02:23:03 +00:00
switch( nt )
{
case NOTE_TYPE_4TH:
case NOTE_TYPE_8TH:
break;
case NOTE_TYPE_12TH:
2002-09-11 04:49:07 +00:00
case NOTE_TYPE_24TH:
2002-09-09 02:23:03 +00:00
fprintf( fp, "]" );
break;
case NOTE_TYPE_16TH:
fprintf( fp, ")" );
break;
default:
ASSERT(0);
// fall though
2002-09-11 04:49:07 +00:00
case NOTE_TYPE_32ND:
2002-09-09 02:23:03 +00:00
case NOTE_TYPE_INVALID:
2002-09-11 04:49:07 +00:00
fprintf( fp, "}" );
2002-09-09 02:23:03 +00:00
break;
}
fprintf( fp, "\n" );
}
}
2002-09-09 02:23:03 +00:00
bool NotesWriterDWI::WriteDWINotesTag( FILE* fp, const Notes &out )
{
LOG->Trace( "Notes::WriteDWINotesTag" );
switch( out.m_NotesType )
{
case NOTES_TYPE_DANCE_SINGLE: fprintf( fp, "#SINGLE:" ); break;
2002-09-12 08:37:12 +00:00
case NOTES_TYPE_DANCE_COUPLE: fprintf( fp, "#COUPLE:" ); break;
2002-09-09 02:23:03 +00:00
case NOTES_TYPE_DANCE_DOUBLE: fprintf( fp, "#DOUBLE:" ); break;
case NOTES_TYPE_DANCE_SOLO: fprintf( fp, "#SOLO:" ); break;
default: return false; // not a type supported by DWI
}
2002-09-29 05:06:18 +00:00
switch( out.m_Difficulty )
2002-09-09 02:23:03 +00:00
{
2002-09-29 05:06:18 +00:00
case DIFFICULTY_EASY: fprintf( fp, "BASIC:" ); break;
case DIFFICULTY_MEDIUM: fprintf( fp, "ANOTHER:" ); break;
case DIFFICULTY_HARD: fprintf( fp, "MANIAC:" ); break;
2002-09-09 02:23:03 +00:00
default: ASSERT(0); return false;
}
fprintf( fp, "%d:\n", out.m_iMeter );
return true;
}
bool NotesWriterDWI::Write( CString sPath, const Song &out )
{
FILE* fp = fopen( sPath, "w" );
if( fp == NULL )
throw RageException( "Error opening song file '%s' for writing.", sPath );
2002-09-09 02:33:57 +00:00
if(out.GetFullTitle().GetLength() != 0)
fprintf( fp, "#TITLE:%s;\n", out.GetFullTitle() );
if(out.m_sArtist.GetLength() != 0)
fprintf( fp, "#ARTIST:%s;\n", out.m_sArtist );
ASSERT( out.m_BPMSegments[0].m_fStartBeat == 0 );
fprintf( fp, "#BPM:%.2f;\n", out.m_BPMSegments[0].m_fBPM );
2002-09-09 02:59:48 +00:00
fprintf( fp, "#GAP:%d;\n", int(-roundf( out.m_fBeat0OffsetInSeconds*1000 )) );
2002-09-09 02:33:57 +00:00
if( out.m_StopSegments.GetSize() )
{
2002-09-09 02:33:57 +00:00
fprintf( fp, "#FREEZE:" );
for( int i=0; i<out.m_StopSegments.GetSize(); i++ )
{
const StopSegment &fs = out.m_StopSegments[i];
2002-09-11 04:49:07 +00:00
fprintf( fp, "%.2f=%.2f", BeatToNoteRow( fs.m_fStartBeat ) * 4.0f / ROWS_PER_BEAT,
2002-09-09 02:59:48 +00:00
roundf(fs.m_fStopSeconds*1000) );
2002-09-09 02:33:57 +00:00
if( i != out.m_StopSegments.GetSize()-1 )
fprintf( fp, "," );
}
fprintf( fp, ";\n" );
}
2002-09-09 02:33:57 +00:00
if( out.m_BPMSegments.GetSize() > 1)
{
2002-09-09 02:33:57 +00:00
fprintf( fp, "#CHANGEBPM:" );
for( int i=1; i<out.m_BPMSegments.GetSize(); i++ )
{
const BPMSegment &bs = out.m_BPMSegments[i];
2002-09-11 04:49:07 +00:00
fprintf( fp, "%.2f=%.2f", BeatToNoteRow( bs.m_fStartBeat ) * 4.0f / ROWS_PER_BEAT, bs.m_fBPM );
2002-09-09 02:33:57 +00:00
if( i != out.m_BPMSegments.GetSize()-1 )
fprintf( fp, "," );
}
fprintf( fp, ";\n" );
}
2002-09-09 02:33:57 +00:00
for( int i=0; i<out.m_apNotes.GetSize(); i++ )
2002-09-09 02:23:03 +00:00
{
if(!WriteDWINotesTag( fp, *out.m_apNotes[i] ))
continue;
WriteDWINotesField( fp, *out.m_apNotes[i], 0 );
2002-09-12 08:37:12 +00:00
if(out.m_apNotes[i]->m_NotesType==NOTES_TYPE_DANCE_DOUBLE ||
out.m_apNotes[i]->m_NotesType==NOTES_TYPE_DANCE_COUPLE)
2002-09-09 02:23:03 +00:00
{
fprintf( fp, ":\n" );
WriteDWINotesField( fp, *out.m_apNotes[i], 4 );
}
fprintf( fp, ";\n" );
}
fclose( fp );
return true;
}