CUGL 2.3
Cornell University Game Library
Loading...
Searching...
No Matches
Public Member Functions | Static Public Member Functions | Protected Attributes | List of all members
cugl::scene2::ScaleBy Class Reference

#include <CUScaleAction.h>

Inheritance diagram for cugl::scene2::ScaleBy:
cugl::scene2::Action

Public Member Functions

 ScaleBy ()
 
 ~ScaleBy ()
 
void dispose ()
 
bool init ()
 
bool init (const Vec2 &factor)
 
bool init (const Vec2 &factor, float time)
 
const Vec2getFactor () const
 
void setFactor (const Vec2 &factor)
 
virtual std::shared_ptr< Actionclone () override
 
virtual void load (const std::shared_ptr< SceneNode > &target, Uint64 *state) override
 
virtual void update (const std::shared_ptr< SceneNode > &target, Uint64 *state, float dt) override
 
virtual std::string toString (bool verbose=false) const override
 
- Public Member Functions inherited from cugl::scene2::Action
 Action ()
 
 ~Action ()
 
float getDuration () const
 
void setDuration (float time)
 
virtual std::shared_ptr< Actionclone ()
 
virtual void load (const std::shared_ptr< SceneNode > &target, Uint64 *state)
 
virtual void update (const std::shared_ptr< SceneNode > &target, Uint64 *state, float dt)
 
virtual std::string toString (bool verbose=false) const
 
 operator std::string () const
 

Static Public Member Functions

static std::shared_ptr< ScaleByalloc ()
 
static std::shared_ptr< ScaleByalloc (const Vec2 &factor)
 
static std::shared_ptr< ScaleByalloc (const Vec2 &factor, float time)
 

Protected Attributes

Vec2 _delta
 
- Protected Attributes inherited from cugl::scene2::Action
float _duration
 

Detailed Description

This action represents a scale by a given factor.

An action contains only the definition of the animation. This can include information about the transform to use or the duration of the animation. However, it does not contain any attribute of the target. Hence, an action can be reapplied to different targets.

By itself, an action does nothing. It only specifies an action that may take place. To use an action, it must be passed to the ActionManager. The manager will create an action instance and animate that instance. While an action may be reused many times, an action instance corresponds to a single animation.

Constructor & Destructor Documentation

◆ ScaleBy()

cugl::scene2::ScaleBy::ScaleBy ( )
inline

Creates an uninitialized scaling action.

NEVER USE A CONSTRUCTOR WITH NEW. If you want to allocate an object on the heap, use one of the static constructors instead.

◆ ~ScaleBy()

cugl::scene2::ScaleBy::~ScaleBy ( )
inline

Deletes this action instance, disposing all resources

Member Function Documentation

◆ alloc() [1/3]

static std::shared_ptr< ScaleBy > cugl::scene2::ScaleBy::alloc ( )
inlinestatic

Returns a newly allocated. degenerate scaling action.

The scale amount is set to (1.0, 1.0), meaning no adjustment takes place.

Returns
a newly allocated. degenerate scaling action.

◆ alloc() [2/3]

static std::shared_ptr< ScaleBy > cugl::scene2::ScaleBy::alloc ( const Vec2 factor)
inlinestatic

Returns a newly allocated, instaneous scaling animation by the given factor

When animated, this action will adjust the scale of the node so that it is multiplied by the given factor. The animation will be instantaneous.

Parameters
factorThe amount to scale the target node
Returns
a newly allocated, instaneous scaling animation by the given factor

◆ alloc() [3/3]

static std::shared_ptr< ScaleBy > cugl::scene2::ScaleBy::alloc ( const Vec2 factor,
float  time 
)
inlinestatic

Returns a newly allocated scaling animation by the given factor

When animated, this action will adjust the scale of the node so that it is multiplied by the given factor. The animation will take place over the given number of seconds.

Parameters
factorThe amount to scale the target node
timeThe animation duration
Returns
a newly allocated scaling animation by the given factor

◆ clone()

virtual std::shared_ptr< Action > cugl::scene2::ScaleBy::clone ( )
overridevirtual

Returns a newly allocated copy of this Action.

Returns
a newly allocated copy of this Action.

Reimplemented from cugl::scene2::Action.

◆ dispose()

void cugl::scene2::ScaleBy::dispose ( )
inline

Disposes all of the resources used by this action.

A disposed action can be safely reinitialized.

◆ getFactor()

const Vec2 & cugl::scene2::ScaleBy::getFactor ( ) const
inline

Returns the scaling factor for this action.

Changing this value for an actively animating action can have undefined effects.

Returns
the scaling factor for this action.

◆ init() [1/3]

bool cugl::scene2::ScaleBy::init ( )
inline

Initializes a degenerate scaling action.

The scale amount is set to (1.0, 1.0), meaning no adjustment takes place.

Returns
true if initialization was successful.

◆ init() [2/3]

bool cugl::scene2::ScaleBy::init ( const Vec2 factor)
inline

Initializes an instaneous scaling animation by the given factor

When animated, this action will adjust the scale of the node so that it is multiplied by the given factor. The animation will be instantaneous.

Parameters
factorThe amount to scale the target node
Returns
true if initialization was successful.

◆ init() [3/3]

bool cugl::scene2::ScaleBy::init ( const Vec2 factor,
float  time 
)

Initializes a scaling animation by the given factor

When animated, this action will adjust the scale of the node so that it is multiplied by the given factor. The animation will take place over the given number of seconds.

Parameters
factorThe amount to scale the target node
timeThe animation duration
Returns
true if initialization was successful.

◆ load()

virtual void cugl::scene2::ScaleBy::load ( const std::shared_ptr< SceneNode > &  target,
Uint64 *  state 
)
overridevirtual

Prepares a target for action

The important state of the target is stored in the given state parameter. The semantics of this state is action-dependent.

Parameters
targetThe node to act on
stateThe relevant node state

Reimplemented from cugl::scene2::Action.

◆ setFactor()

void cugl::scene2::ScaleBy::setFactor ( const Vec2 factor)
inline

Sets the scaling factor for this action.

Changing this value for an actively animating action can have undefined effects.

Parameters
factorthe scaling factor for this action.

◆ toString()

virtual std::string cugl::scene2::ScaleBy::toString ( bool  verbose = false) const
overridevirtual

Returns a string representation of the action for debugging purposes.

If verbose is true, the string will include class information. This allows us to unambiguously identify the class.

Parameters
verboseWhether to include class information
Returns
a string representation of this action for debuggging purposes.

Reimplemented from cugl::scene2::Action.

◆ update()

virtual void cugl::scene2::ScaleBy::update ( const std::shared_ptr< SceneNode > &  target,
Uint64 *  state,
float  dt 
)
overridevirtual

Executes an action on the given target node.

The important state of the target is stored in the given state parameter. The semantics of this state is action-dependent.

Parameters
targetThe node to act on
stateThe relevant node state
dtThe elapsed time to animate.

Reimplemented from cugl::scene2::Action.

Member Data Documentation

◆ _delta

Vec2 cugl::scene2::ScaleBy::_delta
protected

The scaling factor


The documentation for this class was generated from the following file: