From cc43b471bb61d4f0f94332f163e37552724af708 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Wed, 29 Jan 2025 11:53:08 -0600 Subject: [PATCH 01/16] Add save reminder to Adv mode --- internal/notify/notifications.lua | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index a527b43549..35b3424e49 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -534,6 +534,12 @@ NOTIFICATIONS_BY_IDX = { return "Last save: ".. (dfhack.formatInt(minsSinceSave)) ..' mins ago' end end, + adv_fn=function () + local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 + if minsSinceSave >= 15 then + return "Last save: ".. (dfhack.formatInt(minsSinceSave)) ..' mins ago' + end + end, on_click=function() local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now? ' .. From e4967df2756ec58d8ebea3d6bc976f462cc108ca Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 02:29:46 -0600 Subject: [PATCH 02/16] Improved the Save Reminder --- internal/notify/notifications.lua | 50 +++++++++++++++++-------------- 1 file changed, 27 insertions(+), 23 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 35b3424e49..60f97e786f 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -303,8 +303,35 @@ local function get_bar(get_fn, get_max_fn, text, color) return nil end +local function getSaveAlert() + local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 + local pen = COLOR_LIGHTCYAN + local savetime = 15 + if minsSinceSave >= 1*savetime then + if minsSinceSave >= 2*savetime then pen = COLOR_YELLOW end + if minsSinceSave >= 4*savetime then pen = COLOR_LIGHTRED end + return { + {text='Last save: ', pen=COLOR_WHITE}, + {text=(dfhack.formatInt(minsSinceSave)) ..' mins ago', pen=pen}, + } + end +end + -- the order of this list controls the order the notifications will appear in the overlay NOTIFICATIONS_BY_IDX = { + {-- The save reminder should always be at the top, since it's important. + name='save-reminder', + desc='Shows a reminder if it has been more than 15 minutes since your last save.', + default=true, + dwarf_fn=curry(getSaveAlert), + adv_fn=curry(getSaveAlert), + on_click=function() + local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 + local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now? ' .. + '(Note: You can also close this reminder and save manually)' + dlg.showYesNoPrompt('Save now?', message, nil, function() dfhack.run_script('quicksave') end) + end, + }, { name='stuck_squad', desc='Notifies when a squad is stuck on the world map.', @@ -524,29 +551,6 @@ NOTIFICATIONS_BY_IDX = { adv_fn=curry(get_bar, get_blood, get_max_blood, "Blood", COLOR_RED), on_click=nil, }, - { - name='save-reminder', - desc='Shows a reminder if it has been more than 15 minutes since your last save.', - default=true, - dwarf_fn=function () - local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 - if minsSinceSave >= 15 then - return "Last save: ".. (dfhack.formatInt(minsSinceSave)) ..' mins ago' - end - end, - adv_fn=function () - local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 - if minsSinceSave >= 15 then - return "Last save: ".. (dfhack.formatInt(minsSinceSave)) ..' mins ago' - end - end, - on_click=function() - local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 - local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now? ' .. - '(Note: You can also close this reminder and save manually)' - dlg.showYesNoPrompt('Save now?', message, nil, function() dfhack.run_script('quicksave') end) - end, - }, } NOTIFICATIONS_BY_NAME = {} From df4553a8459c74c02a73d80a6b11d19c7e672021 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 02:38:05 -0600 Subject: [PATCH 03/16] Update changelog.txt --- changelog.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/changelog.txt b/changelog.txt index 44bb9711e4..0b25032330 100644 --- a/changelog.txt +++ b/changelog.txt @@ -19,6 +19,7 @@ Template for new versions: ## Fixes ## Misc Improvements +- `gui/notify`: save reminder now appears in adventure mode and also changes color to yellow at 30 minutes and to orange at 60 minutes ## Removed From 90f918d6c4cae30304f59bf27c852f8675de2c25 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 02:39:10 -0600 Subject: [PATCH 04/16] Update changelog.txt --- changelog.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog.txt b/changelog.txt index 16e0281d40..6c33732ae2 100644 --- a/changelog.txt +++ b/changelog.txt @@ -19,7 +19,6 @@ Template for new versions: ## Fixes ## Misc Improvements -- `gui/notify`: save reminder now appears in adventure mode and also changes color to yellow at 30 minutes and to orange at 60 minutes ## Removed @@ -40,6 +39,7 @@ Template for new versions: ## Misc Improvements - `hide-tutorials`: if enabled, also hide tutorial popups for adventure mode - `hide-tutorials`: new ``reset`` command that will re-enable popups in the current game +- `gui/notify`: save reminder now appears in adventure mode and also changes color to yellow at 30 minutes and to orange at 60 minutes ## Removed From ae2d61b792d1c5b1aa08785f2912e52a3f19e24d Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 14:31:08 -0600 Subject: [PATCH 05/16] Update notifications.lua use `:lua reqscript('internal/notify/notifications').save_time_threshold_mins=X` to set the threshold to X mins --- internal/notify/notifications.lua | 26 +++++++++++++++----------- 1 file changed, 15 insertions(+), 11 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 60f97e786f..5e2325025d 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -14,6 +14,8 @@ local buildings = df.global.world.buildings local caravans = df.global.plotinfo.caravans local units = df.global.world.units +save_time_threshold_mins = save_time_threshold_mins or 15 + function for_iter(vec, match_fn, action_fn, reverse) local offset = type(vec) == 'table' and 1 or 0 local idx1 = reverse and #vec-1+offset or offset @@ -303,18 +305,20 @@ local function get_bar(get_fn, get_max_fn, text, color) return nil end -local function getSaveAlert() +local function get_save_alert() local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 local pen = COLOR_LIGHTCYAN - local savetime = 15 - if minsSinceSave >= 1*savetime then - if minsSinceSave >= 2*savetime then pen = COLOR_YELLOW end - if minsSinceSave >= 4*savetime then pen = COLOR_LIGHTRED end - return { - {text='Last save: ', pen=COLOR_WHITE}, - {text=(dfhack.formatInt(minsSinceSave)) ..' mins ago', pen=pen}, - } + if minsSinceSave < save_time_threshold_mins then return end + if minsSinceSave >= 4*save_time_threshold_mins then + pen = COLOR_LIGHTRED + else if minsSinceSave >= 2*save_time_threshold_mins then + pen = COLOR_YELLOW + end end + return { + {text='Last save: ', pen=COLOR_WHITE}, + {text=(dfhack.formatInt(minsSinceSave)) ..' mins ago', pen=pen}, + } end -- the order of this list controls the order the notifications will appear in the overlay @@ -323,9 +327,9 @@ NOTIFICATIONS_BY_IDX = { name='save-reminder', desc='Shows a reminder if it has been more than 15 minutes since your last save.', default=true, - dwarf_fn=curry(getSaveAlert), - adv_fn=curry(getSaveAlert), + fn=get_save_alert, on_click=function() + if not dfhack.world.isFortressMode() then return end local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now? ' .. '(Note: You can also close this reminder and save manually)' From 5d63529a352ef029ae74b038992bd684c87bf51a Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 14:41:44 -0600 Subject: [PATCH 06/16] Add explanation for lack of quicksave in adventure, instead of a silent nothing --- internal/notify/notifications.lua | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index db2a4c7ba5..2b70ea803b 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -329,11 +329,16 @@ NOTIFICATIONS_BY_IDX = { default=true, fn=get_save_alert, on_click=function() - if not dfhack.world.isFortressMode() then return end local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now? ' .. '(Note: You can also close this reminder and save manually)' - dlg.showYesNoPrompt('Save now?', message, nil, function() dfhack.run_script('quicksave') end) + dlg.showYesNoPrompt('Save now?', message, nil, function() + if not dfhack.world.isFortressMode() then + dfhack.gui.showPopupAnnouncement("Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.") + return + end + dfhack.run_script('quicksave') + end) end, }, { From 7d76956303ecccce588bbccbb4665256f2c4c4d4 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 15:43:36 -0600 Subject: [PATCH 07/16] clean up --- internal/notify/notifications.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 2b70ea803b..2baeb91b2c 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -306,18 +306,18 @@ local function get_bar(get_fn, get_max_fn, text, color) end local function get_save_alert() - local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 + local mins_since_save = dfhack.persistent.getUnsavedSeconds()//60 local pen = COLOR_LIGHTCYAN - if minsSinceSave < save_time_threshold_mins then return end - if minsSinceSave >= 4*save_time_threshold_mins then + if mins_since_save < save_time_threshold_mins then return end + if mins_since_save >= 4*save_time_threshold_mins then pen = COLOR_LIGHTRED - else if minsSinceSave >= 2*save_time_threshold_mins then + else if mins_since_save >= 2*save_time_threshold_mins then pen = COLOR_YELLOW end end return { {text='Last save: ', pen=COLOR_WHITE}, - {text=(dfhack.formatInt(minsSinceSave)) ..' mins ago', pen=pen}, + {text=dfhack.formatInt(mins_since_save) ..' mins ago', pen=pen}, } end From 497d8c72b943856132e341d7743c4ee36aa7a01d Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 15:45:12 -0600 Subject: [PATCH 08/16] Update notifications.lua --- internal/notify/notifications.lua | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 2baeb91b2c..d5812bc344 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -321,6 +321,19 @@ local function get_save_alert() } end +local function save_popup() + local mins_since_save = dfhack.persistent.getUnsavedSeconds()//60 + local message = 'It has been ' .. dfhack.formatInt(mins_since_save) .. ' minutes since your last save. \n\nWould you like to save now? ' .. + '(Note: You can also close this reminder and save manually)' + local adv_warn_msg = "Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.\n\n".. + 'Close this popup to open the options menu and select "Save and Continue Playing"' + if dfhack.world.isFortressMode() then + dlg.showYesNoPrompt('Save now?', message, nil, function () dfhack.run_script('quicksave') end) + else + dlg.showMessage("Unable to use quicksave", adv_warn_msg, nil, function () gui.simulateInput(gui.getDFViewscreen(), 'OPTIONS') end) + end +end + -- the order of this list controls the order the notifications will appear in the overlay NOTIFICATIONS_BY_IDX = { {-- The save reminder should always be at the top, since it's important. @@ -328,18 +341,7 @@ NOTIFICATIONS_BY_IDX = { desc='Shows a reminder if it has been more than 15 minutes since your last save.', default=true, fn=get_save_alert, - on_click=function() - local minsSinceSave = dfhack.persistent.getUnsavedSeconds()//60 - local message = 'It has been ' .. dfhack.formatInt(minsSinceSave) .. ' minutes since your last save. \n\nWould you like to save now? ' .. - '(Note: You can also close this reminder and save manually)' - dlg.showYesNoPrompt('Save now?', message, nil, function() - if not dfhack.world.isFortressMode() then - dfhack.gui.showPopupAnnouncement("Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.") - return - end - dfhack.run_script('quicksave') - end) - end, + on_click=save_popup }, { name='stuck_squad', From 76b1a04e5d110af0d29d2579ab6d32e8b8926516 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 15:53:04 -0600 Subject: [PATCH 09/16] Explain the global var --- internal/notify/notifications.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index d5812bc344..e7dad7a848 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -14,6 +14,8 @@ local buildings = df.global.world.buildings local caravans = df.global.plotinfo.caravans local units = df.global.world.units +-- FIXME Add a proper API and UI for notification configuration +-- this is global so one can use `:lua reqscript('internal/notify/notifications').save_time_threshold_mins=X` to change the threshold to X mins. save_time_threshold_mins = save_time_threshold_mins or 15 function for_iter(vec, match_fn, action_fn, reverse) From 7c4165e69911c701ce569eab9730e3fb5892a1a5 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 15:59:04 -0600 Subject: [PATCH 10/16] clean up 2 --- internal/notify/notifications.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index e7dad7a848..8e236376c8 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -328,11 +328,11 @@ local function save_popup() local message = 'It has been ' .. dfhack.formatInt(mins_since_save) .. ' minutes since your last save. \n\nWould you like to save now? ' .. '(Note: You can also close this reminder and save manually)' local adv_warn_msg = "Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.\n\n".. - 'Close this popup to open the options menu and select "Save and Continue Playing"' + 'Close this popup to open the options menu and select "Save and continue playing"' if dfhack.world.isFortressMode() then dlg.showYesNoPrompt('Save now?', message, nil, function () dfhack.run_script('quicksave') end) else - dlg.showMessage("Unable to use quicksave", adv_warn_msg, nil, function () gui.simulateInput(gui.getDFViewscreen(), 'OPTIONS') end) + dlg.showMessage("Unable to use quicksave", adv_warn_msg, COLOR_WHITE, function () gui.simulateInput(gui.getDFViewscreen(), 'OPTIONS') end) end end From 072666fed64fa0a8ba6118372e1157c9604d0694 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 17:18:15 -0600 Subject: [PATCH 11/16] Fix adv hang --- internal/notify/notifications.lua | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 8e236376c8..7ab7dd3c84 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -324,15 +324,16 @@ local function get_save_alert() end local function save_popup() - local mins_since_save = dfhack.persistent.getUnsavedSeconds()//60 - local message = 'It has been ' .. dfhack.formatInt(mins_since_save) .. ' minutes since your last save. \n\nWould you like to save now? ' .. - '(Note: You can also close this reminder and save manually)' - local adv_warn_msg = "Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.\n\n".. - 'Close this popup to open the options menu and select "Save and continue playing"' if dfhack.world.isFortressMode() then + local mins_since_save = dfhack.persistent.getUnsavedSeconds()//60 + local message = 'It has been ' .. dfhack.formatInt(mins_since_save) .. ' minutes since your last save. \n\nWould you like to save now? ' .. + '(Note: You can also close this reminder and save manually)' dlg.showYesNoPrompt('Save now?', message, nil, function () dfhack.run_script('quicksave') end) else - dlg.showMessage("Unable to use quicksave", adv_warn_msg, COLOR_WHITE, function () gui.simulateInput(gui.getDFViewscreen(), 'OPTIONS') end) + return --FIXME: HANGS DF + -- local adv_warn_msg = "Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.\n\n".. + -- 'Close this popup to open the options menu and select "Save and continue playing"' + -- dlg.showMessage("Unable to use quicksave", adv_warn_msg, COLOR_WHITE, function () gui.simulateInput(gui.getDFViewscreen(), 'OPTIONS') end) end end From 6a0d6786cd895673a44e7b6a2dbee17e3eb8da44 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Sun, 9 Feb 2025 20:00:49 -0600 Subject: [PATCH 12/16] Update notifications.lua --- internal/notify/notifications.lua | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 7ab7dd3c84..006ac0dfcf 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -313,10 +313,9 @@ local function get_save_alert() if mins_since_save < save_time_threshold_mins then return end if mins_since_save >= 4*save_time_threshold_mins then pen = COLOR_LIGHTRED - else if mins_since_save >= 2*save_time_threshold_mins then + elseif mins_since_save >= 2*save_time_threshold_mins then pen = COLOR_YELLOW end - end return { {text='Last save: ', pen=COLOR_WHITE}, {text=dfhack.formatInt(mins_since_save) ..' mins ago', pen=pen}, From b569e5d542e7be7afc2f5113863650b0c44202c6 Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Tue, 11 Feb 2025 16:26:52 -0600 Subject: [PATCH 13/16] Save reminder now works in adv mode --- internal/notify/notifications.lua | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 4f5c4da626..b6ec9722b5 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -329,10 +329,9 @@ local function save_popup() '(Note: You can also close this reminder and save manually)' dlg.showYesNoPrompt('Save now?', message, nil, function () dfhack.run_script('quicksave') end) else - return --FIXME: HANGS DF - -- local adv_warn_msg = "Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.\n\n".. - -- 'Close this popup to open the options menu and select "Save and continue playing"' - -- dlg.showMessage("Unable to use quicksave", adv_warn_msg, COLOR_WHITE, function () gui.simulateInput(gui.getDFViewscreen(), 'OPTIONS') end) + local adv_warn_msg = "Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.\n\n".. + 'Close this popup to open the options menu and select "Save and continue playing"' + dlg.showMessage("Unable to use quicksave", adv_warn_msg, COLOR_WHITE, function () gui.simulateInput(dfhack.gui.getDFViewscreen(true), 'OPTIONS') end) end end @@ -340,7 +339,7 @@ end NOTIFICATIONS_BY_IDX = { {-- The save reminder should always be at the top, since it's important. name='save-reminder', - desc='Shows a reminder if it has been more than 15 minutes since your last save.', + desc='Shows a reminder if it has been more than '.. save_time_threshold_mins ..' minute(s) since your last save.', default=true, fn=get_save_alert, on_click=save_popup From 886f8118c6d116c9f5d51d8357a22dd4bc3dd435 Mon Sep 17 00:00:00 2001 From: Myk Date: Thu, 20 Feb 2025 16:31:19 -0800 Subject: [PATCH 14/16] Apply suggestions from code review --- changelog.txt | 9 +++++---- internal/notify/notifications.lua | 16 ++++++++-------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/changelog.txt b/changelog.txt index 5b1596a977..a7dcaf9c7b 100644 --- a/changelog.txt +++ b/changelog.txt @@ -38,10 +38,11 @@ Template for new versions: - `position`: support for adv mode look cursor ## Misc Improvements -- `hide-tutorials`: if enabled, also hide tutorial popups for adventure mode -- `hide-tutorials`: new ``reset`` command that will re-enable popups in the current game -- `gui/notify`: save reminder now appears in adventure mode and also changes color to yellow at 30 minutes and to orange at 60 minutes -- `gui/notify`: moody dwarf notification turns red when they can't find workshop or items +- `hide-tutorials`: handle tutorial popups for adventure mode +- `hide-tutorials`: new ``reset`` command that will re-enable popups in the current game (in case you hid them all and now want them back) +- `gui/notify`: moody dwarf notification turns red when they can't reach workshop or items +- `gui/notify`: save reminder now appears in adventure mode +- `gui/notify`: save reminder changes color to yellow at 30 minutes and to orange at 60 minutes - `gui/confirm`: in the delete manager order confirmation dialog, show a description of which order you have selected to delete - `position`: display both adventurer and site pos simultaneously. Display map block pos+offset of selected tile. diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index b6ec9722b5..48760836d3 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -14,7 +14,7 @@ local buildings = df.global.world.buildings local caravans = df.global.plotinfo.caravans local units = df.global.world.units --- FIXME Add a proper API and UI for notification configuration +-- TODO: Add a proper API and UI for notification configuration -- this is global so one can use `:lua reqscript('internal/notify/notifications').save_time_threshold_mins=X` to change the threshold to X mins. save_time_threshold_mins = save_time_threshold_mins or 15 @@ -337,13 +337,6 @@ end -- the order of this list controls the order the notifications will appear in the overlay NOTIFICATIONS_BY_IDX = { - {-- The save reminder should always be at the top, since it's important. - name='save-reminder', - desc='Shows a reminder if it has been more than '.. save_time_threshold_mins ..' minute(s) since your last save.', - default=true, - fn=get_save_alert, - on_click=save_popup - }, { name='stuck_squad', desc='Notifies when a squad is stuck on the world map.', @@ -563,6 +556,13 @@ NOTIFICATIONS_BY_IDX = { adv_fn=curry(get_bar, get_blood, get_max_blood, "Blood", COLOR_RED), on_click=nil, }, + { + name='save-reminder', + desc='Shows a reminder if it has been more than '.. save_time_threshold_mins ..' minute(s) since your last save.', + default=true, + fn=get_save_alert, + on_click=save_popup + }, } NOTIFICATIONS_BY_NAME = {} From 39fa2f56077daf2e56c84b3e72ebd06073bda31b Mon Sep 17 00:00:00 2001 From: Squid Coder Date: Fri, 21 Feb 2025 13:43:27 -0600 Subject: [PATCH 15/16] Fix the whitespace --- internal/notify/notifications.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index 48760836d3..b4be120e30 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -562,7 +562,7 @@ NOTIFICATIONS_BY_IDX = { default=true, fn=get_save_alert, on_click=save_popup - }, + }, } NOTIFICATIONS_BY_NAME = {} From 7b91585aefdd534da2d6a64496599056d7ec0626 Mon Sep 17 00:00:00 2001 From: Myk Date: Fri, 21 Feb 2025 23:36:58 -0800 Subject: [PATCH 16/16] Apply suggestions from code review --- internal/notify/notifications.lua | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/internal/notify/notifications.lua b/internal/notify/notifications.lua index b4be120e30..8af7c2c187 100644 --- a/internal/notify/notifications.lua +++ b/internal/notify/notifications.lua @@ -323,15 +323,14 @@ local function get_save_alert() end local function save_popup() + local mins_since_save = dfhack.persistent.getUnsavedSeconds()//60 + local message = 'It has been ' .. dfhack.formatInt(mins_since_save) .. ' minutes since your last save.' if dfhack.world.isFortressMode() then - local mins_since_save = dfhack.persistent.getUnsavedSeconds()//60 - local message = 'It has been ' .. dfhack.formatInt(mins_since_save) .. ' minutes since your last save. \n\nWould you like to save now? ' .. - '(Note: You can also close this reminder and save manually)' - dlg.showYesNoPrompt('Save now?', message, nil, function () dfhack.run_script('quicksave') end) + message = message .. '\n\nWould you like to save now? (Note: You can also close this reminder and save manually)' + dlg.showYesNoPrompt('Save now?', message, nil, function() dfhack.run_script('quicksave') end) else - local adv_warn_msg = "Unfortunately, quicksave doesn't currently work in Adventure mode, so you will need to save manually.\n\n".. - 'Close this popup to open the options menu and select "Save and continue playing"' - dlg.showMessage("Unable to use quicksave", adv_warn_msg, COLOR_WHITE, function () gui.simulateInput(dfhack.gui.getDFViewscreen(true), 'OPTIONS') end) + message = message .. '\n\nClose this popup to open the options menu and select "Save and continue playing"' + dlg.showMessage('Save reminder', message, COLOR_WHITE, function() gui.simulateInput(dfhack.gui.getDFViewscreen(true), 'OPTIONS') end) end end @@ -558,10 +557,10 @@ NOTIFICATIONS_BY_IDX = { }, { name='save-reminder', - desc='Shows a reminder if it has been more than '.. save_time_threshold_mins ..' minute(s) since your last save.', + desc=('Shows a reminder if it has been more than %d minute%s since your last save.'):format(save_time_threshold_mins, save_time_threshold_mins == 1 and '' or 's'), default=true, fn=get_save_alert, - on_click=save_popup + on_click=save_popup, }, }