Skip to content

Commit 328a2ff

Browse files
author
Software Antics
committed
Added documentation for ISound
1 parent 808ea3a commit 328a2ff

File tree

1 file changed

+52
-2
lines changed

1 file changed

+52
-2
lines changed

FinalEngine.Audio/ISound.cs

+52-2
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,68 @@
44

55
namespace FinalEngine.Audio;
66

7-
using System;
87
using FinalEngine.Resources;
98

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
1118
{
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>
1230
bool IsLooping { get; set; }
1331

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>
1443
float Volume { get; set; }
1544

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>
1652
void Pause();
1753

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>
1861
void Play();
1962

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>
2070
void Stop();
2171
}

0 commit comments

Comments
 (0)