adding support for pms files (if keysounds are broken I'll be fixing those too, I haven't checked yet). This isn't done/tested, totally WIP. If someone with the earlier versions of vstudio could make my changes (add NotesLoaderPMS) into the older .vcproj files that would be awesome

This commit is contained in:
Rob Campbell
2009-11-05 22:28:06 +00:00
parent 906040db46
commit 963991c656
5 changed files with 1022 additions and 0 deletions
+4
View File
@@ -3,6 +3,7 @@
#include "NotesLoaderSM.h"
#include "NotesLoaderDWI.h"
#include "NotesLoaderBMS.h"
#include "NotesLoaderPMS.h"
#include "NotesLoaderKSF.h"
#include "NotesLoaderMidi.h"
#include "RageUtil.h"
@@ -43,6 +44,9 @@ bool NotesLoader::LoadFromDir( const RString &sPath, Song &out, set<RString> &Bl
BMSLoader::GetApplicableFiles( sPath, list );
if( !list.empty() )
return BMSLoader::LoadFromDir( sPath, out );
PMSLoader::GetApplicableFiles( sPath, list );
if( !list.empty() )
return PMSLoader::LoadFromDir( sPath, out );
KSFLoader::GetApplicableFiles( sPath, list );
if( !list.empty() )
return KSFLoader::LoadFromDir( sPath, out );