2002-09-06 23:24:40 +00:00
|
|
|
#ifndef NOTES_LOADER_BMS_H
|
|
|
|
|
#define NOTES_LOADER_BMS_H
|
|
|
|
|
|
2003-02-16 04:28:17 +00:00
|
|
|
#include "song.h"
|
2002-09-06 23:24:40 +00:00
|
|
|
#include "Notes.h"
|
2002-09-07 05:04:04 +00:00
|
|
|
#include "NotesLoader.h"
|
2002-09-06 23:24:40 +00:00
|
|
|
|
2002-09-11 05:15:46 +00:00
|
|
|
class BMSLoader: public NotesLoader {
|
2002-09-12 08:37:12 +00:00
|
|
|
bool LoadFromBMSFile( const CString &sPath, Notes &out1 );
|
2002-09-07 05:04:04 +00:00
|
|
|
void mapBMSTrackToDanceNote( int iBMSTrack, int &iDanceColOut, char &cNoteCharOut );
|
2002-09-06 23:24:40 +00:00
|
|
|
|
|
|
|
|
public:
|
2002-09-11 05:15:46 +00:00
|
|
|
void GetApplicableFiles( CString sPath, CStringArray &out );
|
|
|
|
|
bool LoadFromDir( CString sDir, Song &out );
|
2002-09-06 23:24:40 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|