2019-08-20 19:50:28 -07:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Media;
|
|
|
|
|
using PKHeX.Core;
|
2019-10-03 18:23:40 -07:00
|
|
|
|
using PKHeX.Drawing;
|
2019-08-20 19:50:28 -07:00
|
|
|
|
|
|
|
|
|
namespace PKHeX.WinForms.Controls
|
|
|
|
|
{
|
2019-10-03 19:09:02 -07:00
|
|
|
|
public sealed class CryPlayer
|
2019-08-20 19:50:28 -07:00
|
|
|
|
{
|
|
|
|
|
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)
|
|
|
|
|
{
|
2019-10-03 18:35:33 -07:00
|
|
|
|
var name = GetCryFileName(pk);
|
2019-08-20 19:50:28 -07:00
|
|
|
|
var path = Path.Combine(cryFolder, $"{name}.wav");
|
|
|
|
|
if (!File.Exists(path))
|
|
|
|
|
path = Path.Combine(cryFolder, $"{pk.Species}.wav");
|
|
|
|
|
return path;
|
|
|
|
|
}
|
2019-10-03 18:35:33 -07:00
|
|
|
|
|
|
|
|
|
private static string GetCryFileName(PKM pk)
|
|
|
|
|
{
|
2020-06-19 18:51:15 -05:00
|
|
|
|
if (pk.Species == (int)Species.Urshifu && pk.AltForm == 1) // same sprite for both forms, but different cries
|
|
|
|
|
return "892-1";
|
|
|
|
|
|
2019-10-03 18:35:33 -07:00
|
|
|
|
// don't grab sprite of pkm, no gender specific cries
|
2020-03-03 20:22:57 -08:00
|
|
|
|
var res = SpriteName.GetResourceStringSprite(pk.Species, pk.AltForm, 0, 0, pk.Format);
|
2019-10-03 18:35:33 -07:00
|
|
|
|
return res.Replace('_', '-') // people like - instead of _ file names ;)
|
|
|
|
|
.Substring(1); // skip leading underscore
|
|
|
|
|
}
|
2019-08-20 19:50:28 -07:00
|
|
|
|
}
|
|
|
|
|
}
|