mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
95fbf66a6e
In addition to the Method 1 (and other sibling PIDIV types) correlation, an encounter can only be triggered if the calls prior land on the Method {1} seed. The RNG community has dubbed these patterns as "Method J" (D/P/Pt), "Method K" (HG/SS), and "Method H" (Gen3, coined by yours truly). The basic gist of these is that they are pre-requisites, like the Shadow locks of Colosseum/XD. Rename/re-type a bunch of properties to get the codebase more in line with correct property names & more obvious underlying types.
103 lines
3 KiB
C#
103 lines
3 KiB
C#
using System;
|
|
using System.Text;
|
|
using PKHeX.Core;
|
|
using static PKHeX.Core.Species;
|
|
|
|
namespace PKHeX.Drawing.PokeSprite;
|
|
|
|
public static class SpriteName
|
|
{
|
|
public static bool AllowShinySprite { get; set; }
|
|
|
|
private const char Separator = '_';
|
|
private const char Cosplay = 'c';
|
|
private const char Shiny = 's';
|
|
private const char GGStarter = 'p';
|
|
|
|
/// <summary>
|
|
/// Gets the resource name of the <see cref="Ball"/> sprite.
|
|
/// </summary>
|
|
public static string GetResourceStringBall(byte ball) => $"_ball{ball}";
|
|
|
|
/// <summary>
|
|
/// Gets the resource name of the Pokémon sprite.
|
|
/// </summary>
|
|
public static string GetResourceStringSprite(ushort species, byte form, byte gender, uint formarg, EntityContext context = PKX.Context, bool shiny = false)
|
|
{
|
|
if (SpeciesDefaultFormSprite.Contains(species)) // Species who show their default sprite regardless of Form
|
|
form = 0;
|
|
|
|
var sb = new StringBuilder(12); // longest expected string result
|
|
sb.Append(Separator).Append(species);
|
|
|
|
if (form != 0)
|
|
{
|
|
sb.Append(Separator).Append(form);
|
|
|
|
if (species == (ushort)Pikachu)
|
|
{
|
|
if (context == EntityContext.Gen6)
|
|
{
|
|
sb.Append(Cosplay);
|
|
gender = 1; // Cosplay Pikachu gift can only be Female, but personal entries are set to be either Gender
|
|
}
|
|
else if (form == 8)
|
|
{
|
|
sb.Append(GGStarter);
|
|
}
|
|
}
|
|
else if (species == (ushort)Eevee)
|
|
{
|
|
if (form == 1)
|
|
sb.Append(GGStarter);
|
|
}
|
|
}
|
|
if (gender == 1 && SpeciesGenderedSprite.Contains(species))
|
|
{
|
|
sb.Append('f');
|
|
}
|
|
|
|
if (species == (ushort)Alcremie)
|
|
{
|
|
if (form == 0)
|
|
sb.Append(Separator).Append(form);
|
|
sb.Append(Separator).Append(formarg);
|
|
}
|
|
|
|
if (shiny && AllowShinySprite)
|
|
sb.Append(Shiny);
|
|
return sb.ToString();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Species that show their default Species sprite regardless of current <see cref="PKM.Form"/>
|
|
/// </summary>
|
|
private static ReadOnlySpan<ushort> SpeciesDefaultFormSprite =>
|
|
[
|
|
(ushort)Mothim,
|
|
(ushort)Scatterbug,
|
|
(ushort)Spewpa,
|
|
(ushort)Rockruff,
|
|
(ushort)Mimikyu,
|
|
(ushort)Sinistea,
|
|
(ushort)Polteageist,
|
|
(ushort)Urshifu,
|
|
(ushort)Dudunsparce,
|
|
(ushort)Poltchageist,
|
|
(ushort)Sinistcha,
|
|
];
|
|
|
|
/// <summary>
|
|
/// Species that show a <see cref="PKM.Gender"/> specific Sprite
|
|
/// </summary>
|
|
private static ReadOnlySpan<ushort> SpeciesGenderedSprite =>
|
|
[
|
|
(ushort)Pikachu,
|
|
(ushort)Hippopotas,
|
|
(ushort)Hippowdon,
|
|
(ushort)Unfezant,
|
|
(ushort)Frillish,
|
|
(ushort)Jellicent,
|
|
(ushort)Pyroar,
|
|
];
|
|
}
|