Header cleanup.
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
#include "ScreenDimensions.h"
|
#include "ScreenDimensions.h"
|
||||||
#include "GameState.h"
|
#include "GameState.h"
|
||||||
#include "ThemeMetric.h"
|
#include "ThemeMetric.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
static ThemeMetric<apActorCommands> IN_COMMAND ("LyricDisplay","InCommand");
|
static ThemeMetric<apActorCommands> IN_COMMAND ("LyricDisplay","InCommand");
|
||||||
static ThemeMetric<apActorCommands> OUT_COMMAND ("LyricDisplay","OutCommand");
|
static ThemeMetric<apActorCommands> OUT_COMMAND ("LyricDisplay","OutCommand");
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
#define LYRIC_DISPLAY_H
|
#define LYRIC_DISPLAY_H
|
||||||
|
|
||||||
#include "ActorFrame.h"
|
#include "ActorFrame.h"
|
||||||
#include "song.h"
|
|
||||||
#include "BitmapText.h"
|
#include "BitmapText.h"
|
||||||
|
|
||||||
class LyricDisplay: public ActorFrame
|
class LyricDisplay: public ActorFrame
|
||||||
|
|||||||
@@ -3,6 +3,7 @@
|
|||||||
#include "ThemeManager.h"
|
#include "ThemeManager.h"
|
||||||
#include "ThemeMetric.h"
|
#include "ThemeMetric.h"
|
||||||
#include "RageUtil.h"
|
#include "RageUtil.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
/* If this actor is used anywhere other than SelectGroup, we
|
/* If this actor is used anywhere other than SelectGroup, we
|
||||||
* can add a setting that changes which metric group we pull
|
* can add a setting that changes which metric group we pull
|
||||||
|
|||||||
@@ -1,17 +1,19 @@
|
|||||||
#ifndef MUSICLIST_H
|
#ifndef MUSIC_LIST_H
|
||||||
#define MUSICLIST_H
|
#define MUSIC_LIST_H
|
||||||
|
|
||||||
#include "ActorFrame.h"
|
#include "ActorFrame.h"
|
||||||
#include "BitmapText.h"
|
#include "BitmapText.h"
|
||||||
#include "song.h"
|
|
||||||
|
|
||||||
const int MAX_MLIST_COLUMNS = 5;
|
const int MAX_MLIST_COLUMNS = 5;
|
||||||
|
|
||||||
|
class Song;
|
||||||
|
|
||||||
class MusicList : public ActorFrame
|
class MusicList : public ActorFrame
|
||||||
{
|
{
|
||||||
BitmapText m_textTitles[MAX_MLIST_COLUMNS];
|
BitmapText m_textTitles[MAX_MLIST_COLUMNS];
|
||||||
|
|
||||||
struct group {
|
struct group
|
||||||
|
{
|
||||||
RString ContentsText[MAX_MLIST_COLUMNS];
|
RString ContentsText[MAX_MLIST_COLUMNS];
|
||||||
int m_iNumSongsInGroup;
|
int m_iNumSongsInGroup;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -25,6 +25,7 @@
|
|||||||
#include "SongManager.h"
|
#include "SongManager.h"
|
||||||
#include "GameLoop.h"
|
#include "GameLoop.h"
|
||||||
#include "ScreenServiceAction.h"
|
#include "ScreenServiceAction.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
static bool g_bIsDisplayed = false;
|
static bool g_bIsDisplayed = false;
|
||||||
static bool g_bIsSlow = false;
|
static bool g_bIsSlow = false;
|
||||||
|
|||||||
@@ -53,6 +53,7 @@
|
|||||||
#include "ScreenSaveSync.h"
|
#include "ScreenSaveSync.h"
|
||||||
#include "AdjustSync.h"
|
#include "AdjustSync.h"
|
||||||
#include "SongUtil.h"
|
#include "SongUtil.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
//
|
//
|
||||||
// Defines
|
// Defines
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
#include "GameState.h"
|
#include "GameState.h"
|
||||||
#include "PrefsManager.h"
|
#include "PrefsManager.h"
|
||||||
#include "StatsManager.h"
|
#include "StatsManager.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
REGISTER_SCREEN_CLASS( ScreenGameplayLesson );
|
REGISTER_SCREEN_CLASS( ScreenGameplayLesson );
|
||||||
ScreenGameplayLesson::ScreenGameplayLesson()
|
ScreenGameplayLesson::ScreenGameplayLesson()
|
||||||
|
|||||||
@@ -7,6 +7,7 @@
|
|||||||
#include "ActiveAttackList.h"
|
#include "ActiveAttackList.h"
|
||||||
#include "ScoreDisplayNormal.h"
|
#include "ScoreDisplayNormal.h"
|
||||||
#include "ScoreKeeperShared.h"
|
#include "ScoreKeeperShared.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
REGISTER_SCREEN_CLASS( ScreenGameplayShared );
|
REGISTER_SCREEN_CLASS( ScreenGameplayShared );
|
||||||
|
|
||||||
|
|||||||
@@ -4,6 +4,7 @@
|
|||||||
#define ScreenGameplaySyncMachine_H
|
#define ScreenGameplaySyncMachine_H
|
||||||
|
|
||||||
#include "ScreenGameplayNormal.h"
|
#include "ScreenGameplayNormal.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
class ScreenGameplaySyncMachine : public ScreenGameplayNormal
|
class ScreenGameplaySyncMachine : public ScreenGameplayNormal
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
#include "InputEventPlus.h"
|
#include "InputEventPlus.h"
|
||||||
#include "AdjustSync.h"
|
#include "AdjustSync.h"
|
||||||
#include "SongUtil.h"
|
#include "SongUtil.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
#define SHOW_COURSE_MODIFIERS_PROBABILITY THEME->GetMetricF(m_sName,"ShowCourseModifiersProbability")
|
#define SHOW_COURSE_MODIFIERS_PROBABILITY THEME->GetMetricF(m_sName,"ShowCourseModifiersProbability")
|
||||||
|
|
||||||
|
|||||||
@@ -17,6 +17,7 @@
|
|||||||
#include "MenuTimer.h"
|
#include "MenuTimer.h"
|
||||||
#include "SongUtil.h"
|
#include "SongUtil.h"
|
||||||
#include "LocalizedString.h"
|
#include "LocalizedString.h"
|
||||||
|
#include "song.h"
|
||||||
|
|
||||||
#define BANNER_WIDTH THEME->GetMetricF("ScreenSelectGroup","BannerWidth")
|
#define BANNER_WIDTH THEME->GetMetricF("ScreenSelectGroup","BannerWidth")
|
||||||
#define BANNER_HEIGHT THEME->GetMetricF("ScreenSelectGroup","BannerHeight")
|
#define BANNER_HEIGHT THEME->GetMetricF("ScreenSelectGroup","BannerHeight")
|
||||||
|
|||||||
Reference in New Issue
Block a user