docs
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful

This commit is contained in:
2026-02-21 23:53:36 +01:00
parent 3b137fd48e
commit 76964f872d
28 changed files with 301 additions and 28 deletions

View File

@@ -6,11 +6,14 @@ local COMBO_BASE_BONUS = 0.02
local COMBO_MAX_BONUS = 0.16
local COMBO_TIMEOUT_FRAMES = 600
-- Internal meters for tracking game progress and player stats.
Meters.COLOR_ISM = Config.colors.red
Meters.COLOR_WPM = Config.colors.blue
Meters.COLOR_BM = Config.colors.black
Meters.COLOR_BG = Config.colors.meter_bg
--- Gets initial meter values.
-- @return table A table of initial meter values.
function Meters.get_initial()
return {
ism = METER_DEFAULT,
@@ -22,18 +25,24 @@ function Meters.get_initial()
}
end
--- Hides meters.
function Meters.hide()
if Context and Context.meters then Context.meters.hidden = true end
end
--- Shows meters.
function Meters.show()
if Context and Context.meters then Context.meters.hidden = false end
end
--- Gets max meter value.
-- @return number The maximum meter value.
function Meters.get_max()
return METER_MAX
end
--- Gets combo multiplier.
-- @return number The current combo multiplier.
function Meters.get_combo_multiplier()
if not Context or not Context.meters then return 1 end
local combo = Context.meters.combo
@@ -41,6 +50,7 @@ function Meters.get_combo_multiplier()
return 1 + math.min(COMBO_MAX_BONUS, COMBO_BASE_BONUS * (2 ^ (combo - 1)))
end
--- Updates all meters.
function Meters.update()
if not Context or not Context.game_in_progress or not Context.meters then return end
local m = Context.meters
@@ -56,6 +66,9 @@ function Meters.update()
end
end
--- Adds amount to a meter.
-- @param key string The meter key (e.g., "wpm", "ism", "bm").
-- @param amount number The amount to add.
function Meters.add(key, amount)
if not Context or not Context.meters then return end
local m = Context.meters
@@ -64,6 +77,7 @@ function Meters.add(key, amount)
end
end
--- Called on minigame completion.
function Meters.on_minigame_complete()
local m = Context.meters
local gain = math.floor(METER_GAIN_PER_CHORE * Meters.get_combo_multiplier())