]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/clientobject.cpp
Minimap messages: Improve 'disabled by server' message
[dragonfireclient.git] / src / clientobject.cpp
index ff3f4718765a293b1d378c19c4c75b864ab0a1c8..f4b69201ba9ad6fc38240995d7e0d388fdcf951f 100644 (file)
@@ -20,16 +20,15 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 #include "clientobject.h"
 #include "debug.h"
 #include "porting.h"
-#include "constants.h"
 
 /*
        ClientActiveObject
 */
 
-ClientActiveObject::ClientActiveObject(u16 id, IGameDef *gamedef,
+ClientActiveObject::ClientActiveObject(u16 id, Client *client,
                ClientEnvironment *env):
        ActiveObject(id),
-       m_gamedef(gamedef),
+       m_client(client),
        m_env(env)
 {
 }
@@ -40,11 +39,11 @@ ClientActiveObject::~ClientActiveObject()
 }
 
 ClientActiveObject* ClientActiveObject::create(ActiveObjectType type,
-               IGameDef *gamedef, ClientEnvironment *env)
+               Client *client, ClientEnvironment *env)
 {
        // Find factory function
-       UNORDERED_MAP<u16, Factory>::iterator n = m_types.find(type);
-       if(n == m_types.end()) {
+       auto n = m_types.find(type);
+       if (n == m_types.end()) {
                // If factory is not found, just return.
                warningstream << "ClientActiveObject: No factory for type="
                                << (int)type << std::endl;
@@ -52,14 +51,14 @@ ClientActiveObject* ClientActiveObject::create(ActiveObjectType type,
        }
 
        Factory f = n->second;
-       ClientActiveObject *object = (*f)(gamedef, env);
+       ClientActiveObject *object = (*f)(client, env);
        return object;
 }
 
 void ClientActiveObject::registerType(u16 type, Factory f)
 {
-       UNORDERED_MAP<u16, Factory>::iterator n = m_types.find(type);
-       if(n != m_types.end())
+       auto n = m_types.find(type);
+       if (n != m_types.end())
                return;
        m_types[type] = f;
 }