Unigine::PlayerActor Class
Header: | #include <UniginePlayers.h> |
Inherits: | Player |
PlayerActor Class
Members
static PlayerActorPtr create()
Constructor. Creates a new actor with default properties.Ptr<PlayerActor> cast(const Ptr<Player> & base)
Casts a PlayerActor out of the Player instance.Arguments
- const Ptr<Player> & base - Pointer to Player.
Return value
Pointer to PlayerActor.Ptr<PlayerActor> cast(const Ptr<Node> & node)
Casts a PlayerActor out of the Node instance.Arguments
- const Ptr<Node> & node - Pointer to Node.
Return value
Pointer to PlayerActor.void setAcceleration(float acceleration)
Sets an acceleration of the actor.Arguments
- float acceleration - New acceleration in units per second squared. If a negative value is provided, 0 will be used instead.
float getAcceleration()
Returns the current acceleration of the actor.Return value
Acceleration in units per second squared.Ptr<Body> getBody()
Returns a rigid body, if the body is simulated physically (isPhysical(1)); otherwise a dummy body will be returned (isPhysical(0)).Return value
Actor body.void setCeiling(int ceiling)
Sets a value indicating if the actor touches the ceiling surface with its head.Arguments
- int ceiling - 1 to indicate that an actor touches the ceiling; otherwise, 0.
int getCeiling()
Returns a value indicating if the actor touches the ceiling surface with its head.Return value
1 if the actor touches the ceiling; otherwise, 0.void setCollision(int collision)
Sets a value indicating if collisions with a player's capsule should be taken into account. This method is valid only in case setPhysical() is set to 0 and does not handle collisions automatically.Arguments
- int collision - 1 to enable collisions, 0 not to handle collisions with the actor.
int getCollision()
Returns a value indicating if collisions with a player's capsule should be taken into account. This method is valid only in case setPhysical() is set to 0 and does not handle collisions automatically.Return value
1 if collisions are taken into account; otherwise, 0.void setCollisionHeight(float height)
Sets a height of actor's capsule.Arguments
- float height - New height in units. If a negative value is provided, 0 will be used instead.
float getCollisionHeight()
Returns the height of actor's capsule.Return value
Height in units.void setCollisionMask(int mask)
Sets a collision mask for the actor. Two objects collide, if they both have matching masks (i.e. at least one bit matches).Arguments
- int mask - An integer value, each bit of which is used to set a bit mask.
int getCollisionMask()
Returns the collision mask of the actor. Two objects collide, if they both have matching masks (i.e. at least one bit matches).Return value
An integer value, each bit of which is used to set a bit mask.void setCollisionRadius(float radius)
Sets a radius of actor's capsule.Arguments
- float radius - New radius in units. If a negative value is provided, 0 will be used instead.
float getCollisionRadius()
Returns the radius of actor's capsule.Return value
Radius in units.float getContactDepth(int contact)
Returns penetration depth by the given contact.Arguments
- int contact - Contact number.
Return value
Penetration depth.Math::vec3 getContactNormal(int contact)
Returns a normal of the contact point, in world coordinates.Arguments
- int contact - Contact number.
Return value
Normal of the contact point.Ptr<Object> getContactObject(int contact)
Returns an object participating in the contact with the player (used for collisions with physical object).Arguments
- int contact - Contact number.
Return value
Object in contact.Math::Vec3 getContactPoint(int contact)
Returns world coordinates of the contact point.Arguments
- int contact - Contact number.
Return value
Contact point.Ptr<Shape> getContactShape(int num)
Returns a shape that collided with the player's capsule.Arguments
- int num - Contact number.
Return value
Shape in contact.int getContactSurface(int contact)
Returns the surface of the current object, which is in contact (used for collisions with non-physical object).Arguments
- int contact - Contact number.
Return value
Surface number.void setDamping(float damping)
Sets actor's velocity damping with the time.Arguments
- float damping - New velocity damping. If a negative value is provided, 0 will be used instead.
float getDamping()
Returns actor's velocity damping with the time.Return value
Velocity damping.void setGround(int ground)
Sets a flag indicating that the actor currently stands on the ground surface. This flag is used to set actor state, i.e. play the corresponding skinned animation of standing/walking instead of being in the air.Arguments
- int ground - 1 to indicate that the actor is on the ground; otherwise, 0.
int getGround()
Returns a flag indicating if the actor currently stands on the ground surface. This flag is used to determine the actor state, i.e. play the corresponding skinned animation of standing/walking instead of being in the air.Return value
1 if the actor is on the ground; otherwise, 0.void setIntersectionMask(int mask)
Sets an intersection mask for a player.Arguments
- int mask - An integer value, each bit of which is used to set a bit mask.
int getIntersectionMask()
Returns an intersection mask for a player.Return value
An integer value, each bit of which is used to set a bit mask.void setJumping(float jumping)
Sets a jumping coefficient. The greater the value, the higher the actor jumps.Arguments
- float jumping - Jumping coefficient. If a negative value is provided, 0 will be used instead.
float getJumping()
Returns the current jumping coefficient.Return value
Jumping coefficient.void setMaxFriction(float friction)
Sets a friction value for the actor that is used when the actor doesn't move, i.e. stands still on the ground. See also setMinFriction().Arguments
- float friction - Friction value. If a negative value is provided, 0 will be used instead.
float getMaxFriction()
Returns the friction value set for the actor that is used when the actor doesn't move, i.e. stands still on the ground. See also getMinFriction().Return value
Friction value.void setMaxThetaAngle(float angle)
Sets the maximum theta angle (zenith angle, also known as pitch angle) that determines how far downward the player can look.Arguments
- float angle - New maximum angle in degrees in range [0;90]. The higher the value, the further down the player can look.
float getMaxThetaAngle()
Returns the maximum theta angle (zenith angle, also known as pitch angle) that determines how far downward the player can look. The higher the value, the further down the player can look.Return value
Angle in degrees.void setMaxVelocity(float velocity)
Sets the velocity of the actor, which is used while the actor runs.Arguments
- float velocity - New velocity in units per second. If a negative value is provided, 0 will be used instead.
float getMaxVelocity()
Returns the velocity of the actor, which is used while the actor runs.Return value
Velocity in units per second.void setMinFriction(float friction)
Sets a friction value for the actor that is used when the actor walks upon the ground. See also setMaxFriction().Arguments
- float friction - Friction value. If a negative value is provided, 0 will be used instead.
float getMinFriction()
Returns the friction value set for the actor that is used when the actor walks upon the ground. See also getMaxFriction().Return value
Friction value.void setMinThetaAngle(float angle)
Sets the minimum theta angle (zenith angle, also known as pitch angle) that determines how far upward the player can look.Arguments
- float angle - New minimum angle in degrees in range [-90;0]. The lower the value, the further up the player can look.
float getMinThetaAngle()
Returns the minimum theta angle (zenith angle, also known as pitch angle) that determines how far upward the player can look. The lower the value, the further up the player can look.Return value
Angle in degrees.void setMinVelocity(float velocity)
Sets the default velocity of the actor.Arguments
- float velocity - New velocity in units per second. If a negative value is provided, 0 will be used instead.
float getMinVelocity()
Returns the default velocity of the actor.Return value
Velocity in units per second.int getNumContacts()
Returns the number of contacts, in which the player's capsule participates.Return value
Number of contacts.void setPhiAngle(float angle)
Sets the phi angle (azimuth angle, also known as yaw angle). This angle determines the horizontal viewing direction, i.e. left or right.Arguments
- float angle - New angle in degrees. Positive values rotate the player right; negative values rotate the player left.
float getPhiAngle()
Returns the phi angle (azimuth angle, also known as yaw angle). This angle determines the horizontal viewing direction, i.e. left or right. Positive values rotate the player right; negative values rotate the player left.Return value
Angle in degrees.void setPhysical(int physical)
Sets a value indicating whether the actor should interact with the environment as a physical object or not (enables or disables its rigid body). If it is disabled, collisions can be handled using setCollision() method.Arguments
- int physical - Physical flag: 1 to enable rigid body model, 0 to disable it.
int isPhysical()
Returns a value indicating whether the actor interacts with the environment as a physical object or not.Return value
Physical flag: 1 if rigid body model is enabled; otherwise, 0.void setPhysicalMask(int mask)
Sets the bit mask for interaction with physicals. Two objects interact, if they both have matching masks (i.e. at least one bit matches).Arguments
- int mask - An integer value, each bit of which is used to set a bit mask.
int getPhysicalMask()
Returns the bit mask for interaction with physicals. Two objects interact, if they both have matching masks (i.e. at least one bit matches).Return value
An integer value, each bit of which is used to set a bit mask.void setPhysicalMass(float mass)
Sets a mass of the actor. If g (Earth's gravity) equals to 9.8 m/s^2, and 1 unit equals to 1 meter, the mass is measured in kilograms.Arguments
- float mass - New mass value. If a negative value is provided, 0 will be used instead.
float getPhysicalMass()
Returns the current mass of the actor. If g (Earth's gravity) equals to 9.8 m/s^2, and 1 unit equals to 1 meter, the mass is measured in kilograms.Return value
Mass value.Ptr<ShapeCapsule> getShape()
Returns a shape, which approximates the actor in physical interactions.Return value
Actor shape.int getState(int arg1)
Returns a value indicating if the actor is in a given state.Arguments
- int arg1 - One of the available states with the STATE_* prefix.
Return value
1 if the actor is in the given state; otherwise, 0.float getStateTime(int arg1)
Returns time spent by the actor in a given state.Arguments
- int arg1 - One of the available states with the STATE_* prefix.
Return value
Time in seconds spent by the actor in a given state.void setThetaAngle(float angle)
Sets the theta angle of the player (zenith angle, also known as pitch angle). This angle determines the vertical viewing direction, i.e. upward and downward. The value will be clamped between the minimum and the maximum theta angle.Arguments
- float angle - New angle in degrees in range [-90;90]. If a positive value is specified, the player will look upwards; if a negative value is specified, the player will look downwards.
float getThetaAngle()
Returns the theta angle (zenith angle, also known as pitch angle). This angle determines the vertical viewing direction, i.e. upwards or downwards. If a positive value is returned, the player looks upwards; if a negative value is returned, the player looks downwards. The value is clamped between the minimum and the maximum theta angle.Return value
Angle in degrees.void setTurning(float turning)
Sets a velocity of player turning.Arguments
- float turning - Turning velocity in degrees per second. If a negative value is provided, 0 will be used instead.
float getTurning()
Returns a velocity of player turning.Return value
Turning velocity in degrees per second.setViewDirection(const Math::vec3 & direction)
Sets a new Player's view direction vector.Arguments
- const Math::vec3 & direction - New view direction vector to be set.
const Math::vec3 & getViewDirection()
Returns the current Player's view direction vector.Return value
Current Player's view direction vector.int type()
Returns the type of the player.Return value
PlayerActor type identifier.void setMaxStepHeight(float height)
Sets the maximum step height. The value defines the maximum height of a surface to which the player can make a step; it can be used for walking up and down the stairs and over curbs.Arguments
- float height -
Maximum step height.
Used only when the body is not simulated physically (isPhysical(0)).
float getMaxStepHeight()
Returns the maximum height of a surface to which the player can make a step.Return value
Maximum step height.int NUM_STATES
int STATE_BACKWARD
Description
A state, in which the player moves backwards.int STATE_BEGIN
Description
A state, which denotes a beginning of another state like moving forward.int STATE_CROUCH
Description
A state, in which the player crouches.int STATE_DISABLED
Description
A state, which means that another state is disabled.int STATE_ENABLED
Description
A state, which means that another state is enabled.int STATE_END
Description
A state, which denotes an end of another state.int STATE_FIRE
Description
A state, in which the player fires their weapon.int STATE_FORWARD
Description
A state, in which the player moves forwards.int STATE_JUMP
Description
A state, in which the player jumps.int STATE_MOVE_LEFT
Description
A state, in which the player moves left.int STATE_MOVE_RIGHT
Description
A state, in which the player moves right.int STATE_RUN
Description
A state, in which the player runs.int STATE_TURN_DOWN
Description
A state, in which the player turns down.int STATE_TURN_LEFT
Description
A state, in which the player turns left.int STATE_TURN_RIGHT
Description
A state, in which the player turns right.int STATE_TURN_UP
Description
A state, in which the player turns up.int STATE_USE
Description
A state, in which the player utilizes some object.Last update: 2018-04-26
Help improve this article
Was this article helpful?
(or select a word/phrase and press Ctrl+Enter)