#include "global.h" #include "ReceptorArrowRow.h" #include "RageUtil.h" #include "GameConstantsAndTypes.h" #include "ArrowEffects.h" #include "GameState.h" #include "PlayerState.h" #include "Style.h" ReceptorArrowRow::ReceptorArrowRow() { m_pPlayerState = NULL; m_fYReverseOffsetPixels = 0; m_fFadeToFailPercent = 0; } void ReceptorArrowRow::Load( const PlayerState* pPlayerState, float fYReverseOffset ) { m_pPlayerState = pPlayerState; m_fYReverseOffsetPixels = fYReverseOffset; const Style* pStyle = GAMESTATE->GetCurrentStyle(); for( int c=0; cm_iColsPerPlayer; c++ ) { m_ReceptorArrow.push_back( new ReceptorArrow ); m_ReceptorArrow[c]->SetName( "ReceptorArrow" ); m_ReceptorArrow[c]->Load( m_pPlayerState, c ); this->AddChild( m_ReceptorArrow[c] ); } } ReceptorArrowRow::~ReceptorArrowRow() { for( unsigned i = 0; i < m_ReceptorArrow.size(); ++i ) delete m_ReceptorArrow[i]; } void ReceptorArrowRow::Update( float fDeltaTime ) { ActorFrame::Update( fDeltaTime ); ArrowEffects::Update(); for( unsigned c=0; cm_PlayerOptions.GetCurrent().m_fDark) * (1 - m_fFadeToFailPercent); CLAMP( fBaseAlpha, 0.0f, 1.0f ); m_ReceptorArrow[c]->SetBaseAlpha( fBaseAlpha ); // set arrow XYZ float fX = ArrowEffects::GetXPos( m_pPlayerState, c, 0 ); const float fY = ArrowEffects::GetYPos( m_pPlayerState, c, 0, m_fYReverseOffsetPixels ); const float fZ = ArrowEffects::GetZPos( m_pPlayerState, c, 0 ); m_ReceptorArrow[c]->SetX( fX ); m_ReceptorArrow[c]->SetY( fY ); m_ReceptorArrow[c]->SetZ( fZ ); const float fRotation = ArrowEffects::ReceptorGetRotationZ( m_pPlayerState ); m_ReceptorArrow[c]->SetRotationZ( fRotation ); const float fZoom = ArrowEffects::GetZoom( m_pPlayerState ); m_ReceptorArrow[c]->SetZoom( fZoom ); } } void ReceptorArrowRow::DrawPrimitives() { for( unsigned c=0; cDraw(); } void ReceptorArrowRow::Step( int iCol, TapNoteScore score ) { ASSERT( iCol >= 0 && iCol < (int) m_ReceptorArrow.size() ); m_ReceptorArrow[iCol]->Step( score ); } void ReceptorArrowRow::SetPressed( int iCol ) { ASSERT( iCol >= 0 && iCol < (int) m_ReceptorArrow.size() ); m_ReceptorArrow[iCol]->SetPressed(); } void ReceptorArrowRow::SetNoteUpcoming( int iCol, bool b ) { ASSERT( iCol >= 0 && iCol < (int) m_ReceptorArrow.size() ); m_ReceptorArrow[iCol]->SetNoteUpcoming(b); } /* * (c) 2001-2003 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. */