<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>.simplicity &#187; Component</title>
	<atom:link href="http://www.dotsimplicity.net/tag/component/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dotsimplicity.net</link>
	<description>Simple, reliable, simplicity. A software discussion blog</description>
	<lastBuildDate>Sun, 04 Jul 2010 09:44:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Component Oriented Entities &#8211; Updated (and some more&#8230;)</title>
		<link>http://www.dotsimplicity.net/2009/04/component-oriented-entities-updated-and-some-more/</link>
		<comments>http://www.dotsimplicity.net/2009/04/component-oriented-entities-updated-and-some-more/#comments</comments>
		<pubDate>Sat, 25 Apr 2009 20:24:17 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Idea]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Component]]></category>
		<category><![CDATA[DataStore]]></category>
		<category><![CDATA[Entities]]></category>

		<guid isPermaLink="false">http://www.dotsimplicity.net/?p=193</guid>
		<description><![CDATA[The code I posted in the article Component Oriented Entities has been updated. The code in that article contained some documentation mistakes. Thanks to Nick these mistakes have been corrected. Besides that I&#8217;ve also added some new methods (Entity::remove*) which were somehow forgotten in the first implementation. And of course the code has also been [...]]]></description>
			<content:encoded><![CDATA[<p>The code I posted in the article <a title="Component Oriented Entities" href="http://www.dotsimplicity.net/?p=181">Component Oriented Entities</a> has been updated. The code in that article contained some documentation mistakes. Thanks to Nick these mistakes have been corrected. Besides that I&#8217;ve also added some new methods (Entity::remove*) which were somehow forgotten in the first implementation. And of course the code has also been slightly improved. Unfortunately the Event Management part of the implementation still hasn&#8217;t been included. Still I would like to encourage people who are using the code or parts of it to update their own code.</p>
<p>Also, a sneak peek on what I&#8217;m currently working on.</p>
<p><span id="more-193"></span></p>
<p>DataStore.h</p>
<pre class="brush: cpp;">

#ifndef __DATASTORE_H__
#define __DATASTORE_H__

// Include files
#include &quot;../dependencies.h&quot;
#include &quot;DataStack.h&quot;

// Forward declarations
class DataStack;

// DataStore class.
class DataStore
{
public:

    // Initialisation and deinitialisation
    DataStore();
    ~DataStore();

    void init();
    void clear();

    // Methods
    bool addDataStack(DataStack *stack);
    DataStack* createDataStack(const std::string &amp;name);

    DataStack* getDataStack(const unsigned int id);
    DataStack* getDataStack(const std::string &amp;name);

    void removeAll();
    bool removeDataStack(DataStack *stack);
    bool removeDataStack(const unsigned int);
    bool removeDataStack(const std::string &amp;name);

private:

    // Normal members
    std::vector&lt;DataStack*&gt; mStacks;

};

#endif
</pre>
<p>DataStore.cpp</p>
<pre class="brush: cpp;">

// Include files
#include &quot;DataStore.h&quot;

// DataStore class
// DataStore constructor.
DataStore::DataStore()
{
    init();
}

// DataStore deconstructor.
DataStore::~DataStore()
{
    clear();
}

// Initialises the Data Store.
void DataStore::init()
{
}

// Clears the Data Store.
void DataStore::clear()
{
    removeAll();
}

// Adds the given Data Stack to the Data Store.
bool DataStore::addDataStack(DataStack *stack)
{
    // Did we get a valid pointer?
    if(stack == NULL)
      return false;

    // Does a Data Stack with the same name exist?
    if(getDataStack(stack-&gt;getName()))
      return false;

    // Add the Data Stack to the vector.
    mStacks.push_back(stack);

    return true;
}

// Creates a Data Stack with the given name.
DataStack* DataStore::createDataStack(const std::string &amp;name)
{
    // Does a Data Stack with the same name exist?
    if(getDataStack(name))
      return NULL;

    // Create the Data Stack and add it to the vector.
    DataStack *stack = new DataStack(name);
    mStacks.push_back(stack);

    return stack;
}

// Gets the Data Stack with the given id.
DataStack* DataStore::getDataStack(const unsigned int id)
{
    for(unsigned int i = 0; i &lt; mStacks.size(); i++)
    {
       if(mStacks[i]-&gt;getID() == id)
         return mStacks[i];
    }

    return NULL;
}

// Gets the Data Stack with the given name.
DataStack* DataStore::getDataStack(const std::string &amp;name)
{
    for(unsigned int i = 0; i &lt; mStacks.size(); i++)
    {
       if(mStacks[i]-&gt;getName() == name)
         return mStacks[i];
    }

    return NULL;
}

// Removes all Data Stacks from this Data Store.
void DataStore::removeAll()
{
    // Clear the Data Stacks.
    for(unsigned int i = 0; i &lt; mStacks.size(); i++)
      delete mStacks[i];

    mStacks.clear();
}

// Removes the given Data Stack.
bool DataStore::removeDataStack(DataStack *stack)
{
    // Did we get a valid pointer?
    if(stack == NULL)
      return false;

    // Try to remove the Data Stack.
    vector&lt;DataStack*&gt;::iterator it;

    for(it = mStacks.begin(); it &lt; mStacks.end(); it++)
    {
        DataStack *dstack = *it;

        if(dstack == stack)
        {
           delete dstack;
           mStacks.erase(it);
           return true;
        }
    }

    // We couldn't find the Data Stack and thus couldn't remove it.
    return false;

}

// Removes the given Data Stack with the given id.
bool DataStore::removeDataStack(const unsigned int id)
{
    // Try to remove the Data Stack.
    vector&lt;DataStack*&gt;::iterator it;

    for(it = mStacks.begin(); it &lt; mStacks.end(); it++)
    {
        DataStack *dstack = *it;

        if(dstack-&gt;getID() == id)
        {
           delete dstack;
           mStacks.erase(it);
           return true;
        }
    }

    // We couldn't find the Data Stack and thus couldn't remove it.
    return false;
}

// Removes the given Data Stack with the given name.
bool DataStore::removeDataStack(const std::string &amp;name)
{
    // Try to remove the Data Stack.
    vector&lt;DataStack*&gt;::iterator it;

    for(it = mStacks.begin(); it &lt; mStacks.end(); it++)
    {
        DataStack *dstack = *it;

        if(dstack-&gt;getName() == name)
        {
           delete dstack;
           mStacks.erase(it);
           return true;
        }
    }

    // We couldn't find the Data Stack and thus couldn't remove it.
    return false;
}

// End of File
</pre>
<p>DataStack.h</p>
<pre class="brush: cpp;">

#ifndef __DATASTACK_H__
#define __DATASTACK_H__

// Include files
#include &quot;../dependencies.h&quot;
#include &quot;DataStore.h&quot;

// Forward declarations.
class DataStore;

// DataStack class.
class DataStack
{

    friend class DataStore;

public:

    // Initialisation and deinitialisation
    DataStack(const std::string &amp;name);
    ~DataStack();

    void init();
    void clear();

    // Methods
    unsigned int getID() const;
    const std::string&amp; getName() const;

    unsigned int getSize() const;

    // Sets the variable with the given name.
    template&lt;typename T&gt;
    bool setVar(const std::string &amp;name, const T &amp;value)
    {
        std::stringstream ss;
        ss &lt;&lt; value;

        if(ss.good())
        {
           mVars[name] = ss.str();
           return true;
        }

        else return false;
    };

    // Gets the variable with the given name.
    template&lt;typename T&gt;
    T getVar(const std::string &amp;name)
    {
        std::map&lt;std::string, std::string&gt;::iterator it;
        it = mVars.find(name);

        if(it != mVars.end())
        {
           std::stringstream ss(it-&gt;second);

           T t;
           ss &gt;&gt; t;
           return t;
        }

        else return NULL;
    };

    void removeAll();
    bool removeVar(const std::string &amp;name);

    //bool save(const std::string &amp;filename); TODO
    //bool load(const std::string &amp;filename); TODO

private:

    // Static members
    static unsigned int mIDCount;

    // Normal members
    unsigned int mID;
    std::string mName;

    std::map&lt;std::string, std::string&gt; mVars;
};

#endif
</pre>
<p>DataStack.cpp</p>
<pre class="brush: cpp;">

// Include files.
#include &quot;DataStack.h&quot;

// DataStack class
// Static variables.
unsigned int DataStack::mIDCount = 0;

// DataStack constructor.
DataStack::DataStack(const std::string &amp;name)
: mName(name)
{
    mID = mIDCount++;
}

// DataStack deconstructor.
DataStack::~DataStack()
{
    clear();
}

// Initialises the Data Stack.
void DataStack::init()
{
}

// Clears the Data Stack.
void DataStack::clear()
{
    removeAll();
}

// Gets the ID of the Data Stack.
unsigned int DataStack::getID() const
{
    return mID;
}

// Gets the name of the Data Stack.
const std::string&amp; DataStack::getName() const
{
    return mName;
}

// Gets the number of variables on the Data Stack.
unsigned int DataStack::getSize() const
{
    return mVars.size();
}

// Removes all variables from this Data Stack.
void DataStack::removeAll()
{
    mVars.clear();
}

// Removes the variable with the given name.
bool DataStack::removeVar(const std::string &amp;name)
{
    std::map&lt;std::string, std::string&gt;::iterator it;
    it = mVars.find(name);

    if(it != mVars.end())
    {
       mVars.erase(it);
       return true;
    }

    else return false;
}

// End of File
</pre>
<p>Remember that all of the above code has been placed in the public domain and that I’ll take no responsibility or liability of any kind for any use that you may make of this code.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotsimplicity.net/2009/04/component-oriented-entities-updated-and-some-more/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Component Oriented Entities</title>
		<link>http://www.dotsimplicity.net/2009/04/component-oriented-entities/</link>
		<comments>http://www.dotsimplicity.net/2009/04/component-oriented-entities/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 12:26:22 +0000</pubDate>
		<dc:creator>Michael</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Open Source]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software Idea]]></category>
		<category><![CDATA[C++]]></category>
		<category><![CDATA[Component]]></category>
		<category><![CDATA[Entities]]></category>

		<guid isPermaLink="false">http://www.dotsimplicity.net/?p=181</guid>
		<description><![CDATA[Recently I started working at a game framework. The idea is to create a reusable framework that can be used across multiple platforms and libraries (I.e. Irrlicht, OGRE, SDL). Myself, I already have some experience with game programming (Entwined Worlds). However, all my previous game implementations were based upon the traditional deep hierarchy approach. At [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I started working at a game framework. The idea is to create a reusable framework that can be used across multiple platforms and libraries (I.e. Irrlicht, OGRE, SDL). Myself, I already have some experience with game programming (<a href="http://sf.net/projects/ewrpg/">Entwined Worlds</a>). However, all my previous game implementations were based upon the traditional deep hierarchy approach. At first sight this seems like a good idea, but I noticed that this approach always leads to very specialized entities. The true problem with this is that those entities often share various functionalities. And in order to prevent rewriting the same code over and over again, these functionalities are often put in a derived class from the base entity class. And the specialized entities then inherit from that class. The problem should become clear now: for every set of shared functionalities the programmer has to inherit from the base class (or maybe even an derived class). This can result in a gigantic unmaintainable tree of entities. Luckily, there is another approach called Component Oriented Entities.</p>
<p>The idea behind Component Oriented Entities is to make entities data-driven. In order to do this the functionalities are split in various individual components. As a result an entity is in fact nothing more than a collection of components. An added advantage is the ability to describe these components (and thus the entities) in XML or a similar mark-up language.</p>
<p>Yesterday I actually had a discussion with Nick about Component Oriented Entities. Initially he disagreed with me as I had some trouble explaining the &#8220;dangers&#8221; of the blob anti-pattern (a huge single class with a large amount of complex functionality). Later on, he agreed with me, but he also pointed out some things to keep in mind. One of those things was the implementation. And I really agree with that as these kind of things stand or fall based upon the implementation. Which brings me to my own implementation of Component Oriented Entities. Please note that all of the following code has been placed in the public domain and that I&#8217;ll take no responsibility or liability of any kind for any use that you may make of this code.</p>
<p><span id="more-181"></span></p>
<p>Lets start with the Entity Manager.</p>
<p>EntityManager.h</p>
<pre class="brush: cpp;">
#ifndef __ENTITYMANAGER_H__
#define __ENTITYMANAGER_H__

// Include files
#include &quot;../dependencies.h&quot;
#include &quot;Entity.h&quot;

// Forward declarations
class Entity;

// EntityManager class
class EntityManager
{
public:

    // Initialisation and deinitialisation
    EntityManager();
    ~EntityManager();

    void init();
    void clear();

    // Methods
    bool addEntity(Entity *entity);
    Entity* createEntity(const std::string &amp;name);

    Entity* getEntity(const unsigned int id);
    Entity* getEntity(const std::string &amp;name);

    void removeAll();
    bool removeEntity(Entity *entity);
    bool removeEntity(const unsigned int id);
    bool removeEntity(const std::string &amp;name);

private:

    vector&lt;Entity*&gt; mEntities;
};

#endif
</pre>
<p>EntityManager.cpp</p>
<pre class="brush: cpp;">

// Include files
#include &quot;EntityManager.h&quot;

// EntityManager class
// EntityManager constructor.
EntityManager::EntityManager()
{
    init();
}

// EntityManager deconstructor.
EntityManager::~EntityManager()
{
    clear();
}

// Initialises the Entity Manager.
void EntityManager::init()
{
}

// Clears the Entity Manager.
void EntityManager::clear()
{
    // Clear entities.
    removeAll();
}

// Adds an entity to the Entity Manager.
bool EntityManager::addEntity(Entity *entity)
{
    // Did we get a valid pointer?
    if(entity == NULL)
      return false;

    // Look if a entity with given name doesn't already exist.
    if(getEntity(entity-&gt;getName()))
      return false;

    // Add the entity.
    mEntities.push_back(entity);

    return true;
}

// Creates an entity with the given name and adds it to the Entity Manager.
Entity* EntityManager::createEntity(const std::string &amp;name)
{
    // Look if a entity with given name doesn't already exist.
    if(getEntity(name))
      return NULL;

    // Add the entity.
    Entity *entity = new Entity(name);
    mEntities.push_back(entity);

    return entity;
}

// Gets the entity with the given ID.
Entity* EntityManager::getEntity(const unsigned int id)
{
    for(unsigned int i = 0; i &lt; mEntities.size(); i++)
    {
       if(mEntities[i]-&gt;getID() == id)
         return mEntities[i];
    }

    return NULL;
}

// Gets the entity with the given name.
Entity* EntityManager::getEntity(const std::string &amp;name)
{
    for(unsigned int i = 0; i &lt; mEntities.size(); i++)
    {
       if(mEntities[i]-&gt;getName() == name)
         return mEntities[i];
    }

    return NULL;
}

// Removes all entities.
void EntityManager::removeAll()
{
    for(unsigned int i = 0; i &lt; mEntities.size(); i++)
      delete mEntities[i];

    mEntities.clear();
}

// Removes the given entity.
bool EntityManager::removeEntity(Entity *entity)
{
    // Did we get a valid pointer?
    if(entity == NULL)
      return false;

    // Try to remove the entity.
    vector&lt;Entity*&gt;::iterator it;

    for(it = mEntities.begin(); it &lt; mEntities.end(); it++)
    {
        Entity *ent = *it;

        if(ent == entity)
        {
           delete ent;
           mEntities.erase(it);
           return true;
        }
    }

    // We couldn't find the entity and thus couldn't remove it.
    return false;
}

// Removes the entity with the given ID.
bool EntityManager::removeEntity(const unsigned int id)
{
    // Try to remove the entity.
    vector&lt;Entity*&gt;::iterator it;

    for(it = mEntities.begin(); it &lt; mEntities.end(); it++)
    {
        Entity *ent = *it;

        if(ent-&gt;getID() == id)
        {
           delete ent;
           mEntities.erase(it);
           return true;
        }
    }

    // We couldn't find the entity and thus couldn't remove it.
    return false;
}

// Removes the entity with the given name.
bool EntityManager::removeEntity(const std::string &amp;name)
{
    // Try to remove the entity.
    vector&lt;Entity*&gt;::iterator it;

    for(it = mEntities.begin(); it &lt; mEntities.end(); it++)
    {
        Entity *ent = *it;

        if(ent-&gt;getName() == name)
        {
           delete ent;
           mEntities.erase(it);
           return true;
        }
    }

    // We couldn't find the entity and thus couldn't remove it.
    return false;
}

// End of File
</pre>
<p>The Entity Manager takes care of organizing all entities. Through the Entity Manager it&#8217;s possible to create, add, get and remove entities. To this end the Entity Manager offers various methods.</p>
<p>Now lets look at the Entity class.</p>
<p>Entity.h</p>
<pre class="brush: cpp;">
#ifndef __ENTITY_H__
#define __ENTITY_H__

// Include files
#include &quot;../dependencies.h&quot;
#include &quot;EntityComponent.h&quot;

// Forward declarations
class EntityComponent;

// Entity class
class Entity
{
public:

    // Initialisation and deinitialisation
    Entity(const std::string &amp;name);
    ~Entity();

    void init();
    void clear();

    // Methods
    unsigned int getID() const;
    const std::string&amp; getName() const;

    bool addComponent(EntityComponent* component);

    EntityComponent* getComponent(const unsigned int id);
    EntityComponent* getComponent(const std::string &amp;name);

    void removeAll();
    bool removeComponent(EntityComponent *component);
    bool removeComponent(const unsigned int id);
    bool removeComponent(const std::string &amp;name);

private:

    // Static members
    static unsigned int mIDCount;

    // Normal members
    unsigned int mID;
    std::string mName;

    vector&lt;EntityComponent*&gt; mComponents;
};

#endif
</pre>
<p>Entity.cpp</p>
<pre class="brush: cpp;">

// Include files
#include &quot;Entity.h&quot;

// Entity class
// Static variables.
unsigned int Entity::mIDCount = 0;

// Entity constructor.
Entity::Entity(const std::string &amp;name)
: mName(name)
{
    mID = mIDCount++;

    init();
}

// Entity deconstructor.
Entity::~Entity()
{
    clear();
}

// Initialises the entity.
void Entity::init()
{
}

// Clears the entity.
void Entity::clear()
{
    // Remove all components.
    removeAll();
}

// Gets the ID of this entity.
unsigned int Entity::getID() const
{
    return mID;
}

// Gets the name of this entity.
const std::string&amp; Entity::getName() const
{
    return mName;
}

// Adds a component to the entity.
bool Entity::addComponent(EntityComponent *component)
{
    // Did we get a pointer to a component?
    if(component == NULL)
      return false;

    // Check if a component of the given type doesn't already exist.
    if(getComponent(component-&gt;getName()))
      return false;

    // Add new component.
    mComponents.push_back(component);

    return true;
}

// Gets the component with the given ID from this entity.
EntityComponent* Entity::getComponent(const unsigned int id)
{
    for(unsigned int i = 0; i &lt; mComponents.size(); i++)
    {
       if(mComponents[i]-&gt;getID() == id)
         return mComponents[i];
    }

    return NULL;
}

// Gets the component with the given name from this entity.
EntityComponent* Entity::getComponent(const std::string &amp;name)
{
    for(unsigned int i = 0; i &lt; mComponents.size(); i++)
    {
       if(mComponents[i]-&gt;getName() == name)
         return mComponents[i];
    }

    return NULL;
}

// Removes all components.
void Entity::removeAll()
{
    for(unsigned int i = 0; i &lt; mComponents.size(); i++)
       delete mComponents[i];

    mComponents.clear();
}

// Removes the given component.
bool Entity::removeComponent(EntityComponent *component)
{
    // Did we get a valid pointer?
    if(component == NULL)
      return false;

    // Try to remove the entity.
    vector&lt;EntityComponent*&gt;::iterator it;

    for(it = mComponents.begin(); it &lt; mComponents.end(); it++)
    {
        EntityComponent *comp = *it;

        if(comp == component)
        {
           delete comp;
           mComponents.erase(it);
           return true;
        }
    }

    // We couldn't find the entity and thus couldn't remove it.
    return false;
}

// Removes the component with the given ID.
bool Entity::removeComponent(const unsigned int id)
{
    // Try to remove the entity.
    vector&lt;EntityComponent*&gt;::iterator it;

    for(it = mComponents.begin(); it &lt; mComponents.end(); it++)
    {
        EntityComponent *comp = *it;

        if(comp-&gt;getID() == id)
        {
           delete comp;
           mComponents.erase(it);
           return true;
        }
    }

    // We couldn't find the entity and thus couldn't remove it.
    return false;
}

// Removes the component with the given name.
bool Entity::removeComponent(const std::string &amp;name)
{
    // Try to remove the entity.
    vector&lt;EntityComponent*&gt;::iterator it;

    for(it = mComponents.begin(); it &lt; mComponents.end(); it++)
    {
        EntityComponent *comp = *it;

        if(comp-&gt;getName() == name)
        {
           delete comp;
           mComponents.erase(it);
           return true;
        }
    }

    // We couldn't find the entity and thus couldn't remove it.
    return false;
}

// End of File
</pre>
<p>As you can see an entity is a collection of an ID, name and a vector of components. That means that an entity is largely defined by its components. These are in my implementation described by the EntityComponent class.</p>
<p>EntityComponent.h</p>
<pre class="brush: cpp;">

#ifndef __ENTITYCOMPONENT_H__
#define __ENTITYCOMPONENT_H__

// Include files
#include &quot;../dependencies.h&quot;
#include &quot;Entity.h&quot;

// Forward declarations
class Entity;

// EntityComponent class
class EntityComponent
{
public:

    // Initialisation and deinitialisation
    EntityComponent(Entity *parent);
    virtual ~EntityComponent();

    // Methods
    unsigned int getID() const;
    const std::string&amp; getName() const;

    const Entity* getParent();

protected:

    void setName(const std::string &amp;name);

private:

    // Static members
    static unsigned int mIDCount;

    // Normal members
    Entity *pParent;

    unsigned int mID;
    std::string mName;
};

#endif
</pre>
<p>EntityComponent.cpp</p>
<pre class="brush: cpp;">

// Include files
#include &quot;EntityComponent.h&quot;

// EntityComponent class
// Static variables.
unsigned int EntityComponent::mIDCount = 0;

// EntityComponent constructor.
EntityComponent::EntityComponent(Entity *parent)
: pParent(parent)
{
    // Get new unique ID.
    mID = mIDCount++;

    // Check if we got a valid pointer.
    if(parent == NULL)
      delete this;

    else parent-&gt;addComponent(this);
}

// EntityComponent deconstructor.
EntityComponent::~EntityComponent()
{
}

// Sets the name of the component.
void EntityComponent::setName(const std::string &amp;name)
{
    mName = name;
}

// Gets the ID of the component.
unsigned int EntityComponent::getID() const
{
    return mID;
}

// Gets the name of the component.
const std::string&amp; EntityComponent::getName() const
{
    return mName;
}

// Gets the parent of this component.
const Entity* EntityComponent::getParent()
{
    return pParent;
}

// End of File
</pre>
<p>And just as the Entity class, the EntityComponent is also fairly simple. You might be wondering, though, how these components communicate with each other and other parts of the framework. The truth is that I&#8217;ve build an Event Manager on top of this entity system that takes care of that. Unfortunately that Event Manager depends on a third-party library called <a href="http://sigslot.sf.net/">Sigslot</a> And I think that such thing is beyond the scope of this post. Partly, also because I&#8217;m still tweaking my Event Manager myself and don&#8217;t feel comfortable yet showing that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dotsimplicity.net/2009/04/component-oriented-entities/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>

