2016-06-20 04:22:43 +00:00
|
|
|
|
using System;
|
2016-09-04 06:14:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
2016-06-20 04:22:43 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2017-01-08 07:54:09 +00:00
|
|
|
|
namespace PKHeX.Core
|
2016-06-20 04:22:43 +00:00
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Logic for exporting and importing <see cref="PKM"/> data in Pokémon Showdown's text format.
|
|
|
|
|
/// </summary>
|
2016-06-20 04:22:43 +00:00
|
|
|
|
public class ShowdownSet
|
|
|
|
|
{
|
|
|
|
|
// String to Values
|
2016-09-20 05:59:15 +00:00
|
|
|
|
private static readonly string[] StatNames = { "HP", "Atk", "Def", "SpA", "SpD", "Spe" };
|
2017-12-27 00:29:35 +00:00
|
|
|
|
private static readonly string[] genders = {"M", "F", ""};
|
2018-01-30 01:20:12 +00:00
|
|
|
|
private static readonly string[] genderForms = {"", "F", ""};
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private const string Language = "en";
|
2018-04-26 01:45:31 +00:00
|
|
|
|
private const int LanguageID = 2;
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static readonly string[] types = Util.GetTypesList(Language);
|
|
|
|
|
private static readonly string[] forms = Util.GetFormsList(Language);
|
|
|
|
|
private static readonly string[] species = Util.GetSpeciesList(Language);
|
|
|
|
|
private static readonly string[] items = Util.GetItemsList(Language);
|
2018-04-26 01:45:31 +00:00
|
|
|
|
private static readonly string[] g2items = Util.GetStringList("ItemsG2", Language);
|
|
|
|
|
private static readonly string[] g3items = Util.GetStringList("ItemsG3", Language);
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static readonly string[] natures = Util.GetNaturesList(Language);
|
|
|
|
|
private static readonly string[] moves = Util.GetMovesList(Language);
|
|
|
|
|
private static readonly string[] abilities = Util.GetAbilitiesList(Language);
|
2016-06-20 04:22:43 +00:00
|
|
|
|
private static readonly string[] hptypes = types.Skip(1).ToArray();
|
2017-12-27 00:29:35 +00:00
|
|
|
|
private static int MAX_SPECIES => species.Length-1;
|
2016-06-20 04:22:43 +00:00
|
|
|
|
|
|
|
|
|
// Default Set Data
|
2016-09-20 05:59:15 +00:00
|
|
|
|
public string Nickname { get; set; }
|
|
|
|
|
public int Species { get; private set; } = -1;
|
2018-04-26 01:45:31 +00:00
|
|
|
|
public int Format { get; private set; } = PKX.Generation;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
public string Form { get; private set; }
|
|
|
|
|
public string Gender { get; private set; }
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public int HeldItem { get; private set; }
|
2018-04-26 01:45:31 +00:00
|
|
|
|
public int Ability { get; private set; } = -1;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
public int Level { get; private set; } = 100;
|
|
|
|
|
public bool Shiny { get; private set; }
|
|
|
|
|
public int Friendship { get; private set; } = 255;
|
2018-05-21 02:29:19 +00:00
|
|
|
|
public int Nature { get; set; }
|
2018-01-30 01:20:12 +00:00
|
|
|
|
public int FormIndex { get; private set; }
|
2016-09-20 05:59:15 +00:00
|
|
|
|
public int[] EVs { get; private set; } = {00, 00, 00, 00, 00, 00};
|
|
|
|
|
public int[] IVs { get; private set; } = {31, 31, 31, 31, 31, 31};
|
|
|
|
|
public int[] Moves { get; private set; } = {0, 0, 0, 0};
|
2016-09-10 02:13:48 +00:00
|
|
|
|
public readonly List<string> InvalidLines = new List<string>();
|
2016-06-20 04:22:43 +00:00
|
|
|
|
|
2016-09-20 05:59:15 +00:00
|
|
|
|
private int[] IVsSpeedFirst => new[] {IVs[0], IVs[1], IVs[2], IVs[5], IVs[3], IVs[4]};
|
|
|
|
|
private int[] IVsSpeedLast => new[] {IVs[0], IVs[1], IVs[2], IVs[4], IVs[5], IVs[3]};
|
|
|
|
|
private int[] EVsSpeedFirst => new[] {EVs[0], EVs[1], EVs[2], EVs[5], EVs[3], EVs[4]};
|
|
|
|
|
private int[] EVsSpeedLast => new[] {EVs[0], EVs[1], EVs[2], EVs[4], EVs[5], EVs[3]};
|
2016-09-18 05:10:27 +00:00
|
|
|
|
|
2016-06-20 04:22:43 +00:00
|
|
|
|
// Parsing Utility
|
|
|
|
|
public ShowdownSet(string input = null)
|
|
|
|
|
{
|
|
|
|
|
if (input == null)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
string[] lines = input.Split(new[] { "\r\n", "\n" }, StringSplitOptions.None);
|
2018-03-11 18:39:58 +00:00
|
|
|
|
LoadLines(lines);
|
|
|
|
|
}
|
|
|
|
|
public ShowdownSet(IEnumerable<string> lines)
|
|
|
|
|
{
|
|
|
|
|
if (lines == null)
|
2017-11-18 06:19:23 +00:00
|
|
|
|
return;
|
2018-03-11 18:39:58 +00:00
|
|
|
|
LoadLines(lines);
|
|
|
|
|
}
|
|
|
|
|
private void LoadLines(IEnumerable<string> lines)
|
|
|
|
|
{
|
2018-05-22 04:36:10 +00:00
|
|
|
|
lines = lines.Select(z => z.Replace("'", "’").Replace("–", "-").Trim()); // Sanitize apostrophes & dashes
|
2018-03-11 18:39:58 +00:00
|
|
|
|
lines = lines.Where(z => z.Length > 2);
|
2016-06-20 04:22:43 +00:00
|
|
|
|
|
2018-03-11 18:39:58 +00:00
|
|
|
|
ParseLines(lines);
|
2016-09-20 05:59:15 +00:00
|
|
|
|
|
2018-03-11 18:39:58 +00:00
|
|
|
|
// Showdown Quirks
|
|
|
|
|
Form = ConvertFormFromShowdown(Form, Species, Ability);
|
|
|
|
|
// Set Form
|
|
|
|
|
string[] formStrings = PKX.GetFormList(Species, types, forms, genderForms);
|
|
|
|
|
FormIndex = Math.Max(0, Array.FindIndex(formStrings, z => z.Contains(Form ?? "")));
|
|
|
|
|
}
|
|
|
|
|
private void ParseLines(IEnumerable<string> lines)
|
|
|
|
|
{
|
2016-06-20 04:22:43 +00:00
|
|
|
|
int movectr = 0;
|
2018-06-16 03:30:23 +00:00
|
|
|
|
var e = lines.GetEnumerator();
|
|
|
|
|
if (!e.MoveNext())
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
ParseFirstLine(e.Current);
|
|
|
|
|
while (e.MoveNext())
|
2016-06-20 04:22:43 +00:00
|
|
|
|
{
|
2018-06-16 03:30:23 +00:00
|
|
|
|
var line = e.Current;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
if (line.StartsWith("-"))
|
2016-06-20 04:22:43 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
string moveString = ParseLineMove(line);
|
2016-09-18 05:10:27 +00:00
|
|
|
|
int move = Array.IndexOf(moves, moveString);
|
|
|
|
|
if (move < 0)
|
|
|
|
|
InvalidLines.Add($"Unknown Move: {moveString}");
|
|
|
|
|
else
|
|
|
|
|
Moves[movectr++] = move;
|
|
|
|
|
|
2016-06-20 04:22:43 +00:00
|
|
|
|
if (movectr == 4)
|
2018-03-11 18:39:58 +00:00
|
|
|
|
return; // End of moves, end of set data
|
2016-06-20 04:22:43 +00:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
string[] brokenline = line.Split(new[] { ": " }, StringSplitOptions.None);
|
2018-06-16 03:30:23 +00:00
|
|
|
|
var piece1 = brokenline[0].Trim();
|
|
|
|
|
var piece2 = brokenline.Length == 1 ? string.Empty : brokenline[1].Trim();
|
|
|
|
|
if (!ParseEntry(piece1, piece2))
|
|
|
|
|
InvalidLines.Add(line);
|
2016-06-20 04:22:43 +00:00
|
|
|
|
}
|
2018-06-16 03:30:23 +00:00
|
|
|
|
e.Dispose();
|
2016-06-20 04:22:43 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
|
2018-06-16 03:30:23 +00:00
|
|
|
|
private bool ParseEntry(string first, string second)
|
2018-04-26 01:45:31 +00:00
|
|
|
|
{
|
2018-06-16 03:30:23 +00:00
|
|
|
|
switch (first)
|
2018-04-26 01:45:31 +00:00
|
|
|
|
{
|
2018-06-16 03:30:23 +00:00
|
|
|
|
case "Trait": case "Ability": return (Ability = Array.IndexOf(abilities, second)) >= 0;
|
|
|
|
|
case "Shiny": return Shiny = second.Trim() == "Yes";
|
|
|
|
|
case "Nature": return (Nature = Array.IndexOf(natures, second)) >= 0;
|
|
|
|
|
case "EV": case "EVs": ParseLineEVs(second); return true;
|
|
|
|
|
case "IV": case "IVs": ParseLineIVs(second); return true;
|
|
|
|
|
case "Level":
|
|
|
|
|
{
|
|
|
|
|
if (!int.TryParse(second.Trim(), out int val))
|
|
|
|
|
return false;
|
|
|
|
|
Level = val;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
case "Happiness": case "Friendship":
|
|
|
|
|
{
|
|
|
|
|
if (!int.TryParse(second.Trim(), out int val))
|
|
|
|
|
return false;
|
|
|
|
|
Friendship = val;
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
{
|
|
|
|
|
if (first.EndsWith("Nature")) // XXX Nature
|
|
|
|
|
{
|
|
|
|
|
string naturestr = first.Split(' ')[0].Trim();
|
|
|
|
|
return (Nature = Array.IndexOf(natures, naturestr)) >= 0;
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2018-04-26 01:45:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public string Text => GetText();
|
|
|
|
|
private string GetText()
|
2016-06-20 04:22:43 +00:00
|
|
|
|
{
|
2016-09-20 05:59:15 +00:00
|
|
|
|
if (Species == 0 || Species > MAX_SPECIES)
|
2017-11-18 06:19:23 +00:00
|
|
|
|
return string.Empty;
|
2016-06-20 04:22:43 +00:00
|
|
|
|
|
2017-06-18 20:02:02 +00:00
|
|
|
|
var result = new List<string>();
|
|
|
|
|
|
|
|
|
|
// First Line: Name, Nickname, Gender, Item
|
2017-09-02 15:26:51 +00:00
|
|
|
|
string form = ConvertFormToShowdown(Form, Species);
|
2017-06-18 20:02:02 +00:00
|
|
|
|
result.Add(GetStringFirstLine(form));
|
|
|
|
|
|
|
|
|
|
// IVs
|
|
|
|
|
if (GetStringStats(out IEnumerable<string> ivstr, IVsSpeedLast, 31))
|
|
|
|
|
result.Add($"IVs: {string.Join(" / ", ivstr)}");
|
|
|
|
|
|
|
|
|
|
// EVs
|
|
|
|
|
if (GetStringStats(out IEnumerable<string> evstr, EVsSpeedLast, 0))
|
|
|
|
|
result.Add($"EVs: {string.Join(" / ", evstr)}");
|
|
|
|
|
|
|
|
|
|
// Secondary Stats
|
|
|
|
|
if (Ability > -1 && Ability < abilities.Length)
|
|
|
|
|
result.Add($"Ability: {abilities[Ability]}");
|
2018-05-12 04:44:09 +00:00
|
|
|
|
if (Level != 100)
|
|
|
|
|
result.Add($"Level: {Level}");
|
2017-06-18 20:02:02 +00:00
|
|
|
|
if (Shiny)
|
|
|
|
|
result.Add("Shiny: Yes");
|
|
|
|
|
|
|
|
|
|
if (Nature > -1)
|
|
|
|
|
result.Add($"{natures[Nature]} Nature");
|
|
|
|
|
|
|
|
|
|
// Moves
|
|
|
|
|
result.AddRange(GetStringMoves());
|
|
|
|
|
|
|
|
|
|
return string.Join(Environment.NewLine, result);
|
|
|
|
|
}
|
|
|
|
|
private string GetStringFirstLine(string form)
|
|
|
|
|
{
|
2016-09-18 05:10:27 +00:00
|
|
|
|
string specForm = species[Species];
|
2016-12-23 23:37:56 +00:00
|
|
|
|
if (!string.IsNullOrWhiteSpace(form))
|
2017-09-30 05:58:25 +00:00
|
|
|
|
specForm += $"-{form.Replace("Mega ", "Mega-")}";
|
2016-10-04 02:24:46 +00:00
|
|
|
|
|
2018-05-12 19:28:48 +00:00
|
|
|
|
string result = Nickname != null && PKX.GetSpeciesNameGeneration(Species, LanguageID, Format) != Nickname ? $"{Nickname} ({specForm})" : specForm;
|
2016-09-18 05:10:27 +00:00
|
|
|
|
if (!string.IsNullOrEmpty(Gender))
|
|
|
|
|
result += $" ({Gender})";
|
2018-04-26 01:45:31 +00:00
|
|
|
|
if (HeldItem > 0)
|
|
|
|
|
{
|
|
|
|
|
switch (Format)
|
|
|
|
|
{
|
|
|
|
|
case 2: if (HeldItem < g2items.Length)
|
|
|
|
|
result += $" @ {g2items[HeldItem]}";
|
|
|
|
|
break;
|
|
|
|
|
case 3: if (HeldItem < g3items.Length)
|
|
|
|
|
result += $" @ {g3items[HeldItem]}";
|
|
|
|
|
break;
|
|
|
|
|
default: if (HeldItem < items.Length)
|
|
|
|
|
result += $" @ {items[HeldItem]}";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-18 20:02:02 +00:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
private static bool GetStringStats(out IEnumerable<string> result, int[] stats, int ignore)
|
|
|
|
|
{
|
|
|
|
|
var list = new List<string>();
|
|
|
|
|
for (int i = 0; i < stats.Length; i++)
|
2016-06-20 04:22:43 +00:00
|
|
|
|
{
|
2017-06-18 20:02:02 +00:00
|
|
|
|
if (stats[i] == ignore) continue; // ignore unused EVs
|
|
|
|
|
list.Add($"{stats[i]} {StatNames[i]}");
|
2016-06-20 04:22:43 +00:00
|
|
|
|
}
|
2017-06-18 20:02:02 +00:00
|
|
|
|
result = list;
|
|
|
|
|
return list.Count > 0;
|
|
|
|
|
}
|
|
|
|
|
private IEnumerable<string> GetStringMoves()
|
|
|
|
|
{
|
2016-06-20 04:22:43 +00:00
|
|
|
|
foreach (int move in Moves.Where(move => move != 0 && move < moves.Length))
|
|
|
|
|
{
|
2017-06-29 05:09:26 +00:00
|
|
|
|
var str = $"- {moves[move]}";
|
2016-06-28 05:26:39 +00:00
|
|
|
|
if (move == 237) // Hidden Power
|
2018-03-11 02:03:09 +00:00
|
|
|
|
str += $" [{hptypes[HiddenPower.GetType(IVs)]}]";
|
2017-06-29 05:09:26 +00:00
|
|
|
|
yield return str;
|
2016-06-20 04:22:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-06-18 20:02:02 +00:00
|
|
|
|
|
2017-12-27 00:29:35 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Converts the <see cref="PKM"/> data into an importable set format for Pokémon Showdown.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="pkm">PKM to convert to string</param>
|
|
|
|
|
/// <returns>Multi line set data</returns>
|
2017-06-18 01:37:19 +00:00
|
|
|
|
public static string GetShowdownText(PKM pkm)
|
2016-06-20 04:22:43 +00:00
|
|
|
|
{
|
2017-11-18 06:19:23 +00:00
|
|
|
|
if (pkm.Species == 0)
|
|
|
|
|
return string.Empty;
|
2018-05-21 01:33:38 +00:00
|
|
|
|
return new ShowdownSet(pkm).Text;
|
|
|
|
|
}
|
|
|
|
|
public ShowdownSet(PKM pkm)
|
|
|
|
|
{
|
2018-05-21 02:29:19 +00:00
|
|
|
|
if (pkm.Species <= 0)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
Nickname = pkm.Nickname;
|
|
|
|
|
Species = pkm.Species;
|
|
|
|
|
HeldItem = pkm.HeldItem;
|
|
|
|
|
Ability = pkm.Ability;
|
|
|
|
|
EVs = pkm.EVs;
|
|
|
|
|
IVs = pkm.IVs;
|
|
|
|
|
Moves = pkm.Moves;
|
|
|
|
|
Nature = pkm.Nature;
|
|
|
|
|
Gender = genders[pkm.Gender < 2 ? pkm.Gender : 2];
|
|
|
|
|
Friendship = pkm.CurrentFriendship;
|
|
|
|
|
Level = PKX.GetLevel(pkm.Species, pkm.EXP);
|
|
|
|
|
Shiny = pkm.IsShiny;
|
|
|
|
|
|
|
|
|
|
FormIndex = pkm.AltForm;
|
|
|
|
|
string[] Forms = PKX.GetFormList(Species, types, forms, genderForms, pkm.Format);
|
|
|
|
|
Form = pkm.AltForm > 0 && pkm.AltForm < Forms.Length ? Forms[pkm.AltForm] : string.Empty;
|
|
|
|
|
Format = pkm.Format;
|
2016-06-20 04:22:43 +00:00
|
|
|
|
}
|
2018-06-16 03:30:23 +00:00
|
|
|
|
|
|
|
|
|
private void ParseFirstLine(string first)
|
|
|
|
|
{
|
|
|
|
|
if (first.Contains(" @ "))
|
|
|
|
|
{
|
|
|
|
|
string[] pieces = first.Split(new[] { " @ " }, StringSplitOptions.None);
|
|
|
|
|
string itemstr = pieces.Last().Trim();
|
|
|
|
|
|
|
|
|
|
ParseItemStr(itemstr);
|
|
|
|
|
ParseFirstLineNoItem(pieces[0]);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
ParseFirstLineNoItem(first.Trim());
|
|
|
|
|
}
|
|
|
|
|
private void ParseItemStr(string itemstr)
|
|
|
|
|
{
|
|
|
|
|
int item = Array.IndexOf(items, itemstr);
|
|
|
|
|
if (item >= 0)
|
|
|
|
|
{
|
|
|
|
|
HeldItem = item;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if ((item = Array.IndexOf(g3items, itemstr)) >= 0)
|
|
|
|
|
{
|
|
|
|
|
HeldItem = item;
|
|
|
|
|
Format = 3;
|
|
|
|
|
}
|
|
|
|
|
if ((item = Array.IndexOf(g2items, itemstr)) >= 0)
|
|
|
|
|
{
|
|
|
|
|
HeldItem = item;
|
|
|
|
|
Format = 2;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
InvalidLines.Add($"Unknown Item: {itemstr}");
|
|
|
|
|
}
|
|
|
|
|
private void ParseFirstLineNoItem(string line)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
|
|
|
|
// Gender Detection
|
|
|
|
|
string last3 = line.Substring(line.Length - 3);
|
|
|
|
|
if (last3 == "(M)" || last3 == "(F)")
|
|
|
|
|
{
|
|
|
|
|
Gender = last3.Substring(1, 1);
|
|
|
|
|
line = line.Substring(0, line.Length - 3);
|
|
|
|
|
}
|
2018-04-22 16:53:52 +00:00
|
|
|
|
else if (line.Contains(species[678])) // Meowstic Edge Case with no gender provided
|
|
|
|
|
Gender = "M";
|
2018-05-12 15:13:39 +00:00
|
|
|
|
|
2016-09-20 05:59:15 +00:00
|
|
|
|
// Nickname Detection
|
2018-02-13 01:36:15 +00:00
|
|
|
|
if (line.Contains("(") && line.Contains(")"))
|
|
|
|
|
ParseSpeciesNickname(line);
|
|
|
|
|
else
|
|
|
|
|
ParseSpeciesForm(line);
|
|
|
|
|
}
|
|
|
|
|
private bool ParseSpeciesForm(string spec)
|
|
|
|
|
{
|
2016-09-20 05:59:15 +00:00
|
|
|
|
spec = spec.Trim();
|
|
|
|
|
if ((Species = Array.IndexOf(species, spec)) >= 0) // success, nothing else!
|
2018-02-13 01:36:15 +00:00
|
|
|
|
return true;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
|
2018-01-31 00:18:39 +00:00
|
|
|
|
// Forme string present.
|
|
|
|
|
int end = spec.LastIndexOf('-');
|
|
|
|
|
if (end < 0)
|
2018-02-13 01:36:15 +00:00
|
|
|
|
return false;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
|
2018-01-31 00:18:39 +00:00
|
|
|
|
Species = Array.IndexOf(species, spec.Substring(0, end).Trim());
|
2018-02-04 17:44:19 +00:00
|
|
|
|
Form = spec.Substring(end + 1);
|
2017-12-01 02:24:31 +00:00
|
|
|
|
|
2018-02-13 01:36:15 +00:00
|
|
|
|
if (Species >= 0)
|
2018-02-16 02:59:38 +00:00
|
|
|
|
return true;
|
2018-02-13 01:36:15 +00:00
|
|
|
|
|
|
|
|
|
// failure to parse, check edge cases
|
2018-04-05 01:30:54 +00:00
|
|
|
|
var edge = new[] {784, 250, 032, 029}; // all species with dashes in English Name (Kommo-o, Ho-Oh, Nidoran-M, Nidoran-F)
|
2018-02-13 01:36:15 +00:00
|
|
|
|
foreach (var e in edge)
|
2017-12-01 02:24:31 +00:00
|
|
|
|
{
|
2018-04-05 01:30:54 +00:00
|
|
|
|
if (!spec.StartsWith(species[e].Replace("♂", "-M").Replace("♀", "-F")))
|
2018-02-13 01:36:15 +00:00
|
|
|
|
continue;
|
|
|
|
|
Species = e;
|
|
|
|
|
Form = spec.Substring(species[e].Length);
|
2018-02-16 02:59:38 +00:00
|
|
|
|
return true;
|
2017-12-01 02:24:31 +00:00
|
|
|
|
}
|
2018-02-13 01:36:15 +00:00
|
|
|
|
|
|
|
|
|
// Version Megas
|
|
|
|
|
end = spec.LastIndexOf('-', Math.Max(0, end - 1));
|
|
|
|
|
if (end < 0)
|
|
|
|
|
return false;
|
|
|
|
|
Species = Array.IndexOf(species, spec.Substring(0, end).Trim());
|
|
|
|
|
Form = spec.Substring(end + 1);
|
|
|
|
|
|
|
|
|
|
return Species >= 0;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
}
|
2018-02-13 01:36:15 +00:00
|
|
|
|
private void ParseSpeciesNickname(string line)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
|
|
|
|
int index = line.LastIndexOf("(", StringComparison.Ordinal);
|
|
|
|
|
string n1, n2;
|
2017-03-20 07:03:31 +00:00
|
|
|
|
if (index > 1) // correct format
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
|
|
|
|
n1 = line.Substring(0, index - 1);
|
|
|
|
|
n2 = line.Substring(index).Trim();
|
2017-10-24 06:12:58 +00:00
|
|
|
|
n2 = ReplaceAll(n2, string.Empty, "[", "]", "(", ")"); // Trim out excess data
|
2016-09-20 05:59:15 +00:00
|
|
|
|
}
|
|
|
|
|
else // nickname first (manually created set, incorrect)
|
|
|
|
|
{
|
|
|
|
|
int end = line.IndexOf(")", StringComparison.Ordinal);
|
|
|
|
|
n2 = line.Substring(index + 1, end - 1);
|
|
|
|
|
n1 = line.Substring(end + 2);
|
|
|
|
|
}
|
|
|
|
|
|
2018-02-13 01:36:15 +00:00
|
|
|
|
if (ParseSpeciesForm(n2))
|
|
|
|
|
{
|
|
|
|
|
// successful parse on n2=>Species/Form, n1 is nickname
|
|
|
|
|
Nickname = n1;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
// other case is possibly true (or both invalid).
|
|
|
|
|
Nickname = n2;
|
|
|
|
|
ParseSpeciesForm(n1);
|
2016-09-20 05:59:15 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private string ParseLineMove(string line)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
|
|
|
|
string moveString = line.Substring(line[1] == ' ' ? 2 : 1);
|
2018-05-12 15:41:23 +00:00
|
|
|
|
if (!moveString.Contains(moves[237])) // Hidden Power
|
2016-09-20 05:59:15 +00:00
|
|
|
|
return moveString;
|
|
|
|
|
|
|
|
|
|
// Defined Hidden Power
|
|
|
|
|
if (moveString.Length > 13)
|
|
|
|
|
{
|
|
|
|
|
string type = moveString.Remove(0, 13);
|
2017-10-24 06:12:58 +00:00
|
|
|
|
type = ReplaceAll(type, string.Empty, "[", "]", "(", ")"); // Trim out excess data
|
2016-09-20 05:59:15 +00:00
|
|
|
|
int hpVal = Array.IndexOf(hptypes, type); // Get HP Type
|
2018-01-28 04:18:38 +00:00
|
|
|
|
|
|
|
|
|
if (IVs.Any(z => z != 31))
|
2018-02-08 02:28:56 +00:00
|
|
|
|
{
|
2018-03-11 02:03:09 +00:00
|
|
|
|
if (!HiddenPower.SetIVsForType(hpVal, IVs))
|
2018-02-08 02:28:56 +00:00
|
|
|
|
InvalidLines.Add($"Invalid IVs for Hidden Power Type: {type}");
|
|
|
|
|
}
|
2018-01-28 04:18:38 +00:00
|
|
|
|
else if (hpVal >= 0)
|
2017-06-18 01:37:19 +00:00
|
|
|
|
IVs = PKX.SetHPIVs(hpVal, IVs); // Get IVs
|
2016-09-20 05:59:15 +00:00
|
|
|
|
else
|
|
|
|
|
InvalidLines.Add($"Invalid Hidden Power Type: {type}");
|
|
|
|
|
}
|
2018-05-12 15:41:23 +00:00
|
|
|
|
return moves[237];
|
2016-09-20 05:59:15 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ParseLineEVs(string line)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
string[] evlist = SplitLineStats(line);
|
2017-01-29 08:32:02 +00:00
|
|
|
|
if (evlist.Length == 1)
|
|
|
|
|
InvalidLines.Add("Unknown EV input.");
|
2016-09-20 05:59:15 +00:00
|
|
|
|
for (int i = 0; i < evlist.Length / 2; i++)
|
|
|
|
|
{
|
2017-06-30 02:32:29 +00:00
|
|
|
|
bool valid = ushort.TryParse(evlist[i * 2 + 0], out ushort EV);
|
2016-09-20 05:59:15 +00:00
|
|
|
|
int index = Array.IndexOf(StatNames, evlist[i * 2 + 1]);
|
2017-06-18 20:02:02 +00:00
|
|
|
|
if (valid && index > -1)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
EVs[index] = EV;
|
|
|
|
|
else
|
|
|
|
|
InvalidLines.Add($"Unknown EV Type input: {evlist[i * 2]}");
|
|
|
|
|
}
|
2018-02-08 02:28:56 +00:00
|
|
|
|
EVs = EVsSpeedFirst;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
}
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private void ParseLineIVs(string line)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
2017-06-18 01:37:19 +00:00
|
|
|
|
string[] ivlist = SplitLineStats(line);
|
2017-01-29 08:32:02 +00:00
|
|
|
|
if (ivlist.Length == 1)
|
|
|
|
|
InvalidLines.Add("Unknown IV input.");
|
2016-09-20 05:59:15 +00:00
|
|
|
|
for (int i = 0; i < ivlist.Length / 2; i++)
|
|
|
|
|
{
|
2017-06-18 20:02:02 +00:00
|
|
|
|
bool valid = byte.TryParse(ivlist[i * 2 + 0], out byte IV);
|
2016-09-20 05:59:15 +00:00
|
|
|
|
int index = Array.IndexOf(StatNames, ivlist[i * 2 + 1]);
|
2017-06-18 20:02:02 +00:00
|
|
|
|
if (valid && index > -1)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
IVs[index] = IV;
|
|
|
|
|
else
|
|
|
|
|
InvalidLines.Add($"Unknown IV Type input: {ivlist[i * 2]}");
|
|
|
|
|
}
|
2018-02-08 02:28:56 +00:00
|
|
|
|
IVs = IVsSpeedFirst;
|
2016-09-20 05:59:15 +00:00
|
|
|
|
}
|
2017-09-02 15:26:51 +00:00
|
|
|
|
private static string ConvertFormToShowdown(string form, int spec)
|
|
|
|
|
{
|
|
|
|
|
if (string.IsNullOrWhiteSpace(form))
|
|
|
|
|
{
|
|
|
|
|
if (spec == 774) // Minior
|
|
|
|
|
form = "Meteor";
|
|
|
|
|
return form;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (spec)
|
|
|
|
|
{
|
|
|
|
|
case 550 when form == "Blue":
|
2018-05-07 01:46:51 +00:00
|
|
|
|
return "Blue-Striped";
|
2017-09-02 15:26:51 +00:00
|
|
|
|
case 666 when form == "Poké Ball":
|
|
|
|
|
return "Pokeball"; // Vivillon
|
|
|
|
|
case 718: // Zygarde
|
2017-11-18 03:14:27 +00:00
|
|
|
|
form = form.Replace("-C", string.Empty);
|
|
|
|
|
form = form.Replace("50%", string.Empty);
|
2017-09-02 15:26:51 +00:00
|
|
|
|
return form.Replace("100%", "Complete");
|
|
|
|
|
case 774: // Minior
|
|
|
|
|
if (form.StartsWith("M-"))
|
|
|
|
|
return "Meteor";
|
2017-11-18 03:14:27 +00:00
|
|
|
|
return form.Replace("C-", string.Empty);
|
|
|
|
|
case 800 when form == "Dusk": // Necrozma
|
|
|
|
|
return $"{form}-Mane";
|
|
|
|
|
case 800 when form == "Dawn": // Necrozma
|
|
|
|
|
return $"{form}-Wings";
|
2017-09-02 15:26:51 +00:00
|
|
|
|
|
2017-11-18 03:14:27 +00:00
|
|
|
|
case 676: // Furfrou
|
|
|
|
|
case 658: // Greninja
|
|
|
|
|
case 744: // Rockruff
|
|
|
|
|
return string.Empty;
|
2017-09-02 15:26:51 +00:00
|
|
|
|
default:
|
2017-11-18 03:14:27 +00:00
|
|
|
|
if (Legal.Totem_USUM.Contains(spec) && form == "Large")
|
2018-05-12 00:44:27 +00:00
|
|
|
|
return Legal.Totem_Alolan.Contains(spec) && spec != 778 ? "Alola-Totem" : "Totem";
|
2018-05-07 01:46:51 +00:00
|
|
|
|
return form.Replace(" ", "-");
|
2017-09-02 15:26:51 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private static string ConvertFormFromShowdown(string form, int spec, int ability)
|
|
|
|
|
{
|
2018-05-12 04:09:39 +00:00
|
|
|
|
form = form?.Replace(" ", "-"); // inconsistencies are great
|
2017-09-02 15:26:51 +00:00
|
|
|
|
switch (spec)
|
|
|
|
|
{
|
2018-05-07 01:46:51 +00:00
|
|
|
|
case 550 when form == "Blue-Striped": // Basculin
|
2017-09-02 15:26:51 +00:00
|
|
|
|
return "Blue";
|
|
|
|
|
case 658 when ability == 210: // Greninja
|
|
|
|
|
return "Ash"; // Battle Bond
|
|
|
|
|
case 666 when form == "Pokeball": // Vivillon
|
|
|
|
|
return "Poké Ball";
|
|
|
|
|
|
|
|
|
|
// Zygarde
|
2017-10-18 18:45:45 +00:00
|
|
|
|
case 718 when string.IsNullOrWhiteSpace(form) && ability == 211:
|
|
|
|
|
return "50%-C";
|
2017-09-02 15:26:51 +00:00
|
|
|
|
case 718 when string.IsNullOrWhiteSpace(form):
|
|
|
|
|
return "50%";
|
|
|
|
|
case 718 when form == "Complete":
|
|
|
|
|
return "100%";
|
|
|
|
|
case 718 when ability == 211:
|
|
|
|
|
return "-C"; // Power Construct
|
|
|
|
|
|
2017-11-18 03:14:27 +00:00
|
|
|
|
case 744 when ability == 020: // Rockruff-1
|
|
|
|
|
return "Dusk";
|
|
|
|
|
|
2017-09-02 15:26:51 +00:00
|
|
|
|
// Minior
|
|
|
|
|
case 774 when !string.IsNullOrWhiteSpace(form) && form != "Meteor":
|
2017-09-30 05:58:25 +00:00
|
|
|
|
return $"C-{form}";
|
2017-09-02 15:26:51 +00:00
|
|
|
|
|
2017-11-18 03:14:27 +00:00
|
|
|
|
// Necrozma
|
2018-02-22 04:40:06 +00:00
|
|
|
|
case 800 when form == "Dusk-Mane":
|
2017-11-18 03:14:27 +00:00
|
|
|
|
return "Dusk";
|
2018-02-22 04:40:06 +00:00
|
|
|
|
case 800 when form == "Dawn-Wings":
|
2017-11-18 03:14:27 +00:00
|
|
|
|
return "Dawn";
|
|
|
|
|
|
2017-09-02 15:26:51 +00:00
|
|
|
|
default:
|
2018-05-12 15:41:23 +00:00
|
|
|
|
if (Legal.Totem_USUM.Contains(spec) && form?.EndsWith("Totem") == true)
|
2017-11-18 04:38:43 +00:00
|
|
|
|
return "Large";
|
2017-09-02 15:26:51 +00:00
|
|
|
|
return form;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-20 05:59:15 +00:00
|
|
|
|
|
2017-06-18 01:37:19 +00:00
|
|
|
|
private static string[] SplitLineStats(string line)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
|
|
|
|
// Because people think they can type sets out...
|
|
|
|
|
return line
|
|
|
|
|
.Replace("SAtk", "SpA").Replace("Sp Atk", "SpA")
|
|
|
|
|
.Replace("SDef", "SpD").Replace("Sp Def", "SpD")
|
|
|
|
|
.Replace("Spd", "Spe").Replace("Speed", "Spe").Split(new[] { " / ", " " }, StringSplitOptions.None);
|
|
|
|
|
}
|
2017-10-24 06:12:58 +00:00
|
|
|
|
private static string ReplaceAll(string original, string to, params string[] toBeReplaced)
|
2016-09-20 05:59:15 +00:00
|
|
|
|
{
|
2017-10-24 06:12:58 +00:00
|
|
|
|
return toBeReplaced.Aggregate(original, (current, v) => current.Replace(v, to));
|
2016-09-20 05:59:15 +00:00
|
|
|
|
}
|
2018-03-11 18:39:58 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches <see cref="ShowdownSet"/> data from the input <see cref="lines"/>.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="lines">Raw lines containing numerous multi-line set data.</param>
|
|
|
|
|
/// <returns><see cref="ShowdownSet"/> objects until <see cref="lines"/> is consumed.</returns>
|
|
|
|
|
public static IEnumerable<ShowdownSet> GetShowdownSets(IEnumerable<string> lines)
|
|
|
|
|
{
|
|
|
|
|
var setLines = new List<string>(8);
|
|
|
|
|
foreach (var line in lines)
|
|
|
|
|
{
|
|
|
|
|
if (!string.IsNullOrWhiteSpace(line))
|
|
|
|
|
{
|
|
|
|
|
setLines.Add(line);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2018-06-09 15:12:47 +00:00
|
|
|
|
if (setLines.Count == 0)
|
|
|
|
|
continue;
|
2018-03-11 18:39:58 +00:00
|
|
|
|
yield return new ShowdownSet(setLines);
|
|
|
|
|
setLines.Clear();
|
|
|
|
|
}
|
2018-06-09 15:12:47 +00:00
|
|
|
|
if (setLines.Count != 0)
|
|
|
|
|
yield return new ShowdownSet(setLines);
|
2018-03-11 18:39:58 +00:00
|
|
|
|
}
|
2018-05-20 03:48:03 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches ShowdownSet lines from the input <see cref="PKM"/> data.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">Pokémon data to summarize.</param>
|
|
|
|
|
/// <returns>Consumable list of <see cref="ShowdownSet.Text"/> lines.</returns>
|
|
|
|
|
public static IEnumerable<string> GetShowdownSets(IEnumerable<PKM> data) => data.Select(GetShowdownText);
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Fetches ShowdownSet lines from the input <see cref="PKM"/> data, and combines it into one string.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="data">Pokémon data to summarize.</param>
|
|
|
|
|
/// <param name="separator">Splitter between each set.</param>
|
|
|
|
|
/// <returns>Single string containing all <see cref="ShowdownSet.Text"/> lines.</returns>
|
|
|
|
|
public static string GetShowdownSets(IEnumerable<PKM> data, string separator) => string.Join(separator, data.Select(GetShowdownText));
|
2016-06-20 04:22:43 +00:00
|
|
|
|
}
|
|
|
|
|
}
|