2016-02-28 19:55:35 +08:00
|
|
|
|
using System;
|
2016-03-01 14:35:52 +08:00
|
|
|
|
using System.Collections;
|
2016-02-28 19:55:35 +08:00
|
|
|
|
using System.Collections.Generic;
|
2016-03-27 06:27:07 +08:00
|
|
|
|
using System.Linq;
|
2016-03-21 13:57:42 +08:00
|
|
|
|
using System.Reflection;
|
2016-02-28 19:55:35 +08:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
using Microsoft.Xna.Framework.Input;
|
|
|
|
|
|
|
|
|
|
namespace StardewModdingAPI
|
|
|
|
|
{
|
|
|
|
|
public static class Extensions
|
|
|
|
|
{
|
|
|
|
|
public static Random Random = new Random();
|
|
|
|
|
|
|
|
|
|
public static bool IsKeyDown(this Keys key)
|
|
|
|
|
{
|
|
|
|
|
return Keyboard.GetState().IsKeyDown(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static Color RandomColour()
|
|
|
|
|
{
|
|
|
|
|
return new Color(Random.Next(0, 255), Random.Next(0, 255), Random.Next(0, 255));
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-27 06:27:07 +08:00
|
|
|
|
[Obsolete("The usage of ToSingular has changed. Please update your call to use ToSingular<T>")]
|
2016-03-23 13:11:13 +08:00
|
|
|
|
public static string ToSingular(this IEnumerable ienum, string split = ", ")
|
2016-03-27 06:27:07 +08:00
|
|
|
|
{
|
2016-03-27 13:09:09 +08:00
|
|
|
|
Log.AsyncR("The usage of ToSingular has changed. Please update your call to use ToSingular<T>");
|
2016-03-27 06:27:07 +08:00
|
|
|
|
return "";
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-27 13:09:09 +08:00
|
|
|
|
public static string ToSingular<T>(this IEnumerable<T> ienum, string split = ", ") // where T : class
|
2016-02-28 19:55:35 +08:00
|
|
|
|
{
|
2016-03-23 13:11:13 +08:00
|
|
|
|
//Apparently Keys[] won't split normally :l
|
2016-03-27 13:09:09 +08:00
|
|
|
|
if (typeof (T) == typeof (Keys))
|
2016-03-23 13:11:13 +08:00
|
|
|
|
{
|
2016-03-27 13:09:09 +08:00
|
|
|
|
return string.Join(split, ienum.ToArray());
|
2016-03-23 13:11:13 +08:00
|
|
|
|
}
|
|
|
|
|
return string.Join(split, ienum);
|
2016-02-28 19:55:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-27 06:27:07 +08:00
|
|
|
|
/*public static string ToSingular<T>(this IEnumerable<T> ienum, string split = ", ")
|
|
|
|
|
{
|
|
|
|
|
return string.Join(split, ienum);
|
|
|
|
|
}*/
|
|
|
|
|
|
2016-03-04 03:01:32 +08:00
|
|
|
|
public static bool IsInt32(this object o)
|
2016-02-28 19:55:35 +08:00
|
|
|
|
{
|
|
|
|
|
int i;
|
2016-03-27 13:09:09 +08:00
|
|
|
|
return int.TryParse(o.ToString(), out i);
|
2016-02-28 19:55:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-27 13:09:09 +08:00
|
|
|
|
public static int AsInt32(this object o)
|
2016-02-28 19:55:35 +08:00
|
|
|
|
{
|
2016-03-27 13:09:09 +08:00
|
|
|
|
return int.Parse(o.ToString());
|
2016-03-04 03:01:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsBool(this object o)
|
|
|
|
|
{
|
|
|
|
|
bool b;
|
2016-03-27 13:09:09 +08:00
|
|
|
|
return bool.TryParse(o.ToString(), out b);
|
2016-03-04 03:01:32 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool AsBool(this object o)
|
|
|
|
|
{
|
2016-03-27 13:09:09 +08:00
|
|
|
|
return bool.Parse(o.ToString());
|
2016-02-28 19:55:35 +08:00
|
|
|
|
}
|
2016-03-27 13:09:09 +08:00
|
|
|
|
|
2016-03-01 14:35:52 +08:00
|
|
|
|
public static int GetHash(this IEnumerable enumerable)
|
|
|
|
|
{
|
2016-03-27 13:09:09 +08:00
|
|
|
|
var hash = 0;
|
2016-03-01 14:35:52 +08:00
|
|
|
|
foreach (var v in enumerable)
|
|
|
|
|
{
|
2016-03-08 13:47:52 +08:00
|
|
|
|
hash ^= v.GetHashCode();
|
2016-03-01 14:35:52 +08:00
|
|
|
|
}
|
2016-03-08 13:47:52 +08:00
|
|
|
|
return hash;
|
2016-03-21 13:57:42 +08:00
|
|
|
|
}
|
2016-03-21 08:52:26 +08:00
|
|
|
|
|
2016-03-21 13:57:42 +08:00
|
|
|
|
public static T Cast<T>(this object o) where T : class
|
2016-03-21 08:52:26 +08:00
|
|
|
|
{
|
|
|
|
|
return o as T;
|
|
|
|
|
}
|
2016-03-21 13:57:42 +08:00
|
|
|
|
|
|
|
|
|
public static FieldInfo[] GetPrivateFields(this object o)
|
|
|
|
|
{
|
|
|
|
|
return o.GetType().GetFields(BindingFlags.Instance | BindingFlags.NonPublic);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static FieldInfo GetBaseFieldInfo(this Type t, string name)
|
|
|
|
|
{
|
|
|
|
|
return t.GetField(name, BindingFlags.Instance | BindingFlags.NonPublic);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static T GetBaseFieldValue<T>(this Type t, object o, string name) where T : class
|
|
|
|
|
{
|
|
|
|
|
return t.GetBaseFieldInfo(name).GetValue(o) as T;
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-23 08:36:04 +08:00
|
|
|
|
public static void SetBaseFieldValue<T>(this Type t, object o, string name, object newValue) where T : class
|
|
|
|
|
{
|
|
|
|
|
t.GetBaseFieldInfo(name).SetValue(o, newValue as T);
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-21 13:57:42 +08:00
|
|
|
|
/*
|
|
|
|
|
public static T GetBaseFieldValue<T>(this object o, string name) where T : class
|
|
|
|
|
{
|
|
|
|
|
return o.GetType().GetBaseFieldInfo(name).GetValue(o) as T;
|
|
|
|
|
}*/
|
|
|
|
|
|
2016-03-27 13:09:09 +08:00
|
|
|
|
/*
|
2016-03-21 13:57:42 +08:00
|
|
|
|
public static object GetBaseFieldValue(this object o, string name)
|
|
|
|
|
{
|
|
|
|
|
return o.GetType().GetBaseFieldInfo(name).GetValue(o);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void SetBaseFieldValue (this object o, string name, object newValue)
|
|
|
|
|
{
|
|
|
|
|
o.GetType().GetBaseFieldInfo(name).SetValue(o, newValue);
|
|
|
|
|
}
|
2016-03-23 08:36:04 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
public static string RemoveNumerics(this string st)
|
|
|
|
|
{
|
2016-03-27 13:09:09 +08:00
|
|
|
|
var s = st;
|
|
|
|
|
foreach (var c in s)
|
2016-03-23 08:36:04 +08:00
|
|
|
|
{
|
|
|
|
|
if (!char.IsLetterOrDigit(c))
|
|
|
|
|
{
|
|
|
|
|
s = s.Replace(c.ToString(), "");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return s;
|
|
|
|
|
}
|
2016-02-28 19:55:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|