Files
itgmania212121/stepmania/src/LifeMeterBattery.h
T

77 lines
2.4 KiB
C++
Raw Normal View History

2004-06-08 00:08:04 +00:00
/* LifeMeterBattery - Battery life meter used in Oni. */
#ifndef LIFEMETERBATTERY_H
#define LIFEMETERBATTERY_H
2002-07-23 01:41:40 +00:00
#include "LifeMeter.h"
#include "Sprite.h"
#include "BitmapText.h"
2003-01-02 08:13:34 +00:00
#include "RageSound.h"
2003-10-04 08:22:09 +00:00
#include "PercentageDisplay.h"
2002-07-23 01:41:40 +00:00
class LifeMeterBattery : public LifeMeter
{
public:
LifeMeterBattery();
virtual void Load( const PlayerState *pPlayerState, PlayerStageStats *pPlayerStageStats );
2002-07-23 01:41:40 +00:00
virtual void Update( float fDeltaTime );
virtual void OnSongEnded();
2002-07-23 01:41:40 +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 HandleTapScoreNone();
2003-11-03 18:24:13 +00:00
virtual bool IsInDanger() const;
virtual bool IsHot() const;
virtual bool IsFailing() const;
2003-10-23 06:15:58 +00:00
virtual float GetLife() const;
2002-07-23 01:41:40 +00:00
void Refresh();
private:
2002-07-28 20:28:37 +00:00
int m_iLivesLeft; // dead when 0
int m_iTrailingLivesLeft; // lags m_iLivesLeft
2002-07-23 01:41:40 +00:00
float m_fBatteryBlinkTime; // if > 0 battery is blinking
Sprite m_sprFrame;
Sprite m_sprBattery;
BitmapText m_textNumLives;
2003-10-04 08:22:09 +00:00
PercentageDisplay m_Percent;
2002-07-23 01:41:40 +00:00
2003-01-02 08:13:34 +00:00
RageSound m_soundLoseLife;
RageSound m_soundGainLife;
2002-07-23 01:41:40 +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.
*/