nomlib
Loading...
Searching...
No Matches
nom::PlayAudioSource Class Reference

[TODO: Description] More...

#include <PlayAudioSource.hpp>

Inheritance diagram for nom::PlayAudioSource:
[legend]

Public Types

typedef PlayAudioSource self_type
Public Types inherited from nom::IActionObject
enum  FrameState { COMPLETED , PLAYING }
 The update status of the action. More...
typedef IActionObject self_type
typedef std::function< real32(real32, real32, real32, real32)> timing_curve_func
 A function pointer to a timing mode.

Public Member Functions

 PlayAudioSource (audio::IOAudioEngine *dev, const char *filename)
 Default constructor; create the action from an audio file on disk.
virtual ~PlayAudioSource ()
 Construct the action from a pre-initialized audio buffer.
virtual std::unique_ptr< IActionObject > clone () const override
 Create a deep copy instance of the action.
virtual IActionObject::FrameState next_frame (real32 delta_time) override
 Play the action forward in time by one time step.
virtual IActionObject::FrameState prev_frame (real32 delta_time) override
 Play the action backwards in time by one time step.
virtual void pause (real32 delta_time) override
 Freeze the action's internal state.
virtual void resume (real32 delta_time) override
 Resume logic for the animation object.
virtual void rewind (real32 delta_time) override
 Reset the internal state of the action back to its initial starting values.
virtual void release () override
 Free externally referenced resources held by the action.
Public Member Functions inherited from nom::IActionObject
const std::string & name () const
 Get the unique identifier of the action.
real32 duration () const
 Get the duration of the action.
real32 speed () const
 Get the speed modifier of the action.
const IActionObject::timing_curve_functiming_curve () const
 Get the timing mode function used by the action.
void set_name (const std::string &action_id)
 Set the unique identifier of the action.
virtual void set_speed (real32 speed)
 Set the speed factor of the action.
virtual void set_timing_curve (const IActionObject::timing_curve_func &mode)
 Set the timing mode of the action.

Private Types

typedef std::vector< audio::SoundBuffer * > audio_buffers

Private Member Functions

IActionObject::FrameState update (real32 t, uint8 b, int16 c, real32 d)
 Execute the alpha blending logic for the animation.
void first_frame (real32 delta_time)
void last_frame (real32 delta_time)

Private Attributes

nom::size_type curr_frame_ = 0
 The initial alpha blending value.
audio::IOAudioEngineimpl_ = nullptr
audio::ISoundFileReaderfp_ = nullptr
audio_buffers::iterator current_buffer_
audio_buffers audible_
uint32 input_pos_ = 0

Static Private Attributes

static const char * DEBUG_CLASS_NAME

Friends

class ActionTest
 Allow access into our private parts for unit testing.

Additional Inherited Members

Protected Member Functions inherited from nom::IActionObject
IActionObject::FrameState status () const
 Get the current state of the action.
void set_duration (real32 seconds)
 Set the duration of the action.
void set_status (FrameState state)
 Set the state of the action.
Protected Attributes inherited from nom::IActionObject
real32 elapsed_frames_ = 0.0f
 Internal frames counter.
Timer timer_
 Internal time clock (milliseconds resolution).

Detailed Description

[TODO: Description]

Definition at line 49 of file PlayAudioSource.hpp.

Member Typedef Documentation

◆ audio_buffers

typedef std::vector<audio::SoundBuffer*> nom::PlayAudioSource::audio_buffers
private

Definition at line 105 of file PlayAudioSource.hpp.

◆ self_type

typedef PlayAudioSource nom::PlayAudioSource::self_type

Definition at line 55 of file PlayAudioSource.hpp.

Constructor & Destructor Documentation

◆ ~PlayAudioSource()

virtual nom::PlayAudioSource::~PlayAudioSource ( )
virtual

Construct the action from a pre-initialized audio buffer.

Destructor.

Member Function Documentation

◆ clone()

