40 lines
976 B
C++
40 lines
976 B
C++
#ifndef ScreenJukebox_H
|
|
#define ScreenJukebox_H
|
|
/*
|
|
-----------------------------------------------------------------------------
|
|
Class: ScreenJukebox
|
|
|
|
Desc: Like ScreenDemonstration, Plays whole songs continuously.
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
|
Chris Danford
|
|
-----------------------------------------------------------------------------
|
|
*/
|
|
|
|
#include "ScreenGameplay.h"
|
|
#include "Sprite.h"
|
|
|
|
|
|
class ScreenJukebox : public ScreenGameplay
|
|
{
|
|
public:
|
|
ScreenJukebox( bool bDemonstration = false );
|
|
~ScreenJukebox();
|
|
|
|
virtual void Update( float fDeltaTime );
|
|
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
|
virtual void HandleScreenMessage( const ScreenMessage SM );
|
|
|
|
/* Hack: public for JukeboxMenu */
|
|
static bool SetSong();
|
|
|
|
protected:
|
|
Transition m_In;
|
|
Transition m_Out;
|
|
|
|
static bool PrepareForJukebox();
|
|
};
|
|
|
|
#endif
|
|
|