Files
itgmania212121/stepmania/src/Background.h
T

65 lines
2.0 KiB
C++
Raw Normal View History

2004-06-08 00:08:04 +00:00
/* Background - Background behind notes while playing. */
#ifndef BACKGROUND_H
#define BACKGROUND_H
#include "ActorFrame.h"
2005-06-04 21:22:50 +00:00
#include "Quad.h"
#include "PlayerNumber.h"
#include "BackgroundUtil.h"
2004-01-23 02:23:11 +00:00
#include <deque>
2004-10-05 11:03:43 +00:00
#include <map>
2003-06-27 08:06:22 +00:00
class DancingCharacters;
2005-06-04 21:22:50 +00:00
class Song;
class BackgroundImpl;
class Background : public ActorFrame
{
public:
Background();
2002-07-11 19:02:26 +00:00
~Background();
void Init();
2002-07-11 19:02:26 +00:00
virtual void LoadFromSong( const Song *pSong );
virtual void Unload();
2005-06-04 21:22:50 +00:00
void FadeToActualBrightness();
void SetBrightness( float fBrightness ); /* overrides pref and Cover */
2002-01-20 23:29:03 +00:00
2005-06-04 21:22:50 +00:00
DancingCharacters* GetDancingCharacters();
2005-07-18 01:52:01 +00:00
void GetLoadedBackgroundChanges( vector<BackgroundChange> **pBackgroundChangesOut );
protected:
2005-06-04 21:22:50 +00:00
BackgroundImpl *m_pImpl;
};
#endif
2004-06-08 00:08:04 +00:00
/*
* (c) 2001-2004 Chris Danford, Ben Nordstrom
* 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.
*/