Danbias/Code/Misc/EventHandler/EventButtonCollection.cpp

39 lines
749 B
C++
Raw Normal View History

2014-01-31 13:06:11 +01:00
#include "EventButtonCollection.h"
using namespace Oyster::Event;
EventButtonCollection::EventButtonCollection()
: collectionState(EventCollectionState_Enabled)
2014-01-31 13:06:11 +01:00
{
}
EventButtonCollection::~EventButtonCollection()
{
}
void EventButtonCollection::Update(InputClass* inputObject)
{
if(this->collectionState == EventCollectionState_Enabled)
2014-01-31 13:06:11 +01:00
{
for(int i = 0; i < buttons.size(); i++)
{
buttons.at(i)->CheckCollision(inputObject);
}
2014-01-31 13:06:11 +01:00
}
}
EventCollectionState EventButtonCollection::GetState() const
{
return collectionState;
}
void EventButtonCollection::SetState(const EventCollectionState state)
2014-01-31 13:06:11 +01:00
{
collectionState = state;
}
2014-01-31 13:06:11 +01:00
void EventButtonCollection::Clear()
{
buttons.clear();
collectionState = EventCollectionState_Enabled;
2014-01-31 13:06:11 +01:00
}