Files
itgmania212121/stepmania/src/ActorScroller.cpp
T
Glenn Maynard c531e8b172 license update
2004-06-08 00:47:53 +00:00

118 lines
3.6 KiB
C++

#include "global.h"
#include "ActorScroller.h"
#include "ActorCollision.h"
#include "RageUtil.h"
#include "RageDisplay.h"
ActorScroller::ActorScroller()
{
m_bLoaded = false;
m_fCurrentItem = 0;
m_fDestinationItem = 0;
m_fSecondsPerItem = 1;
m_iNumItemsToDraw = 7;
m_vRotationDegrees = RageVector3(0,0,0);
m_vTranslateTerm0 = RageVector3(0,0,0);
m_vTranslateTerm1 = RageVector3(0,0,0);
m_vTranslateTerm2 = RageVector3(0,0,0);
}
void ActorScroller::Load(
float fSecondsPerItem,
int iNumItemsToDraw,
const RageVector3 &vRotationDegrees,
const RageVector3 &vTranslateTerm0,
const RageVector3 &vTranslateTerm1,
const RageVector3 &vTranslateTerm2
)
{
ASSERT( fSecondsPerItem > 0 );
m_fSecondsPerItem = fSecondsPerItem;
m_iNumItemsToDraw = iNumItemsToDraw;
m_vRotationDegrees = vRotationDegrees;
m_vTranslateTerm0 = vTranslateTerm0;
m_vTranslateTerm1 = vTranslateTerm1;
m_vTranslateTerm2 = vTranslateTerm2;
m_bLoaded = true;
}
void ActorScroller::Update( float fDeltaTime )
{
ActorFrame::Update( fDeltaTime );
if( m_fHibernateSecondsLeft > 0 )
return; // early abort
fapproach( m_fCurrentItem, m_fDestinationItem, fDeltaTime/m_fSecondsPerItem );
}
void ActorScroller::DrawPrimitives()
{
// Optimization: If we weren't loaded, then fall back to the ActorFrame logic
if( !m_bLoaded )
{
ActorFrame::DrawPrimitives();
}
else
{
int iFirstItemToDraw = (int)roundf( m_fCurrentItem - m_iNumItemsToDraw/2.f );
for( int i=iFirstItemToDraw; i<iFirstItemToDraw+m_iNumItemsToDraw; i++ )
{
if( i < 0 || i >= (int)m_SubActors.size() )
continue; // skip
float fItemOffset = i - m_fCurrentItem;
DISPLAY->PushMatrix();
if( m_vRotationDegrees[0] )
DISPLAY->RotateX( m_vRotationDegrees[0]*fItemOffset );
if( m_vRotationDegrees[1] )
DISPLAY->RotateY( m_vRotationDegrees[1]*fItemOffset );
if( m_vRotationDegrees[2] )
DISPLAY->RotateZ( m_vRotationDegrees[2]*fItemOffset );
RageVector3 vTranslation =
m_vTranslateTerm0 + // m_vTranslateTerm0*itemOffset^0
m_vTranslateTerm1 * fItemOffset + // m_vTranslateTerm1*itemOffset^1
m_vTranslateTerm2 * fItemOffset*fItemOffset; // m_vTranslateTerm2*itemOffset^2
DISPLAY->Translate(
vTranslation[0],
vTranslation[1],
vTranslation[2]
);
m_SubActors[i]->Draw();
DISPLAY->PopMatrix();
}
}
}
/*
* (c) 2003-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.
*/