2019-09-03 10:02:58 +08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
|
|
using Revitalize.Framework.Menus.MenuComponents;
|
|
|
|
using StardewValley;
|
|
|
|
using StardustCore.UIUtilities;
|
|
|
|
using StardustCore.UIUtilities.MenuComponents.ComponentsV2.Buttons;
|
|
|
|
|
|
|
|
namespace Revitalize.Framework.Menus
|
|
|
|
{
|
|
|
|
public class CraftingMenuV1 : IClickableMenuExtended
|
|
|
|
{
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// All the different pages for crafting.
|
|
|
|
/// </summary>
|
|
|
|
public Dictionary<string, AnimatedButton> CraftingTabs;
|
|
|
|
|
|
|
|
public Dictionary<string, List<CraftingRecipeButton>> craftingItemsToDisplay;
|
|
|
|
public IList<Item> fromInventory;
|
|
|
|
public IList<Item> toInventory;
|
|
|
|
|
|
|
|
public int currentPageIndex;
|
|
|
|
public string currentTab;
|
|
|
|
|
|
|
|
public Color backgroundColor;
|
|
|
|
|
|
|
|
public int xOffset = 72;
|
|
|
|
|
|
|
|
public string hoverText;
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// How many crafting recipes to display at a time.
|
|
|
|
/// </summary>
|
2019-09-04 04:49:21 +08:00
|
|
|
public int amountOfRecipesToShow = 6;
|
2019-09-03 10:02:58 +08:00
|
|
|
|
|
|
|
public bool playerInventory;
|
|
|
|
|
|
|
|
public CraftingInformationPage craftingInfo;
|
|
|
|
|
2019-09-04 04:49:21 +08:00
|
|
|
public AnimatedButton leftButton;
|
|
|
|
public AnimatedButton rightButton;
|
|
|
|
|
|
|
|
|
|
|
|
private int maxPages
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(this.currentTab)) return 0;
|
|
|
|
return (this.craftingItemsToDisplay[this.currentTab].Count / this.amountOfRecipesToShow) + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-03 10:02:58 +08:00
|
|
|
public CraftingMenuV1() : base()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-09-04 04:49:21 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Constructor to be used when the inventory is the player's
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="X"></param>
|
|
|
|
/// <param name="Y"></param>
|
|
|
|
/// <param name="Width"></param>
|
|
|
|
/// <param name="Height"></param>
|
|
|
|
/// <param name="BackgroundColor"></param>
|
|
|
|
/// <param name="Inventory"></param>
|
2019-09-03 10:02:58 +08:00
|
|
|
public CraftingMenuV1(int X, int Y, int Width, int Height, Color BackgroundColor, IList<Item> Inventory) : base(X, Y, Width, Height, false)
|
|
|
|
{
|
|
|
|
this.backgroundColor = BackgroundColor;
|
|
|
|
this.CraftingTabs = new Dictionary<string, AnimatedButton>();
|
|
|
|
this.craftingItemsToDisplay = new Dictionary<string, List<CraftingRecipeButton>>();
|
|
|
|
this.currentPageIndex = 0;
|
|
|
|
this.fromInventory = Inventory;
|
|
|
|
this.toInventory = Inventory;
|
|
|
|
this.playerInventory = true;
|
2019-09-04 04:49:21 +08:00
|
|
|
this.initializeButtons();
|
2019-09-03 10:02:58 +08:00
|
|
|
}
|
|
|
|
|
2019-09-04 04:49:21 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Constructor to be used when inventory destination is the same and not the player.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="X"></param>
|
|
|
|
/// <param name="Y"></param>
|
|
|
|
/// <param name="Width"></param>
|
|
|
|
/// <param name="Height"></param>
|
|
|
|
/// <param name="BackgroundColor"></param>
|
|
|
|
/// <param name="Inventory"></param>
|
2019-09-03 10:02:58 +08:00
|
|
|
public CraftingMenuV1(int X, int Y, int Width, int Height, Color BackgroundColor, ref IList<Item> Inventory) : base(X, Y, Width, Height, false)
|
|
|
|
{
|
|
|
|
this.backgroundColor = BackgroundColor;
|
|
|
|
this.CraftingTabs = new Dictionary<string, AnimatedButton>();
|
|
|
|
this.craftingItemsToDisplay = new Dictionary<string, List<CraftingRecipeButton>>();
|
|
|
|
this.currentPageIndex = 0;
|
|
|
|
this.fromInventory = Inventory;
|
|
|
|
this.toInventory = Inventory;
|
2019-09-04 04:49:21 +08:00
|
|
|
this.initializeButtons();
|
2019-09-03 10:02:58 +08:00
|
|
|
}
|
|
|
|
|
2019-09-04 04:49:21 +08:00
|
|
|
/// <summary>
|
|
|
|
/// Inventory constructor to be used when the input and output inventories are different.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="X"></param>
|
|
|
|
/// <param name="Y"></param>
|
|
|
|
/// <param name="Width"></param>
|
|
|
|
/// <param name="Height"></param>
|
|
|
|
/// <param name="BackgroundColor"></param>
|
|
|
|
/// <param name="FromInventory"></param>
|
|
|
|
/// <param name="ToInventory"></param>
|
2019-09-03 10:02:58 +08:00
|
|
|
public CraftingMenuV1(int X, int Y, int Width, int Height, Color BackgroundColor, ref IList<Item> FromInventory, ref IList<Item> ToInventory) : base(X, Y, Width, Height, false)
|
|
|
|
{
|
|
|
|
this.backgroundColor = BackgroundColor;
|
|
|
|
this.CraftingTabs = new Dictionary<string, AnimatedButton>();
|
|
|
|
this.craftingItemsToDisplay = new Dictionary<string, List<CraftingRecipeButton>>();
|
|
|
|
this.currentPageIndex = 0;
|
|
|
|
this.fromInventory = FromInventory;
|
|
|
|
this.toInventory = ToInventory;
|
2019-09-04 04:49:21 +08:00
|
|
|
this.initializeButtons();
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void gameWindowSizeChanged(Rectangle oldBounds, Rectangle newBounds)
|
|
|
|
{
|
|
|
|
base.gameWindowSizeChanged(oldBounds, newBounds);
|
|
|
|
if (this.craftingInfo != null)
|
|
|
|
{
|
|
|
|
this.craftingInfo.gameWindowSizeChanged(oldBounds, newBounds);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initializeButtons()
|
|
|
|
{
|
|
|
|
this.leftButton = new AnimatedButton(new StardustCore.Animations.AnimatedSprite("Left Button", new Vector2(this.xPositionOnScreen, this.yPositionOnScreen), new StardustCore.Animations.AnimationManager(TextureManager.GetExtendedTexture(ModCore.Manifest, "InventoryMenu", "PreviousPageButton"), new StardustCore.Animations.Animation(0, 0, 32, 32)), Color.White),new Rectangle(0,0,32,32),2f);
|
|
|
|
this.rightButton = new AnimatedButton(new StardustCore.Animations.AnimatedSprite("Right Button", new Vector2(this.xPositionOnScreen+this.width, this.yPositionOnScreen), new StardustCore.Animations.AnimationManager(TextureManager.GetExtendedTexture(ModCore.Manifest, "InventoryMenu", "NextPageButton"), new StardustCore.Animations.Animation(0, 0, 32, 32)), Color.White), new Rectangle(0, 0, 32, 32), 2f);
|
2019-09-03 10:02:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public void addInCraftingPageTab(string name, AnimatedButton Button)
|
|
|
|
{
|
|
|
|
int count = this.CraftingTabs.Count;
|
|
|
|
|
|
|
|
if (this.CraftingTabs.ContainsKey(name))
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2019-09-04 04:49:21 +08:00
|
|
|
Vector2 newPos = new Vector2(100 + (48) * (count + 1), this.yPositionOnScreen + (24 * 4) * (count + 1));
|
2019-09-03 10:02:58 +08:00
|
|
|
Button.Position = newPos;
|
|
|
|
this.CraftingTabs.Add(name, Button);
|
|
|
|
this.craftingItemsToDisplay.Add(name, new List<CraftingRecipeButton>());
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void addInCraftingRecipe(CraftingRecipeButton Button, string WhichTab)
|
|
|
|
{
|
|
|
|
if (this.craftingItemsToDisplay.ContainsKey(WhichTab))
|
|
|
|
{
|
|
|
|
int count = this.craftingItemsToDisplay.Count;
|
2019-09-04 04:49:21 +08:00
|
|
|
Vector2 newPos = new Vector2(this.xPositionOnScreen + (64) * (count + 1), this.yPositionOnScreen + (16 * 4) * (count + 1));
|
2019-09-03 10:02:58 +08:00
|
|
|
Button.displayItem.Position = newPos;
|
|
|
|
this.craftingItemsToDisplay[WhichTab].Add(Button);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
throw new Exception("Tab: " + WhichTab + " doesn't exist!");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void receiveScrollWheelAction(int direction)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void performHoverAction(int x, int y)
|
|
|
|
{
|
|
|
|
|
|
|
|
bool hovered = false;
|
|
|
|
foreach (KeyValuePair<string, AnimatedButton> pair in this.CraftingTabs)
|
|
|
|
{
|
|
|
|
if (pair.Value.containsPoint(x, y))
|
|
|
|
{
|
|
|
|
this.hoverText = pair.Key;
|
|
|
|
hovered = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//get range of buttons to show
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(this.currentTab) == false)
|
|
|
|
{
|
|
|
|
List<CraftingRecipeButton> buttonsToDraw = this.getRecipeButtonsToDisplay();
|
|
|
|
foreach (CraftingRecipeButton button in buttonsToDraw)
|
|
|
|
{
|
|
|
|
if (button.containsPoint(x, y))
|
|
|
|
{
|
|
|
|
this.hoverText = button.recipe.outputName;
|
|
|
|
hovered = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (hovered == false)
|
|
|
|
{
|
|
|
|
this.hoverText = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void receiveLeftClick(int x, int y, bool playSound = true)
|
|
|
|
{
|
2019-09-04 04:49:21 +08:00
|
|
|
if (this.leftButton.containsPoint(x, y))
|
|
|
|
{
|
|
|
|
if (this.currentPageIndex <= 0) this.currentPageIndex = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
this.currentPageIndex--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (this.rightButton.containsPoint(x, y))
|
|
|
|
{
|
|
|
|
if (this.currentPageIndex+1 < this.maxPages)
|
|
|
|
{
|
|
|
|
this.currentPageIndex++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-03 10:02:58 +08:00
|
|
|
foreach (KeyValuePair<string, AnimatedButton> pair in this.CraftingTabs)
|
|
|
|
{
|
|
|
|
if (pair.Value.containsPoint(x, y))
|
|
|
|
{
|
|
|
|
this.currentTab = pair.Key;
|
2019-09-04 04:49:21 +08:00
|
|
|
this.currentPageIndex = 0;
|
2019-09-03 10:02:58 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//get range of buttons to show
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(this.currentTab) == false)
|
|
|
|
{
|
|
|
|
List<CraftingRecipeButton> buttonsToDraw = this.getRecipeButtonsToDisplay();
|
|
|
|
foreach (CraftingRecipeButton button in buttonsToDraw)
|
|
|
|
{
|
|
|
|
if (button.containsPoint(x, y))
|
|
|
|
{
|
|
|
|
//button.craftItem(this.fromInventory, this.toInventory);
|
2019-09-04 04:49:21 +08:00
|
|
|
this.craftingInfo = new CraftingInformationPage(this.xPositionOnScreen + this.width+this.xOffset, this.yPositionOnScreen, 400, this.height, this.backgroundColor, button,ref this.fromInventory,this.playerInventory);
|
2019-09-03 10:02:58 +08:00
|
|
|
Game1.soundBank.PlayCue("coin");
|
|
|
|
if (this.playerInventory)
|
|
|
|
{
|
|
|
|
Game1.player.Items = this.toInventory;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.craftingInfo != null)
|
|
|
|
{
|
2019-09-03 11:48:29 +08:00
|
|
|
this.craftingInfo.receiveLeftClick(x, y);
|
2019-09-03 10:02:58 +08:00
|
|
|
if (this.craftingInfo.doesMenuContainPoint(x, y)) return;
|
|
|
|
}
|
|
|
|
this.craftingInfo = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override void draw(SpriteBatch b)
|
|
|
|
{
|
|
|
|
this.drawDialogueBoxBackground(this.xPositionOnScreen + this.xOffset, this.yPositionOnScreen, this.width, this.height, this.backgroundColor);
|
2019-09-04 04:49:21 +08:00
|
|
|
|
|
|
|
this.leftButton.draw(b);
|
|
|
|
//Draw page numbers here.
|
|
|
|
//b.DrawString(Game1.smallFont,"Page: "+this.currentPageIndex.ToString()/)
|
|
|
|
b.DrawString(Game1.dialogueFont, ("Page: " + (this.currentPageIndex + 1) + " / " + this.maxPages).ToString(), new Vector2(this.xPositionOnScreen+128, this.yPositionOnScreen), Color.White);
|
|
|
|
this.rightButton.draw(b);
|
|
|
|
|
2019-09-03 11:13:57 +08:00
|
|
|
//this.drawDialogueBoxBackground();
|
2019-09-03 10:02:58 +08:00
|
|
|
foreach (KeyValuePair<string, AnimatedButton> pair in this.CraftingTabs)
|
|
|
|
{
|
|
|
|
pair.Value.draw(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(this.currentTab))
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(this.hoverText) == false)
|
|
|
|
{
|
|
|
|
IClickableMenuExtended.drawHoverText(b, this.hoverText, Game1.dialogueFont);
|
|
|
|
}
|
|
|
|
this.drawMouse(b);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
List<CraftingRecipeButton> buttonsToDraw = this.getRecipeButtonsToDisplay();
|
|
|
|
|
|
|
|
foreach (CraftingRecipeButton button in buttonsToDraw)
|
|
|
|
{
|
|
|
|
if (button.recipe.CanCraft(this.fromInventory))
|
|
|
|
{
|
|
|
|
button.draw(b);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
button.draw(b, .25f);
|
|
|
|
}
|
|
|
|
|
|
|
|
b.DrawString(Game1.smallFont, button.displayItem.item.DisplayName, button.displayItem.Position + new Vector2(64, 0), Color.Brown);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.craftingInfo != null)
|
|
|
|
{
|
|
|
|
this.craftingInfo.draw(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (string.IsNullOrEmpty(this.hoverText) == false)
|
|
|
|
{
|
|
|
|
IClickableMenuExtended.drawHoverText(b, this.hoverText, Game1.dialogueFont);
|
|
|
|
}
|
|
|
|
|
|
|
|
this.drawMouse(b);
|
|
|
|
}
|
|
|
|
|
|
|
|
public override void update(GameTime time)
|
|
|
|
{
|
|
|
|
base.update(time);
|
|
|
|
}
|
|
|
|
|
|
|
|
public List<CraftingRecipeButton> getRecipeButtonsToDisplay()
|
|
|
|
{
|
2019-09-04 04:49:21 +08:00
|
|
|
List<CraftingRecipeButton> buttonsToDraw = this.craftingItemsToDisplay[this.currentTab].GetRange(this.currentPageIndex* this.amountOfRecipesToShow, Math.Min(this.craftingItemsToDisplay[this.currentTab].Count, this.amountOfRecipesToShow));
|
2019-09-03 10:02:58 +08:00
|
|
|
return buttonsToDraw;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|