This commit is contained in:
Glenn Maynard
2005-07-03 02:51:29 +00:00
parent 2b365a1ea9
commit b0935c1111
7 changed files with 18 additions and 8 deletions
+2
View File
@@ -7,6 +7,8 @@
#include "RageUtil.h" #include "RageUtil.h"
#include "NoteData.h" #include "NoteData.h"
#include "NoteTypes.h" #include "NoteTypes.h"
#include "song.h"
#include "Steps.h"
#if 0 #if 0
void KSFLoader::RemoveHoles( NoteData &out, const Song &song ) void KSFLoader::RemoveHoles( NoteData &out, const Song &song )
+4 -2
View File
@@ -3,10 +3,12 @@
#ifndef NOTES_LOADER_KSF_H #ifndef NOTES_LOADER_KSF_H
#define NOTES_LOADER_KSF_H #define NOTES_LOADER_KSF_H
#include "song.h"
#include "Steps.h"
#include "NotesLoader.h" #include "NotesLoader.h"
class Song;
class Steps;
class NoteData;
class KSFLoader: public NotesLoader class KSFLoader: public NotesLoader
{ {
bool LoadFromKSFFile( const CString &sPath, Steps &out, const Song &song ); bool LoadFromKSFFile( const CString &sPath, Steps &out, const Song &song );
+2
View File
@@ -9,6 +9,8 @@
#include "RageFileManager.h" #include "RageFileManager.h"
#include "NoteTypes.h" #include "NoteTypes.h"
#include "BackgroundUtil.h" #include "BackgroundUtil.h"
#include "song.h"
#include "Steps.h"
#define MAX_EDIT_SIZE_BYTES 20*1024 // 20 KB #define MAX_EDIT_SIZE_BYTES 20*1024 // 20 KB
+4 -2
View File
@@ -3,11 +3,13 @@
#ifndef NOTES_LOADER_SM_H #ifndef NOTES_LOADER_SM_H
#define NOTES_LOADER_SM_H #define NOTES_LOADER_SM_H
#include "song.h"
#include "Steps.h"
#include "NotesLoader.h" #include "NotesLoader.h"
#include "GameConstantsAndTypes.h"
class MsdFile; class MsdFile;
class Song;
class Steps;
class TimingData;
class SMLoader: public NotesLoader class SMLoader: public NotesLoader
{ {
+2
View File
@@ -7,6 +7,8 @@
#include "RageFile.h" #include "RageFile.h"
#include "NoteDataUtil.h" #include "NoteDataUtil.h"
#include "RageFile.h" #include "RageFile.h"
#include "song.h"
#include "Steps.h"
/* Output is an angle bracket expression without angle brackets, eg. "468". */ /* Output is an angle bracket expression without angle brackets, eg. "468". */
CString NotesWriterDWI::NotesToDWIString( const TapNote tnCols[6] ) CString NotesWriterDWI::NotesToDWIString( const TapNote tnCols[6] )
+2 -2
View File
@@ -3,11 +3,11 @@
#ifndef NOTES_WRITER_DWI_H #ifndef NOTES_WRITER_DWI_H
#define NOTES_WRITER_DWI_H #define NOTES_WRITER_DWI_H
#include "song.h"
#include "Steps.h"
#include "NoteTypes.h" #include "NoteTypes.h"
class RageFile; class RageFile;
class Song;
class Steps;
class NotesWriterDWI class NotesWriterDWI
{ {
CString NotesToDWIString( TapNote cNoteCol1, TapNote cNoteCol2, TapNote cNoteCol3, TapNote cNoteCol4, TapNote cNoteCol5, TapNote cNoteCol6 ); CString NotesToDWIString( TapNote cNoteCol1, TapNote cNoteCol2, TapNote cNoteCol3, TapNote cNoteCol4, TapNote cNoteCol5, TapNote cNoteCol6 );
+2 -2
View File
@@ -5,9 +5,9 @@
#include "ScoreKeeper.h" #include "ScoreKeeper.h"
#include "Attack.h" #include "Attack.h"
#include "song.h"
#include "Steps.h"
class Steps; class Steps;
class Song;
struct RadarValues;
class ScoreKeeperMAX2: public ScoreKeeper class ScoreKeeperMAX2: public ScoreKeeper
{ {