Added: 2D DancingCharacter System, Ability to Show (or not show) Evaluation Screen on Fail. Evaluation Screen Fail / Passed BGA Overlays.

This commit is contained in:
Andrew Livy
2003-11-10 23:25:44 +00:00
parent 0fd7734c93
commit ad7c67b0ce
8 changed files with 357 additions and 16 deletions
+2
View File
@@ -41,6 +41,8 @@ public:
virtual bool IsInDanger() { return m_bInDanger; }; virtual bool IsInDanger() { return m_bInDanger; };
DancingCharacters* GetDancingCharacters() { return m_pDancingCharacters; };
protected: protected:
bool IsDangerVisible(); bool IsDangerVisible();
void UpdateCurBGChange(); void UpdateCurBGChange();
+140
View File
@@ -19,6 +19,8 @@
#include "song.h" #include "song.h"
#include "Character.h" #include "Character.h"
#define DC_X( choice ) THEME->GetMetricF("DancingCharacters",ssprintf("2DCharacterXP%d",choice+1))
#define DC_Y( choice ) THEME->GetMetricF("DancingCharacters",ssprintf("2DCharacterYP%d",choice+1))
const float CAMERA_REST_DISTANCE = 32.f; const float CAMERA_REST_DISTANCE = 32.f;
const float CAMERA_REST_LOOK_AT_HEIGHT = -9.f; const float CAMERA_REST_LOOK_AT_HEIGHT = -9.f;
@@ -44,8 +46,12 @@ const float MODEL_ROTATIONY_TWO_PLAYERS[NUM_PLAYERS] = { -90, 90 };
DancingCharacters::DancingCharacters() DancingCharacters::DancingCharacters()
{ {
m_bDrawDangerLight = false; m_bDrawDangerLight = false;
for( int p=0; p<NUM_PLAYERS; p++ ) for( int p=0; p<NUM_PLAYERS; p++ )
{ {
m_2DIdleTimer[p].SetZero();
m_i2DAnimState[p] = AS2D_IDLE; // start on idle state
m_bHasIdleAnim[p] = m_bHas2DElements[p] = false;
if( !GAMESTATE->IsPlayerEnabled(p) ) if( !GAMESTATE->IsPlayerEnabled(p) )
continue; continue;
@@ -53,6 +59,73 @@ DancingCharacters::DancingCharacters()
if( !pChar ) if( !pChar )
continue; continue;
// load in any potential 2D stuff
CString sCharacterDirectory = pChar->m_sCharDir;
CString sCurrentAnim;
sCurrentAnim = sCharacterDirectory + "2DIdle";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasIdleAnim[p] = m_bHas2DElements[p] = true;
m_bgIdle[p].LoadFromAniDir( sCurrentAnim );
m_bgIdle[p].SetXY(DC_X(p),DC_Y(p));
}
sCurrentAnim = sCharacterDirectory + "2DMiss";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasMissAnim[p] = m_bHas2DElements[p] = true;
m_bgMiss[p].LoadFromAniDir( sCurrentAnim );
m_bgMiss[p].SetXY(DC_X(p),DC_Y(p));
}
sCurrentAnim = sCharacterDirectory + "2DGood";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasGoodAnim[p] = m_bHas2DElements[p] = true;
m_bgGood[p].LoadFromAniDir( sCurrentAnim );
m_bgGood[p].SetXY(DC_X(p),DC_Y(p));
}
sCurrentAnim = sCharacterDirectory + "2DGreat";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasGreatAnim[p] = m_bHas2DElements[p] = true;
m_bgGreat[p].LoadFromAniDir( sCurrentAnim );
m_bgGreat[p].SetXY(DC_X(p),DC_Y(p));
}
sCurrentAnim = sCharacterDirectory + "2DFever";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasFeverAnim[p] = m_bHas2DElements[p] = true;
m_bgFever[p].LoadFromAniDir( sCurrentAnim );
m_bgFever[p].SetXY(DC_X(p),DC_Y(p));
}
sCurrentAnim = sCharacterDirectory + "2DFail";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasFailAnim[p] = m_bHas2DElements[p] = true;
m_bgFail[p].LoadFromAniDir( sCurrentAnim );
m_bgFail[p].SetXY(DC_X(p),DC_Y(p));
}
sCurrentAnim = sCharacterDirectory + "2DWin";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasWinAnim[p] = m_bHas2DElements[p] = true;
m_bgWin[p].LoadFromAniDir( sCurrentAnim );
m_bgWin[p].SetXY(DC_X(p),DC_Y(p));
}
sCurrentAnim = sCharacterDirectory + "2DWinFever";
if( DoesFileExist(sCurrentAnim + SLASH + "BGAnimation.ini") ) // check 2D Idle BGAnim exists
{
m_bHasWinFeverAnim[p] = m_bHas2DElements[p] = true;
m_bgWinFever[p].LoadFromAniDir( sCurrentAnim );
m_bgWinFever[p].SetXY(DC_X(p),DC_Y(p));
}
if( pChar->GetModelPath().empty() ) if( pChar->GetModelPath().empty() )
continue; continue;
@@ -182,6 +255,53 @@ void DancingCharacters::Update( float fDelta )
m_fThisCameraStartBeat = (float) iCurBeat; m_fThisCameraStartBeat = (float) iCurBeat;
m_fThisCameraEndBeat = float(iCurBeat + 8); m_fThisCameraEndBeat = float(iCurBeat + 8);
} }
// update any 2D stuff
for( int p=0; p<NUM_PLAYERS; p++ )
{
if(m_bHasIdleAnim[p])
{
if(m_bHasIdleAnim[p] && m_i2DAnimState[p] == AS2D_IDLE)
m_bgIdle[p].Update(fDelta);
if(m_bHasMissAnim[p] && m_i2DAnimState[p] == AS2D_MISS)
m_bgMiss[p].Update(fDelta);
if(m_bHasGoodAnim[p] && m_i2DAnimState[p] == AS2D_GOOD)
m_bgGood[p].Update(fDelta);
if(m_bHasGreatAnim[p] && m_i2DAnimState[p] == AS2D_GREAT)
m_bgGreat[p].Update(fDelta);
if(m_bHasFeverAnim[p] && m_i2DAnimState[p] == AS2D_FEVER)
m_bgFever[p].Update(fDelta);
if(m_bHasFailAnim[p] && m_i2DAnimState[p] == AS2D_FAIL)
m_bgFail[p].Update(fDelta);
if(m_bHasWinAnim[p] && m_i2DAnimState[p] == AS2D_WIN)
m_bgWin[p].Update(fDelta);
if(m_bHasWinFeverAnim[p] && m_i2DAnimState[p] == AS2D_WINFEVER)
m_bgWinFever[p].Update(fDelta);
if(m_i2DAnimState[p] != AS2D_IDLE) // if we're not in idle state, start a timer to return us to idle
{
// never return to idle state if we have failed / passed (i.e. completed) the song
if(m_i2DAnimState[p] != AS2D_WINFEVER && m_i2DAnimState[p] != AS2D_FAIL && m_i2DAnimState[p] != AS2D_WIN)
{
if(m_2DIdleTimer[p].IsZero())
m_2DIdleTimer[p].Touch();
if(!m_2DIdleTimer[p].IsZero() && m_2DIdleTimer[p].Ago() > 1.0f)
{
m_2DIdleTimer[p].SetZero();
m_i2DAnimState[p] = AS2D_IDLE;
}
}
}
}
}
}
void DancingCharacters::Change2DAnimState(int iPlayerNum, int iState)
{
if(iPlayerNum >= NUM_PLAYERS) { ASSERT(0); } // player out of bounds?
if(iState >= AS2D_MAXSTATES) { ASSERT(0); } // invalid state?
m_i2DAnimState[iPlayerNum] = iState;
} }
void DancingCharacters::DrawPrimitives() void DancingCharacters::DrawPrimitives()
@@ -235,4 +355,24 @@ void DancingCharacters::DrawPrimitives()
DISPLAY->CameraPopMatrix(); DISPLAY->CameraPopMatrix();
// now draw any potential 2D stuff
for( p=0; p<NUM_PLAYERS; p++ )
{
if(m_bHasIdleAnim[p] && m_i2DAnimState[p] == AS2D_IDLE)
m_bgIdle[p].Draw();
if(m_bHasMissAnim[p] && m_i2DAnimState[p] == AS2D_MISS)
m_bgMiss[p].Draw();
if(m_bHasGoodAnim[p] && m_i2DAnimState[p] == AS2D_GOOD)
m_bgGood[p].Draw();
if(m_bHasGreatAnim[p] && m_i2DAnimState[p] == AS2D_GREAT)
m_bgGreat[p].Draw();
if(m_bHasFeverAnim[p] && m_i2DAnimState[p] == AS2D_FEVER)
m_bgFever[p].Draw();
if(m_bHasWinFeverAnim[p] && m_i2DAnimState[p] == AS2D_WINFEVER)
m_bgWinFever[p].Draw();
if(m_bHasWinAnim[p] && m_i2DAnimState[p] == AS2D_WIN)
m_bgWin[p].Draw();
if(m_bHasFailAnim[p] && m_i2DAnimState[p] == AS2D_FAIL)
m_bgFail[p].Draw();
}
} }
+39 -1
View File
@@ -14,7 +14,23 @@
#include "Model.h" #include "Model.h"
#include "ActorFrame.h" #include "ActorFrame.h"
#include "PlayerNumber.h" #include "PlayerNumber.h"
#include "BGAnimation.h"
#include "ThemeManager.h"
#include "RageTimer.h"
enum ANIM_STATES_2D
{
AS2D_IDLE = 0,
AS2D_MISS,
AS2D_GOOD,
AS2D_GREAT,
AS2D_FEVER,
AS2D_FAIL,
AS2D_WIN,
AS2D_WINFEVER,
AS2D_IGNORE, // special case -- so that we can timer to idle again.
AS2D_MAXSTATES // leave at end
};
class DancingCharacters : public ActorFrame class DancingCharacters : public ActorFrame
{ {
@@ -26,7 +42,7 @@ public:
virtual void Update( float fDelta ); virtual void Update( float fDelta );
virtual void DrawPrimitives(); virtual void DrawPrimitives();
bool m_bDrawDangerLight; bool m_bDrawDangerLight;
void Change2DAnimState(int iPlayerNum, int iState);
protected: protected:
Model m_Character[NUM_PLAYERS]; Model m_Character[NUM_PLAYERS];
@@ -39,6 +55,28 @@ protected:
float m_fCameraHeightEnd; float m_fCameraHeightEnd;
float m_fThisCameraStartBeat; float m_fThisCameraStartBeat;
float m_fThisCameraEndBeat; float m_fThisCameraEndBeat;
bool m_bHas2DElements[NUM_PLAYERS];
bool m_bHasIdleAnim[NUM_PLAYERS];
BGAnimation m_bgIdle[NUM_PLAYERS];
bool m_bHasMissAnim[NUM_PLAYERS];
BGAnimation m_bgMiss[NUM_PLAYERS];
bool m_bHasGoodAnim[NUM_PLAYERS];
BGAnimation m_bgGood[NUM_PLAYERS];
bool m_bHasGreatAnim[NUM_PLAYERS];
BGAnimation m_bgGreat[NUM_PLAYERS];
bool m_bHasFeverAnim[NUM_PLAYERS];
BGAnimation m_bgFever[NUM_PLAYERS];
bool m_bHasFailAnim[NUM_PLAYERS];
BGAnimation m_bgFail[NUM_PLAYERS];
bool m_bHasWinAnim[NUM_PLAYERS];
BGAnimation m_bgWin[NUM_PLAYERS];
bool m_bHasWinFeverAnim[NUM_PLAYERS];
BGAnimation m_bgWinFever[NUM_PLAYERS];
RageTimer m_2DIdleTimer[NUM_PLAYERS];
int m_i2DAnimState[NUM_PLAYERS];
}; };
#endif #endif
+59 -2
View File
@@ -92,6 +92,7 @@ PlayerMinus::~PlayerMinus()
void PlayerMinus::Load( PlayerNumber pn, const NoteData* pNoteData, LifeMeter* pLM, CombinedLifeMeter* pCombinedLM, ScoreDisplay* pScore, Inventory* pInventory, ScoreKeeper* pPrimaryScoreKeeper, ScoreKeeper* pSecondaryScoreKeeper, NoteFieldPlus* pNoteField ) void PlayerMinus::Load( PlayerNumber pn, const NoteData* pNoteData, LifeMeter* pLM, CombinedLifeMeter* pCombinedLM, ScoreDisplay* pScore, Inventory* pInventory, ScoreKeeper* pPrimaryScoreKeeper, ScoreKeeper* pSecondaryScoreKeeper, NoteFieldPlus* pNoteField )
{ {
m_iDCState = AS2D_IDLE;
//LOG->Trace( "PlayerMinus::Load()", ); //LOG->Trace( "PlayerMinus::Load()", );
GAMESTATE->ResetNoteSkinsForPlayer( pn ); GAMESTATE->ResetNoteSkinsForPlayer( pn );
@@ -530,7 +531,33 @@ void PlayerMinus::Step( int col, RageTimer tm )
{ {
case PC_HUMAN: { case PC_HUMAN: {
if(GAMESTATE->m_CurGame == GAME_EZ2)
{
/* 1 is normal. 2 means scoring is half as hard; .5 means it's twice as hard. */
/* Ez2 is only perfect / good / miss */
float fScaledSecondsFromPerfect = fSecondsFromPerfect / PREFSMAN->m_fJudgeWindowScale;
if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowMarvelousSeconds ) score = TNS_PERFECT;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowPerfectSeconds ) score = TNS_PERFECT;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowGreatSeconds ) score = TNS_PERFECT;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowGoodSeconds ) score = TNS_GOOD;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowBooSeconds ) score = TNS_MISS;
else score = TNS_NONE;
}
else if(GAMESTATE->m_CurGame == GAME_PNM)
{
/* PNM Goods = Great / Boo = Miss */
float fScaledSecondsFromPerfect = fSecondsFromPerfect / PREFSMAN->m_fJudgeWindowScale;
if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowMarvelousSeconds ) score = TNS_MARVELOUS;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowPerfectSeconds ) score = TNS_PERFECT;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowGreatSeconds ) score = TNS_GREAT;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowGoodSeconds ) score = TNS_GREAT;
else if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowBooSeconds ) score = TNS_MISS;
else score = TNS_NONE;
}
if( tn == TAP_MINE ) if( tn == TAP_MINE )
{ {
// stepped too close to mine? // stepped too close to mine?
if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowMineSeconds ) if( fScaledSecondsFromPerfect <= PREFSMAN->m_fJudgeWindowMineSeconds )
@@ -581,6 +608,17 @@ void PlayerMinus::Step( int col, RageTimer tm )
if(score == TNS_BOO) if(score == TNS_BOO)
score = TNS_MISS; score = TNS_MISS;
} }
if ( GAMESTATE->m_CurGame == GAME_PNM ) // a boo is really miss on pnm, a good is really a great!
{
if(score == TNS_MARVELOUS) // in demo mode PC shouldnt hit marvelous
score = TNS_PERFECT;
if(score == TNS_GOOD)
score = TNS_GREAT;
if(score == TNS_BOO)
score = TNS_MISS;
}
/* AI will generate misses here. Don't handle a miss like a regular note because /* AI will generate misses here. Don't handle a miss like a regular note because
* we want the judgment animation to appear delayed. Instead, return early if * we want the judgment animation to appear delayed. Instead, return early if
@@ -598,7 +636,7 @@ void PlayerMinus::Step( int col, RageTimer tm )
} }
break; break;
case PC_AUTOPLAY: case PC_AUTOPLAY:
if(GAMESTATE->m_CurGame == GAME_EZ2) if(GAMESTATE->m_CurGame == GAME_EZ2 || GAMESTATE->m_CurGame == GAME_PNM) // these gametypes never hit marvelous on autoplay
{ {
score = TNS_PERFECT; score = TNS_PERFECT;
} }
@@ -645,7 +683,26 @@ void PlayerMinus::Step( int col, RageTimer tm )
if( IsRowCompletelyJudged(iIndexOverlappingNote) ) if( IsRowCompletelyJudged(iIndexOverlappingNote) )
OnRowCompletelyJudged( iIndexOverlappingNote ); OnRowCompletelyJudged( iIndexOverlappingNote );
if( score == TNS_MISS || score == TNS_BOO )
{
m_iDCState = AS2D_MISS;
} }
if( score == TNS_GOOD || score == TNS_GREAT )
{
m_iDCState = AS2D_GOOD;
}
if( score == TNS_PERFECT || score == TNS_MARVELOUS )
{
m_iDCState = AS2D_GREAT;
if(m_pLifeMeter->GetLife() == 1.0f) // full life
{
m_iDCState = AS2D_FEVER; // super celebrate time :)
}
}
}
if( bGrayArrowStep ) if( bGrayArrowStep )
m_pNoteField->Step( col ); m_pNoteField->Step( col );
@@ -896,7 +953,7 @@ void PlayerMinus::HandleTapRowScore( unsigned row )
case TNS_MISS: case TNS_MISS:
++GAMESTATE->m_CurStageStats.iCurMissCombo[m_PlayerNumber]; ++GAMESTATE->m_CurStageStats.iCurMissCombo[m_PlayerNumber];
m_iDCState = AS2D_MISS; // update dancing 2d characters that may have missed a note
case TNS_GOOD: case TNS_GOOD:
case TNS_BOO: case TNS_BOO:
if( iCurCombo > 50 ) if( iCurCombo > 50 )
+5 -1
View File
@@ -27,6 +27,7 @@
#include "RageTimer.h" #include "RageTimer.h"
#include "ProTimingDisplay.h" #include "ProTimingDisplay.h"
#include "RageSound.h" #include "RageSound.h"
#include "DancingCharacters.h"
class ScoreDisplay; class ScoreDisplay;
class LifeMeter; class LifeMeter;
@@ -51,7 +52,8 @@ public:
void Step( int col, RageTimer tm ); void Step( int col, RageTimer tm );
void RandomiseNotes( int iNoteRow ); void RandomiseNotes( int iNoteRow );
void FadeToFail(); void FadeToFail();
int GetDancingCharacterState() { return m_iDCState; };
void SetCharacterState(int iDCState) { m_iDCState = iDCState; };
protected: protected:
void UpdateTapNotesMissedOlderThan( float fMissIfOlderThanThisBeat ); void UpdateTapNotesMissedOlderThan( float fMissIfOlderThanThisBeat );
void OnRowCompletelyJudged( int iStepIndex ); void OnRowCompletelyJudged( int iStepIndex );
@@ -79,6 +81,8 @@ protected:
Combo m_Combo; Combo m_Combo;
int m_iDCState;
// DancingCharacters* m_pDancingCharacters; // used to adjust the 2D anims dancing states
LifeMeter* m_pLifeMeter; LifeMeter* m_pLifeMeter;
CombinedLifeMeter* m_pCombinedLifeMeter; CombinedLifeMeter* m_pCombinedLifeMeter;
ScoreDisplay* m_pScore; ScoreDisplay* m_pScore;
+48 -3
View File
@@ -45,6 +45,7 @@ const char* JUDGE_STRING[NUM_JUDGE_LINES] =
// #define JUDGE_SOUND_TIME( name ) THEME->GetMetricF( m_sName, ssprintf("JudgeSoundTime%s", name) ); // #define JUDGE_SOUND_TIME( name ) THEME->GetMetricF( m_sName, ssprintf("JudgeSoundTime%s", name) );
// #define SOUND_ON_FULL_ALPHA THEME->GetMetricB( m_sName, "JudgeSoundIfJudgeGraphicsFullAlpha" ) // #define SOUND_ON_FULL_ALPHA THEME->GetMetricB( m_sName, "JudgeSoundIfJudgeGraphicsFullAlpha" )
// metrics that are specific to classes derived from ScreenEvaluation // metrics that are specific to classes derived from ScreenEvaluation
#define FAILED_SCREEN THEME->GetMetric (m_sName, "FailedScreen")
#define NEXT_SCREEN THEME->GetMetric (m_sName,"NextScreen") #define NEXT_SCREEN THEME->GetMetric (m_sName,"NextScreen")
#define END_SCREEN THEME->GetMetric (m_sName,"EndScreen") #define END_SCREEN THEME->GetMetric (m_sName,"EndScreen")
#define SHOW_BANNER_AREA THEME->GetMetricB(m_sName,"ShowBannerArea") #define SHOW_BANNER_AREA THEME->GetMetricB(m_sName,"ShowBannerArea")
@@ -91,6 +92,8 @@ ScreenEvaluation::ScreenEvaluation( CString sClassName ) : Screen(sClassName)
LOG->Trace( "ScreenEvaluation::ScreenEvaluation()" ); LOG->Trace( "ScreenEvaluation::ScreenEvaluation()" );
m_bFailed = false; // the evaluation is not showing failed results by default
m_sName = sClassName; m_sName = sClassName;
if( !TYPE.CompareNoCase("stage") ) if( !TYPE.CompareNoCase("stage") )
m_Type = stage; m_Type = stage;
@@ -107,6 +110,10 @@ ScreenEvaluation::ScreenEvaluation( CString sClassName ) : Screen(sClassName)
// Figure out which statistics and songs we're going to display // Figure out which statistics and songs we're going to display
// //
StageStats stageStats; StageStats stageStats;
if(stageStats.AllFailed() ) // if everyone failed
m_bFailed = true; // flag it for this screen
vector<Song*> vSongsToShow; vector<Song*> vSongsToShow;
switch( m_Type ) switch( m_Type )
{ {
@@ -189,6 +196,8 @@ ScreenEvaluation::ScreenEvaluation( CString sClassName ) : Screen(sClassName)
continue; // skip continue; // skip
if( !GAMESTATE->m_SongOptions.m_bSaveScore ) if( !GAMESTATE->m_SongOptions.m_bSaveScore )
continue; // skip continue; // skip
if( m_bFailed )
continue; // skip
switch( m_Type ) switch( m_Type )
{ {
@@ -274,7 +283,6 @@ ScreenEvaluation::ScreenEvaluation( CString sClassName ) : Screen(sClassName)
} }
} }
// If both players get a machine high score, a player // If both players get a machine high score, a player
// whose score is added later may bump the players who were // whose score is added later may bump the players who were
// added earlier. Adjust for this. // added earlier. Adjust for this.
@@ -284,6 +292,9 @@ ScreenEvaluation::ScreenEvaluation( CString sClassName ) : Screen(sClassName)
continue; // skip continue; // skip
if( iMachineHighScoreIndex[p] == -1 ) // no record if( iMachineHighScoreIndex[p] == -1 ) // no record
continue; // skip continue; // skip
if( m_bFailed ) // both players failed
continue; // skip
for( int p2=0; p2<p; p2++ ) for( int p2=0; p2<p; p2++ )
{ {
if( !GAMESTATE->IsHumanPlayer(p2) ) if( !GAMESTATE->IsHumanPlayer(p2) )
@@ -321,8 +332,16 @@ ScreenEvaluation::ScreenEvaluation( CString sClassName ) : Screen(sClassName)
m_Menu.Load( m_sName ); m_Menu.Load( m_sName );
this->AddChild( &m_Menu ); this->AddChild( &m_Menu );
if(m_bFailed && m_Type==stage)
{
m_bgFailedBack.LoadFromAniDir( THEME->GetPathToB("ScreenEvaluationStage Failed Background") );
m_bgFailedOverlay.LoadFromAniDir( THEME->GetPathToB("ScreenEvaluationStage Failed Overlay") );
}
else if( m_Type == stage )
{
// the themer can use the regular background for passed background
m_bgPassedOverlay.LoadFromAniDir( THEME->GetPathToB("ScreenEvaluationStage Passed Overlay") );
}
// //
// init banner area // init banner area
// //
@@ -971,6 +990,14 @@ void ScreenEvaluation::Update( float fDeltaTime )
{ {
Screen::Update( fDeltaTime ); Screen::Update( fDeltaTime );
if(m_bFailed && m_Type == stage)
{
m_bgFailedBack.Update( fDeltaTime );
m_bgFailedOverlay.Update( fDeltaTime );
}
else if (m_Type == stage)
m_bgPassedOverlay.Update( fDeltaTime );
for( int p=0; p<NUM_PLAYERS; p++) for( int p=0; p<NUM_PLAYERS; p++)
{ {
if (GAMESTATE->m_CurStageStats.iBonus[p] == 0) if (GAMESTATE->m_CurStageStats.iBonus[p] == 0)
@@ -1021,7 +1048,19 @@ void ScreenEvaluation::Update( float fDeltaTime )
void ScreenEvaluation::DrawPrimitives() void ScreenEvaluation::DrawPrimitives()
{ {
m_Menu.DrawBottomLayer(); m_Menu.DrawBottomLayer();
// draw the failed background here if the player(s) failed
if(m_bFailed && m_Type == stage)
m_bgFailedBack.Draw();
Screen::DrawPrimitives(); Screen::DrawPrimitives();
// draw the pass / failed overlays here respectively
if(m_bFailed && m_Type == stage)
m_bgFailedOverlay.Draw();
else if (m_Type == stage)
m_bgPassedOverlay.Draw();
m_Menu.DrawTopLayer(); m_Menu.DrawTopLayer();
} }
@@ -1043,12 +1082,18 @@ void ScreenEvaluation::HandleScreenMessage( const ScreenMessage SM )
MenuStart( PLAYER_INVALID ); MenuStart( PLAYER_INVALID );
break; break;
case SM_GoToNextScreen: case SM_GoToNextScreen:
if(m_bFailed && !PREFSMAN->m_bEventMode) // if failed and not in event mode go to gameover screen
SCREENMAN->SetNewScreen( FAILED_SCREEN );
else
SCREENMAN->SetNewScreen( NEXT_SCREEN ); SCREENMAN->SetNewScreen( NEXT_SCREEN );
break; break;
case SM_GoToSelectCourse: case SM_GoToSelectCourse:
SCREENMAN->SetNewScreen( "ScreenSelectCourse" ); SCREENMAN->SetNewScreen( "ScreenSelectCourse" );
break; break;
case SM_GoToEndScreen: case SM_GoToEndScreen:
if(m_bFailed && !PREFSMAN->m_bEventMode) // if failed and not in event mode go to gameover screen
SCREENMAN->SetNewScreen( FAILED_SCREEN );
else
SCREENMAN->SetNewScreen( END_SCREEN ); SCREENMAN->SetNewScreen( END_SCREEN );
break; break;
// case SM_GoToEvaluationSummary: // case SM_GoToEvaluationSummary:
+5
View File
@@ -57,6 +57,10 @@ protected:
float m_fScreenCreateTime; float m_fScreenCreateTime;
BGAnimation m_bgFailedBack;
BGAnimation m_bgFailedOverlay;
BGAnimation m_bgPassedOverlay;
MenuElements m_Menu; MenuElements m_Menu;
// banner area // banner area
@@ -115,6 +119,7 @@ protected:
bool m_bTryExtraStage; bool m_bTryExtraStage;
Sprite m_sprTryExtraStage; Sprite m_sprTryExtraStage;
AutoActor m_FullCombo[NUM_PLAYERS]; AutoActor m_FullCombo[NUM_PLAYERS];
bool m_bFailed;
}; };
#endif #endif
+50
View File
@@ -54,6 +54,7 @@
#define SHOW_LIFE_METER_FOR_DISABLED_PLAYERS THEME->GetMetricB("ScreenGameplay","ShowLifeMeterForDisabledPlayers") #define SHOW_LIFE_METER_FOR_DISABLED_PLAYERS THEME->GetMetricB("ScreenGameplay","ShowLifeMeterForDisabledPlayers")
#define STATICBG_X THEME->GetMetricI ("ScreenGameplay","StaticBGX") #define STATICBG_X THEME->GetMetricI ("ScreenGameplay","StaticBGX")
#define STATICBG_Y THEME->GetMetricI ("ScreenGameplay","StaticBGY") #define STATICBG_Y THEME->GetMetricI ("ScreenGameplay","StaticBGY")
#define EVAL_ON_FAIL THEME->GetMetricB ("ScreenGameplay", "ShowEvaluationOnFail")
CachedThemeMetricF SECONDS_BETWEEN_COMMENTS ("ScreenGameplay","SecondsBetweenComments"); CachedThemeMetricF SECONDS_BETWEEN_COMMENTS ("ScreenGameplay","SecondsBetweenComments");
CachedThemeMetricF G_TICK_EARLY_SECONDS ("ScreenGameplay","TickEarlySeconds"); CachedThemeMetricF G_TICK_EARLY_SECONDS ("ScreenGameplay","TickEarlySeconds");
@@ -1095,6 +1096,21 @@ void ScreenGameplay::Update( float fDeltaTime )
// //
UpdateCheckFail(); UpdateCheckFail();
//
// update 2d dancing characters
//
for( int p=0; p<NUM_PLAYERS; p++ )
{
if( !GAMESTATE->IsPlayerEnabled(p) )
continue;
if(m_Background.GetDancingCharacters() != NULL)
{
if(m_Player[p].GetDancingCharacterState() != AS2D_IGNORE) // grab the state of play from player and update the character
m_Background.GetDancingCharacters()->Change2DAnimState(p,m_Player[p].GetDancingCharacterState());
m_Player[p].SetCharacterState(AS2D_IGNORE); // set to ignore as we've already grabbed the latest change
}
}
// //
// Check for enemy death in enemy battle // Check for enemy death in enemy battle
// //
@@ -1663,6 +1679,21 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM )
return; return;
} }
// update dancing characters for win / lose
for(p=0; p<NUM_PLAYERS;p++)
{
if( GAMESTATE->IsPlayerEnabled(p) && GAMESTATE->m_CurStageStats.bFailed[p] )
m_Background.GetDancingCharacters()->Change2DAnimState(p,AS2D_FAIL); // fail anim
else
{
if(m_pLifeMeter[p]->GetLife() == 1.0f) // full life
m_Background.GetDancingCharacters()->Change2DAnimState(p,AS2D_WINFEVER); // full life pass anim
else
m_Background.GetDancingCharacters()->Change2DAnimState(p,AS2D_WIN); // pass anim
}
}
/* End round. */ /* End round. */
if( m_DancingState == STATE_OUTRO ) // ScreenGameplay already ended if( m_DancingState == STATE_OUTRO ) // ScreenGameplay already ended
return; // ignore return; // ignore
@@ -1712,6 +1743,7 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM )
SOUND->PlayOnceFromDir( ANNOUNCER->GetPathTo("gameplay cleared") ); SOUND->PlayOnceFromDir( ANNOUNCER->GetPathTo("gameplay cleared") );
} }
} }
break; break;
case SM_LoadNextSong: case SM_LoadNextSong:
@@ -1945,11 +1977,29 @@ void ScreenGameplay::HandleScreenMessage( const ScreenMessage SM )
case PLAY_MODE_BATTLE: case PLAY_MODE_BATTLE:
case PLAY_MODE_RAVE: case PLAY_MODE_RAVE:
if( PREFSMAN->m_bEventMode ) if( PREFSMAN->m_bEventMode )
{
if(EVAL_ON_FAIL) // go to the eval screen if we fail
{
SCREENMAN->SetNewScreen( "ScreenEvaluationStage" );
}
else // the theme says just fail and go back to the song select for event mode
{
HandleScreenMessage( SM_GoToScreenAfterBack ); HandleScreenMessage( SM_GoToScreenAfterBack );
}
}
else if( GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() ) else if( GAMESTATE->IsExtraStage() || GAMESTATE->IsExtraStage2() )
SCREENMAN->SetNewScreen( "ScreenEvaluationStage" ); SCREENMAN->SetNewScreen( "ScreenEvaluationStage" );
else else
{
if(EVAL_ON_FAIL) // go to the eval screen if we fail
{
SCREENMAN->SetNewScreen( "ScreenEvaluationStage" );
}
else // if not just game over now
{
SCREENMAN->SetNewScreen( "ScreenGameOver" ); SCREENMAN->SetNewScreen( "ScreenGameOver" );
}
}
break; break;
case PLAY_MODE_NONSTOP: case PLAY_MODE_NONSTOP:
SCREENMAN->SetNewScreen( "ScreenEvaluationNonstop" ); SCREENMAN->SetNewScreen( "ScreenEvaluationNonstop" );