2019-10-04 01:23:40 +00:00
|
|
|
|
using PKHeX.Core;
|
2019-02-10 04:05:32 +00:00
|
|
|
|
|
2019-10-04 01:23:40 +00:00
|
|
|
|
using static PKHeX.Core.GameVersion;
|
|
|
|
|
|
|
|
|
|
namespace PKHeX.Drawing
|
2016-07-25 04:11:11 +00:00
|
|
|
|
{
|
2019-02-10 04:24:38 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Retrieves Box Storage wallpaper metadata.
|
|
|
|
|
/// </summary>
|
2016-07-25 04:11:11 +00:00
|
|
|
|
public static class BoxWallpaper
|
|
|
|
|
{
|
2019-02-10 04:05:32 +00:00
|
|
|
|
public static string GetWallpaperResourceName(GameVersion version, int index)
|
2016-07-25 04:11:11 +00:00
|
|
|
|
{
|
2019-10-04 01:23:40 +00:00
|
|
|
|
index++; // start indexes at 1
|
2019-02-10 04:05:32 +00:00
|
|
|
|
var suffix = GetResourceSuffix(version, index);
|
|
|
|
|
return $"box_wp{index:00}{suffix}";
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-02 01:08:49 +00:00
|
|
|
|
private static string GetResourceSuffix(GameVersion version, int index) => version.GetGeneration() switch
|
2019-02-10 04:05:32 +00:00
|
|
|
|
{
|
2021-01-02 01:08:49 +00:00
|
|
|
|
3 when version == E => "e",
|
|
|
|
|
3 when FRLG.Contains(version) && index > 12 => "frlg",
|
|
|
|
|
3 => "rs",
|
2020-12-25 18:58:33 +00:00
|
|
|
|
|
2021-01-02 01:08:49 +00:00
|
|
|
|
4 when index < 16 => "dp",
|
|
|
|
|
4 when version == Pt => "pt",
|
|
|
|
|
4 when HGSS.Contains(version) => "hgss",
|
2020-12-25 18:58:33 +00:00
|
|
|
|
|
2021-01-02 01:08:49 +00:00
|
|
|
|
5 => B2W2.Contains(version) && index > 16 ? "b2w2" : "bw",
|
|
|
|
|
6 => ORAS.Contains(version) && index > 16 ? "ao" : "xy",
|
|
|
|
|
7 when !GG.Contains(version) => "xy",
|
2021-11-27 03:11:54 +00:00
|
|
|
|
8 => BDSP.Contains(version) ? "bdsp" : "swsh",
|
2021-08-20 20:49:20 +00:00
|
|
|
|
_ => string.Empty,
|
2021-01-02 01:08:49 +00:00
|
|
|
|
};
|
2018-07-29 20:27:48 +00:00
|
|
|
|
|
2019-02-10 04:05:32 +00:00
|
|
|
|
public static bool IsWallpaperRed(GameVersion version, int wallpaperID)
|
2017-03-09 05:50:34 +00:00
|
|
|
|
{
|
2019-02-10 04:05:32 +00:00
|
|
|
|
switch (version.GetGeneration())
|
2017-03-09 05:50:34 +00:00
|
|
|
|
{
|
|
|
|
|
case 3:
|
2019-02-10 04:05:32 +00:00
|
|
|
|
if (CXD.Contains(version))
|
|
|
|
|
return wallpaperID == 7; // flame pattern in XD
|
2019-10-04 01:23:40 +00:00
|
|
|
|
|
|
|
|
|
return wallpaperID switch
|
2017-03-09 05:50:34 +00:00
|
|
|
|
{
|
2019-10-04 01:23:40 +00:00
|
|
|
|
5 => true, // Volcano
|
|
|
|
|
13 => E == version, // PokéCenter
|
|
|
|
|
_ => false,
|
|
|
|
|
};
|
2017-03-09 05:50:34 +00:00
|
|
|
|
case 4:
|
2019-10-04 01:23:40 +00:00
|
|
|
|
return wallpaperID switch
|
2017-03-09 05:50:34 +00:00
|
|
|
|
{
|
2019-10-04 01:23:40 +00:00
|
|
|
|
5 => true, // Volcano
|
|
|
|
|
12 => true, // Checks
|
|
|
|
|
13 => true, // PokéCenter
|
|
|
|
|
22 => true, // Special
|
2021-08-20 20:49:20 +00:00
|
|
|
|
_ => false,
|
2019-10-04 01:23:40 +00:00
|
|
|
|
};
|
2017-03-09 05:50:34 +00:00
|
|
|
|
case 5:
|
2019-10-04 01:23:40 +00:00
|
|
|
|
return wallpaperID switch
|
2017-03-09 05:50:34 +00:00
|
|
|
|
{
|
2019-10-04 01:23:40 +00:00
|
|
|
|
5 => true, // Volcano
|
|
|
|
|
12 => true, // Checks
|
|
|
|
|
19 => B2W2.Contains(version), // PWT
|
|
|
|
|
22 => B2W2.Contains(version), // Reshiram
|
|
|
|
|
21 => BW.Contains(version), // Zoroark
|
|
|
|
|
23 => BW.Contains(version), // Musical
|
2021-08-20 20:49:20 +00:00
|
|
|
|
_ => false,
|
2019-10-04 01:23:40 +00:00
|
|
|
|
};
|
2020-12-25 18:58:33 +00:00
|
|
|
|
case 6 or 7:
|
2019-10-04 01:23:40 +00:00
|
|
|
|
return wallpaperID switch
|
2017-03-09 05:50:34 +00:00
|
|
|
|
{
|
2019-10-04 01:23:40 +00:00
|
|
|
|
5 => true, // Volcano
|
|
|
|
|
12 => true, // PokéCenter
|
|
|
|
|
20 => true, // Special5 Flare/Magma
|
2021-08-20 20:49:20 +00:00
|
|
|
|
_ => false,
|
2019-10-04 01:23:40 +00:00
|
|
|
|
};
|
2021-11-20 02:23:49 +00:00
|
|
|
|
case 8 when BDSP.Contains(version):
|
|
|
|
|
return wallpaperID switch
|
|
|
|
|
{
|
|
|
|
|
6 => true, // Volcano
|
|
|
|
|
15 => true, // Checks
|
|
|
|
|
21 => true, // Trio
|
|
|
|
|
29 => true, // Nostalgic (Platinum)
|
|
|
|
|
30 => true, // Legend (Platinum)
|
|
|
|
|
_ => false,
|
|
|
|
|
};
|
2020-04-16 21:50:41 +00:00
|
|
|
|
case 8:
|
|
|
|
|
return wallpaperID switch
|
|
|
|
|
{
|
2020-04-16 22:07:04 +00:00
|
|
|
|
_ => true, // Bad contrast with lots of void space, better to just highlight the shiny red.
|
2020-04-16 21:50:41 +00:00
|
|
|
|
};
|
2019-02-10 04:05:32 +00:00
|
|
|
|
default:
|
|
|
|
|
return false;
|
2017-03-09 05:50:34 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-07-25 04:11:11 +00:00
|
|
|
|
}
|
|
|
|
|
}
|