OpenClonk
C4GameSec1Timer Class Reference
Inheritance diagram for C4GameSec1Timer:
[legend]
Collaboration diagram for C4GameSec1Timer:
[legend]

Public Member Functions

 C4GameSec1Timer ()
 
 ~C4GameSec1Timer () override
 
void OnSec1Timer () override
 

Protected Member Functions

bool Execute (int, pollfd *) override
 
void Set ()
 
void SetDelay (uint32_t inDelay)
 
bool CheckAndReset ()
 
C4TimeMilliseconds GetNextTick (C4TimeMilliseconds tNow) override
 
uint32_t TimerInterval () override
 
void Changed ()
 
bool ExecuteUntil (int iTimeout=-1)
 
virtual void GetFDs (std::vector< struct pollfd > &)
 
bool IsSignaled ()
 
virtual bool IsLowPriority ()
 
virtual bool IsNotify ()
 

Detailed Description

Definition at line 83 of file C4Game.cpp.

Constructor & Destructor Documentation

◆ C4GameSec1Timer()

C4GameSec1Timer::C4GameSec1Timer ( )
inline

Definition at line 86 of file C4Game.cpp.

86 { Application.Add(this); }
C4Application Application
Definition: C4Globals.cpp:44
void Add(StdSchedulerProc *pProc)

References StdScheduler::Add(), and Application.

Here is the call graph for this function:

◆ ~C4GameSec1Timer()

C4GameSec1Timer::~C4GameSec1Timer ( )
inlineoverride

Definition at line 87 of file C4Game.cpp.

87 { Application.Remove(this); }
void Remove(StdSchedulerProc *pProc)

References Application, and StdScheduler::Remove().

Here is the call graph for this function:

Member Function Documentation

◆ Changed()

void StdSchedulerProc::Changed ( )
protectedinherited

Definition at line 108 of file StdScheduler.cpp.

109 {
110  auto s = scheduler;
111  if (s)
112  s->Changed(this);
113 }
#define s

References s.

Referenced by C4NetIOTCP::Accept(), C4NetIOTCP::AddConnectWait(), C4NetIOUDP::AddPeer(), C4NetIOTCP::Listen(), and CStdTimerProc::SetDelay().

Here is the caller graph for this function:

◆ CheckAndReset()

bool CStdTimerProc::CheckAndReset ( )
inlineinherited

Definition at line 107 of file StdScheduler.h.

108  {
110  if (tTime < tLastTimer + iDelay) return false;
111  // Compensate light drifting
112  int32_t iDrift = tTime - (tLastTimer + iDelay); // a positive time difference because of above check
113  tLastTimer = tTime - std::min(iDrift, (int32_t) iDelay / 2);
114  return true;
115  }
static C4TimeMilliseconds Now()

References C4TimeMilliseconds::Now().

Referenced by C4Network2::InitialConnect::Execute(), and C4ApplicationSec1Timer::Execute().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ Execute()

bool C4ApplicationSec1Timer::Execute ( int  ,
pollfd *   
)
inlineoverrideprotectedvirtualinherited

Implements StdSchedulerProc.

Definition at line 131 of file StdScheduler.h.

132  {
133  if (CheckAndReset())
134  OnSec1Timer();
135  return true;
136  }
virtual void OnSec1Timer()=0
bool CheckAndReset()
Definition: StdScheduler.h:107

References CStdTimerProc::CheckAndReset(), and C4ApplicationSec1Timer::OnSec1Timer().

Here is the call graph for this function:

◆ ExecuteUntil()

bool StdSchedulerProc::ExecuteUntil ( int  iTimeout = -1)
inherited

Definition at line 33 of file StdScheduler.cpp.

34 {
35  // Infinite?
36  if (iTimeout < 0)
37  for (;;)
38  if (!Execute())
39  return false;
40  // Calculate endpoint
41  C4TimeMilliseconds tStopTime = C4TimeMilliseconds::Now() + iTimeout;
42  for (;;)
43  {
44  // Call execute with given timeout
45  if (!Execute(std::max(iTimeout, 0)))
46  return false;
47  // Calculate timeout
49  if (tTime >= tStopTime)
50  break;
51  iTimeout = tStopTime - tTime;
52  }
53  // All ok.
54  return true;
55 }
virtual bool Execute(int iTimeout=-1, pollfd *readyfds=nullptr)=0

References StdSchedulerProc::Execute(), and C4TimeMilliseconds::Now().

Referenced by main().

Here is the call graph for this function:
Here is the caller graph for this function:

◆ GetFDs()

virtual void StdSchedulerProc::GetFDs ( std::vector< struct pollfd > &  )
inlinevirtualinherited

Reimplemented in C4FileMonitor, C4NetIOSimpleUDP, C4NetIOTCP, CStdNotifyProc, C4StdInProc, and C4HTTPClient.

Definition at line 72 of file StdScheduler.h.

72 { }

◆ GetNextTick()

C4TimeMilliseconds CStdTimerProc::GetNextTick ( C4TimeMilliseconds  tNow)
inlineoverridevirtualinherited

Reimplemented from StdSchedulerProc.

Definition at line 118 of file StdScheduler.h.

119  {
120  return tLastTimer + iDelay;
121  }

◆ IsLowPriority()

virtual bool StdSchedulerProc::IsLowPriority ( )
inlinevirtualinherited

Definition at line 82 of file StdScheduler.h.

82 { return false; }

◆ IsNotify()

virtual bool StdSchedulerProc::IsNotify ( )
inlinevirtualinherited

Reimplemented in CStdNotifyProc, and C4NetIO.

Definition at line 83 of file StdScheduler.h.

83 { return false; }

◆ IsSignaled()

bool StdSchedulerProc::IsSignaled ( )
inherited

◆ OnSec1Timer()

void C4GameSec1Timer::OnSec1Timer ( )
overridevirtual

Implements C4ApplicationSec1Timer.

Definition at line 1792 of file C4Game.cpp.

1793 {
1794  // updates the game clock
1795  if (Game.TimeGo)
1796  {
1797  Game.Time++;
1798  Game.TimeGo = false;
1799  }
1800  Game.FPS = Game.cFPS;
1801  Game.cFPS = 0;
1802 }
C4Game Game
Definition: C4Globals.cpp:52
int32_t cFPS
Definition: C4Game.h:111
int32_t Time
Definition: C4Game.h:132
int32_t FPS
Definition: C4Game.h:111
bool TimeGo
Definition: C4Game.h:131

References C4Game::cFPS, C4Game::FPS, Game, C4Game::Time, and C4Game::TimeGo.

◆ Set()

void CStdTimerProc::Set ( )
inlineinherited

Definition at line 102 of file StdScheduler.h.

103  {
105  }

References C4TimeMilliseconds::NegativeInfinity.

Referenced by CStdTimerProc::~CStdTimerProc().

Here is the caller graph for this function:

◆ SetDelay()

void CStdTimerProc::SetDelay ( uint32_t  inDelay)
inlineinherited

Definition at line 106 of file StdScheduler.h.

106 { iDelay = inDelay; Changed(); }

References StdSchedulerProc::Changed().

Here is the call graph for this function:

◆ TimerInterval()

uint32_t CStdTimerProc::TimerInterval ( )
inlineoverridevirtualinherited

Reimplemented from StdSchedulerProc.

Definition at line 122 of file StdScheduler.h.

122 { return iDelay; }

The documentation for this class was generated from the following file: