-
Notifications
You must be signed in to change notification settings - Fork 194
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Persist the last cycle tick in emigration
for a more consistent gameplay experience
#1330
base: master
Are you sure you want to change the base?
Persist the last cycle tick in emigration
for a more consistent gameplay experience
#1330
Conversation
fc1e7ce
to
32abad9
Compare
I fixed the formatting of the "Fixes" line in the description so GitHub can understand it and link the issue properly |
changelog.txt
Outdated
@@ -41,6 +41,7 @@ Template for new versions: | |||
|
|||
## Misc Improvements | |||
- `control-panel`: Add realistic-melting tweak to control-panel registry | |||
- `emigration`: last cycle tick is persisted so that save-and-reload no longer resets the emigration timeout, making gameplay more consistent |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd categorize this as a "Fix" since it prevents the undesired behavior of artificially increased rate of emigration
emigration.lua
Outdated
@@ -191,12 +192,20 @@ function checkmigrationnow() | |||
else | |||
for _, civ_id in pairs(merchant_civ_ids) do checkForDeserters('merchant', civ_id) end | |||
end | |||
|
|||
last_cycle_tick = dfhack.world.ReadCurrentTick() + 403200 * dfhack.world.ReadCurrentYear() |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
please add named constants instead of magic numbers. example:
scripts/agitation-rebalance.lua
Lines 335 to 337 in 80e1a98
local TICKS_PER_DAY = 1200 | |
local TICKS_PER_MONTH = 28 * TICKS_PER_DAY | |
local TICKS_PER_SEASON = 3 * TICKS_PER_MONTH |
note to self: we really really need to fix up and merge DFHack/dfhack#3907
emigration.lua
Outdated
@@ -210,8 +219,9 @@ dfhack.onStateChange[GLOBAL_KEY] = function(sc) | |||
return | |||
end | |||
|
|||
local persisted_data = dfhack.persistent.getSiteData(GLOBAL_KEY, {enabled=false}) | |||
local persisted_data = dfhack.persistent.getSiteData(GLOBAL_KEY, {enabled=false,last_cycle_tick=0}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this will leave last_cycle_tick
as nil
in current games with saved state. It would be better to normalize the value here so you can remove the check for nil
in event_loop
.
I suggest a pattern like this:
state = get_default_state()
utils.assign(state, dfhack.persistent.getSiteData(GLOBAL_KEY, state))
emigration.lua
Outdated
enabled = enabled or false | ||
last_cycle_tick = last_cycle_tick or 0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
now that we have more than just enabled
here, I suggest making this clearer by putting the state in a table.
local function get_default_state()
return {enabled=false, last_cycle_tick=0}
end
state = state or get_default_state()
2dd967a
to
db847ce
Compare
…consistent with respect to save-and-reloads
db847ce
to
536edcf
Compare
Tested and works |
Fixes: DFHack/dfhack#5011