File size: 8,490 Bytes
3497d64 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class CraftingSystem : MonoBehaviour
{
public GameObject craftingScreenUI;
public GameObject toolsScreenUI,survivalScreenUI, refineScreenUI, constructionScreenUI;
public List<string> inventoryItemList = new List<string>();
// Category Buttons
Button toolsBTN, survivalBTN, refineBTN, constructionBTN;
// Craft Buttons
Button craftAxeBTN, craftPlankBTN,craftFoundationBTN, craftWallBTN;
// Requirements Text
Text AxeReq1, AxeReq2, PlankReq1,FoundationReq1,WallReq1;
public bool isOpen;
// All BLueprint
public BluePrint AxeBLP = new BluePrint("Axe", 1, 2, "Stone", 3, "Stick", 3);
public BluePrint PlankBLP = new BluePrint("Plank",2, 1, "Log", 1, "", 0);
public BluePrint FoundationBLP = new BluePrint("Foundation",1, 1, "Plank", 4, "", 0);
public BluePrint WallBLP = new BluePrint("Wall",1, 1, "Plank", 2, "", 0);
public static CraftingSystem Instance { get; set; }
private void Awake()
{
if (Instance != null && Instance != this)
{
DestroyObject(gameObject);
}
else
{
Instance = this;
}
}
// Start is called before the first frame update
void Start()
{
isOpen = false;
toolsBTN = craftingScreenUI.transform.Find("ToolsButton").GetComponent<Button>();
toolsBTN.onClick.AddListener(delegate { OpenToolsCategory(); });
survivalBTN = craftingScreenUI.transform.Find("SurvivalButton").GetComponent<Button>();
survivalBTN.onClick.AddListener(delegate { OpenSurvivalCategory(); });
refineBTN = craftingScreenUI.transform.Find("RefineButton").GetComponent<Button>();
refineBTN.onClick.AddListener(delegate { OpenRefineCategory(); });
constructionBTN = craftingScreenUI.transform.Find("ConstructionButton").GetComponent<Button>();
constructionBTN.onClick.AddListener(delegate { OpenConstructionCategory(); });
// axe
AxeReq1 = toolsScreenUI.transform.Find("Axe").transform.Find("req1").GetComponent<Text>();
AxeReq2 = toolsScreenUI.transform.Find("Axe").transform.Find("req2").GetComponent<Text>();
craftAxeBTN = toolsScreenUI.transform.Find("Axe").transform.Find("Button").GetComponent<Button>();
craftAxeBTN.onClick.AddListener(delegate { CraftAnyItem(AxeBLP); });
// plank
PlankReq1 = refineScreenUI.transform.Find("Plank").transform.Find("req1").GetComponent<Text>();
craftPlankBTN = refineScreenUI.transform.Find("Plank").transform.Find("Button").GetComponent<Button>();
craftPlankBTN.onClick.AddListener(delegate { CraftAnyItem(PlankBLP); });
// foundation
FoundationReq1 = constructionScreenUI.transform.Find("Foundation").transform.Find("req1").GetComponent<Text>();
craftFoundationBTN = constructionScreenUI.transform.Find("Foundation").transform.Find("Button").GetComponent<Button>();
craftFoundationBTN.onClick.AddListener(delegate { CraftAnyItem(FoundationBLP); });
// foundation
WallReq1 = constructionScreenUI.transform.Find("Wall").transform.Find("req1").GetComponent<Text>();
craftWallBTN = constructionScreenUI.transform.Find("Wall").transform.Find("Button").GetComponent<Button>();
craftWallBTN.onClick.AddListener(delegate { CraftAnyItem(WallBLP); });
}
void OpenToolsCategory()
{
craftingScreenUI.SetActive(false);
toolsScreenUI.SetActive(true);
}
void OpenSurvivalCategory()
{
craftingScreenUI.SetActive(false);
survivalScreenUI.SetActive(true);
}
void OpenRefineCategory()
{
craftingScreenUI.SetActive(false);
refineScreenUI.SetActive(true);
}
void OpenConstructionCategory()
{
craftingScreenUI.SetActive(false);
constructionScreenUI.SetActive(true);
}
private void CraftAnyItem(BluePrint blueprintToCraft)
{
SoundManager.Instance.PlaySound(SoundManager.Instance.dropItemSound);
for (int i = 0; i <blueprintToCraft.numberOfItemsToProduce; i++) {
InventorySystem.Instance.AddToInventory(blueprintToCraft.itemName);
}
InventorySystem.Instance.RemoveItem(blueprintToCraft.Req1, blueprintToCraft.Req1amount);
if (blueprintToCraft.numberOfRequiredItems > 1)
InventorySystem.Instance.RemoveItem(blueprintToCraft.Req2, blueprintToCraft.Req2amount);
StartCoroutine(calculate());
}
public IEnumerator calculate()
{
yield return 0; //new WaitForSeconds(1f);
InventorySystem.Instance.ReCalculateList();
RefreshNeededItems();
}
public void RefreshNeededItems()
{
int stone_count = 0;
int stick_count = 0;
int log_count = 0;
int plank_count = 0;
inventoryItemList = InventorySystem.Instance.itemList;
foreach (string itemName in inventoryItemList)
{
switch (itemName)
{
case "Stone":
stone_count++;
break;
case "Stick":
stick_count++;
break;
case "Log":
log_count++;
break;
case "Plank":
plank_count++;
break;
}
}
// Axe
AxeReq1.text = AxeBLP.Req1amount + " Stone [" + stone_count + "]";
AxeReq2.text = AxeBLP.Req2amount + " Stick [" + stick_count + "]";
if (stick_count >= AxeBLP.Req1amount && stick_count >= AxeBLP.Req2amount
&& InventorySystem.Instance.CheckSlotsAvailable(AxeBLP.numberOfItemsToProduce))
{
craftAxeBTN.gameObject.SetActive(true);
}
else
{
craftAxeBTN.gameObject.SetActive(false);
}
// Plank
PlankReq1.text = PlankBLP.Req1amount + " Log [" + log_count + "]";
if (log_count >= PlankBLP.Req1amount
&& InventorySystem.Instance.CheckSlotsAvailable(PlankBLP.numberOfItemsToProduce))
{
craftPlankBTN.gameObject.SetActive(true);
}
else
{
craftPlankBTN.gameObject.SetActive(false);
}
// Foundation
FoundationReq1.text = FoundationBLP.Req1amount + " Plank [" + plank_count + "]";
if (plank_count >= FoundationBLP.Req1amount
&& InventorySystem.Instance.CheckSlotsAvailable(FoundationBLP.numberOfItemsToProduce))
{
craftFoundationBTN.gameObject.SetActive(true);
}
else
{
craftFoundationBTN.gameObject.SetActive(false);
}
// Wall
WallReq1.text = WallBLP.Req1amount + " Plank [" + plank_count + "]";
if (plank_count >= WallBLP.Req1amount
&& InventorySystem.Instance.CheckSlotsAvailable(WallBLP.numberOfItemsToProduce))
{
craftWallBTN.gameObject.SetActive(true);
}
else
{
craftWallBTN.gameObject.SetActive(false);
}
}
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.C))
{
if (!isOpen)
{
craftingScreenUI.SetActive(true);
Cursor.lockState = CursorLockMode.None;
Cursor.visible = true;
SelectionManager.Instance.DisableSelection();
SelectionManager.Instance.GetComponent<SelectionManager>().enabled = false;
isOpen = true;
}
else
{
craftingScreenUI.SetActive(false);
toolsScreenUI.SetActive(false);
survivalScreenUI.SetActive(false);
refineScreenUI.SetActive(false);
constructionScreenUI.SetActive(false);
isOpen = false;
if (!InventorySystem.Instance.isOpen)
{
Cursor.lockState = CursorLockMode.Locked;
Cursor.visible = false;
SelectionManager.Instance.EnableSelection();
SelectionManager.Instance.GetComponent<SelectionManager>().enabled = true;
}
}
}
}
}
|