Files
itgmania212121/stepmania/src/ActiveAttackList.cpp
T

92 lines
2.6 KiB
C++
Raw Normal View History

2004-03-17 06:01:17 +00:00
#include "global.h"
#include "ActiveAttackList.h"
#include "RageUtil.h"
#include "GameState.h"
#include "Inventory.h"
#include "RageTimer.h"
#include "PlayerOptions.h"
#include "PlayerState.h"
2004-03-17 06:01:17 +00:00
ActiveAttackList::ActiveAttackList()
{
}
void ActiveAttackList::Init( const PlayerState* pPlayerState )
2004-03-17 06:01:17 +00:00
{
m_pPlayerState = pPlayerState;
2004-03-17 06:01:17 +00:00
}
void ActiveAttackList::Update( float fDelta )
{
bool bTimeToRefresh =
IsFirstUpdate() || // check this before running Actor::Update()
m_pPlayerState->m_bAttackBeganThisUpdate ||
m_pPlayerState->m_bAttackEndedThisUpdate;
2004-03-17 06:01:17 +00:00
BitmapText::Update( fDelta );
2004-03-17 06:01:17 +00:00
if( bTimeToRefresh )
Refresh();
}
2004-03-17 06:01:17 +00:00
void ActiveAttackList::Refresh()
{
CString s;
2004-03-17 06:01:17 +00:00
const AttackArray& attacks = m_pPlayerState->m_ActiveAttacks;
// clear all lines, then add all active attacks
for( unsigned i=0; i<attacks.size(); i++ )
{
const Attack& attack = attacks[i];
2004-03-21 18:49:25 +00:00
if( !attack.bOn )
continue; /* hasn't started yet */
2004-04-17 22:21:40 +00:00
CString sMods = attack.sModifier;
CStringArray asMods;
split( sMods, ",", asMods );
for( unsigned j=0; j<asMods.size(); j++ )
{
CString& sMod = asMods[j];
TrimLeft( sMod );
TrimRight( sMod );
2004-03-17 06:01:17 +00:00
sMod = PlayerOptions::ThemeMod( sMod );
if( s.empty() )
s = sMod;
else
s = sMod + "\n" + s;
}
2004-03-17 06:01:17 +00:00
}
this->SetText( s ); // BitmapText will not rebuild vertices if these strings are the same.
2004-03-17 06:01:17 +00:00
}
2004-06-08 00:08:04 +00:00
/*
* (c) 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.
*/