Click here to Skip to main content
15,881,882 members
Articles / Programming Languages / C++

Low resolution timer class for Visual C++ and GNU C++ under MingW

Rate me:
Please Sign up or sign in to vote.
3.94/5 (9 votes)
9 Jan 20062 min read 74K   2K   21  
LRTimer - universal low resolution timer class with its own thread.
/*******************************************************************************
* lrtimer.h                                                                    *
*                                                                              *
* Written by Max Gurdziel 2005 under GNU General Public License                *
* contact me: max@remotesos.com                                                *
*                                                                              *
* LRTimer is a low resolution timer class with own timing thread. It allows    *
*  an external callback function to be supplied that will be called in         *
*  pre-defined time intervals. The smallest timer interval you can use is 1ms. *
*                                                                              *
*  System requirements:                                                        *
*  - WindowsXP, NT                                                             *
*  - gcc compiler under mingw                                                  *
*                                                                              *
*                                                                              *
*   Usage:  copy and paste below sample code to test LRTimer                   *
*                                                                              *
________________________________________________________________________________

#include <stdlib.h>
#include "lrtimer.h"

using namespace std;

// define callback function
void callback()
  static DWORD cnt = 0;
  char c;
  cnt++;
  switch (cnt % 4) {
    case 0: c = '|'; break;
    case 1: c = '/'; break;
    case 2: c = '-'; break;
    case 3: c = '\\';
  }
  printf("\b%c",c);
}


int main(int argc, char *argv[])
{

  LRTimer lrt;
  lrt.setCallbackFunction(&callback);  // set the callback function by reference
  lrt.setInterval(50);                 // set delay interval in miliseconds
  lrt.start();                         // start the timer
  getchar();                           // let it run for a while - press Enter
  lrt.stop();                          // stop the timer
  getchar();                           // wait to show it's stopped - Enter
  lrt.start(200);                      // start with different delay
  getchar();
  lrt.stop();
  system("PAUSE");
  return 0;
}

________________________________________________________________________________
*                                                                              *
* Permission to use, copy, modify, and distribute this software and its        *
* documentation under the terms of the GNU General Public License is hereby    *
* granted. No representations are made about the suitability of this software  *
* for any purpose. It is provided "as is" without express or implied warranty. *
* See http://www.gnu.org/copyleft/gpl.html for more details.                   *
*                                                                              *
* All I ask is that if you use LRTimer in your project please retain the       *
* copyright notice. If you have any comments and suggestions please email me   *
* max@remotesos.com                                                            *
*                                                                              *
*******************************************************************************/

#ifndef LRTIMER_H__
#define LRTIMER_H__



#define _WIN32_WINNT 0x0500

#include <windows.h>
#include <stdio.h>

#define _SECOND 10000000

class LRTimer {

	public:
    // default constructor
  	LRTimer();
  	
  	// default destructor
		~LRTimer();
		
		// starts timer by creating new thread using preset interval
		VOID start();
		
		// starts timer with given interval in miliseconds
		VOID start(DWORD _interval_ms);
		
		// stops the timer
		VOID stop();
		
		// sets interval in miliseconds
		VOID setInterval(DWORD _interval_ms);
		
		// returns interval
		DWORD getInterval();
		
		// sets function that will be called on time
		VOID setCallbackFunction( VOID (*_pCallback)(int));
  	BOOL isRunning();

  private:
  	DWORD m_dwInterval;
  	VOID __stdcall (*m_pCallback)(int); //__attribute__((stdcall))
  	BOOL m_bRunning;
  	HANDLE m_hTimerThread; // handle to timer thread
  	DWORD m_iID; //timer thread id
  	virtual DWORD WINAPI timerThread();
  	static DWORD WINAPI timerThreadAdapter(PVOID _this) {
  		return ((LRTimer*) _this)->timerThread();
 		}
 		virtual VOID CALLBACK TimerAPCProc(LPVOID, DWORD, DWORD);
 		static VOID CALLBACK TimerAPCProcAdapter(PVOID _this, DWORD a1=0, DWORD a2=0) {
 			return ((LRTimer*) _this)->TimerAPCProc( NULL, a1, a2 );
		}
		
};
#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Systems Engineer
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions