00001 /* ScreenTitleMenu - The main title screen and menu. */ 00002 00003 #ifndef SCREEN_TITLE_MENU_H 00004 #define SCREEN_TITLE_MENU_H 00005 00006 #include "Screen.h" 00007 #include "Transition.h" 00008 #include "Sprite.h" 00009 #include "BitmapText.h" 00010 #include "RageSound.h" 00011 #include "RageTimer.h" 00012 #include "ScreenSelectMaster.h" 00013 00014 class ScreenTitleMenu : public ScreenSelectMaster 00015 { 00016 public: 00017 ScreenTitleMenu( CString sName ); 00018 virtual ~ScreenTitleMenu(); 00019 00020 virtual void Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI ); 00021 00022 private: 00023 AutoActor m_sprLogo; 00024 BitmapText m_textVersion; 00025 BitmapText m_textSongs; 00026 BitmapText m_textMaxStages; 00027 BitmapText m_textLifeDifficulty; 00028 }; 00029 00030 #endif 00031 00032 /* 00033 * (c) 2001-2004 Chris Danford 00034 * All rights reserved. 00035 * 00036 * Permission is hereby granted, free of charge, to any person obtaining a 00037 * copy of this software and associated documentation files (the 00038 * "Software"), to deal in the Software without restriction, including 00039 * without limitation the rights to use, copy, modify, merge, publish, 00040 * distribute, and/or sell copies of the Software, and to permit persons to 00041 * whom the Software is furnished to do so, provided that the above 00042 * copyright notice(s) and this permission notice appear in all copies of 00043 * the Software and that both the above copyright notice(s) and this 00044 * permission notice appear in supporting documentation. 00045 * 00046 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS 00047 * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 00048 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF 00049 * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS 00050 * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT 00051 * OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 00052 * OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR 00053 * OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR 00054 * PERFORMANCE OF THIS SOFTWARE. 00055 */