Files
itgmania212121/stepmania/src/ReceptorArrowRow.h
T

62 lines
2.1 KiB
C++
Raw Normal View History

2004-06-08 00:08:04 +00:00
/* ReceptorArrowRow - A row of ReceptorArrow objects. */
2002-04-16 17:31:00 +00:00
2004-06-08 00:08:04 +00:00
#ifndef RECEPTOR_ARROW_ROW_H
#define RECEPTOR_ARROW_ROW_H
2002-04-16 17:31:00 +00:00
2003-12-22 10:30:10 +00:00
#include "ReceptorArrow.h"
2002-04-16 17:31:00 +00:00
#include "ActorFrame.h"
2002-05-01 19:14:55 +00:00
#include "GameConstantsAndTypes.h"
#include "NoteTypes.h"
2002-04-16 17:31:00 +00:00
2005-08-23 20:49:30 +00:00
class PlayerState;
2002-04-16 17:31:00 +00:00
2003-12-22 10:30:10 +00:00
class ReceptorArrowRow : public ActorFrame
2002-04-16 17:31:00 +00:00
{
public:
2003-12-22 10:30:10 +00:00
ReceptorArrowRow();
2005-10-12 03:15:53 +00:00
virtual ~ReceptorArrowRow();
2002-07-28 20:28:37 +00:00
virtual void Update( float fDeltaTime );
virtual void DrawPrimitives();
2002-04-16 17:31:00 +00:00
2005-10-12 03:15:53 +00:00
void Load( const PlayerState* pPlayerState, float fYReverseOffset );
2004-07-02 20:08:17 +00:00
void Step( int iCol, TapNoteScore score );
2003-12-22 10:30:10 +00:00
void SetPressed( int iCol );
2002-04-16 17:31:00 +00:00
2005-05-09 02:58:30 +00:00
void SetFadeToFailPercent( float fFadeToFailPercent ) { m_fFadeToFailPercent = fFadeToFailPercent; }
2002-04-16 17:31:00 +00:00
protected:
const PlayerState* m_pPlayerState;
float m_fYReverseOffsetPixels;
2005-05-09 02:58:30 +00:00
float m_fFadeToFailPercent;
2002-04-16 17:31:00 +00:00
2005-10-12 03:15:53 +00:00
vector<ReceptorArrow *> m_ReceptorArrow;
2002-04-16 17:31:00 +00:00
};
#endif
2004-06-08 00:08:04 +00:00
/*
* (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.
*/