Ui-Info-Suite/SDVModTest/UIElements/ShowCalendarAndBillboardOnG...

127 lines
5.2 KiB
C#
Raw Normal View History

2017-07-20 11:51:05 +08:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using UIInfoSuite.Extensions;
using StardewModdingAPI.Events;
using StardewValley;
using StardewValley.Menus;
using System;
using System.Collections.Generic;
using System.IO;
using System.Reflection;
using StardewModdingAPI;
namespace UIInfoSuite.UIElements
{
class ShowCalendarAndBillboardOnGameMenuButton : IDisposable
{
private ClickableTextureComponent _showBillboardButton =
new ClickableTextureComponent(
new Rectangle(0, 0, 99, 60),
Game1.content.Load<Texture2D>(Path.Combine("Maps", "summer_town")),
new Rectangle(122, 291, 35, 20),
3f);
2017-11-28 13:27:52 +08:00
2017-07-20 11:51:05 +08:00
private readonly IModHelper _helper;
private Item _hoverItem = null;
private Item _heldItem = null;
2017-11-28 13:27:52 +08:00
public ShowCalendarAndBillboardOnGameMenuButton(IModHelper helper)
2017-07-20 11:51:05 +08:00
{
_helper = helper;
}
public void ToggleOption(bool showCalendarAndBillboard)
{
2018-12-25 12:36:39 +08:00
_helper.Events.Display.RenderedActiveMenu -= OnRenderedActiveMenu;
_helper.Events.Input.ButtonPressed -= OnButtonPressed;
_helper.Events.GameLoop.UpdateTicked -= OnUpdateTicked;
2017-07-20 11:51:05 +08:00
if (showCalendarAndBillboard)
{
2018-12-25 12:36:39 +08:00
_helper.Events.Display.RenderedActiveMenu += OnRenderedActiveMenu;
_helper.Events.Input.ButtonPressed += OnButtonPressed;
_helper.Events.GameLoop.UpdateTicked += OnUpdateTicked;
2017-07-20 11:51:05 +08:00
}
}
2018-12-25 12:36:39 +08:00
/// <summary>Raised after the game state is updated (≈60 times per second).</summary>
/// <param name="sender">The event sender.</param>
/// <param name="e">The event arguments.</param>
private void OnUpdateTicked(object sender, EventArgs e)
{
2018-12-25 12:36:39 +08:00
// get hover item
_hoverItem = Tools.GetHoveredItem();
if (Game1.activeClickableMenu is GameMenu gameMenu)
{
List<IClickableMenu> menuList = typeof(GameMenu).GetField("pages", BindingFlags.Instance | BindingFlags.NonPublic).GetValue(Game1.activeClickableMenu) as List<IClickableMenu>;
if (menuList[0] is InventoryPage inventory)
{
_heldItem = Game1.player.CursorSlotItem;
}
}
}
2017-07-20 11:51:05 +08:00
public void Dispose()
{
ToggleOption(false);
}
2018-12-25 12:36:39 +08:00
/// <summary>Raised after the player presses a button on the keyboard, controller, or mouse.</summary>
/// <param name="sender">The event sender.</param>
/// <param name="e">The event arguments.</param>
private void OnButtonPressed(object sender, ButtonPressedEventArgs e)
2017-07-20 11:51:05 +08:00
{
2018-12-25 12:36:39 +08:00
if (e.Button == SButton.MouseLeft)
ActivateBillboard();
else if (e.Button == SButton.ControllerA)
2017-07-20 11:51:05 +08:00
ActivateBillboard();
}
private void ActivateBillboard()
{
if (Game1.activeClickableMenu is GameMenu &&
(Game1.activeClickableMenu as GameMenu).currentTab == 0 &&
_showBillboardButton.containsPoint(Game1.getMouseX(), Game1.getMouseY())
&& _heldItem == null)
2017-07-20 11:51:05 +08:00
{
2017-11-28 13:27:52 +08:00
if (Game1.questOfTheDay != null &&
String.IsNullOrEmpty(Game1.questOfTheDay.currentObjective))
Game1.questOfTheDay.currentObjective = "wat?";
2017-07-20 11:51:05 +08:00
Game1.activeClickableMenu =
new Billboard(!(Game1.getMouseX() <
_showBillboardButton.bounds.X + _showBillboardButton.bounds.Width / 2));
}
}
2018-12-25 12:36:39 +08:00
/// <summary>When a menu is open (<see cref="Game1.activeClickableMenu"/> isn't null), raised after that menu is drawn to the sprite batch but before it's rendered to the screen.</summary>
/// <param name="sender">The event sender.</param>
/// <param name="e">The event arguments.</param>
private void OnRenderedActiveMenu(object sender, EventArgs e)
2017-07-20 11:51:05 +08:00
{
if (_hoverItem == null &&
2018-12-25 12:36:39 +08:00
Game1.activeClickableMenu is GameMenu gameMenu &&
gameMenu.currentTab == 0
&& _heldItem == null)
2017-07-20 11:51:05 +08:00
{
_showBillboardButton.bounds.X = Game1.activeClickableMenu.xPositionOnScreen + Game1.activeClickableMenu.width - 160;
_showBillboardButton.bounds.Y = Game1.activeClickableMenu.yPositionOnScreen + Game1.activeClickableMenu.height - 300;
_showBillboardButton.draw(Game1.spriteBatch);
if (_showBillboardButton.containsPoint(Game1.getMouseX(), Game1.getMouseY()))
{
String hoverText = Game1.getMouseX() <
_showBillboardButton.bounds.X + _showBillboardButton.bounds.Width / 2 ?
LanguageKeys.Calendar : LanguageKeys.Billboard;
IClickableMenu.drawHoverText(
Game1.spriteBatch,
_helper.SafeGetString(hoverText),
Game1.dialogueFont);
}
}
}
}
}