wangguan
2020-10-21 a51fc78ac1055d24fe68d8d091fedd148302c1e5
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
using UnityEngine;
#if UNITY_IPHONE
using System.Runtime.InteropServices;
#endif
 
 
public static class TDGAVirtualCurrency
{
#if UNITY_ANDROID
    private static readonly string VIRTUAL_CURRENCY_CLASS = "com.tendcloud.tenddata.TDGAVirtualCurrency";
    private static AndroidJavaClass virtualCurrencyClass;
#endif
 
#if UNITY_IPHONE
    [DllImport("__Internal")]
    private static extern void TDGAOnChargeRequst(string orderId, string iapId, double currencyAmount, string currencyType, double virtualCurrencyAmount, string paymentType);
 
    [DllImport("__Internal")]
    private static extern void TDGAOnChargSuccess(string orderId);
 
    [DllImport("__Internal")]
    private static extern void TDGAOnReward(double virtualCurrencyAmount, string reason);
#endif
 
    public static void OnChargeRequest(string orderId, string iapId, double currencyAmount, string currencyType, double virtualCurrencyAmount, string paymentType)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (virtualCurrencyClass == null)
            {
                virtualCurrencyClass = new AndroidJavaClass(VIRTUAL_CURRENCY_CLASS);
            }
            virtualCurrencyClass.CallStatic("onChargeRequest", orderId, iapId, currencyAmount, currencyType, virtualCurrencyAmount, paymentType);
#endif
#if UNITY_IPHONE
            TDGAOnChargeRequst(orderId, iapId, currencyAmount, currencyType, virtualCurrencyAmount, paymentType);
#endif
        }
    }
 
    public static void OnChargeSuccess(string orderId)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (virtualCurrencyClass == null)
            {
                virtualCurrencyClass = new AndroidJavaClass(VIRTUAL_CURRENCY_CLASS);
            }
            virtualCurrencyClass.CallStatic("onChargeSuccess", orderId);
#endif
#if UNITY_IPHONE
            TDGAOnChargSuccess(orderId);
#endif
        }
    }
 
    public static void OnReward(double virtualCurrencyAmount, string reason)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (virtualCurrencyClass == null)
            {
                virtualCurrencyClass = new AndroidJavaClass(VIRTUAL_CURRENCY_CLASS);
            }
            virtualCurrencyClass.CallStatic("onReward", virtualCurrencyAmount, reason);
#endif
#if UNITY_IPHONE
            TDGAOnReward(virtualCurrencyAmount, reason);
#endif
        }
    }
}