Beispiel #1
0
    public void ConfirmPurchase()
    {
        if (state == shopState.Confirm)
        {
            // complete purchase
            shopping.CompleteTransaction(purchaseCost, purchaseItem);

            // if item is a one time buy, disable
            if (ShopData.getOneTime(purchaseItem))
            {
                GameObject obj         = GameObject.Find("ShopItem-" + purchaseItem);
                Transform  parentTrans = obj.transform;

                Transform  childTrans = parentTrans.Find("BuyButton");
                GameObject objChild   = childTrans.gameObject;
                Button     b          = objChild.GetComponent <Button>();
                b.interactable = false;

                childTrans = parentTrans.Find("BoughtIndicator");
                objChild   = childTrans.gameObject;
                objChild.SetActive(true);
            }

            state = shopState.Ready;
        }
    }
Beispiel #2
0
 public void Continue()
 {
     if (state == shopState.Insufficient)
     {
         state = shopState.Ready;
         // hide confirmation window
     }
 }
Beispiel #3
0
 public void CancelPurchase()
 {
     if (state == shopState.Confirm)
     {
         state = shopState.Ready;
         // hide confirmation window
     }
 }
Beispiel #4
0
    // Start is called before the first frame update
    void Start()
    {
        // calls some other function to get the number of souls
        int souls = 100;

        shopping = new ShopData(souls);

        state = shopState.Ready;

        purchaseItem = "None";
        purchaseCost = 0;
    }
Beispiel #5
0
    public void Buy(string itemType)
    {
        if (state == shopState.Ready)
        {
            purchaseCost = ShopData.getCost(itemType);

            if (purchaseCost <= shopping.getWallet())
            {
                purchaseItem = itemType;
                state        = shopState.Confirm;
                // run confirmation window - make visible
                confirmPurchaseObject.SetActive(true);
            }
            else
            {
                // insufficient funds
                state = shopState.Insufficient;
                //GameObject.Find("ConfirmPurchase").setActive(true);
                confirmInsufficientObject.SetActive(true);
            }
        }
    }