2004-06-08 00:08:04 +00:00
|
|
|
/* GhostArrowRow - Row of GhostArrow actors. */
|
|
|
|
|
|
2002-11-16 08:07:38 +00:00
|
|
|
#ifndef GHOSTARROWROW_H
|
|
|
|
|
#define GHOSTARROWROW_H
|
2002-04-16 17:31:00 +00:00
|
|
|
|
|
|
|
|
#include "ActorFrame.h"
|
2002-05-01 19:14:55 +00:00
|
|
|
#include "GameConstantsAndTypes.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
|
|
|
|
|
|
|
|
class GhostArrowRow : public ActorFrame
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
GhostArrowRow();
|
2005-10-06 01:16:05 +00:00
|
|
|
virtual ~GhostArrowRow();
|
2002-07-28 20:28:37 +00:00
|
|
|
virtual void Update( float fDeltaTime );
|
2002-05-19 01:59:48 +00:00
|
|
|
virtual void DrawPrimitives();
|
2002-04-16 17:31:00 +00:00
|
|
|
|
2005-04-18 01:19:56 +00:00
|
|
|
void Load( const PlayerState* pPlayerState, float fYReverseOffset );
|
2002-04-16 17:31:00 +00:00
|
|
|
|
2005-04-26 05:28:32 +00:00
|
|
|
void DidTapNote( int iCol, TapNoteScore tns, bool bBright );
|
|
|
|
|
void DidHoldNote( int iCol, HoldNoteScore hns, bool bBright );
|
2004-01-01 01:53:25 +00:00
|
|
|
void SetHoldIsActive( int iCol );
|
2002-04-16 17:31:00 +00:00
|
|
|
|
|
|
|
|
protected:
|
2003-11-26 02:15:55 +00:00
|
|
|
float m_fYReverseOffsetPixels;
|
2004-12-20 06:25:59 +00:00
|
|
|
const PlayerState* m_pPlayerState;
|
2002-04-16 17:31:00 +00:00
|
|
|
|
2005-10-06 01:22:18 +00:00
|
|
|
vector<Actor *> m_Ghost;
|
2005-10-12 04:05:54 +00:00
|
|
|
vector<bool> m_bHoldIsActive;
|
|
|
|
|
vector<bool> m_bHoldWasActive;
|
2002-04-16 17:31:00 +00:00
|
|
|
};
|
|
|
|
|
|
2002-11-16 08:07:38 +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.
|
|
|
|
|
*/
|