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;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
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-02-29 11:16:32 +08:00
|
|
|
|
public static string ToSingular(this IEnumerable<Object> enumerable, string split = ", ")
|
2016-02-28 19:55:35 +08:00
|
|
|
|
{
|
2016-02-29 11:16:32 +08:00
|
|
|
|
string result = string.Join(split, enumerable);
|
2016-02-28 19:55:35 +08:00
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
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-04 03:01:32 +08:00
|
|
|
|
return Int32.TryParse(o.ToString(), out i);
|
2016-02-28 19:55:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-03-04 03:01:32 +08:00
|
|
|
|
public static Int32 AsInt32(this object o)
|
2016-02-28 19:55:35 +08:00
|
|
|
|
{
|
2016-03-04 03:01:32 +08:00
|
|
|
|
return Int32.Parse(o.ToString());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool IsBool(this object o)
|
|
|
|
|
{
|
|
|
|
|
bool b;
|
|
|
|
|
return Boolean.TryParse(o.ToString(), out b);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static bool AsBool(this object o)
|
|
|
|
|
{
|
|
|
|
|
return Boolean.Parse(o.ToString());
|
2016-02-28 19:55:35 +08:00
|
|
|
|
}
|
2016-03-05 04:40:46 +08:00
|
|
|
|
|
2016-03-01 14:35:52 +08:00
|
|
|
|
public static int GetHash(this IEnumerable enumerable)
|
|
|
|
|
{
|
2016-03-08 13:47:52 +08:00
|
|
|
|
int 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-01 14:35:52 +08:00
|
|
|
|
}
|
2016-02-28 19:55:35 +08:00
|
|
|
|
}
|
|
|
|
|
}
|