129 lines
4.5 KiB
C#
129 lines
4.5 KiB
C#
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using StardewValley;
|
|
using StardewValley.Menus;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Text;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace UIInfoSuite
|
|
{
|
|
static class Tools
|
|
{
|
|
|
|
public static void CreateSafeDelayedDialogue(String dialogue, int timer)
|
|
{
|
|
Task.Factory.StartNew(() =>
|
|
{
|
|
Thread.Sleep(timer);
|
|
|
|
do
|
|
{
|
|
Thread.Sleep(TimeSpan.FromSeconds(1));
|
|
}
|
|
while (Game1.activeClickableMenu is GameMenu);
|
|
Game1.setDialogue(dialogue, true);
|
|
});
|
|
}
|
|
|
|
public static int GetWidthInPlayArea()
|
|
{
|
|
int result = 0;
|
|
|
|
if (Game1.isOutdoorMapSmallerThanViewport())
|
|
{
|
|
int right = Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Right;
|
|
int totalWidth = Game1.currentLocation.map.Layers[0].LayerWidth * Game1.tileSize;
|
|
int someOtherWidth = Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Right - totalWidth;
|
|
|
|
result = right - someOtherWidth / 2;
|
|
}
|
|
else
|
|
{
|
|
result = Game1.graphics.GraphicsDevice.Viewport.TitleSafeArea.Right;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
public static int GetTruePrice(Item item)
|
|
{
|
|
int truePrice = 0;
|
|
|
|
if (item is StardewValley.Object objectItem)
|
|
{
|
|
truePrice = objectItem.sellToStorePrice() * 2;
|
|
}
|
|
else if (item is StardewValley.Item thing)
|
|
{
|
|
truePrice = thing.salePrice();
|
|
}
|
|
|
|
|
|
return truePrice;
|
|
}
|
|
|
|
public static void DrawMouseCursor()
|
|
{
|
|
if (!Game1.options.hardwareCursor)
|
|
{
|
|
int mouseCursorToRender = Game1.options.gamepadControls ? Game1.mouseCursor + 44 : Game1.mouseCursor;
|
|
var what = Game1.getSourceRectForStandardTileSheet(Game1.mouseCursors, mouseCursorToRender, 16, 16);
|
|
|
|
Game1.spriteBatch.Draw(
|
|
Game1.mouseCursors,
|
|
new Vector2(Game1.getMouseX(), Game1.getMouseY()),
|
|
what,//new Rectangle?(Game1.getSourceRectForStandardTileSheet(Game1.mouseCursors, Game1.mouseCursor + 32, 16, 16)),
|
|
Color.White,
|
|
0.0f,
|
|
Vector2.Zero,
|
|
Game1.pixelZoom + (Game1.dialogueButtonScale / 150.0f),
|
|
SpriteEffects.None,
|
|
1f);
|
|
}
|
|
}
|
|
|
|
public static Item GetHoveredItem()
|
|
{
|
|
Item hoverItem = null;
|
|
|
|
for (int i = 0; i < Game1.onScreenMenus.Count; ++i)
|
|
{
|
|
Toolbar onScreenMenu = Game1.onScreenMenus[i] as Toolbar;
|
|
if (onScreenMenu != null)
|
|
{
|
|
FieldInfo hoverItemField = typeof(Toolbar).GetField("hoverItem", BindingFlags.Instance | BindingFlags.NonPublic);
|
|
hoverItem = hoverItemField.GetValue(onScreenMenu) as Item;
|
|
//hoverItemField.SetValue(onScreenMenu, null);
|
|
}
|
|
}
|
|
|
|
if (Game1.activeClickableMenu is GameMenu)
|
|
{
|
|
List<IClickableMenu> menuList = typeof(GameMenu).GetField("pages", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(Game1.activeClickableMenu) as List<IClickableMenu>;
|
|
foreach (var menu in menuList)
|
|
{
|
|
if (menu is InventoryPage)
|
|
{
|
|
FieldInfo hoveredItemField = typeof(InventoryPage).GetField("hoveredItem", BindingFlags.Instance | BindingFlags.NonPublic);
|
|
hoverItem = hoveredItemField.GetValue(menu) as Item;
|
|
//typeof(InventoryPage).GetField("hoverText", BindingFlags.Instance | BindingFlags.NonPublic).SetValue(menu, "");
|
|
}
|
|
}
|
|
}
|
|
|
|
if (Game1.activeClickableMenu is ItemGrabMenu)
|
|
{
|
|
hoverItem = (Game1.activeClickableMenu as MenuWithInventory).hoveredItem;
|
|
//(Game1.activeClickableMenu as MenuWithInventory).hoveredItem = null;
|
|
}
|
|
|
|
return hoverItem;
|
|
}
|
|
}
|
|
}
|