Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
Time.h
Package: g.rar [view]
Upload User: laitongbao
Upload Date: 2021-02-20
Package Size: 8176k
Code Size: 1k
Category:
Shot Game
Development Platform:
Visual C++
- #include"CGLApplication.h"
- #include<list>
- #ifndef TIME_H
- #define TIME_H
- #define INTERNAL_CLOCK g_pClock
- class Timer;
- class Clock
- {
- friend class Timer;
- public:
- ~Clock();
- void RegisterTimer(Timer*timer);
- void UnregisterTimer(Timer*timer);
- void Update();
- private:
- std::list<Timer*> timers;
- float frameTime;
- };
- class Timer
- {
- friend class Clock;
- public:
- Timer(Clock*source,float factor=1.f,float interval = 0.f);//source 一般为INTERNAL_CLOCK,factor是速度参数
- ~Timer();
- float GetTime();//返回从建立该对象到当前的时间,时间以秒为单位(与速度参数有关)
- float GetFrameTime();//返回上一帧的时间,这个时间其实是上8帧的平均值,用来平滑动画速度
- void Reset(float newTime=0);
- void Pause();
- void SetFactor(float factor);//设置速度参数
- void Continue();
- void SetInterval(float interval);
- void AddFunction(void(CALLBACK*func)(float));
- void RemoveFunction(void(CALLBACK*func)(float));
- void ClearFunction();
- private:
- Clock*source;
- bool active;
- float localTime;
- float scaleFactor;
- float frameTime;
- float interval;
- float lastTime;
- std::list<void(CALLBACK*)(float time)> funcList;
- };
- class FrameTimer
- {
- public:
- FrameTimer(int delay_);
- public:
- void startTimer();
- void update();
- void stopTimer();
- bool reach();
- bool isRunning();
- // data
- private:
- int delay;
- int currentFrame;
- };
- #endif