Unity3D——Epirome框架_TimerManager计时任务管理器
1、Timer timer = new Timer(); 创建时间管理器 参数(float time, TimeUnit timeUnit,bool ignoreTimeScale = false, bool autoStart = true) time:时间值、timeUnit 时间单位(帧率、秒、厘秒、毫秒)、ignoreTimeScale 忽略时间缩放(可以使游戏暂停更容易实现)、autoStart 自动开始计时
2、timer.loop = true; // 循环 timer.Finished +=method; // 回调函数 timer.Pause(); // 暂停
using System.Collections.Generic;
using UnityEngine;
namespace Epitome
{
public delegate void FinishedHandler();
public class Timer
{
TimerManager.TimerState timer;
public bool Running { get { return timer.Running; } }
public bool Paused { get { return timer.Paused; } }
public bool Loop
{
set { timer.HasRepeat = value; }
get { return timer.HasRepeat; }
}
public event FinishedHandler Finished;
public Timer(float time, TimeUnit timeUnit,bool ignoreTimeScale = false, bool autoStart = true)
{
timer = TimerManager.Instance.CreateTimer(time, timeUnit, ignoreTimeScale);
timer.Finished += TimerFinished;
if (autoStart) timer.Start();
}
public void Start() { timer.Start(); }
public void Stop() { timer.Stop(); }
public void Pause() { timer.Pause(); }
public void UnPause() { timer.UnPause(); }
public void TimerFinished()
{
FinishedHandler handler = Finished;
if (handler != null)
handler();
}
}
public enum TimeUnit
{
FrameRate, // 帧率
Second, // 秒
CentiSecond, // 厘秒:是一秒的百分之一(0.01秒)
MilliSecond, // 毫秒:是一秒的千分之一(0.001秒)
}
public class TimerManager : MonoSingleton<TimerManager>
{
public class TimerState
{
bool running;
bool paused;
bool stopped;
public bool Running { get { return running; } }
public bool Paused { get { return paused; } }
public event FinishedHandler Finished;
private TimeUnit timeUnit;
private float delayTime; // 延迟时间
private float attackTime; // 启动时间
private float currentTime; // 当前时间
public bool HasRepeat; // 一直重复
public bool ignoreTimeScale { get; private set; } // 忽略时间缩放
public TimerState(float time, TimeUnit unit, bool ignore)
{
timeUnit = unit;
ignoreTimeScale = ignore;
delayTime = time;
ResetState();
}
private void ResetState()
{
switch (timeUnit)
{
case TimeUnit.FrameRate:
currentTime = 0.0f;
break;
case TimeUnit.Second:
case TimeUnit.CentiSecond:
case TimeUnit.MilliSecond:
if (!ignoreTimeScale) currentTime = 0.0f;
else currentTime = Time.realtimeSinceStartup;
break;
}
attackTime = delayTime + currentTime;
}
public void UpdateTime(float time)
{
time = ignoreTimeScale ? time - currentTime : time;
if (running)
{
if (paused) return;
switch (timeUnit)
{
case TimeUnit.FrameRate:
currentTime += 1;
break;
case TimeUnit.Second:
currentTime += time;
break;
case TimeUnit.CentiSecond:
currentTime += time * 100;
break;
case TimeUnit.MilliSecond:
currentTime += time * 1000;
break;
}
if (currentTime >= attackTime)
{
if (HasRepeat)
{
ResetState();
}
else
{
Stop();
}
FinishedHandler handle = Finished;
if (handle != null)
{
handle();
}
}
}
}
public void Start()
{
running = true;
}
public void Stop()
{
stopped = true;
running = false;
}
public void Pause()
{
paused = true;
}
public void UnPause()
{
paused = false;
}
}
private List<TimerState> timerList = new List<TimerState>();
private void Update()
{
for (int i = 0; i < timerList.Count ; i++)
{
timerList[i].UpdateTime(timerList[i].ignoreTimeScale ? Time.realtimeSinceStartup : Time.deltaTime);
}
}
public TimerState CreateTimer(float time, TimeUnit timeUnit,bool ignoreTimeScale)
{
TimerState newTimer = new TimerState(time, timeUnit, ignoreTimeScale);
timerList.Add(newTimer);
return newTimer;
}
public void ClearTimer() { }
public void ClearAllTimer() { }
}
}
使用案例
public class text : MonoBehaviour {
// Use this for initialization
void Start () {
Time.timeScale = 3;
Timer timer = new Timer(1, TimeUnit.Second); //第三个参数是否忽略时间缩放带来的影响
timer.Loop = true; // 设置可循环
timer.Finished += rw;
}
private void rw()
{
Debug.Log("你好");
}
}
---------------------
Unity3D——Epirome框架_TimerManager计时任务管理器的更多相关文章
- unity3D客户端框架
unity3D客户端框架 博客
- Unity3D知识框架
美术部分: 3d模型,材质,纹理,shader,Animator,Animation,天空盒,灯光效果,烘焙 程序部分: 基本组成: ...
- Unity3d + PureMVC框架搭建
0.流程:LoginView-SendNotification()---->LoginCommand--Execute()--->调用proxy中的函数操作模型数据--LoginProxy ...
- NancyFx框架之检测任务管理器
先建一个空的项目和之前的NancyFx系列一样的步骤 然后建三个文件夹Models,Module,Views 然后分别安装一下组件 jQuery Microsoft.AspNet.SignalR Mi ...
- [Unity3D]Unity资料大全免费分享
都是网上找的连七八糟的资料了,整理好分享的,有学习资料,视频,源码,插件……等等 东西比较多,不是所有的都是你需要的,可以按 ctrl+F 来搜索你要的东西,如果有广告,不用理会,关掉就可以了,如 ...
- [课程设计]Scrum 1.4 多鱼点餐系统开发进度(点餐页面框架布置)
Scrum 1.4 多鱼点餐系统开发进度 (点餐页面框架布置) 1.团队名称:重案组 2.团队目标:长期经营,积累客户充分准备,伺机而行 3.团队口号:矢志不渝,追求完美 4.团队选题:餐厅到店点餐系 ...
- Unity3D编程学习分享
学习地址:http://www.ixueyun.com/lessons/detail-lessonId-692.html 一.课程概述: 以前大部分3D游戏出现在pc和ps.XBox等专业游戏主机上, ...
- 《开源框架那些事儿22》:UI框架设计实战
UI是User Interface的缩写.通常被觉得是MVC中View的部分,作用是提供跟人机交互的可视化操作界面. MVC中Model提供内容给UI进行渲染,用户通过UI框架产生响应,一般而言会由控 ...
- [课程设计]Scrum 1.4 多鱼点餐系统开发进度
Scrum 1.4 多鱼点餐系统开发进度 (点餐页面框架布置) 1.团队名称:重案组 2.团队目标:长期经营,积累客户充分准备,伺机而行 3.团队口号:矢志不渝,追求完美 4.团队选题:餐厅到店点餐系 ...
随机推荐
- java web项目的目录结构
- [USACO2012 OPEN] Bookshelf
[题目链接] https://www.lydsy.com/JudgeOnline/problem.php?id=2678 [算法] 首先不难想到如下DP : 记f[i]表示前i本书的高度和最小值 显然 ...
- python(一):multiprocessing——死锁
前言近年来,使用python的人越来越多,这得益于其清晰的语法.低廉的入门代价等因素.尽管python受到的关注日益增多,但python并非完美,例如被人诟病最多的GIL(值得注意的是,GIL并非py ...
- C++初学(1) 简单的加减乘除取余运算代码
//---------------+-*/%算法---------------------------------------------------------- #include <iost ...
- pl/sql developer安装使用即时客户端
pl/sql developer安装使用即时客户端 背景:由于Oracle的安装比较麻烦,大部分人都使用远程Oracle,而Oracle Instantclient Basic package可以解决 ...
- ASP.NET Core MVC 2.x 全面教程__ASP.NET Core MVC 19. XSS & CSRF
存库之前先净化,净化之后再提交到数据库 刚才插入的那笔数据 把默认的Razor引擎默认的EnCode去掉.Razor默认会开启htmlEnCodding 数据恢复回来 插入数据库之前对插入的数据进行净 ...
- 4种java复制文件的方式
尽管Java提供了一个可以处理文件的IO操作类,但是没有一个复制文件的方法.复制文件是一个重要的操作,当你的程序必须处理很多文件相关的时候.然而有几种方法可以进行Java文件复制操作,下面列举出4中最 ...
- JavaScript面向对象轻松入门之综合
javascrpit面向对象之综合 这一章是对前几章的一个总结,通过一个案例来综合认识javascript面向对象的基本用法 需求: 几乎所有的web应用都需要保存数据一些到本地,那么我们就来 ...
- (水题)洛谷 - P1036 - 选数
https://www.luogu.org/problemnew/show/P1036 $n$ 才20的数据量,我当时居然还在想怎么分组组合,直接 $2^{20}$ 暴力搞就行了. $x_i $太大了 ...
- poj3669【bfs】
题意: 有个**要看流星雨,可是流星雨会砸死他的... 给出n个流星雨下落的坐标,时间,如果那个**在下落坐标或是上下左右就会gg,问你他最短跑到流星雨打不到的地方的时间. 思路: ①:预处理出一个矩 ...