![]() |
Paradox Game Engine
v1.0.0 beta06
|
The Audio System. It creates an underlying instance of AudioEngine. More...
Public Member Functions | |
AudioSystem (IServiceRegistry registry) | |
Create an new instance of AudioSystem More... | |
override void | Initialize () |
This method is called when the component is added to the game. More... | |
void | AddListener (AudioListenerComponent listener) |
Add and activate a AudioListenerComponent to the Audio System. After this call sounds played via AudioEmitterSoundControllers will be heard by this listener. More... | |
void | RemoveListener (AudioListenerComponent listener) |
Remove a AudioListenerComponent from the Audio System. After this call sounds played via AudioEmitterSoundControllers will not be heard by this listener anymore. More... | |
override void | Update (GameTime gameTime) |
This method is called when this game component is updated. More... | |
![]() | |
virtual bool | BeginDraw () |
Starts the drawing of a frame. This method is followed by calls to Draw and EndDraw. More... | |
virtual void | Draw (GameTime gameTime) |
Draws this instance. More... | |
virtual void | EndDraw () |
Ends the drawing of a frame. This method is preceeded by calls to Draw and BeginDraw. More... | |
![]() | |
void | Dispose () |
override string | ToString () |
Protected Member Functions | |
override void | Destroy () |
Disposes of object resources. More... | |
![]() | |
GameSystem (IServiceRegistry registry) | |
![]() | |
GameSystemBase (IServiceRegistry registry) | |
Initializes a new instance of the GameSystemBase class. More... | |
virtual void | OnDrawOrderChanged (object source, EventArgs e) |
virtual void | OnUpdateOrderChanged (object source, EventArgs e) |
virtual void | LoadContent () |
Loads the assets. More... | |
virtual void | UnloadContent () |
Called when graphics resources need to be unloaded. Override this method to unload any game-specific graphics resources. More... | |
![]() | |
ComponentBase () | |
Initializes a new instance of the ComponentBase class. More... | |
ComponentBase (string name) | |
Initializes a new instance of the ComponentBase class. More... | |
virtual void | OnNameChanged () |
Called when Name property was changed. More... | |
Properties | |
AudioEngine | AudioEngine [get, set] |
The underlying AudioEngine. This instance can be used to possibly create DynamicSoundEffectInstance. More... | |
![]() | |
InputManager | Input [get, set] |
EntitySystem | Entities [get, set] |
![]() | |
GameBase | Game [get] |
Gets the Game associated with this GameSystemBase. This value can be null in a mock environment. More... | |
IServiceRegistry | Services [get] |
Gets the services registry. More... | |
IAssetManager | Asset [get] |
Gets the content manager. More... | |
GraphicsDevice | GraphicsDevice [get] |
Gets the graphics device. More... | |
bool | Visible [get, set] |
int | DrawOrder [get, set] |
bool | Enabled [get, set] |
int | UpdateOrder [get, set] |
![]() | |
long | Id [get, set] |
string | Name [get, set] |
Gets or sets the name of this component. More... | |
bool | IsDisposed [get, set] |
Has the component been disposed or not yet. More... | |
![]() | |
long | Id [get] |
Gets the id of this component. More... | |
string | Name [get] |
Gets the name of this component. More... | |
![]() | |
int | ReferenceCount [get] |
Gets the reference count of this instance. More... | |
![]() | |
ObjectCollector | Collector [get] |
Gets the collector. More... | |
![]() | |
bool | Enabled [get] |
Gets a value indicating whether the game component's Update method should be called by GameBase.Update. More... | |
int | UpdateOrder [get] |
Gets the update order relative to other game components. Lower values are updated first. More... | |
![]() | |
bool | Visible [get] |
Gets a value indicating whether the Draw method should be called by GameBase.Draw. More... | |
int | DrawOrder [get] |
Gets the draw order relative to other objects. IDrawable objects with a lower value are drawn first. More... | |
Additional Inherited Members | |
![]() | |
PropertyContainer | Tags |
Gets the attached properties to this component. More... | |
![]() | |
EventHandler< EventArgs > | DrawOrderChanged |
EventHandler< EventArgs > | VisibleChanged |
EventHandler< EventArgs > | EnabledChanged |
EventHandler< EventArgs > | UpdateOrderChanged |
![]() | |
EventHandler< EventArgs > | EnabledChanged |
Occurs when the Enabled property changes. More... | |
EventHandler< EventArgs > | UpdateOrderChanged |
Occurs when the UpdateOrder property changes. More... | |
![]() | |
EventHandler< EventArgs > | DrawOrderChanged |
Occurs when the DrawOrder property changes. More... | |
EventHandler< EventArgs > | VisibleChanged |
Occurs when the Visible property changes. More... | |
The Audio System. It creates an underlying instance of AudioEngine.
Definition at line 16 of file AudioSystem.cs.
SiliconStudio.Paradox.Engine.AudioSystem.AudioSystem | ( | IServiceRegistry | registry | ) |
Create an new instance of AudioSystem
registry | The service registry in which to register the AudioSystem services |
Definition at line 22 of file AudioSystem.cs.
void SiliconStudio.Paradox.Engine.AudioSystem.AddListener | ( | AudioListenerComponent | listener | ) |
Add and activate a AudioListenerComponent to the Audio System. After this call sounds played via AudioEmitterSoundControllers will be heard by this listener.
listener | The listener to add to the audio system. |
Adding a listener already added as no effects.
Definition at line 60 of file AudioSystem.cs.
|
protectedvirtual |
Disposes of object resources.
Reimplemented from SiliconStudio.Core.ComponentBase.
Definition at line 88 of file AudioSystem.cs.
|
virtual |
This method is called when the component is added to the game.
This method can be used for tasks like querying for services the component needs and setting up non-graphics resources.
Reimplemented from SiliconStudio.Paradox.Games.GameSystemBase.
Definition at line 46 of file AudioSystem.cs.
void SiliconStudio.Paradox.Engine.AudioSystem.RemoveListener | ( | AudioListenerComponent | listener | ) |
Remove a AudioListenerComponent from the Audio System. After this call sounds played via AudioEmitterSoundControllers will not be heard by this listener anymore.
listener | The listener to remove from the audio system. |
Definition at line 72 of file AudioSystem.cs.
|
virtual |
This method is called when this game component is updated.
gameTime | The current timing. |
Reimplemented from SiliconStudio.Paradox.Games.GameSystemBase.
Definition at line 80 of file AudioSystem.cs.
|
getset |
The underlying AudioEngine. This instance can be used to possibly create DynamicSoundEffectInstance.
The audio engine.
Definition at line 35 of file AudioSystem.cs.