2002-08-19 23:57:55 +00:00
|
|
|
#ifndef SCREENCAUTION_H
|
|
|
|
|
#define SCREENCAUTION_H 1
|
|
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-08-13 23:26:46 +00:00
|
|
|
Class: ScreenCaution
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
Desc: Screen that displays while SelectSong is being loaded.
|
|
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-08-13 23:26:46 +00:00
|
|
|
Chris Danford
|
2002-05-20 08:59:37 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#include "Screen.h"
|
|
|
|
|
#include "RandomSample.h"
|
2002-09-29 05:06:18 +00:00
|
|
|
#include "BGAnimation.h"
|
2003-04-13 01:09:19 +00:00
|
|
|
#include "Transition.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
class ScreenCaution : public Screen
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ScreenCaution();
|
|
|
|
|
|
|
|
|
|
virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI );
|
|
|
|
|
virtual void HandleScreenMessage( const ScreenMessage SM );
|
|
|
|
|
|
|
|
|
|
protected:
|
2002-09-04 03:49:08 +00:00
|
|
|
void MenuStart( PlayerNumber pn );
|
|
|
|
|
void MenuBack( PlayerNumber pn );
|
2002-09-29 05:06:18 +00:00
|
|
|
BGAnimation m_Background;
|
2003-04-13 01:09:19 +00:00
|
|
|
Transition m_In;
|
|
|
|
|
Transition m_Out;
|
|
|
|
|
Transition m_Back;
|
2002-05-20 08:59:37 +00:00
|
|
|
};
|
|
|
|
|
|
2002-08-19 23:57:55 +00:00
|
|
|
#endif
|