131 lines
4.5 KiB
C++
131 lines
4.5 KiB
C++
/* MusicWheel - A wheel with song names used in the Select Music screen. */
|
|
|
|
#ifndef MUSICWHEEL_H
|
|
#define MUSICWHEEL_H
|
|
|
|
#include "AutoActor.h"
|
|
#include "ActorFrame.h"
|
|
#include "RageSound.h"
|
|
#include "RandomSample.h"
|
|
#include "GameConstantsAndTypes.h"
|
|
#include "ScreenMessage.h"
|
|
#include "ScoreDisplayNormal.h"
|
|
#include "ScrollBar.h"
|
|
#include "RageTimer.h"
|
|
#include "MusicWheelItem.h"
|
|
#include "ThemeMetric.h"
|
|
#include "WheelBase.h"
|
|
|
|
class Course;
|
|
class Song;
|
|
|
|
struct CompareSongPointerArrayBySectionName;
|
|
|
|
class MusicWheel : public WheelBase
|
|
{
|
|
friend struct CompareSongPointerArrayBySectionName;
|
|
|
|
public:
|
|
MusicWheel();
|
|
~MusicWheel();
|
|
virtual void Load( CString sType );
|
|
|
|
virtual void DrawItem( int index );
|
|
|
|
bool ChangeSort( SortOrder new_so ); // return true if change successful
|
|
bool NextSort(); // return true if change successful
|
|
void StartRoulette();
|
|
void StartRandom();
|
|
bool IsRouletting() const;
|
|
|
|
virtual bool IsSettled() const;
|
|
|
|
void NotesOrTrailChanged( PlayerNumber pn ); // update grade graphics and top score
|
|
|
|
virtual bool Select(); // return true if this selection ends the screen
|
|
WheelItemType GetSelectedType() { return m_CurWheelItemData[m_iSelection]->m_Type; }
|
|
Song* GetSelectedSong();
|
|
Course* GetSelectedCourse() { return m_CurWheelItemData[m_iSelection]->m_pCourse; }
|
|
CString GetSelectedSection(){ return m_CurWheelItemData[m_iSelection]->m_sText; }
|
|
|
|
void RebuildAllMusicWheelItems();
|
|
void RebuildMusicWheelItems( int dist );
|
|
|
|
Song *GetPreferredSelectionForRandomOrPortal();
|
|
|
|
bool SelectSong( Song *p );
|
|
bool SelectSection( const CString & SectionName );
|
|
void SetOpenGroup(CString group, SortOrder so = SORT_INVALID);
|
|
SortOrder GetSortOrder() const { return m_SortOrder; }
|
|
virtual void ChangeMusic(int dist); /* +1 or -1 */ //CHECK THIS
|
|
void FinishChangingSorts();
|
|
|
|
protected:
|
|
virtual void LoadFromMetrics( CString sType );
|
|
virtual bool MoveSpecific(int n);
|
|
void GetSongList(vector<Song*> &arraySongs, SortOrder so, CString sPreferredGroup );
|
|
void BuildWheelItemDatas( vector<WheelItemData> &arrayWheelItems, SortOrder so );
|
|
bool SelectSongOrCourse();
|
|
bool SelectCourse( Course *p );
|
|
bool SelectModeMenuItem();
|
|
virtual void TweenOnScreenUpdateItems(bool changing_sort);
|
|
virtual void TweenOffScreenUpdateItems(bool changing_sort);
|
|
|
|
virtual void UpdateItems(float fDeltaTime );
|
|
virtual void UpdateSwitch();
|
|
|
|
virtual inline void UpdateScrollbar() { WheelBase::UpdateScrollbar(m_CurWheelItemData.size()); }
|
|
|
|
vector<WheelItemData> m_WheelItemDatas[NUM_SORT_ORDERS];
|
|
vector<WheelItemData *> m_CurWheelItemData;
|
|
vector<MusicWheelItem *> m_MusicWheelItems;
|
|
|
|
CString m_sLastModeMenuItem;
|
|
SortOrder m_SortOrder;
|
|
|
|
RageSound m_soundChangeSort;
|
|
|
|
bool WheelItemIsVisible(int n);
|
|
|
|
ThemeMetric<float> ROULETTE_SWITCH_SECONDS;
|
|
ThemeMetric<int> ROULETTE_SLOW_DOWN_SWITCHES;
|
|
ThemeMetric<int> NUM_SECTION_COLORS;
|
|
ThemeMetric<RageColor> SONG_REAL_EXTRA_COLOR;
|
|
ThemeMetric<RageColor> SORT_MENU_COLOR;
|
|
ThemeMetric<bool> SHOW_ROULETTE;
|
|
ThemeMetric<bool> SHOW_RANDOM;
|
|
ThemeMetric<bool> SHOW_PORTAL;
|
|
ThemeMetric<bool> RANDOM_PICKS_LOCKED_SONGS;
|
|
ThemeMetric<int> MOST_PLAYED_SONGS_TO_SHOW;
|
|
ThemeMetric<CString> MODE_MENU_CHOICE_NAMES;
|
|
ThemeMetricMap<CString> CHOICE;
|
|
ThemeMetric1D<RageColor> SECTION_COLORS;
|
|
};
|
|
|
|
#endif
|
|
|
|
/*
|
|
* (c) 2001-2004 Chris Danford, Chris Gomez, Glenn Maynard
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the
|
|
* "Software"), to deal in the Software without restriction, including
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
* whom the Software is furnished to do so, provided that the above
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
* the Software and that both the above copyright notice(s) and this
|
|
* permission notice appear in supporting documentation.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
*/
|