2011-02-20 23:45:14 +01:00
|
|
|
/*
|
2013-02-24 18:40:43 +01:00
|
|
|
Minetest
|
2013-02-24 19:38:45 +01:00
|
|
|
Copyright (C) 2010-2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2011-02-20 23:45:14 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 16:56:56 +02:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2011-02-20 23:45:14 +01:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 16:56:56 +02:00
|
|
|
GNU Lesser General Public License for more details.
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2012-06-05 16:56:56 +02:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2011-02-20 23:45:14 +01:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SERVEROBJECT_HEADER
|
|
|
|
#define SERVEROBJECT_HEADER
|
|
|
|
|
2012-06-17 03:00:31 +02:00
|
|
|
#include "irrlichttypes_bloated.h"
|
2011-02-20 23:45:14 +01:00
|
|
|
#include "activeobject.h"
|
2012-01-12 06:10:39 +01:00
|
|
|
#include "inventorymanager.h"
|
2012-03-29 15:10:11 +02:00
|
|
|
#include "itemgroup.h"
|
2012-06-17 01:40:36 +02:00
|
|
|
#include "util/container.h"
|
2011-02-20 23:45:14 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
|
|
|
|
Some planning
|
|
|
|
-------------
|
|
|
|
|
|
|
|
* Server environment adds an active object, which gets the id 1
|
|
|
|
* The active object list is scanned for each client once in a while,
|
|
|
|
and it finds out what objects have been added that are not known
|
2011-04-10 11:34:12 +02:00
|
|
|
by the client yet. This scan is initiated by the Server class and
|
|
|
|
the result ends up directly to the server.
|
2011-02-20 23:45:14 +01:00
|
|
|
* A network packet is created with the info and sent to the client.
|
2011-04-10 11:34:12 +02:00
|
|
|
* Environment converts objects to static data and static data to
|
|
|
|
objects, based on how close players are to them.
|
2011-02-20 23:45:14 +01:00
|
|
|
|
|
|
|
*/
|
|
|
|
|
2011-02-21 15:10:36 +01:00
|
|
|
class ServerEnvironment;
|
2012-01-23 20:23:56 +01:00
|
|
|
struct ItemStack;
|
2011-07-30 17:51:15 +02:00
|
|
|
class Player;
|
2012-03-04 20:08:03 +01:00
|
|
|
struct ToolCapabilities;
|
2012-03-30 12:26:40 +02:00
|
|
|
struct ObjectProperties;
|
2011-02-21 15:10:36 +01:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
class ServerActiveObject : public ActiveObject
|
|
|
|
{
|
|
|
|
public:
|
2011-04-10 15:20:31 +02:00
|
|
|
/*
|
|
|
|
NOTE: m_env can be NULL, but step() isn't called if it is.
|
|
|
|
Prototypes are used that way.
|
|
|
|
*/
|
2011-11-11 18:33:17 +01:00
|
|
|
ServerActiveObject(ServerEnvironment *env, v3f pos);
|
2011-02-20 23:45:14 +01:00
|
|
|
virtual ~ServerActiveObject();
|
|
|
|
|
2015-02-16 17:42:13 +01:00
|
|
|
virtual ActiveObjectType getSendType() const
|
2012-03-29 15:10:11 +02:00
|
|
|
{ return getType(); }
|
|
|
|
|
2011-12-01 12:22:33 +01:00
|
|
|
// Called after id has been set and has been inserted in environment
|
2012-09-09 16:12:29 +02:00
|
|
|
virtual void addedToEnvironment(u32 dtime_s){};
|
2011-12-01 12:22:33 +01:00
|
|
|
// Called before removing from environment
|
|
|
|
virtual void removingFromEnvironment(){};
|
2011-12-01 17:23:58 +01:00
|
|
|
// Returns true if object's deletion is the job of the
|
|
|
|
// environment
|
|
|
|
virtual bool environmentDeletes() const
|
|
|
|
{ return true; }
|
2011-11-11 18:33:17 +01:00
|
|
|
|
2011-04-10 03:15:10 +02:00
|
|
|
// Create a certain type of ServerActiveObject
|
2015-02-17 11:37:55 +01:00
|
|
|
static ServerActiveObject* create(ActiveObjectType type,
|
2011-04-10 03:15:10 +02:00
|
|
|
ServerEnvironment *env, u16 id, v3f pos,
|
|
|
|
const std::string &data);
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2011-04-10 03:15:10 +02:00
|
|
|
/*
|
|
|
|
Some simple getters/setters
|
|
|
|
*/
|
2011-11-12 10:59:56 +01:00
|
|
|
v3f getBasePosition(){ return m_base_position; }
|
|
|
|
void setBasePosition(v3f pos){ m_base_position = pos; }
|
|
|
|
ServerEnvironment* getEnv(){ return m_env; }
|
2011-02-21 15:10:36 +01:00
|
|
|
|
2011-11-12 10:59:56 +01:00
|
|
|
/*
|
|
|
|
Some more dynamic interface
|
|
|
|
*/
|
2011-11-12 16:37:14 +01:00
|
|
|
|
2011-11-12 12:59:56 +01:00
|
|
|
virtual void setPos(v3f pos)
|
2011-11-12 14:41:29 +01:00
|
|
|
{ setBasePosition(pos); }
|
2011-11-12 12:59:56 +01:00
|
|
|
// continuous: if true, object does not stop immediately at pos
|
|
|
|
virtual void moveTo(v3f pos, bool continuous)
|
2011-11-12 14:41:29 +01:00
|
|
|
{ setBasePosition(pos); }
|
2011-11-12 14:14:24 +01:00
|
|
|
// If object has moved less than this and data has not changed,
|
|
|
|
// saving to disk may be omitted
|
2012-06-17 01:40:36 +02:00
|
|
|
virtual float getMinimumSavedMovement();
|
2011-11-12 10:59:56 +01:00
|
|
|
|
2011-11-12 16:37:14 +01:00
|
|
|
virtual std::string getDescription(){return "SAO";}
|
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
|
|
|
Step object in time.
|
|
|
|
Messages added to messages are sent to client over network.
|
2011-04-10 14:16:27 +02:00
|
|
|
|
|
|
|
send_recommended:
|
2011-04-10 15:20:31 +02:00
|
|
|
True at around 5-10 times a second, same for all objects.
|
2011-04-10 14:16:27 +02:00
|
|
|
This is used to let objects send most of the data at the
|
|
|
|
same time so that the data can be combined in a single
|
|
|
|
packet.
|
2011-02-20 23:45:14 +01:00
|
|
|
*/
|
2011-06-26 14:48:56 +02:00
|
|
|
virtual void step(float dtime, bool send_recommended){}
|
2011-02-20 23:45:14 +01:00
|
|
|
|
2011-02-21 15:10:36 +01:00
|
|
|
/*
|
|
|
|
The return value of this is passed to the client-side object
|
|
|
|
when it is created
|
|
|
|
*/
|
2012-11-26 23:47:03 +01:00
|
|
|
virtual std::string getClientInitializationData(u16 protocol_version){return "";}
|
2011-02-21 15:10:36 +01:00
|
|
|
|
|
|
|
/*
|
|
|
|
The return value of this is passed to the server-side object
|
2011-04-10 03:15:10 +02:00
|
|
|
when it is created (converted from static to active - actually
|
|
|
|
the data is the static form)
|
2011-02-21 15:10:36 +01:00
|
|
|
*/
|
2011-12-01 17:23:58 +01:00
|
|
|
virtual std::string getStaticData()
|
|
|
|
{
|
|
|
|
assert(isStaticAllowed());
|
|
|
|
return "";
|
|
|
|
}
|
2011-12-01 12:22:33 +01:00
|
|
|
/*
|
|
|
|
Return false in here to never save and instead remove object
|
|
|
|
on unload. getStaticData() will not be called in that case.
|
|
|
|
*/
|
2011-12-01 17:23:58 +01:00
|
|
|
virtual bool isStaticAllowed() const
|
|
|
|
{return true;}
|
2011-02-21 15:10:36 +01:00
|
|
|
|
2012-03-04 20:08:03 +01:00
|
|
|
// Returns tool wear
|
|
|
|
virtual int punch(v3f dir,
|
|
|
|
const ToolCapabilities *toolcap=NULL,
|
|
|
|
ServerActiveObject *puncher=NULL,
|
2011-12-01 22:33:48 +01:00
|
|
|
float time_from_last_punch=1000000)
|
2012-03-04 20:08:03 +01:00
|
|
|
{ return 0; }
|
2011-12-01 22:33:48 +01:00
|
|
|
virtual void rightClick(ServerActiveObject *clicker)
|
|
|
|
{}
|
2011-11-12 16:37:14 +01:00
|
|
|
virtual void setHP(s16 hp)
|
2011-12-01 22:33:48 +01:00
|
|
|
{}
|
2012-03-19 03:04:16 +01:00
|
|
|
virtual s16 getHP() const
|
2011-12-01 22:33:48 +01:00
|
|
|
{ return 0; }
|
2011-10-16 10:52:33 +02:00
|
|
|
|
2012-03-29 15:10:11 +02:00
|
|
|
virtual void setArmorGroups(const ItemGroupList &armor_groups)
|
|
|
|
{}
|
2015-05-26 14:10:08 +02:00
|
|
|
virtual ItemGroupList getArmorGroups()
|
|
|
|
{ return ItemGroupList(); }
|
2013-04-05 13:03:28 +02:00
|
|
|
virtual void setPhysicsOverride(float physics_override_speed, float physics_override_jump, float physics_override_gravity)
|
|
|
|
{}
|
2015-02-21 22:38:53 +01:00
|
|
|
virtual void setAnimation(v2f frames, float frame_speed, float frame_blend, bool frame_loop)
|
2012-10-26 17:03:24 +02:00
|
|
|
{}
|
2015-02-21 22:38:53 +01:00
|
|
|
virtual void getAnimation(v2f *frames, float *frame_speed, float *frame_blend, bool *frame_loop)
|
2015-05-26 14:10:08 +02:00
|
|
|
{}
|
2015-05-27 13:23:09 +02:00
|
|
|
virtual void setBonePosition(const std::string &bone, v3f position, v3f rotation)
|
2012-10-26 17:03:24 +02:00
|
|
|
{}
|
2015-05-26 14:10:08 +02:00
|
|
|
virtual void getBonePosition(const std::string &bone, v3f *position, v3f *lotation)
|
|
|
|
{}
|
2015-05-27 13:23:09 +02:00
|
|
|
virtual void setAttachment(int parent_id, const std::string &bone, v3f position, v3f rotation)
|
2012-10-27 00:49:01 +02:00
|
|
|
{}
|
2015-05-26 14:10:08 +02:00
|
|
|
virtual void getAttachment(int *parent_id, std::string *bone, v3f *position, v3f *rotation)
|
|
|
|
{}
|
2015-07-03 12:31:34 +02:00
|
|
|
virtual void addAttachmentChild(int child_id)
|
|
|
|
{}
|
|
|
|
virtual void removeAttachmentChild(int child_id)
|
|
|
|
{}
|
|
|
|
virtual std::set<int> getAttachmentChildIds()
|
|
|
|
{ return std::set<int>(); }
|
2012-03-30 12:26:40 +02:00
|
|
|
virtual ObjectProperties* accessObjectProperties()
|
|
|
|
{ return NULL; }
|
|
|
|
virtual void notifyObjectPropertiesModified()
|
|
|
|
{}
|
2012-03-29 15:10:11 +02:00
|
|
|
|
2012-01-12 06:10:39 +01:00
|
|
|
// Inventory and wielded item
|
|
|
|
virtual Inventory* getInventory()
|
|
|
|
{ return NULL; }
|
|
|
|
virtual const Inventory* getInventory() const
|
|
|
|
{ return NULL; }
|
|
|
|
virtual InventoryLocation getInventoryLocation() const
|
|
|
|
{ return InventoryLocation(); }
|
|
|
|
virtual void setInventoryModified()
|
|
|
|
{}
|
|
|
|
virtual std::string getWieldList() const
|
|
|
|
{ return ""; }
|
|
|
|
virtual int getWieldIndex() const
|
|
|
|
{ return 0; }
|
|
|
|
virtual ItemStack getWieldedItem() const;
|
|
|
|
virtual bool setWieldedItem(const ItemStack &item);
|
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
|
|
|
Number of players which know about this object. Object won't be
|
|
|
|
deleted until this is 0 to keep the id preserved for the right
|
|
|
|
object.
|
|
|
|
*/
|
2011-02-20 23:45:14 +01:00
|
|
|
u16 m_known_by_count;
|
2011-05-22 16:00:09 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
/*
|
2011-04-07 23:47:14 +02:00
|
|
|
- Whether this object is to be removed when nobody knows about
|
|
|
|
it anymore.
|
|
|
|
- Removal is delayed to preserve the id for the time during which
|
|
|
|
it could be confused to some other object by some client.
|
|
|
|
- This is set to true by the step() method when the object wants
|
|
|
|
to be deleted.
|
2011-04-10 03:15:10 +02:00
|
|
|
- This can be set to true by anything else too.
|
2011-02-20 23:45:14 +01:00
|
|
|
*/
|
|
|
|
bool m_removed;
|
|
|
|
|
2011-05-22 16:00:09 +02:00
|
|
|
/*
|
2011-12-01 17:23:58 +01:00
|
|
|
This is set to true when an object should be removed from the active
|
2011-05-22 16:00:09 +02:00
|
|
|
object list but couldn't be removed because the id has to be
|
|
|
|
reserved for some client.
|
|
|
|
|
|
|
|
The environment checks this periodically. If this is true and also
|
2011-12-01 17:23:58 +01:00
|
|
|
m_known_by_count is true, object is deleted from the active object
|
|
|
|
list.
|
2011-05-22 16:00:09 +02:00
|
|
|
*/
|
|
|
|
bool m_pending_deactivation;
|
|
|
|
|
2011-04-10 03:15:10 +02:00
|
|
|
/*
|
|
|
|
Whether the object's static data has been stored to a block
|
|
|
|
*/
|
|
|
|
bool m_static_exists;
|
|
|
|
/*
|
|
|
|
The block from which the object was loaded from, and in which
|
|
|
|
a copy of the static data resides.
|
|
|
|
*/
|
|
|
|
v3s16 m_static_block;
|
|
|
|
|
2011-06-26 14:48:56 +02:00
|
|
|
/*
|
|
|
|
Queue of messages to be sent to the client
|
|
|
|
*/
|
2015-03-04 17:48:07 +01:00
|
|
|
std::queue<ActiveObjectMessage> m_messages_out;
|
2011-06-26 14:48:56 +02:00
|
|
|
|
2011-02-20 23:45:14 +01:00
|
|
|
protected:
|
2011-04-10 03:15:10 +02:00
|
|
|
// Used for creating objects based on type
|
|
|
|
typedef ServerActiveObject* (*Factory)
|
2011-11-11 18:33:17 +01:00
|
|
|
(ServerEnvironment *env, v3f pos,
|
2011-04-10 03:15:10 +02:00
|
|
|
const std::string &data);
|
|
|
|
static void registerType(u16 type, Factory f);
|
|
|
|
|
2011-02-21 15:10:36 +01:00
|
|
|
ServerEnvironment *m_env;
|
2011-02-20 23:45:14 +01:00
|
|
|
v3f m_base_position;
|
2011-04-10 03:15:10 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
// Used for creating objects based on type
|
2012-12-20 18:19:49 +01:00
|
|
|
static std::map<u16, Factory> m_types;
|
2011-02-20 23:45:14 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|