mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
36 lines
986 B
C#
36 lines
986 B
C#
|
using System.IO;
|
|||
|
using System.Media;
|
|||
|
using PKHeX.Core;
|
|||
|
|
|||
|
namespace PKHeX.WinForms.Controls
|
|||
|
{
|
|||
|
public class CryPlayer
|
|||
|
{
|
|||
|
private readonly SoundPlayer Sounds = new SoundPlayer();
|
|||
|
|
|||
|
public void PlayCry(PKM pk)
|
|||
|
{
|
|||
|
if (pk.Species == 0)
|
|||
|
return;
|
|||
|
|
|||
|
string path = GetCryPath(pk, Main.CryPath);
|
|||
|
if (!File.Exists(path))
|
|||
|
return;
|
|||
|
|
|||
|
Sounds.SoundLocation = path;
|
|||
|
try { Sounds.Play(); }
|
|||
|
catch { }
|
|||
|
}
|
|||
|
|
|||
|
public void Stop() => Sounds.Stop();
|
|||
|
|
|||
|
private static string GetCryPath(PKM pk, string cryFolder)
|
|||
|
{
|
|||
|
var name = PKX.GetResourceStringSprite(pk.Species, pk.AltForm, pk.Gender, pk.Format).Replace('_', '-').Substring(1);
|
|||
|
var path = Path.Combine(cryFolder, $"{name}.wav");
|
|||
|
if (!File.Exists(path))
|
|||
|
path = Path.Combine(cryFolder, $"{pk.Species}.wav");
|
|||
|
return path;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|