Files
itgmania212121/stepmania/src/LifeMeterBar.h
T

85 lines
2.9 KiB
C++
Raw Normal View History

#ifndef LIFEMETERBAR_H
#define LIFEMETERBAR_H
2002-04-28 20:42:32 +00:00
2002-05-19 01:59:48 +00:00
#include "LifeMeter.h"
2002-04-28 20:42:32 +00:00
#include "Sprite.h"
2005-04-10 01:24:00 +00:00
#include "AutoActor.h"
2002-05-19 01:59:48 +00:00
#include "Quad.h"
2005-04-21 11:16:01 +00:00
class StreamDisplay;
2002-04-28 20:42:32 +00:00
2002-05-19 01:59:48 +00:00
class LifeMeterBar : public LifeMeter
2002-04-28 20:42:32 +00:00
{
public:
LifeMeterBar();
~LifeMeterBar();
2002-04-28 20:42:32 +00:00
virtual void Load( const PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats );
2002-07-23 01:41:40 +00:00
2002-04-28 20:42:32 +00:00
virtual void Update( float fDeltaTime );
2002-05-19 01:59:48 +00:00
virtual void DrawPrimitives();
2002-04-28 20:42:32 +00:00
2002-05-19 01:59:48 +00:00
virtual void ChangeLife( TapNoteScore score );
virtual void ChangeLife( HoldNoteScore score, TapNoteScore tscore );
2003-11-11 07:36:28 +00:00
virtual void ChangeLife( float fDeltaLifePercent );
virtual void AfterLifeChanged();
2002-07-28 20:28:37 +00:00
virtual void OnDancePointsChange() {}; // this life meter doesn't care
2003-11-03 18:24:13 +00:00
virtual bool IsInDanger() const;
virtual bool IsPastPassmark() const;
2003-11-03 18:24:13 +00:00
virtual bool IsHot() const;
virtual bool IsFailing() const;
2003-10-23 06:15:58 +00:00
virtual float GetLife() const { return m_fLifePercentage; }
2005-04-21 11:16:01 +00:00
virtual void ForceFail();
2002-04-28 20:42:32 +00:00
void UpdateNonstopLifebar(int cleared, int total, int ProgressiveLifebarDifficulty);
void FillForHowToPlay(int NumT2s, int NumMisses);
// this function is solely for HowToPlay
2002-04-28 20:42:32 +00:00
private:
2005-04-10 01:24:00 +00:00
AutoActor m_sprBackground;
Quad m_quadDangerGlow;
2005-04-21 11:16:01 +00:00
StreamDisplay* m_pStream;
AutoActor m_sprFrame;
2002-07-23 01:41:40 +00:00
2002-04-28 20:42:32 +00:00
float m_fLifePercentage;
float m_fPassingAlpha;
2002-07-23 01:41:40 +00:00
float m_fHotAlpha;
bool m_bFailedEarlier; // set this to true when life dips below 0
2003-07-29 12:42:38 +00:00
float m_fBaseLifeDifficulty;
float m_fLifeDifficulty; // essentially same as pref
2003-07-29 12:42:38 +00:00
int m_iProgressiveLifebar; // cached from prefs
int m_iMissCombo; // current number of progressive W5/miss
int m_iComboToRegainLife; // combo needed before lifebar starts filling up after fail
2002-04-28 20:42:32 +00:00
};
#endif
2004-06-08 00:08:04 +00:00
/*
* (c) 2001-2004 Chris Danford
* All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the
* "Software"), to deal in the Software without restriction, including
* without limitation the rights to use, copy, modify, merge, publish,
* distribute, and/or sell copies of the Software, and to permit persons to
* whom the Software is furnished to do so, provided that the above
* copyright notice(s) and this permission notice appear in all copies of
* the Software and that both the above copyright notice(s) and this
* permission notice appear in supporting documentation.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/