ES-DE/src/GuiComponent.cpp

181 lines
3.1 KiB
C++
Raw Normal View History

2013-06-02 15:08:32 +00:00
#include "GuiComponent.h"
#include "Window.h"
#include "Log.h"
#include "Renderer.h"
2013-06-02 15:08:32 +00:00
GuiComponent::GuiComponent(Window* window) : mWindow(window), mParent(NULL), mOpacity(255),
mPosition(Eigen::Vector3f::Zero()), mSize(Eigen::Vector2f::Zero()), mTransform(Eigen::Affine3f::Identity())
2013-06-02 15:08:32 +00:00
{
}
GuiComponent::~GuiComponent()
{
mWindow->removeGui(this);
if(mParent)
mParent->removeChild(this);
for(unsigned int i = 0; i < getChildCount(); i++)
getChild(i)->setParent(NULL);
2013-06-02 15:08:32 +00:00
}
bool GuiComponent::input(InputConfig* config, Input input)
{
for(unsigned int i = 0; i < getChildCount(); i++)
{
if(getChild(i)->input(config, input))
return true;
}
return false;
}
void GuiComponent::update(int deltaTime)
{
for(unsigned int i = 0; i < getChildCount(); i++)
{
getChild(i)->update(deltaTime);
}
}
void GuiComponent::render(const Eigen::Affine3f& parentTrans)
{
Eigen::Affine3f trans = parentTrans * getTransform();
renderChildren(trans);
}
void GuiComponent::renderChildren(const Eigen::Affine3f& transform) const
2013-06-02 15:08:32 +00:00
{
for(unsigned int i = 0; i < getChildCount(); i++)
{
getChild(i)->render(transform);
2013-06-02 15:08:32 +00:00
}
}
Eigen::Vector3f GuiComponent::getPosition() const
2013-06-02 15:08:32 +00:00
{
return mPosition;
2013-06-02 15:08:32 +00:00
}
void GuiComponent::setPosition(const Eigen::Vector3f& offset)
2013-06-02 15:08:32 +00:00
{
mPosition = offset;
onPositionChanged();
2013-06-02 15:08:32 +00:00
}
void GuiComponent::setPosition(float x, float y, float z)
2013-06-02 15:08:32 +00:00
{
mPosition << x, y, z;
onPositionChanged();
2013-06-02 15:08:32 +00:00
}
Eigen::Vector2f GuiComponent::getSize() const
{
return mSize;
}
void GuiComponent::setSize(const Eigen::Vector2f& size)
{
mSize = size;
onSizeChanged();
}
void GuiComponent::setSize(float w, float h)
{
mSize << w, h;
onSizeChanged();
}
//Children stuff.
void GuiComponent::addChild(GuiComponent* cmp)
{
mChildren.push_back(cmp);
if(cmp->getParent())
cmp->getParent()->removeChild(cmp);
cmp->setParent(this);
}
void GuiComponent::removeChild(GuiComponent* cmp)
{
if(cmp->getParent() != this)
{
LOG(LogError) << "Tried to remove child from incorrect parent!";
}
cmp->setParent(NULL);
for(auto i = mChildren.begin(); i != mChildren.end(); i++)
{
if(*i == cmp)
{
mChildren.erase(i);
return;
}
}
}
void GuiComponent::clearChildren()
{
mChildren.clear();
}
unsigned int GuiComponent::getChildCount() const
{
return mChildren.size();
}
GuiComponent* GuiComponent::getChild(unsigned int i) const
{
return mChildren.at(i);
}
void GuiComponent::setParent(GuiComponent* parent)
{
mParent = parent;
}
GuiComponent* GuiComponent::getParent() const
{
return mParent;
}
unsigned char GuiComponent::getOpacity() const
{
return mOpacity;
}
void GuiComponent::setOpacity(unsigned char opacity)
{
mOpacity = opacity;
for(auto it = mChildren.begin(); it != mChildren.end(); it++)
{
(*it)->setOpacity(opacity);
}
}
const Eigen::Affine3f GuiComponent::getTransform()
{
mTransform.setIdentity();
mTransform.translate(mPosition);
return mTransform;
}
2013-08-14 12:16:49 +00:00
void GuiComponent::setValue(const std::string& value)
{
}
std::string GuiComponent::getValue() const
{
return "";
}
2013-08-19 15:36:48 +00:00
void GuiComponent::textInput(const char* text)
{
for(auto iter = mChildren.begin(); iter != mChildren.end(); iter++)
{
(*iter)->textInput(text);
}
}