forked from Baystation12/Baystation12
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- added empty_round_check_interval config option This periodic check ends running rounds with no living players. Defaults off. - added transfer_vote_block_antag_time config option Allows configuration of the previously hardcoded 20 minute block period before each vote for adding new antagonists. Defaults 20 minutes. - adjusted behavior of round end test Rounds can continue indefinitely when no time-based end conditions are set. - corrected admin verb for setting max round length
- Loading branch information
1 parent
cc4fe1e
commit 79c7ade
Showing
12 changed files
with
150 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
SUBSYSTEM_DEF(roundend) | ||
name = "Round End" | ||
wait = 30 SECONDS | ||
flags = SS_BACKGROUND | ||
runlevels = RUNLEVEL_GAME | ||
|
||
/// The time in minutes when the round will be ended. | ||
var/static/max_length | ||
|
||
/// The next time in minutes to check whether a round is empty. | ||
var/static/empty_check | ||
|
||
/// The next time in minutes to start a round end vote. | ||
var/static/vote_check | ||
|
||
/// The cached duration to the next vote. | ||
var/static/vote_cache | ||
|
||
|
||
/datum/controller/subsystem/roundend/UpdateStat(time) | ||
if (PreventUpdateStat(time)) | ||
return ..() | ||
if (GAME_STATE < RUNLEVEL_POSTGAME) | ||
var/round_time = round_duration_in_ticks / 600 | ||
var/show_max | ||
if (max_length) | ||
show_max = max(round(max_length - round_time, 0.1), 0) | ||
var/show_empty | ||
if (empty_check) | ||
show_empty = max(round(empty_check - round_time, 0.1), 0) | ||
var/show_vote | ||
if (vote_check) | ||
show_vote = max(round(vote_check - round_time, 0.1), 0) | ||
..({"\n\ | ||
Max Time: [isnull(show_max) ? "Off" : "[show_max]m"]\n\ | ||
Empty End: [isnull(show_empty) ? "Off" : "[show_empty]m"]\n\ | ||
Next Vote: [isnull(show_vote) ? "Off" : "[show_vote]m"]\ | ||
"}) | ||
else | ||
..("Game Finished") | ||
|
||
|
||
/datum/controller/subsystem/roundend/Initialize(start_uptime) | ||
max_length = config.maximum_round_length | ||
empty_check = config.empty_round_check_interval | ||
vote_check = config.vote_autotransfer_initial | ||
|
||
|
||
/datum/controller/subsystem/roundend/fire(resumed, no_mc_tick) | ||
var/time = round_duration_in_ticks / 600 | ||
if (max_length && time > max_length) | ||
if (evacuation_controller.is_idle()) | ||
init_autotransfer() | ||
return | ||
if (empty_check && time > empty_check) | ||
empty_check += config.empty_round_check_interval | ||
if (!length(GLOB.living_players)) | ||
SSticker.forced_end = TRUE | ||
return | ||
if (vote_check) | ||
vote_cache = round(max(vote_check - time, 0), 0.1) | ||
if (vote_cache > 0) | ||
return | ||
SSvote.initiate_vote(/datum/vote/transfer, null, TRUE) | ||
if (config.vote_autotransfer_interval) | ||
vote_check += config.vote_autotransfer_interval | ||
else | ||
vote_check = 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters