2002-05-20 08:59:37 +00:00
|
|
|
#include "stdafx.h"
|
|
|
|
|
/*
|
|
|
|
|
-----------------------------------------------------------------------------
|
2002-05-28 20:01:22 +00:00
|
|
|
Class: ScreenTitleMenu
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-05-28 20:01:22 +00:00
|
|
|
Desc: See header.
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
Copyright (c) 2001-2002 by the person(s) listed below. All rights reserved.
|
2002-05-28 20:01:22 +00:00
|
|
|
Chris Danford
|
2002-05-20 08:59:37 +00:00
|
|
|
-----------------------------------------------------------------------------
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "ScreenTitleMenu.h"
|
|
|
|
|
#include "ScreenManager.h"
|
|
|
|
|
#include "ScreenCaution.h"
|
|
|
|
|
#include "ScreenMapInstruments.h"
|
2002-08-13 23:26:46 +00:00
|
|
|
#include "ScreenGraphicOptions.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
#include "ScreenGameOptions.h"
|
|
|
|
|
#include "ScreenEdit.h"
|
|
|
|
|
#include "GameConstantsAndTypes.h"
|
|
|
|
|
#include "RageUtil.h"
|
|
|
|
|
#include "StepMania.h"
|
2002-07-23 01:41:40 +00:00
|
|
|
#include "PrefsManager.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
#include "ScreenEditMenu.h"
|
|
|
|
|
#include "ScreenSelectStyle.h"
|
|
|
|
|
#include "ScreenSelectGame.h"
|
2002-07-11 19:02:26 +00:00
|
|
|
#include "ScreenAppearanceOptions.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
#include "RageLog.h"
|
|
|
|
|
#include "SongManager.h"
|
|
|
|
|
#include "AnnouncerManager.h"
|
2002-06-23 11:43:53 +00:00
|
|
|
#include "ScreenEz2SelectPlayer.h"
|
2002-07-23 01:41:40 +00:00
|
|
|
#include "GameState.h"
|
2002-05-28 20:01:22 +00:00
|
|
|
#include "GameManager.h"
|
2002-08-02 09:31:06 +00:00
|
|
|
#include "ScreenGameplay.h"
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
const CString CHOICE_TEXT[ScreenTitleMenu::NUM_TITLE_MENU_CHOICES] = {
|
2002-05-28 20:01:22 +00:00
|
|
|
"GAME START",
|
2002-05-27 08:23:27 +00:00
|
|
|
"SWITCH GAME",
|
2002-07-03 21:27:26 +00:00
|
|
|
"CONFIG KEY/JOY",
|
2002-05-20 08:59:37 +00:00
|
|
|
"GAME OPTIONS",
|
2002-08-13 23:26:46 +00:00
|
|
|
"GRAPHIC OPTIONS",
|
2002-07-11 19:02:26 +00:00
|
|
|
"APPEARANCE OPTIONS",
|
2002-06-29 11:59:09 +00:00
|
|
|
"EDIT/RECORD/SYNCH",
|
2002-05-20 08:59:37 +00:00
|
|
|
"EXIT",
|
|
|
|
|
};
|
|
|
|
|
|
2002-08-15 16:45:49 +00:00
|
|
|
#define CHOICES_X THEME->GetMetricF("TitleMenu","ChoicesX")
|
|
|
|
|
#define CHOICES_START_Y THEME->GetMetricF("TitleMenu","ChoicesStartY")
|
|
|
|
|
#define CHOICES_SPACING_Y THEME->GetMetricF("TitleMenu","ChoicesSpacingY")
|
|
|
|
|
#define HELP_X THEME->GetMetricF("TitleMenu","HelpX")
|
|
|
|
|
#define HELP_Y THEME->GetMetricF("TitleMenu","HelpY")
|
|
|
|
|
#define LOGO_X THEME->GetMetricF("TitleMenu","LogoX")
|
|
|
|
|
#define LOGO_Y THEME->GetMetricF("TitleMenu","LogoY")
|
|
|
|
|
#define VERSION_X THEME->GetMetricF("TitleMenu","VersionX")
|
|
|
|
|
#define VERSION_Y THEME->GetMetricF("TitleMenu","VersionY")
|
|
|
|
|
#define SONGS_X THEME->GetMetricF("TitleMenu","SongsX")
|
|
|
|
|
#define SONGS_Y THEME->GetMetricF("TitleMenu","SongsY")
|
|
|
|
|
#define COLOR_NOT_SELECTED THEME->GetMetricC("TitleMenu","ColorNotSelected")
|
|
|
|
|
#define COLOR_SELECTED THEME->GetMetricC("TitleMenu","ColorSelected")
|
|
|
|
|
#define SECONDS_BEFORE_DEMONSTRATION THEME->GetMetricF("TitleMenu","SecondsBeforeDemonstration")
|
|
|
|
|
#define SECONDS_BETWEEN_ATTRACT THEME->GetMetricF("TitleMenu","SecondsBetweenAttract")
|
|
|
|
|
|
|
|
|
|
#define USE_CAUTION_OR_SELECT_PLAYER THEME->GetMetricB("General","UseCautionOrSelectPlayer")
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
const ScreenMessage SM_PlayAttract = ScreenMessage(SM_User+1);
|
2002-08-13 23:26:46 +00:00
|
|
|
const ScreenMessage SM_GoToNextScreen = ScreenMessage(SM_User+12);
|
2002-08-02 09:31:06 +00:00
|
|
|
const ScreenMessage SM_FadeToDemonstration = ScreenMessage(SM_User+13);
|
|
|
|
|
const ScreenMessage SM_GoToDemonstration = ScreenMessage(SM_User+14);
|
|
|
|
|
|
|
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
ScreenTitleMenu::ScreenTitleMenu()
|
|
|
|
|
{
|
2002-08-03 22:05:04 +00:00
|
|
|
MUSIC->Stop();
|
2002-07-31 19:40:40 +00:00
|
|
|
LOG->Trace( "ScreenTitleMenu::ScreenTitleMenu()" );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-07-04 21:05:18 +00:00
|
|
|
|
2002-08-15 16:45:49 +00:00
|
|
|
//
|
|
|
|
|
// I think it's better to do all the initialization here rather than have it scattered
|
|
|
|
|
// about in all the global singleton classes
|
|
|
|
|
//
|
2002-07-23 01:41:40 +00:00
|
|
|
GAMESTATE->Reset();
|
|
|
|
|
PREFSMAN->ReadGamePrefsFromDisk();
|
|
|
|
|
INPUTMAPPER->ReadMappingsFromDisk();
|
2002-08-13 23:26:46 +00:00
|
|
|
GAMESTATE->m_bPlayersCanJoin = true;
|
2002-08-15 16:45:49 +00:00
|
|
|
if( !GAMEMAN->DoesNoteSkinExist( GAMEMAN->GetCurNoteSkin() ) )
|
|
|
|
|
{
|
|
|
|
|
CStringArray asNoteSkinNames;
|
|
|
|
|
GAMEMAN->GetNoteSkinNames( asNoteSkinNames );
|
|
|
|
|
GAMEMAN->SwitchNoteSkin( asNoteSkinNames[0] );
|
|
|
|
|
}
|
|
|
|
|
if( !THEME->DoesThemeExist( THEME->GetCurThemeName() ) )
|
|
|
|
|
{
|
|
|
|
|
CStringArray asThemeNames;
|
|
|
|
|
THEME->GetThemeNamesForCurGame( asThemeNames );
|
|
|
|
|
THEME->SwitchTheme( asThemeNames[0] );
|
|
|
|
|
}
|
2002-07-04 21:05:18 +00:00
|
|
|
|
2002-08-01 13:42:56 +00:00
|
|
|
|
2002-08-13 23:26:46 +00:00
|
|
|
m_sprBG.Load( THEME->GetPathTo("Graphics","title menu background") );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_sprBG.StretchTo( CRect(0,0,SCREEN_WIDTH,SCREEN_HEIGHT) );
|
2002-07-23 01:41:40 +00:00
|
|
|
this->AddSubActor( &m_sprBG );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-08-13 23:26:46 +00:00
|
|
|
m_sprLogo.Load( THEME->GetPathTo("Graphics",ssprintf("title menu logo game %d",GAMESTATE->m_CurGame)) );
|
|
|
|
|
m_sprLogo.SetXY( LOGO_X, LOGO_Y );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_sprLogo.SetAddColor( D3DXCOLOR(1,1,1,1) );
|
|
|
|
|
m_sprLogo.SetZoomY( 0 );
|
2002-08-13 23:26:46 +00:00
|
|
|
m_sprLogo.BeginTweeningQueued( 0.5f ); // sleep
|
2002-05-27 18:36:01 +00:00
|
|
|
m_sprLogo.BeginTweeningQueued( 0.5f, Actor::TWEEN_BOUNCE_END );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_sprLogo.SetEffectGlowing(1, D3DXCOLOR(1,1,1,0.1f), D3DXCOLOR(1,1,1,0.3f) );
|
|
|
|
|
m_sprLogo.SetTweenZoom( 1 );
|
2002-07-23 01:41:40 +00:00
|
|
|
this->AddSubActor( &m_sprLogo );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textHelp.LoadFromFont( THEME->GetPathTo("Fonts","normal") );
|
2002-06-14 22:25:22 +00:00
|
|
|
m_textHelp.SetText( ssprintf("Use %c %c to select, then press START", char(3), char(4)) );
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textHelp.SetXY( HELP_X, HELP_Y );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_textHelp.SetZoom( 0.5f );
|
|
|
|
|
m_textHelp.SetEffectBlinking();
|
|
|
|
|
m_textHelp.SetShadowLength( 2 );
|
2002-07-23 01:41:40 +00:00
|
|
|
this->AddSubActor( &m_textHelp );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textVersion.LoadFromFont( THEME->GetPathTo("Fonts","normal") );
|
|
|
|
|
m_textVersion.SetText( "v3.0 beta 6" );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_textVersion.SetDiffuseColor( D3DXCOLOR(0.6f,0.6f,0.6f,1) ); // light gray
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textVersion.SetXY( VERSION_X, VERSION_Y );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_textVersion.SetZoom( 0.5f );
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textVersion.SetShadowLength( 2 );
|
2002-07-23 01:41:40 +00:00
|
|
|
this->AddSubActor( &m_textVersion );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textSongs.LoadFromFont( THEME->GetPathTo("Fonts","normal") );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_textSongs.SetHorizAlign( Actor::align_left );
|
|
|
|
|
m_textSongs.SetText( ssprintf("Found %d Songs", SONGMAN->m_pSongs.GetSize()) );
|
|
|
|
|
m_textSongs.SetDiffuseColor( D3DXCOLOR(0.6f,0.6f,0.6f,1) ); // light gray
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textSongs.SetXY( SONGS_X, SONGS_Y );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_textSongs.SetZoom( 0.5f );
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textSongs.SetShadowLength( 2 );
|
2002-07-23 01:41:40 +00:00
|
|
|
this->AddSubActor( &m_textSongs );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
|
2002-08-02 09:31:06 +00:00
|
|
|
for( int i=0; i< NUM_TITLE_MENU_CHOICES; i++ )
|
2002-05-20 08:59:37 +00:00
|
|
|
{
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textChoice[i].LoadFromFont( THEME->GetPathTo("Fonts","header1") );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_textChoice[i].SetText( CHOICE_TEXT[i] );
|
2002-08-13 23:26:46 +00:00
|
|
|
m_textChoice[i].SetXY( CHOICES_X, CHOICES_START_Y + i*CHOICES_SPACING_Y );
|
2002-05-20 08:59:37 +00:00
|
|
|
m_textChoice[i].SetShadowLength( 5 );
|
2002-07-23 01:41:40 +00:00
|
|
|
this->AddSubActor( &m_textChoice[i] );
|
2002-05-20 08:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
m_Fade.SetClosed();
|
2002-08-13 23:26:46 +00:00
|
|
|
m_Fade.OpenWipingRight( SM_None );
|
2002-07-05 22:10:00 +00:00
|
|
|
|
2002-07-23 01:41:40 +00:00
|
|
|
this->AddSubActor( &m_Fade );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-07-18 17:32:02 +00:00
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
SOUND->PlayOnceStreamedFromDir( ANNOUNCER->GetPathTo(ANNOUNCER_TITLE_MENU_GAME_NAME) );
|
|
|
|
|
|
2002-07-23 01:41:40 +00:00
|
|
|
|
2002-07-11 19:02:26 +00:00
|
|
|
m_soundAttract.Load( ANNOUNCER->GetPathTo(ANNOUNCER_TITLE_MENU_ATTRACT) );
|
2002-08-13 23:26:46 +00:00
|
|
|
m_soundChange.Load( THEME->GetPathTo("Sounds","title menu change") );
|
|
|
|
|
m_soundSelect.Load( THEME->GetPathTo("Sounds","menu start") );
|
|
|
|
|
m_soundInvalid.Load( THEME->GetPathTo("Sounds","menu invalid") );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
2002-07-11 19:02:26 +00:00
|
|
|
|
2002-05-28 20:01:22 +00:00
|
|
|
m_TitleMenuChoice = CHOICE_GAME_START;
|
2002-05-20 08:59:37 +00:00
|
|
|
GainFocus( m_TitleMenuChoice );
|
2002-07-05 22:10:00 +00:00
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
MUSIC->Stop();
|
|
|
|
|
|
2002-08-15 16:45:49 +00:00
|
|
|
for( float f=SECONDS_BETWEEN_ATTRACT; f<SECONDS_BEFORE_DEMONSTRATION; f+=SECONDS_BETWEEN_ATTRACT )
|
|
|
|
|
this->SendScreenMessage( SM_PlayAttract, f );
|
2002-08-02 09:31:06 +00:00
|
|
|
this->SendScreenMessage( SM_FadeToDemonstration, SECONDS_BEFORE_DEMONSTRATION );
|
2002-05-20 08:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ScreenTitleMenu::~ScreenTitleMenu()
|
|
|
|
|
{
|
2002-07-31 19:40:40 +00:00
|
|
|
LOG->Trace( "ScreenTitleMenu::~ScreenTitleMenu()" );
|
2002-05-20 08:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ScreenTitleMenu::Input( const DeviceInput& DeviceI, const InputEventType type, const GameInput &GameI, const MenuInput &MenuI, const StyleInput &StyleI )
|
|
|
|
|
{
|
2002-07-31 19:40:40 +00:00
|
|
|
LOG->Trace( "ScreenTitleMenu::Input()" );
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
if( m_Fade.IsClosing() )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Screen::Input( DeviceI, type, GameI, MenuI, StyleI );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ScreenTitleMenu::HandleScreenMessage( const ScreenMessage SM )
|
|
|
|
|
{
|
|
|
|
|
switch( SM )
|
|
|
|
|
{
|
2002-08-03 18:40:09 +00:00
|
|
|
case SM_PlayAttract:
|
|
|
|
|
m_soundAttract.PlayRandom();
|
|
|
|
|
break;
|
2002-08-13 23:26:46 +00:00
|
|
|
case SM_GoToNextScreen:
|
|
|
|
|
switch( m_TitleMenuChoice )
|
|
|
|
|
{
|
|
|
|
|
case CHOICE_GAME_START:
|
|
|
|
|
if( USE_CAUTION_OR_SELECT_PLAYER )
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenEz2SelectPlayer );
|
|
|
|
|
else
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenCaution );
|
|
|
|
|
break;
|
|
|
|
|
case CHOICE_SELECT_GAME:
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenSelectGame );
|
|
|
|
|
break;
|
|
|
|
|
case CHOICE_MAP_INSTRUMENTS:
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenMapInstruments );
|
|
|
|
|
break;
|
|
|
|
|
case CHOICE_GAME_OPTIONS:
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenGameOptions );
|
|
|
|
|
break;
|
|
|
|
|
case CHOICE_GRAPHIC_OPTIONS:
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenGraphicOptions );
|
|
|
|
|
break;
|
|
|
|
|
case CHOICE_APPEARANCE_OPTIONS:
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenAppearanceOptions );
|
|
|
|
|
break;
|
|
|
|
|
case CHOICE_EDIT:
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenEditMenu );
|
|
|
|
|
break;
|
|
|
|
|
case CHOICE_EXIT:
|
|
|
|
|
default:
|
|
|
|
|
ASSERT(0); // should never get here
|
|
|
|
|
break;
|
|
|
|
|
}
|
2002-06-23 11:43:53 +00:00
|
|
|
break;
|
2002-08-02 09:31:06 +00:00
|
|
|
case SM_FadeToDemonstration:
|
|
|
|
|
{
|
|
|
|
|
// Set up the game state for a demonstration
|
|
|
|
|
switch( GAMESTATE->m_CurGame )
|
|
|
|
|
{
|
|
|
|
|
case GAME_DANCE: GAMESTATE->m_CurStyle = STYLE_DANCE_VERSUS; break;
|
|
|
|
|
case GAME_PUMP: GAMESTATE->m_CurStyle = STYLE_PUMP_VERSUS; break;
|
|
|
|
|
case GAME_EZ2: GAMESTATE->m_CurStyle = STYLE_EZ2_SINGLE_VERSUS; break;
|
|
|
|
|
default: ASSERT(0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
GAMESTATE->m_PlayMode = PLAY_MODE_ARCADE;
|
|
|
|
|
|
2002-08-03 18:40:09 +00:00
|
|
|
if( SONGMAN->m_pSongs.GetSize() == 0 )
|
|
|
|
|
goto abort_demonstration;
|
|
|
|
|
|
2002-08-02 09:31:06 +00:00
|
|
|
// choose a Song and Notes
|
2002-08-03 18:40:09 +00:00
|
|
|
Song* pSongToPlay;
|
|
|
|
|
Notes* pNotesToPlay;
|
|
|
|
|
int i;
|
|
|
|
|
for( i=0; i<600; i++ ) // try 600 times
|
2002-08-02 09:31:06 +00:00
|
|
|
{
|
|
|
|
|
Song* pSong = SONGMAN->m_pSongs[ rand()%SONGMAN->m_pSongs.GetSize() ];
|
2002-08-03 18:40:09 +00:00
|
|
|
for( int j=0; j<3; j++ ) // try 3 times
|
2002-08-02 09:31:06 +00:00
|
|
|
{
|
2002-08-13 23:26:46 +00:00
|
|
|
if( pSong->m_apNotes.GetSize() == 0 )
|
|
|
|
|
continue;
|
|
|
|
|
|
2002-08-02 09:31:06 +00:00
|
|
|
Notes* pNotes = pSong->m_apNotes[ rand()%pSong->m_apNotes.GetSize() ];
|
|
|
|
|
if( pNotes->m_NotesType == GAMESTATE->GetCurrentStyleDef()->m_NotesType )
|
|
|
|
|
{
|
|
|
|
|
// found something we can use!
|
|
|
|
|
pSongToPlay = pSong;
|
|
|
|
|
pNotesToPlay = pNotes;
|
|
|
|
|
goto found_song_and_notes;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2002-08-03 18:40:09 +00:00
|
|
|
abort_demonstration:
|
2002-08-02 09:31:06 +00:00
|
|
|
// Couldn't find Song/Notes to play. Abort demonstration!
|
|
|
|
|
GAMESTATE->Reset();
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
found_song_and_notes:
|
|
|
|
|
ASSERT( pSongToPlay );
|
|
|
|
|
|
|
|
|
|
GAMESTATE->m_pCurSong = pSongToPlay;
|
|
|
|
|
for( int p=0; p<NUM_PLAYERS; p++ )
|
|
|
|
|
GAMESTATE->m_pCurNotes[p] = pNotesToPlay;
|
|
|
|
|
|
|
|
|
|
// choose some cool options
|
|
|
|
|
for( p=0; p<NUM_PLAYERS; p++ )
|
|
|
|
|
{
|
|
|
|
|
if( GAMESTATE->IsPlayerEnabled(p) )
|
|
|
|
|
{
|
2002-08-03 18:40:09 +00:00
|
|
|
if( RandomFloat(0,1)>0.8f )
|
|
|
|
|
GAMESTATE->m_PlayerOptions[p].m_fArrowScrollSpeed = 1.5f;
|
2002-08-02 09:31:06 +00:00
|
|
|
GAMESTATE->m_PlayerOptions[p].m_EffectType = PlayerOptions::EffectType(rand()%PlayerOptions::NUM_EFFECT_TYPES);
|
2002-08-03 18:40:09 +00:00
|
|
|
if( RandomFloat(0,1)>0.9f )
|
|
|
|
|
GAMESTATE->m_PlayerOptions[p].m_AppearanceType = PlayerOptions::APPEARANCE_HIDDEN;
|
|
|
|
|
if( RandomFloat(0,1)>0.9f )
|
|
|
|
|
GAMESTATE->m_PlayerOptions[p].m_AppearanceType = PlayerOptions::APPEARANCE_SUDDEN;
|
2002-08-13 23:26:46 +00:00
|
|
|
if( RandomFloat(0,1)>0.7f )
|
2002-08-03 18:40:09 +00:00
|
|
|
GAMESTATE->m_PlayerOptions[p].m_bReverseScroll = true;
|
|
|
|
|
if( RandomFloat(0,1)>0.9f )
|
|
|
|
|
GAMESTATE->m_PlayerOptions[p].m_bDark = true;
|
2002-08-02 09:31:06 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
GAMESTATE->m_SongOptions.m_LifeType = SongOptions::LifeType(rand()%SongOptions::NUM_LIFE_TYPES);
|
2002-08-13 23:26:46 +00:00
|
|
|
GAMESTATE->m_SongOptions.m_FailType = SongOptions::FAIL_OFF;
|
2002-08-02 09:31:06 +00:00
|
|
|
|
|
|
|
|
GAMESTATE->m_bDemonstration = true;
|
|
|
|
|
m_Fade.CloseWipingRight( SM_GoToDemonstration );
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case SM_GoToDemonstration:
|
|
|
|
|
{
|
|
|
|
|
ASSERT( GAMESTATE->m_pCurSong );
|
|
|
|
|
SCREENMAN->SetNewScreen( new ScreenGameplay );
|
|
|
|
|
}
|
|
|
|
|
break;
|
2002-05-20 08:59:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ScreenTitleMenu::LoseFocus( int iChoiceIndex )
|
|
|
|
|
{
|
|
|
|
|
m_soundChange.PlayRandom();
|
|
|
|
|
|
|
|
|
|
m_textChoice[iChoiceIndex].SetEffectNone();
|
|
|
|
|
m_textChoice[iChoiceIndex].BeginTweening( 0.3f );
|
|
|
|
|
m_textChoice[iChoiceIndex].SetTweenZoom( 0.9f );
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ScreenTitleMenu::GainFocus( int iChoiceIndex )
|
|
|
|
|
{
|
|
|
|
|
m_textChoice[iChoiceIndex].BeginTweening( 0.3f );
|
|
|
|
|
m_textChoice[iChoiceIndex].SetTweenZoom( 1.2f );
|
2002-08-13 23:26:46 +00:00
|
|
|
D3DXCOLOR color1, color2;
|
|
|
|
|
color1 = COLOR_SELECTED;
|
|
|
|
|
color2 = color1 * 0.5f;
|
|
|
|
|
color2.a = 1;
|
|
|
|
|
m_textChoice[iChoiceIndex].SetEffectCamelion( 2.5f, color1, color2 );
|
2002-05-20 08:59:37 +00:00
|
|
|
}
|
|
|
|
|
|
2002-05-27 18:36:01 +00:00
|
|
|
void ScreenTitleMenu::MenuUp( const PlayerNumber p )
|
2002-05-20 08:59:37 +00:00
|
|
|
{
|
|
|
|
|
LoseFocus( m_TitleMenuChoice );
|
|
|
|
|
|
|
|
|
|
if( m_TitleMenuChoice == 0 ) // wrap around
|
|
|
|
|
m_TitleMenuChoice = (ScreenTitleMenu::TitleMenuChoice)((int)NUM_TITLE_MENU_CHOICES);
|
|
|
|
|
|
|
|
|
|
m_TitleMenuChoice = TitleMenuChoice( m_TitleMenuChoice-1 );
|
|
|
|
|
|
|
|
|
|
GainFocus( m_TitleMenuChoice );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-05-27 18:36:01 +00:00
|
|
|
void ScreenTitleMenu::MenuDown( const PlayerNumber p )
|
2002-05-20 08:59:37 +00:00
|
|
|
{
|
|
|
|
|
LoseFocus( m_TitleMenuChoice );
|
|
|
|
|
|
|
|
|
|
if( m_TitleMenuChoice == (int)ScreenTitleMenu::NUM_TITLE_MENU_CHOICES-1 )
|
|
|
|
|
m_TitleMenuChoice = (TitleMenuChoice)-1; // wrap around
|
|
|
|
|
|
|
|
|
|
m_TitleMenuChoice = TitleMenuChoice( m_TitleMenuChoice+1 );
|
|
|
|
|
|
|
|
|
|
GainFocus( m_TitleMenuChoice );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-05-27 18:36:01 +00:00
|
|
|
void ScreenTitleMenu::MenuStart( const PlayerNumber p )
|
2002-05-20 08:59:37 +00:00
|
|
|
{
|
2002-08-13 23:26:46 +00:00
|
|
|
GAMESTATE->m_bIsJoined[p] = true;
|
|
|
|
|
|
|
|
|
|
GAMESTATE->m_bPlayersCanJoin = false;
|
|
|
|
|
|
2002-05-20 08:59:37 +00:00
|
|
|
|
|
|
|
|
switch( m_TitleMenuChoice )
|
|
|
|
|
{
|
2002-05-28 20:01:22 +00:00
|
|
|
case CHOICE_GAME_START:
|
2002-05-20 08:59:37 +00:00
|
|
|
case CHOICE_SELECT_GAME:
|
|
|
|
|
case CHOICE_MAP_INSTRUMENTS:
|
|
|
|
|
case CHOICE_GAME_OPTIONS:
|
2002-08-13 23:26:46 +00:00
|
|
|
case CHOICE_GRAPHIC_OPTIONS:
|
2002-07-11 19:02:26 +00:00
|
|
|
case CHOICE_APPEARANCE_OPTIONS:
|
|
|
|
|
m_soundSelect.PlayRandom();
|
2002-08-13 23:26:46 +00:00
|
|
|
m_Fade.CloseWipingRight( SM_GoToNextScreen );
|
|
|
|
|
break;
|
2002-05-20 08:59:37 +00:00
|
|
|
case CHOICE_EDIT:
|
2002-07-04 21:05:18 +00:00
|
|
|
if( SONGMAN->m_pSongs.GetSize() == 0 )
|
|
|
|
|
{
|
|
|
|
|
m_soundInvalid.PlayRandom();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
m_soundSelect.PlayRandom();
|
2002-08-13 23:26:46 +00:00
|
|
|
m_Fade.CloseWipingRight( SM_GoToNextScreen );
|
2002-07-04 21:05:18 +00:00
|
|
|
}
|
2002-08-13 23:26:46 +00:00
|
|
|
break;
|
2002-05-20 08:59:37 +00:00
|
|
|
/* case CHOICE_HELP:
|
|
|
|
|
m_soundSelect.PlayRandom();
|
2002-05-27 08:23:27 +00:00
|
|
|
PREFSMAN->m_bWindowed = false;
|
2002-05-20 08:59:37 +00:00
|
|
|
ApplyGraphicOptions();
|
|
|
|
|
GotoURL( "Docs/index.htm" );
|
|
|
|
|
return;
|
|
|
|
|
case CHOICE_CHECK_FOR_UPDATE:
|
|
|
|
|
m_soundSelect.PlayRandom();
|
2002-05-27 08:23:27 +00:00
|
|
|
PREFSMAN->m_bWindowed = false;
|
2002-05-20 08:59:37 +00:00
|
|
|
ApplyGraphicOptions();
|
|
|
|
|
GotoURL( "http://www.stepmania.com" );
|
|
|
|
|
return;
|
|
|
|
|
*/
|
|
|
|
|
case CHOICE_EXIT:
|
|
|
|
|
m_soundSelect.PlayRandom();
|
|
|
|
|
PostQuitMessage(0);
|
|
|
|
|
return;
|
2002-07-11 19:02:26 +00:00
|
|
|
default:
|
|
|
|
|
ASSERT(0);
|
2002-05-20 08:59:37 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2002-05-27 18:36:01 +00:00
|
|
|
void ScreenTitleMenu::MenuBack( const PlayerNumber p )
|
2002-05-20 08:59:37 +00:00
|
|
|
{
|
2002-08-13 23:26:46 +00:00
|
|
|
this->SendScreenMessage( SM_FadeToDemonstration, 0 );
|
2002-05-20 08:59:37 +00:00
|
|
|
}
|
|
|
|
|
|