Skip to content

Class endstone::Actor

ClassList > endstone > Actor

Represents a base actor in the level.

  • #include <endstone/actor/actor.h>

Inherits the following classes: endstone::CommandSender

Inherited by the following classes: endstone::Player

Public Functions

Type Name
Actor () = default
Actor (const Actor &) = delete
Actor (Actor &&) = delete
virtual Dimension & getDimension () const = 0
virtual Level & getLevel () const = 0
virtual Location getLocation () const = 0
virtual std::uint64_t getRuntimeId () const = 0
virtual Vector< float > getVelocity () const = 0
virtual bool isInLava () const = 0
virtual bool isInWater () const = 0
virtual bool isOnGround () const = 0
Actor & operator= (const Actor &) = delete
Actor & operator= (Actor &&) = delete
~Actor () override

Public Functions inherited from endstone::CommandSender

See endstone::CommandSender

Type Name
CommandSender () = default
virtual CommandSender * asCommandSender () override const
Casts a Permissible asCommandSender .
virtual CommandSender * asConsole () const
Gets a CommandSender as Console.
virtual Player * asPlayer () const
Gets a CommandSender asPlayer .
virtual std::string getName () const = 0
Gets the name of this command sender.
virtual Server & getServer () const = 0
Returns the server instance that this command is running on.
virtual void sendErrorMessage (const std::string & message) const = 0
Sends this sender a error message.
virtual void sendErrorMessage (const Translatable & message) const = 0
Sends this sender a translatable error message.
void sendErrorMessage (const fmt::format_string< Args... > format, Args &&... args) const
virtual void sendMessage (const std::string & message) const = 0
Sends this sender a message.
virtual void sendMessage (const Translatable & message) const = 0
Sends this sender a translatable message.
void sendMessage (const fmt::format_string< Args... > format, Args &&... args) const
~CommandSender () override

Public Functions inherited from endstone::Permissible

See endstone::Permissible

Type Name
virtual PermissionAttachment * addAttachment (Plugin & plugin, const std::string & name, bool value) = 0
virtual PermissionAttachment * addAttachment (Plugin & plugin) = 0
virtual CommandSender * asCommandSender () const = 0
virtual std::unordered_set< PermissionAttachmentInfo * > getEffectivePermissions () const = 0
virtual bool hasPermission (std::string name) const = 0
virtual bool hasPermission (const Permission & perm) const = 0
virtual bool isOp () const = 0
Checks if this object is a server operator.
virtual bool isPermissionSet (std::string name) const = 0
virtual bool isPermissionSet (const Permission & perm) const = 0
virtual void recalculatePermissions () = 0
virtual bool removeAttachment (PermissionAttachment & attachment) = 0
virtual void setOp (bool value) = 0
Sets the operator status of this object.
virtual ~Permissible () = default

Public Functions Documentation

function Actor [⅓]

endstone::Actor::Actor () = default

function Actor [⅔]

endstone::Actor::Actor (
    const Actor &
) = delete

function Actor [3/3]

endstone::Actor::Actor (
    Actor &&
) = delete

function getDimension

virtual Dimension & endstone::Actor::getDimension () const = 0

Gets the current Dimension this actor resides in

Returns:

The current Dimension this actor resides in


function getLevel

virtual Level & endstone::Actor::getLevel () const = 0

Gets the current Level this actor resides in

Returns:

The current Level this actor resides in


function getLocation

virtual Location endstone::Actor::getLocation () const = 0

Gets the actor's current position

Returns:

a new copy of Location containing the position of this actor


function getRuntimeId

virtual std::uint64_t endstone::Actor::getRuntimeId () const = 0

Returns the runtime id for this actor

Returns:

Runtime id for this actor


function getVelocity

virtual Vector < float > endstone::Actor::getVelocity () const = 0

Gets this actor's current velocity

Returns:

Current traveling velocity of this actor


function isInLava

virtual bool endstone::Actor::isInLava () const = 0

Returns true if the actor is in lava.

Returns:

True if the actor is in lava.


function isInWater

virtual bool endstone::Actor::isInWater () const = 0

Returns true if the actor is in water.

Returns:

True if the actor is in water.


function isOnGround

virtual bool endstone::Actor::isOnGround () const = 0

Returns true if the actor is supported by a block.

Returns:

True if actor is on ground.


function operator=

Actor & endstone::Actor::operator= (
    const Actor &
) = delete

function operator=

Actor & endstone::Actor::operator= (
    Actor &&
) = delete

function ~Actor

endstone::Actor::~Actor () override


The documentation for this class was generated from the following file include/endstone/actor/actor.h