]> de.git.xonotic.org Git - xonotic/xonotic-data.pk3dir.git/blob - qcsrc/server/round_handler.qh
Cleanup common mutators: remove IMPLEMENTATION macro
[xonotic/xonotic-data.pk3dir.git] / qcsrc / server / round_handler.qh
1 #pragma once
2
3 entity round_handler;
4 .float delay; // stores delay from round end to countdown start
5 .float count; // stores initial number of the countdown
6 .float wait; // it's set to true when round ends, to false when countdown starts
7 .float cnt;     // its initial value is .count + 1, then decreased while counting down
8                         // reaches 0 when the round starts
9 .float round_timelimit;
10 .float round_endtime;
11 .float() canRoundStart;
12 .float() canRoundEnd;
13 .void() roundStart;
14
15 void round_handler_Init(float the_delay, float the_count, float the_round_timelimit);
16 void round_handler_Spawn(float() canRoundStart_func, float() canRoundEnd_func, void() roundStart_func);
17 void round_handler_Reset(float next_think);
18 void round_handler_Remove();
19
20 #define round_handler_IsActive() (round_handler != NULL)
21 #define round_handler_AwaitingNextRound() (round_handler.wait)
22 #define round_handler_CountdownRunning() (!round_handler.wait && round_handler.cnt)
23 #define round_handler_IsRoundStarted() (!round_handler.wait && !round_handler.cnt)
24 #define round_handler_GetEndTime() (round_handler.round_endtime)