feat: added intro sequence, fixed norman's sprite, placed him in various places
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/pr/woodpecker Pipeline failed

This commit is contained in:
Zoltan Timar
2026-03-12 18:10:50 +01:00
parent c897cdcbd5
commit b349ded281
14 changed files with 211 additions and 80 deletions

View File

@@ -4,12 +4,25 @@ local STATE_TEXT = "text"
local STATE_DAY = "day"
local STATE_CHOICE = "choice"
local DEFAULT_TEXT = [[
Misterious man appears
during your sleep.
He says nothing.
He doesn't need to.
He says nothing.
]]
local state = STATE_TEXT
local text_y = Config.screen.height
local text_speed = 0.4
local day_timer = 0
local day_display_frames = 120
local selected_choice = 1
local text = DEFAULT_TEXT
local day_text_override = nil
local on_text_complete = nil
local choices = {
{
@@ -20,16 +33,6 @@ local choices = {
},
}
local text = [[
Misterious man appears
during your sleep.
He says nothing.
He doesn't need to.
He says nothing.
]]
--- Sets the scrolling text content.
--- @within MysteriousManWindow
--- @param new_text string The text to display.
@@ -39,22 +42,49 @@ end
--- Starts the mysterious man window.
--- @within MysteriousManWindow
function MysteriousManWindow.start()
--- @param[opt] options table Optional window configuration.</br>
--- Fields: </br>
--- * text (string) Override for the scrolling text.<br/>
--- * day_text (string) Override for the centered day label.<br/>
--- * on_text_complete (function) Callback fired once when the text phase ends.<br/>
function MysteriousManWindow.start(options)
options = options or {}
state = STATE_TEXT
text_y = Config.screen.height
day_timer = 0
selected_choice = 1
text = options.text or DEFAULT_TEXT
day_text_override = options.day_text
on_text_complete = options.on_text_complete
Meter.hide()
Window.set_current("mysterious_man")
end
local function go_to_day_state()
if on_text_complete then
on_text_complete()
on_text_complete = nil
end
if Window.get_current_id() ~= "mysterious_man" then
return
end
state = STATE_DAY
day_timer = day_display_frames
end
local function wake_up()
Context.home_norman_visible = false
Util.go_to_screen_by_id("home")
MinigameButtonMashWindow.start("game", {
focus_center_x = Config.screen.width / 2,
focus_center_y = Config.screen.height / 2,
focus_center_x = (Config.screen.width / 2) - 22,
focus_center_y = (Config.screen.height / 2) - 18,
focus_initial_radius = 0,
target_points = 100,
instruction_text = "Wake up Norman!",
show_progress_text = false,
on_win = function()
Audio.music_play_wakingup()
Context.home_norman_visible = true
Meter.show()
Window.set_current("game")
end,
@@ -79,13 +109,11 @@ function MysteriousManWindow.update()
end
if text_y < -lines * 8 then
state = STATE_DAY
day_timer = day_display_frames
go_to_day_state()
end
if Input.select() then
state = STATE_DAY
day_timer = day_display_frames
go_to_day_state()
end
elseif state == STATE_DAY then
day_timer = day_timer - 1
@@ -117,7 +145,7 @@ function MysteriousManWindow.draw()
local x = (Config.screen.width - 132) / 2
Print.text(text, x, text_y, Config.colors.light_grey)
elseif state == STATE_DAY then
local day_text = "Day " .. Context.day_count
local day_text = day_text_override or ("Day " .. Context.day_count)
Print.text_center(
day_text,
Config.screen.width / 2,