From 07941372322a2490546c1e34329f946a83adcfaf Mon Sep 17 00:00:00 2001 From: Kwoth Date: Wed, 14 Sep 2016 19:31:47 +0200 Subject: [PATCH] Cleanup --- .../Searches/Commands/ConverterCommands.cs | 172 ------------------ 1 file changed, 172 deletions(-) delete mode 100644 src/NadekoBot/Modules/Searches/Commands/ConverterCommands.cs diff --git a/src/NadekoBot/Modules/Searches/Commands/ConverterCommands.cs b/src/NadekoBot/Modules/Searches/Commands/ConverterCommands.cs deleted file mode 100644 index 63ed2205..00000000 --- a/src/NadekoBot/Modules/Searches/Commands/ConverterCommands.cs +++ /dev/null @@ -1,172 +0,0 @@ -//using Discord.Commands; -//using NadekoBot.Classes; -//using ScaredFingers.UnitsConversion; -//using System; -//using System.Collections.Generic; -//using System.Globalization; -//using System.Threading; -//using System.Threading.Tasks; - -////todo Unit Conversion lib -//namespace NadekoBot.Modules.Searches -//{ -// class ConverterCommand : DiscordCommand -// { - -// public ConverterCommand(DiscordModule module) : base(module) -// { -// if (unitTables == null) -// { -// CultureInfo ci = new CultureInfo("en-US"); -// Thread.CurrentThread.CurrentCulture = ci; -// unitTables = new List(); -// unitTables.Add(UnitTable.LengthTable); -// unitTables.Add(UnitTable.TemperatureTable); -// unitTables.Add(UnitTable.VolumeTable); -// unitTables.Add(UnitTable.WeightTable); -// reInitCurrencyConverterTable(); -// } - -// } - - -// public override void Init(CommandGroupBuilder cgb) -// { -// cgb.CreateCommand(Module.Prefix + "convert") -// .Description($"Convert quantities from>to. | `{Prefix}convert m>km 1000`") -// .Parameter("from-to", ParameterType.Required) -// .Parameter("quantity", ParameterType.Optional) -// .Do(ConvertFunc()); -// cgb.CreateCommand(Module.Prefix + "convertlist") -// .Description("List of the convertable dimensions and currencies.") -// .Do(ConvertListFunc()); -// } - -// private Func ConvertListFunc() => -// async e => -// { -// reInitCurrencyConverterTable(); -// string msg = ""; -// foreach (var tmpTable in unitTables) -// { -// int i = 1; -// while (tmpTable.IsKnownUnit(i)) -// { -// msg += tmpTable.GetUnitName(i) + " (" + tmpTable.GetUnitSymbol(i) + "); "; -// i++; -// } -// msg += "\n"; -// } -// foreach (var curr in exchangeRateProvider.Currencies) -// { -// msg += curr + "; "; -// } - -// await channel.SendMessageAsync(msg).ConfigureAwait(false); -// }; - -// private Func ConvertFunc() => -// async e => -// { -// try -// { -// await e.Channel.SendIsTyping().ConfigureAwait(false); - -// string from = from-to.ToLowerInvariant().Split('>')[0]; -// string to = from-to.ToLowerInvariant().Split('>')[1]; - -// float quantity = 1.0f; -// if (!float.TryParse(quantity, out quantity)) -// { -// quantity = 1.0f; -// } - -// int fromCode, toCode = 0; -// UnitTable table = null; -// ResolveUnitCodes(from, to, out table, out fromCode, out toCode); - -// if (table != null) -// { -// Unit inUnit = new Unit(fromCode, quantity, table); -// Unit outUnit = inUnit.Convert(toCode); -// await channel.SendMessageAsync(inUnit.ToString() + " = " + outUnit.ToString()).ConfigureAwait(false); -// } -// else -// { -// CultureInfo ci = new CultureInfo("en-US"); -// Thread.CurrentThread.CurrentCulture = ci; -// reInitCurrencyConverterTable(); -// Unit inUnit = currTable.CreateUnit(quantity, from.ToUpperInvariant()); -// Unit outUnit = inUnit.Convert(currTable.CurrencyCode(to.ToUpperInvariant())); -// await channel.SendMessageAsync(inUnit.ToString() + " = " + outUnit.ToString()).ConfigureAwait(false); -// } -// } -// catch //(Exception ex) -// { -// //Console.WriteLine(ex.ToString()); -// await channel.SendMessageAsync("Bad input format, or sth went wrong... Try to list them with `" + Module.Prefix + "`convertlist").ConfigureAwait(false); -// } -// }; - -// private void reInitCurrencyConverterTable() -// { -// if (lastChanged == null || lastChanged.DayOfYear != DateTime.Now.DayOfYear) -// { -// try -// { -// exchangeRateProvider = new WebExchangeRatesProvider(); -// currTable = new CurrencyExchangeTable(exchangeRateProvider); -// lastChanged = DateTime.Now; -// } -// catch -// { -// Console.WriteLine("Error with the currency download."); -// } -// } -// } - -// private void ResolveUnitCodes(string from, string to, out UnitTable table, out int fromCode, out int toCode) -// { -// foreach (var tmpTable in unitTables) -// { -// int f = LookupUnit(tmpTable, from); -// int t = LookupUnit(tmpTable, to); -// if (f > 0 && t > 0) -// { -// table = tmpTable; -// fromCode = f; -// toCode = t; -// return; -// } -// } -// table = null; -// fromCode = 0; -// toCode = 0; -// } - -// private int LookupUnit(UnitTable table, string lookup) -// { -// string wellformedLookup = lookup.ToLowerInvariant().Replace("°", ""); -// int i = 1; -// while (table.IsKnownUnit(i)) -// { -// if (wellformedLookup == table.GetUnitName(i).ToLowerInvariant().Replace("°", "") || -// wellformedLookup == table.GetUnitPlural(i).ToLowerInvariant().Replace("°", "") || -// wellformedLookup == table.GetUnitSymbol(i).ToLowerInvariant().Replace("°", "")) -// { -// return i; -// } -// i++; -// } -// return 0; -// } - -// private static List unitTables; - -// private static CurrencyExchangeRatesProvider exchangeRateProvider; - -// private static CurrencyExchangeTable currTable; - -// private static DateTime lastChanged; -// } -//}