博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Unity中的定时器与延时器
阅读量:5879 次
发布时间:2019-06-19

本文共 2632 字,大约阅读时间需要 8 分钟。

JavaScript中的定时器与延时器,分别是 setInterval、setTimeout,对应的清理函数是:clearInterval、clearTimeout。

而在Unity中,则分别是:Invoke、InvokeRepeating和取消延迟调用  CancelInvoke

 

延迟调用

void Invoke(string methodName, float time);

 

重复延迟调用

void InvokeRepeating(string methodName, float time, float repeatRate);

在 time 后调用 methodName 方法然后每 repeatRate 秒 重复调用。

 

 

上面二个方法有什么用处呢?我想到的应用场景就是,在游戏主界面显示当前游戏的延迟 —— 几乎成为游戏的标配了。

 

为了设计不至于太过复杂,我直接采用了定时器不断的Ping,每隔几秒就Ping一次,并给定每一次 Ping 一个超时上限。

using System.Collections;using System.Collections.Generic;using UnityEngine;public class PingTool : MonoBehaviour{    // 最大尝试ping的次数    private static int nMaxTryNum = 10;    // 检测频率    private static float nCheckInterval = 3f;    // 需要 ping 的 IP    private static string strRemoteIP = "";        private static PingTool pingTool;                public static void CreatePing(string strIP)    {        if (string.IsNullOrEmpty(strIP)) return;        if (pingTool != null)        {            Debug.Log("Please Stop Ping Before.");            return;        }        strRemoteIP = strIP;        // 复用组件,避免频繁的创建和销毁组件        GameObject go = GameObject.Find("PingTool");        if (go == null)        {            go = new GameObject("PingTool");            DontDestroyOnLoad(go);        }                pingTool = go.AddComponent
(); } public static void StopPing() { if (pingTool != null) { pingTool.CancelInvoke(); Destroy(pingTool); } } public static void SetCheckInterval(float value) { nCheckInterval = value; } private void Start() { InvokeRepeating("Execute", 0, nCheckInterval); } private void Execute() { if (pingTool == null) return; StartCoroutine(PingConnect()); } private void Destroy() { strRemoteIP = ""; nCheckInterval = 1.0f; pingTool = null; } private IEnumerator PingConnect() { if (pingTool != null) { Ping ping = new Ping(strRemoteIP); int nTryNum = 0; while (!ping.isDone) { yield return new WaitForSeconds(0.2f); // Ping Fail if (nTryNum++ > nMaxTryNum) { yield break; } } if (ping.isDone) { int nDelayTime = ping.time; Debug.Log("nDelayTime : " + nDelayTime.ToString() + "\t" + Time.time); } else { // 延时超过 2000 毫秒 } } }}

 

上面的例子每0.2秒检测一次 Ping 是否结束,最多十次检测,也就是2秒超时的时长。每3秒再检测一次,上面示例代码可以再添加一个 callback

转载地址:http://ewcix.baihongyu.com/

你可能感兴趣的文章
cocos2d中CCAnimation的使用(cocos2d 1.0以上版本)
查看>>
【吉光片羽】短信验证
查看>>
MacBook如何用Parallels Desktop安装windows7/8
查看>>
gitlab 完整部署实例
查看>>
GNS关于IPS&ASA&PIX&Junos的配置
查看>>
七天学会ASP.NET MVC (四)——用户授权认证问题
查看>>
upgrade to iOS7,how to remove stroyboard?
查看>>
影响企业信息化成败的几点因素
查看>>
SCCM 2016 配置管理系列(Part8)
查看>>
zabbix监控部署
查看>>
struts中的xwork源码下载地址
查看>>
Android硬件抽象层(HAL)深入剖析(二)
查看>>
CDays–4 习题一至四及相关内容解析。
查看>>
L3.十一.匿名函数和map方法
查看>>
java面向对象高级分层实例_实体类
查看>>
android aapt 用法 -- ApkReader
查看>>
[翻译]用 Puppet 搭建易管理的服务器基础架构(3)
查看>>
Android -- AudioPlayer
查看>>
Python大数据依赖包安装
查看>>
Android View.onMeasure方法的理解
查看>>