Files
itgmania212121/stepmania/src/LightsManager.h
T

136 lines
4.1 KiB
C++
Raw Normal View History

2004-06-08 01:24:17 +00:00
/* LightsManager - Control lights. */
2003-11-16 04:45:12 +00:00
#ifndef LightsManager_H
#define LightsManager_H
2004-03-23 06:11:10 +00:00
#include "PlayerNumber.h"
#include "GameInput.h"
2004-03-29 09:44:00 +00:00
#include "EnumHelper.h"
2005-05-04 20:28:50 +00:00
#include "Preference.h"
#include "RageTimer.h"
2003-11-16 04:45:12 +00:00
2005-05-04 20:28:50 +00:00
extern Preference<float> g_fLightsFalloffSeconds;
extern Preference<float> g_fLightsAheadSeconds;
2004-04-20 02:35:30 +00:00
2004-03-23 06:11:10 +00:00
enum CabinetLight
2003-11-16 04:45:12 +00:00
{
2004-03-23 08:58:56 +00:00
LIGHT_MARQUEE_UP_LEFT,
LIGHT_MARQUEE_UP_RIGHT,
LIGHT_MARQUEE_LR_LEFT,
LIGHT_MARQUEE_LR_RIGHT,
2003-11-16 06:27:52 +00:00
LIGHT_BASS_LEFT,
LIGHT_BASS_RIGHT,
2006-09-26 21:23:30 +00:00
NUM_CabinetLight,
CabinetLight_Invalid
2004-03-23 06:11:10 +00:00
};
2006-10-07 08:56:58 +00:00
#define FOREACH_CabinetLight( i ) FOREACH_ENUM( CabinetLight, i )
2006-01-22 01:00:06 +00:00
const RString& CabinetLightToString( CabinetLight cl );
CabinetLight StringToCabinetLight( const RString& s);
2004-03-23 06:11:10 +00:00
enum LightsMode
{
LIGHTSMODE_ATTRACT,
LIGHTSMODE_JOINING,
LIGHTSMODE_MENU,
LIGHTSMODE_DEMONSTRATION,
LIGHTSMODE_GAMEPLAY,
2004-03-23 06:11:10 +00:00
LIGHTSMODE_STAGE,
LIGHTSMODE_ALL_CLEARED,
2005-04-21 19:54:11 +00:00
LIGHTSMODE_TEST_AUTO_CYCLE,
LIGHTSMODE_TEST_MANUAL_CYCLE,
2006-09-26 21:26:35 +00:00
NUM_LightsMode,
LightsMode_Invalid
2003-11-16 04:45:12 +00:00
};
2006-01-22 01:00:06 +00:00
const RString& LightsModeToString( LightsMode lm );
2007-06-11 18:53:58 +00:00
LuaDeclareType( LightsMode );
2003-11-16 04:45:12 +00:00
2004-03-23 06:11:10 +00:00
struct LightsState
2003-11-16 04:45:12 +00:00
{
2006-09-26 21:23:30 +00:00
bool m_bCabinetLights[NUM_CabinetLight];
2006-09-27 04:39:51 +00:00
bool m_bGameButtonLights[NUM_GameController][NUM_GameButton];
// This isn't actually a light, but it's typically implemented in the same way.
bool m_bCoinCounter;
2003-11-16 04:45:12 +00:00
};
class LightsDriver;
class LightsManager
{
public:
2005-12-31 02:06:57 +00:00
LightsManager();
2003-11-16 04:45:12 +00:00
~LightsManager();
void Update( float fDeltaTime );
bool IsEnabled() const;
2003-11-16 04:45:12 +00:00
void BlinkCabinetLight( CabinetLight cl );
void BlinkGameButton( GameInput gi );
2005-04-29 02:02:27 +00:00
void BlinkActorLight( CabinetLight cl );
void PulseCoinCounter() { ++m_iQueuedCoinCounterPulses; }
2005-04-29 00:26:48 +00:00
float GetActorLightLatencySeconds() const;
2004-03-30 07:44:29 +00:00
2004-03-23 06:11:10 +00:00
void SetLightsMode( LightsMode lm );
LightsMode GetLightsMode();
2003-11-16 04:45:12 +00:00
void PrevTestCabinetLight() { ChangeTestCabinetLight(-1); }
void NextTestCabinetLight() { ChangeTestCabinetLight(+1); }
void PrevTestGameButtonLight() { ChangeTestGameButtonLight(-1); }
void NextTestGameButtonLight() { ChangeTestGameButtonLight(+1); }
2005-04-21 19:54:11 +00:00
CabinetLight GetFirstLitCabinetLight();
2007-05-08 00:49:30 +00:00
GameInput GetFirstLitGameButtonLight();
2005-04-21 19:54:11 +00:00
2003-11-16 04:45:12 +00:00
private:
void ChangeTestCabinetLight( int iDir );
void ChangeTestGameButtonLight( int iDir );
2006-09-26 21:23:30 +00:00
float m_fSecsLeftInCabinetLightBlink[NUM_CabinetLight];
2006-09-27 04:39:51 +00:00
float m_fSecsLeftInGameButtonBlink[NUM_GameController][NUM_GameButton];
2006-09-26 21:23:30 +00:00
float m_fActorLights[NUM_CabinetLight]; // current "power" of each actor light
float m_fSecsLeftInActorLightBlink[NUM_CabinetLight]; // duration to "power" an actor light
2003-11-16 04:45:12 +00:00
vector<LightsDriver*> m_vpDrivers;
2004-03-23 06:11:10 +00:00
LightsMode m_LightsMode;
LightsState m_LightsState;
2005-04-21 19:54:11 +00:00
int m_iQueuedCoinCounterPulses;
RageTimer m_CoinCounterTimer;
int GetTestAutoCycleCurrentIndex() { return (int)m_fTestAutoCycleCurrentIndex; }
float m_fTestAutoCycleCurrentIndex;
CabinetLight m_clTestManualCycleCurrent;
int m_iControllerTestManualCycleCurrent;
2003-11-16 04:45:12 +00:00
};
extern LightsManager* LIGHTSMAN; // global and accessable from anywhere in our program
#endif
2004-06-08 01:24:17 +00:00
/*
* (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.
*/