2002-09-06 23:24:40 +00:00
|
|
|
#ifndef NOTES_LOADER_BMS_H
|
|
|
|
|
#define NOTES_LOADER_BMS_H
|
|
|
|
|
|
|
|
|
|
#include "Song.h"
|
|
|
|
|
#include "Notes.h"
|
2002-09-07 05:04:04 +00:00
|
|
|
#include "NotesLoader.h"
|
2002-09-06 23:24:40 +00:00
|
|
|
|
|
|
|
|
class BMSLoader {
|
2002-09-07 05:04:04 +00:00
|
|
|
bool LoadFromBMSFile( const CString &sPath, Notes &out1, Notes &out2 );
|
|
|
|
|
void mapBMSTrackToDanceNote( int iBMSTrack, int &iDanceColOut, char &cNoteCharOut );
|
2002-09-06 23:24:40 +00:00
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
bool LoadFromBMSDir( CString sDir, Song &out );
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|