|
4 | 4 |
|
5 | 5 | namespace FinalEngine.Audio;
|
6 | 6 |
|
7 |
| -using System; |
8 | 7 | using FinalEngine.Resources;
|
9 | 8 |
|
10 |
| -public interface ISound : IResource, IDisposable |
| 9 | +/// <summary> |
| 10 | +/// Defines an interface that defines a sound or audio source. |
| 11 | +/// </summary> |
| 12 | +/// |
| 13 | +/// <remarks> |
| 14 | +/// The <see cref="ISound" /> interface expands upon the capabilities of <see cref="IResource" />, empowering developers with enhanced control over sound instantiation through <see cref="IResourceManager" /> instances. |
| 15 | +/// </remarks> |
| 16 | +/// <seealso cref="IResource" /> |
| 17 | +public interface ISound : IResource |
11 | 18 | {
|
| 19 | + /// <summary> |
| 20 | + /// Gets or sets a value indicating whether this <see cref="ISound"/> is set to loop. |
| 21 | + /// </summary> |
| 22 | + /// |
| 23 | + /// <value> |
| 24 | + /// <c>true</c> if this <see cref="ISound"/> is set to loop; otherwise, <c>false</c>. |
| 25 | + /// </value> |
| 26 | + /// |
| 27 | + /// <remarks> |
| 28 | + /// The <see cref="IsLooping"/> property determines whether the implementation should restart playback from the beginning once it reaches the end. |
| 29 | + /// </remarks> |
12 | 30 | bool IsLooping { get; set; }
|
13 | 31 |
|
| 32 | + /// <summary> |
| 33 | + /// Gets or sets the volume of this <see cref="ISound"/>. |
| 34 | + /// </summary> |
| 35 | + /// |
| 36 | + /// <value> |
| 37 | + /// A <see cref="float"/> value that represents the volume of this <see cref="ISound"/>. |
| 38 | + /// </value> |
| 39 | + /// |
| 40 | + /// <remarks> |
| 41 | + /// The <see cref="Volume"/> property's implementation should handle values within the range of 0 to 100. Values outside this range should be adjusted to fit within it. |
| 42 | + /// </remarks> |
14 | 43 | float Volume { get; set; }
|
15 | 44 |
|
| 45 | + /// <summary> |
| 46 | + /// Pauses playback of this <see cref="ISound"/>. |
| 47 | + /// </summary> |
| 48 | + /// |
| 49 | + /// <remarks> |
| 50 | + /// When the <see cref="Pause"/> method is implemented, it should halt audio playback while retaining the current position. Resuming playback through <see cref="Play"/> should continue from where the sound was paused. |
| 51 | + /// </remarks> |
16 | 52 | void Pause();
|
17 | 53 |
|
| 54 | + /// <summary> |
| 55 | + /// Starts or resumes playback of this <see cref="ISound"/>. |
| 56 | + /// </summary> |
| 57 | + /// |
| 58 | + /// <remarks> |
| 59 | + /// The <see cref="Play"/> method's implementation should initiate or resume audio playback from its current position. If the sound was previously paused using the <see cref="Pause"/> method, invoking <see cref="Play"/> should continue playback from where it was paused. |
| 60 | + /// </remarks> |
18 | 61 | void Play();
|
19 | 62 |
|
| 63 | + /// <summary> |
| 64 | + /// Stops playback of this <see cref="ISound"/> and resets its position to the beginning. |
| 65 | + /// </summary> |
| 66 | + /// |
| 67 | + /// <remarks> |
| 68 | + /// The <see cref="Stop"/> method's implementation should halt audio playback and reset its position to the beginning. Subsequent calls to the <see cref="Play"/> method should cause the sound to begin playing from the start. |
| 69 | + /// </remarks> |
20 | 70 | void Stop();
|
21 | 71 | }
|
0 commit comments