Exemplo n.º 1
0
    public void onMatchReadyToStart(string matchInfoJson)
    {
        Debug.Log("onMatchReadyToStart");
        MatchInfo matchInfo = fromJson <MatchInfo>(matchInfoJson);

        if (listener != null)
        {
            listener.onMatchReadyToStart(matchInfo);
        }
    }
Exemplo n.º 2
0
    private static void onCallBack(string eventName, string msg)
    {
        if (eventName == "onMatchJoined")
        {
            //do onMatchJoined
            Debug.Log("onMatchJoined,json:" + msg);
            MatchInfo matchInfo = JsonUtility.FromJson <MatchInfo>(msg);
            Debug.Log("listener is " + listener);
            if (listener != null)
            {
                listener.onMatchJoined(matchInfo);
            }
        }
        else if (eventName == "onMatchReadyToStart")
        {
            Debug.Log("onMatchReadyToStart");
            MatchInfo matchInfo = JsonUtility.FromJson <MatchInfo>(msg);

            if (listener != null)
            {
                listener.onMatchReadyToStart(matchInfo);

                if (matchInfo.isNeedRecordScreen)
                {
                    Debug.Log("start to record screen for this game");

                    timer          = new Timer();
                    timer.Elapsed += delegate {
                        var    timestamp = ((DateTimeOffset)DateTime.UtcNow.ToLocalTime()).ToUnixTimeMilliseconds();
                        string picName   = "screenshot-" + matchInfo.matchId + "-" + timestamp + ".jpeg";
                        TakeScreenshot(picName);
                    };
                    //timer.Elapsed += new ElapsedEventHandler(TakeScreenshot);
                    timer.Interval = 1000;
                    timer.Enabled  = true;
                }
            }
        }
    }