Esempio n. 1
0
    public override void Execute()
    {
        PurchaseState purchaseState = StoreKitHelper.GetPurchaseState();

        Debug.Log("the state is : " + purchaseState.ToString());
        if (purchaseState == PurchaseState.PurchaseSuccess)
        {
            iOSConfirmContext confirmContext = new iOSConfirmContext();
            this.ShopModule.ChangeContext(confirmContext);
            confirmContext.StartProductConfirm(this.m_ProductID);
        }
        else if (purchaseState == PurchaseState.PurchaseFail || purchaseState == PurchaseState.PurchaseCancel)
        {
            iOSIdleContext idleContext = new iOSIdleContext();
            this.ShopModule.ChangeContext(idleContext);
            if (purchaseState == PurchaseState.PurchaseFail)
            {
                this.ShopModule.State = ShopActionState.Fail;
                PurchaseFailInformation failInformation = new PurchaseFailInformation();
                failInformation.Reason           = PurchaseFailedReason.Abort;
                failInformation.ErrorDescription = ClientStringConstants.PURCHASE_FAIL_TIPS;
                this.ShopModule.OnPurchaseFailed(failInformation);
            }
            else
            {
                this.ShopModule.State = ShopActionState.Cancel;
                PurchaseFailInformation failInformation = new PurchaseFailInformation();
                failInformation.Reason           = PurchaseFailedReason.Cancel;
                failInformation.ErrorDescription = ClientStringConstants.PURCHASE_FAIL_TIPS;
                this.ShopModule.OnPurchaseFailed(failInformation);
            }
        }
    }
Esempio n. 2
0
    private void OnRequestFail()
    {
        this.ShopModule.State = ShopActionState.Fail;
        iOSIdleContext idleContext = new iOSIdleContext();

        this.ShopModule.ChangeContext(idleContext);
        this.ShopModule.OnRequestFailed(ClientStringConstants.REQUEST_FAIL_TIPS);
    }
Esempio n. 3
0
    public override void PurchaseProduct(string productID)
    {
        iOSIdleContext idleContext = this.m_CurrentContext as iOSIdleContext;

        if (idleContext != null)
        {
            Debug.Log("real start!");
            this.State = ShopActionState.Operating;
            idleContext.PurchaseProduct(productID);
        }
    }