Files
itgmania212121/stepmania/src/ScreenPlayerOptions.h
T

45 lines
1.1 KiB
C++
Raw Normal View History

2003-03-11 08:52:45 +00:00
#ifndef SCREENPLAYEROPTIONS_H
#define SCREENPLAYEROPTIONS_H
2002-05-20 08:59:37 +00:00
/*
-----------------------------------------------------------------------------
2003-03-11 08:52:45 +00:00
Class: ScreenPlayerOptions
2002-05-20 08:59:37 +00:00
Desc: Select a song.
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
2003-03-11 08:52:45 +00:00
Chris Danford
2002-05-20 08:59:37 +00:00
-----------------------------------------------------------------------------
*/
#include "ScreenOptions.h"
2003-02-12 15:56:01 +00:00
#include "PrefsManager.h"
2002-05-20 08:59:37 +00:00
class ScreenPlayerOptions : public ScreenOptions
{
public:
ScreenPlayerOptions();
2003-03-11 08:52:45 +00:00
virtual void Update( float fDelta );
virtual void DrawPrimitives();
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
virtual void HandleScreenMessage( const ScreenMessage SM );
2002-05-20 08:59:37 +00:00
private:
void ImportOptions();
void ExportOptions();
void GoToNextState();
void GoToPrevState();
2003-06-16 17:28:58 +00:00
CString ConvertParamToThemeDifficulty( const CString &in ) const;
2003-06-16 17:28:58 +00:00
bool m_bAcceptedChoices;
bool m_bGoToOptions;
Sprite m_sprOptionsMessage;
2002-05-20 08:59:37 +00:00
};
2002-11-16 20:21:00 +00:00
#endif