mirror of
https://github.com/9ParsonsB/Pulsar.git
synced 2025-04-05 17:39:39 -04:00
* Add file association for .eop, prompt for install dir * Handle .eop or .aip file passed as arg. * VS2022 version bump * Filter neutron stars and black holes from fast spinning criteria. * Adjustments for new "high value" check * Refactor herald cache * Fix element order and namespaces for voice moods. * Add explicit .Stop() between audio player calls. * Use nullsafe member access instead of skipping * Don't queue up a title that's already queued. * Improve body ordinal handling for explorer speech titles. * Escape strings being inserted into xml * Handle flip-flopping JSON type * Converter for flip-flopping property type * Use the converter * Escape characters *before* we wrap it in xml. * Give Eahlstan his clear button. :D * Exclude all stars from fast rotation check. * Close outstanding popup notifications on exit. * TO DONE * [Herald] Suppress duplicate notification titles for spoken notifications If you have notifications from multiple plugins producing notifications with the same title in quick succession (ie. "Body A 1 e" from both Explorer and BioInsights), the title on successive notifications will not be spoken again to save the breath of our friendly Azure speakers. * Doc update * Remove unintended member hiding * Fix export errors when exporting BioInsights data, cleanup Discovered a couple issues with exporting BioInsights data resulting from using two different types of objects in the data grid; improved error handling as well. Also cleaned up some old-style read all code. * Add read-all on launch setting * Updated framework xml * Improve high-value body description text Co-authored-by: Fred Kuipers <mr.fredk@gmail.com>
99 lines
3.1 KiB
C#
99 lines
3.1 KiB
C#
using NetCoreAudio.Interfaces;
|
|
using NetCoreAudio.Players;
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace NetCoreAudio
|
|
{
|
|
public class Player : IPlayer
|
|
{
|
|
private readonly IPlayer _internalPlayer;
|
|
|
|
/// <summary>
|
|
/// Internally, sets Playing flag to false. Additional handlers can be attached to it to handle any custom logic.
|
|
/// </summary>
|
|
public event EventHandler PlaybackFinished;
|
|
|
|
/// <summary>
|
|
/// Indicates that the audio is currently playing.
|
|
/// </summary>
|
|
public bool Playing => _internalPlayer.Playing;
|
|
|
|
/// <summary>
|
|
/// Indicates that the audio playback is currently paused.
|
|
/// </summary>
|
|
public bool Paused => _internalPlayer.Paused;
|
|
|
|
public Player()
|
|
{
|
|
if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
|
|
_internalPlayer = new WindowsPlayer();
|
|
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
|
|
_internalPlayer = new LinuxPlayer();
|
|
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
|
|
_internalPlayer = new MacPlayer();
|
|
else
|
|
throw new Exception("No implementation exist for the current OS");
|
|
|
|
_internalPlayer.PlaybackFinished += OnPlaybackFinished;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Will stop any current playback and will start playing the specified audio file. The fileName parameter can be an absolute path or a path relative to the directory where the library is located. Sets Playing flag to true. Sets Paused flag to false.
|
|
/// </summary>
|
|
/// <param name="fileName"></param>
|
|
/// <returns></returns>
|
|
public async Task Play(string fileName)
|
|
{
|
|
await _internalPlayer.Play(fileName);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Pauses any ongong playback. Sets Paused flag to true. Doesn't modify Playing flag.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task Pause()
|
|
{
|
|
await _internalPlayer.Pause();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resumes any paused playback. Sets Paused flag to false. Doesn't modify Playing flag.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task Resume()
|
|
{
|
|
await _internalPlayer.Resume();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Stops any current playback and clears the buffer. Sets Playing and Paused flags to false.
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task Stop(bool force = false)
|
|
{
|
|
await _internalPlayer.Stop(force);
|
|
}
|
|
|
|
private void OnPlaybackFinished(object sender, EventArgs e)
|
|
{
|
|
PlaybackFinished?.Invoke(this, e);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Sets the playing volume as percent
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public async Task SetVolume(byte percent)
|
|
{
|
|
await _internalPlayer.SetVolume(percent);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_internalPlayer.Dispose();
|
|
}
|
|
}
|
|
}
|