virtual std::unique_ptr< IActionObject > nom::PlayAudioSource::clone ( ) const
overridevirtual

Create a deep copy instance of the action.

Remarks
A cloned instance is created using the action's attributes at the time of construction. External resources of the action – i.e.: nom::Sprite – are not modified, and you may need to reset the state appropriately if the action has been ran previously.

Implements nom::IActionObject.

◆ next_frame()

virtual IActionObject::FrameState nom::PlayAudioSource::next_frame ( real32 delta_time)
overridevirtual

Play the action forward in time by one time step.

Parameters
delta_timeReserved for application-defined implementations.
Note
This method should not normally need to be called externally! Exceptions might include: a) implementing a new action; b) advanced debugging
See also
nom::DispatchQueue

Implements nom::IActionObject.

◆ pause()

virtual void nom::PlayAudioSource::pause ( real32 delta_time)
overridevirtual

Freeze the action's internal state.

Parameters
delta_timeReserved for application-defined implementations.
Note
This method should not normally need to be called externally! Exceptions might include: a) implementing a new action; b) advanced debugging
See also
nom::DispatchQueue

Implements nom::IActionObject.

◆ prev_frame()

virtual IActionObject::FrameState nom::PlayAudioSource::prev_frame ( real32 delta_time)
overridevirtual

Play the action backwards in time by one time step.

Parameters
delta_timeReserved for application-defined implementations.
Note
This method should not normally need to be called externally! Exceptions might include: a) implementing a new action; b) advanced debugging
Remarks
Not all actions are reversible – see the action's documentation for its implementation details.
See also
nom::ReversedAction

Implements nom::IActionObject.

◆ release()

virtual void nom::PlayAudioSource::release ( )
overridevirtual

Free externally referenced resources held by the action.

Note
This method should not normally need to be called externally! Exceptions might include: a) implementing a new action; b) advanced debugging
See also
nom::RemoveAction

Implements nom::IActionObject.

◆ resume()

virtual void nom::PlayAudioSource::resume ( real32 delta_time)
overridevirtual

Resume logic for the animation object.

Remarks
Reserved for future implementation.

Implements nom::IActionObject.

◆ rewind()

virtual void nom::PlayAudioSource::rewind ( real32 delta_time)
overridevirtual

Reset the internal state of the action back to its initial starting values.

Parameters
delta_timeReserved for application-defined implementations.
Note
This method should not normally need to be called externally! Exceptions might include: a) implementing a new action; b) advanced debugging
See also
nom::RepeatForAction, nom::RepeatForeverAction

Implements nom::IActionObject.

◆ ActionTest

friend class ActionTest
friend

Allow access into our private parts for unit testing.

Definition at line 53 of file PlayAudioSource.hpp.

Member Data Documentation

◆ audible_

audio_buffers nom::PlayAudioSource::audible_
private

Definition at line 107 of file PlayAudioSource.hpp.

◆ curr_frame_

nom::size_type nom::PlayAudioSource::curr_frame_ = 0
private

The initial alpha blending value.

The total change in the alpha blending value.

Definition at line 99 of file PlayAudioSource.hpp.

◆ current_buffer_

audio_buffers::iterator nom::PlayAudioSource::current_buffer_
private

Definition at line 106 of file PlayAudioSource.hpp.

◆ DEBUG_CLASS_NAME

const char* nom::PlayAudioSource::DEBUG_CLASS_NAME
staticprivate

Definition at line 85 of file PlayAudioSource.hpp.

◆ fp_

audio::ISoundFileReader* nom::PlayAudioSource::fp_ = nullptr
private

Definition at line 103 of file PlayAudioSource.hpp.

◆ impl_

audio::IOAudioEngine* nom::PlayAudioSource::impl_ = nullptr
private

Definition at line 101 of file PlayAudioSource.hpp.

◆ input_pos_

uint32 nom::PlayAudioSource::input_pos_ = 0
private

Definition at line 109 of file PlayAudioSource.hpp.


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