chenxin
2020-10-21 19920ac94eb4a5e2ce911830f497206d798995c0
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 TDGAMission
{
#if UNITY_ANDROID
    private static readonly string MISSION_CLASS = "com.tendcloud.tenddata.TDGAMission";
    private static AndroidJavaClass missionClass;
#endif
 
#if UNITY_IPHONE
    [DllImport("__Internal")]
    private static extern void TDGAOnBegin(string missionId);
 
    [DllImport("__Internal")]
    private static extern void TDGAOnCompleted(string missionId);
 
    [DllImport("__Internal")]
    private static extern void TDGAOnFailed(string missionId, string failedCause);
#endif
 
    public static void OnBegin(string missionId)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (missionClass == null)
            {
                missionClass = new AndroidJavaClass(MISSION_CLASS);
            }
            missionClass.CallStatic("onBegin", missionId);
#endif
#if UNITY_IPHONE
            TDGAOnBegin(missionId);
#endif
        }
    }
 
    public static void OnCompleted(string missionId)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (missionClass == null)
            {
                missionClass = new AndroidJavaClass(MISSION_CLASS);
            }
            missionClass.CallStatic("onCompleted", missionId);
#endif
#if UNITY_IPHONE
            TDGAOnCompleted(missionId);
#endif
        }
    }
 
    public static void OnFailed(string missionId, string failedCause)
    {
        if (Application.platform != RuntimePlatform.OSXEditor && Application.platform != RuntimePlatform.WindowsEditor)
        {
#if UNITY_ANDROID
            if (missionClass == null)
            {
                missionClass = new AndroidJavaClass(MISSION_CLASS);
            }
            missionClass.CallStatic("onFailed", missionId, failedCause);
#endif
#if UNITY_IPHONE
            TDGAOnFailed(missionId, failedCause);
#endif
        }
    }
}