2017-07-20 11:51:05 +08:00
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
|
using StardewModdingAPI;
|
|
|
|
|
using StardewValley;
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace UIInfoSuite.Extensions
|
|
|
|
|
{
|
|
|
|
|
public static class ObjectExtensions
|
|
|
|
|
{
|
|
|
|
|
#region Memebers
|
|
|
|
|
private static readonly Dictionary<String, int> _npcHeadShotSize = new Dictionary<string, int>()
|
|
|
|
|
{
|
|
|
|
|
{ "Piere", 9 },
|
|
|
|
|
{ "Sebastian", 7 },
|
|
|
|
|
{ "Evelyn", 5 },
|
|
|
|
|
{ "Penny", 6 },
|
|
|
|
|
{ "Jas", 6 },
|
|
|
|
|
{ "Caroline", 5 },
|
|
|
|
|
{ "Dwarf", 5 },
|
|
|
|
|
{ "Sam", 9 },
|
|
|
|
|
{ "Maru", 6 },
|
|
|
|
|
{ "Wizard", 9 },
|
|
|
|
|
{ "Jodi", 7 },
|
|
|
|
|
{ "Krobus", 7 },
|
|
|
|
|
{ "Alex", 8 },
|
|
|
|
|
{ "Kent", 10 },
|
|
|
|
|
{ "Linus", 4 },
|
|
|
|
|
{ "Harvey", 9 },
|
|
|
|
|
{ "Shane", 8 },
|
|
|
|
|
{ "Haley", 6 },
|
|
|
|
|
{ "Robin", 7 },
|
|
|
|
|
{ "Marlon", 2 },
|
|
|
|
|
{ "Emily", 8 },
|
|
|
|
|
{ "Marnie", 5 },
|
|
|
|
|
{ "Abigail", 7 },
|
|
|
|
|
{ "Leah", 6 },
|
|
|
|
|
{ "George", 5 },
|
|
|
|
|
{ "Elliott", 9 },
|
|
|
|
|
{ "Gus", 7 },
|
|
|
|
|
{ "Lewis", 8 },
|
|
|
|
|
{ "Demetrius", 11 },
|
|
|
|
|
{ "Pam", 5 },
|
|
|
|
|
{ "Vincent", 6 },
|
|
|
|
|
{ "Sandy", 7 },
|
|
|
|
|
{ "Clint", 10 },
|
|
|
|
|
{ "Willy", 10 }
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endregion
|
|
|
|
|
|
|
|
|
|
public static Rectangle GetHeadShot(this NPC npc)
|
|
|
|
|
{
|
|
|
|
|
int size;
|
2018-05-06 12:21:18 +08:00
|
|
|
|
if (!_npcHeadShotSize.TryGetValue(npc.Name, out size))
|
2017-07-20 11:51:05 +08:00
|
|
|
|
size = 4;
|
|
|
|
|
|
|
|
|
|
Rectangle mugShotSourceRect = npc.getMugShotSourceRect();
|
|
|
|
|
mugShotSourceRect.Height -= size / 2;
|
|
|
|
|
mugShotSourceRect.Y -= size / 2;
|
|
|
|
|
return mugShotSourceRect;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static String SafeGetString(this IModHelper helper, String key)
|
|
|
|
|
{
|
|
|
|
|
String result = string.Empty;
|
|
|
|
|
|
|
|
|
|
if (!String.IsNullOrEmpty(key) &&
|
|
|
|
|
helper != null)
|
|
|
|
|
{
|
|
|
|
|
result = helper.Translation.Get(key);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|