]> git.lizzy.rs Git - dragonfireclient.git/blobdiff - src/serverobject.cpp
Fix script error reporting a bit
[dragonfireclient.git] / src / serverobject.cpp
index ffb6059dc6902fa1c25736c925d95d40d976f731..ca3d2c3b98d2790de87d64905446a6fb0e273e99 100644 (file)
@@ -18,11 +18,18 @@ with this program; if not, write to the Free Software Foundation, Inc.,
 */
 
 #include "serverobject.h"
+#include <fstream>
+#include "inventory.h"
+#include "tooldef.h"
 
-ServerActiveObject::ServerActiveObject(u16 id, v3f pos):
-       ActiveObject(id),
+ServerActiveObject::ServerActiveObject(ServerEnvironment *env, v3f pos):
+       ActiveObject(0),
        m_known_by_count(0),
        m_removed(false),
+       m_pending_deactivation(false),
+       m_static_exists(false),
+       m_static_block(1337,1337,1337),
+       m_env(env),
        m_base_position(pos)
 {
 }
@@ -31,45 +38,39 @@ ServerActiveObject::~ServerActiveObject()
 {
 }
 
-TestSAO::TestSAO(u16 id, v3f pos):
-       ServerActiveObject(id, pos),
-       m_timer1(0),
-       m_age(0)
+ServerActiveObject* ServerActiveObject::create(u8 type,
+               ServerEnvironment *env, u16 id, v3f pos,
+               const std::string &data)
 {
-}
-
-void TestSAO::step(float dtime, Queue<ActiveObjectMessage> &messages)
-{
-       m_age += dtime;
-       if(m_age > 10)
+       // Find factory function
+       core::map<u16, Factory>::Node *n;
+       n = m_types.find(type);
+       if(n == NULL)
        {
-               m_removed = true;
-               return;
+               // If factory is not found, just return.
+               dstream<<"WARNING: ServerActiveObject: No factory for type="
+                               <<type<<std::endl;
+               return NULL;
        }
 
-       m_base_position.Y += dtime * BS * 2;
-       if(m_base_position.Y > 8*BS)
-               m_base_position.Y = 2*BS;
+       Factory f = n->getValue();
+       ServerActiveObject *object = (*f)(env, pos, data);
+       return object;
+}
 
-       m_timer1 -= dtime;
-       if(m_timer1 < 0.0)
-       {
-               m_timer1 += 0.125;
-               //dstream<<"TestSAO: id="<<getId()<<" sending data"<<std::endl;
+void ServerActiveObject::registerType(u16 type, Factory f)
+{
+       core::map<u16, Factory>::Node *n;
+       n = m_types.find(type);
+       if(n)
+               return;
+       m_types.insert(type, f);
+}
 
-               std::string data;
+void ServerActiveObject::getWieldDiggingProperties(ToolDiggingProperties *dst)
+{
+       *dst = ToolDiggingProperties();
+}
 
-               data += itos(0); // 0 = position
-               data += " ";
-               data += itos(m_base_position.X);
-               data += " ";
-               data += itos(m_base_position.Y);
-               data += " ";
-               data += itos(m_base_position.Z);
 
-               //ActiveObjectMessage aom(getId(), true, data);
-               ActiveObjectMessage aom(getId(), false, data);
-               messages.push_back(aom);
-       }
-}