Three gdscript-refactor agents in parallel; Opus integrated and verified
the sleep+wake cycle via MCP runtime.
Bed entity (Agent A, scenes/entities/bed.{gd,tscn} + world.gd, ~280 lines):
- class Bed extends Node2D — bottom-anchored 3/4 perspective like Wall/Workbench
- BuildJob interface (is_buildable / on_build_tick / _complete) — same pattern
as Wall / Crate / Workbench. blocks_pathing_when_complete=false (walkable).
- Quality-tinted sheet colours by Item.Quality tier (drab grey → blue →
gold-brown → regal pink); white pillow + dark frame constant across tiers.
- claim(pawn) / release() / is_available() — atomic occupancy; claim re-checks
is_available() inside to avoid race conditions during pawn walk-to-bed.
- World.beds registry + register_bed / unregister_bed (mirrors workbench pattern)
Sleep need + SleepProvider + KIND_SLEEP toil (Agent B, ~220 lines):
- Pawn.sleep: float 0..100. SLEEP_DECAY_PER_TICK=0.015 (~6667 ticks / 5.5 min
at 1× / 1 min at Ultra to fully tire). Slower than hunger.
- is_tired() at <30; is_exhausted() at <5 (Phase 9 status interrupt hook)
- SleepProvider priority=8 (highest — sleep beats eat=7 when both urgent)
- Toil.KIND_SLEEP + Toil.sleep_in_bed(NodePath) factory
- JobRunner._tick_sleep: first-tick bed claim (with race-loss → floor fallback),
per-tick recovery (bed=0.5/tick, floor=0.25/tick), wake-when-full at ≥99,
emergency ceiling SLEEP_TICKS_MAX=2000 prevents stuck-asleep loops
Thoughts + mood + Sulking (Agent C, ~290 lines):
- scenes/ai/thought.gd: class Thought (RefCounted) with id, modifier, lifetime
(PERSISTENT/EVENT), stacks, ticks_remaining; MAX_STACKS_PER_THOUGHT=5 locked
- scenes/ai/thought_catalog.gd: ThoughtCatalog with 5 Phase 8 thoughts —
hungry(-6, PERSISTENT) / tired(-4, PERSISTENT) / well_rested(+5, EVENT 1200t)
/ slept_on_floor(-5, EVENT 1200t) / ate_meal(+3, EVENT 800t, stacks up to 3)
- Pawn extended: thoughts: Array, mood: float (base 50), sulking: bool,
_sulk_low_ticks. add_thought (stack-merge by id), remove_thought_by_id,
has_thought, is_sulking. _process_thoughts in sim_tick decays EVENT thoughts,
syncs PERSISTENT thoughts to state (hungry/tired), recomputes mood, checks
sulking transition: mood < 25 for MOOD_SULK_SUSTAIN_TICKS=600 ticks → SULKING;
mood >= 35 → recover.
- Decision Layer 1 extended: pawn.is_sulking() → return null (sulking pawns
refuse all work; Phase 17 may add Wandering variant)
- EventBus.pawn_mood_changed signal
- JobRunner._tick_eat: fires ate_meal thought when consuming MEAL/BREAD
- JobRunner._tick_sleep: fires well_rested or slept_on_floor on wake
Opus integration:
- world.tscn: SleepProvider node added (9 providers total)
- world.gd registers in priority order:
sleep=8 > eat=7 > construction=6 > chop=5 ≈ plant=5 > mine=4 ≈ crafting=4 > haul=3 > rest=0
- Demo seed: 3 beds along cabin's north row at (45/47/49, 24), pre-built
so pawns can sleep immediately when tired
Acceptance — MCP-verified end-to-end:
- Pre-tired Bram at sleep=25 → SleepProvider issued 'Sleep at (45, 24)' job
- Bram walked to bed, claimed, slept 200 ticks, woke at sleep≥99
- Bed released back to available; well_rested thought fired (+5 mood)
- After ~12000 ticks total: all 3 pawns slept (sleep recovered to 67/86/51),
thoughts active (1-2 per pawn — well_rested + ate_meal from Phase 7 cooked
bread consumption), beds all back to available, no claim leaks
- Mood compute working (base 50 + thought modifiers); sulking transition
ready but didn't fire — would need misery accumulation (Phase 9 Cold +
Bleeding statuses) to drive mood < 25 sustained
Phase 8 followups for later phases:
- Sulking returns null (stand still); Phase 17 may add Wandering soft-break
that issues a random-walk job
- Bed ownership (_owner_pawn) reserved but not used in Phase 8 — Phase 17
may add 'bedrooms' where each pawn claims a specific bed
- _tick_sleep's using_bed local-var reset pattern is correct but fragile;
cleanup pass when status interrupts (Phase 9) wire into the eat/sleep
cancellation path
Delegation report this phase:
- Agent A: Bed entity (buildable, quality-tinted, claim/release)
- Agent B: Pawn.sleep + SleepProvider + KIND_SLEEP toil + JobRunner._tick_sleep
- Agent C: Thought + ThoughtCatalog + Pawn mood/sulking + Decision Layer 1
+ JobRunner thought hooks in _tick_eat / _tick_sleep
- Opus: scene wiring + 3 beds in demo seed + MCP runtime verification
~75% of Phase 8 GDScript was subagent-authored.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
178 lines
6.4 KiB
GDScript
178 lines
6.4 KiB
GDScript
class_name Toil extends RefCounted
|
|
## A single atomic step within a Job — walk, wait, idle, etc.
|
|
##
|
|
## Save/load contract: every value in `data` MUST be JSON-safe.
|
|
## Vector2i is NOT JSON-safe in Godot 4 — tile coordinates are stored as
|
|
## "to_x"/"to_y" integer keys, never as Vector2i. get_walk_destination()
|
|
## reconstructs Vector2i on demand.
|
|
##
|
|
## Round-trip invariant:
|
|
## var t2 := Toil.from_dict(t.to_dict())
|
|
## assert(t2.kind == t.kind and t2.done == t.done and t2.data == t.data)
|
|
|
|
const KIND_WALK: StringName = &"walk"
|
|
const KIND_WAIT: StringName = &"wait"
|
|
const KIND_IDLE: StringName = &"idle"
|
|
const KIND_INTERACT: StringName = &"interact" # Timed action on a target entity (Tree, Rock, …)
|
|
const KIND_PICKUP: StringName = &"pickup" # Transfer Item at pawn.tile into pawn.carried_item
|
|
const KIND_DEPOSIT: StringName = &"deposit" # Place pawn.carried_item at pawn.tile
|
|
const KIND_BUILD: StringName = &"build" # Timed construction on a Wall / Floor / Door entity
|
|
const KIND_CRAFT: StringName = &"craft" # Timed crafting at a Workbench driven by a Bill
|
|
const KIND_EAT: StringName = &"eat" # Consume pawn.carried_item and restore hunger
|
|
const KIND_SLEEP: StringName = &"sleep" # Sleep in a Bed (or on the floor) until pawn.sleep is full
|
|
|
|
var kind: StringName = KIND_IDLE
|
|
## Toil-specific params — all values must be int, float, bool, String, Dict, or Array.
|
|
var data: Dictionary = {}
|
|
## Set by JobRunner when this toil is complete.
|
|
var done: bool = false
|
|
|
|
|
|
# ── factories ────────────────────────────────────────────────────────────────
|
|
|
|
## Walk to the given tile. Stores coords as separate ints for JSON safety.
|
|
static func walk_to(tile: Vector2i) -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_WALK
|
|
t.data = {
|
|
"to_x": tile.x,
|
|
"to_y": tile.y,
|
|
"started": false,
|
|
}
|
|
return t
|
|
|
|
|
|
## Pause for `n` sim ticks.
|
|
static func wait_ticks(n: int) -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_WAIT
|
|
t.data = {"ticks_remaining": n}
|
|
return t
|
|
|
|
|
|
## Stand idle — never completes on its own; JobRunner must cancel or replace.
|
|
static func idle() -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_IDLE
|
|
t.data = {}
|
|
return t
|
|
|
|
|
|
## Timed action on a scene-node target (Tree, Rock, …).
|
|
## `target_node_path` is the NodePath of the entity; stored as String for JSON safety.
|
|
## `tick_method` is the method to call each sim tick (e.g. "on_chop_tick").
|
|
## JobRunner resolves the node at first-tick and calls tick_method every sim tick
|
|
## until the target is no longer choppable/mineable (method source sets done via
|
|
## is_choppable() / is_mineable() returning false).
|
|
static func interact(target_node_path: NodePath, tick_method: StringName) -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_INTERACT
|
|
t.data = {
|
|
"target": String(target_node_path),
|
|
"tick_method": String(tick_method),
|
|
"started": false,
|
|
}
|
|
return t
|
|
|
|
|
|
## Pick up an Item at pawn.tile into pawn.carried_item. Single-tick action.
|
|
## data is empty — the item is located at pawn.tile at execution time.
|
|
static func pickup() -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_PICKUP
|
|
t.data = {}
|
|
return t
|
|
|
|
|
|
## Construction action on a scene-node target (Wall, Floor, Door, …).
|
|
## `target_node_path` is the NodePath of the entity; stored as String for JSON safety.
|
|
## JobRunner resolves the node at first-tick and calls on_build_tick() every sim tick
|
|
## until is_buildable() returns false (construction complete or site cancelled/removed).
|
|
static func build_at(target_node_path: NodePath) -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_BUILD
|
|
t.data = {
|
|
"target": String(target_node_path),
|
|
"started": false,
|
|
}
|
|
return t
|
|
|
|
|
|
## Place pawn.carried_item at pawn.tile. Single-tick action.
|
|
## data is empty — the item comes from pawn.carried_item at execution time.
|
|
static func deposit() -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_DEPOSIT
|
|
t.data = {}
|
|
return t
|
|
|
|
|
|
## Consume pawn.carried_item and restore hunger. Single-tick action.
|
|
## data is empty — the item comes from pawn.carried_item at execution time.
|
|
static func eat() -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_EAT
|
|
t.data = {}
|
|
return t
|
|
|
|
|
|
## Sleep in the given Bed until pawn.sleep is full.
|
|
## `bed_path` is the NodePath of the Bed entity, stored as String for JSON safety.
|
|
## An empty string means "sleep on the floor" — no bed is claimed.
|
|
##
|
|
## data keys:
|
|
## "bed" — String(bed_path); empty means floor sleep.
|
|
## "started" — bool; false on first tick, true after claim resolved.
|
|
## "ticks_slept" — int; incremented each tick for audit logging + emergency wake.
|
|
static func sleep_in_bed(bed_path: NodePath) -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_SLEEP
|
|
t.data = {
|
|
"bed": String(bed_path),
|
|
"started": false,
|
|
"ticks_slept": 0,
|
|
}
|
|
return t
|
|
|
|
|
|
## Timed crafting action at a Workbench.
|
|
## `workbench_path` is the NodePath of the Workbench entity (stored as String for JSON safety).
|
|
## `bill_index` is the index into workbench.bills that this toil should run.
|
|
## JobRunner resolves the workbench and bill on the first tick, validates pawn position and
|
|
## carried ingredient, then advances workbench.current_work_progress each tick until
|
|
## bill.recipe.work_ticks is reached — at which point the ingredient is consumed, an output
|
|
## Item is spawned with a quality roll, and bill.record_completion() is called.
|
|
static func craft_at(workbench_path: NodePath, bill_index: int) -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = KIND_CRAFT
|
|
t.data = {
|
|
"workbench": String(workbench_path),
|
|
"bill_index": bill_index,
|
|
"started": false,
|
|
}
|
|
return t
|
|
|
|
|
|
# ── save / load ──────────────────────────────────────────────────────────────
|
|
|
|
func to_dict() -> Dictionary:
|
|
return {
|
|
"kind": str(kind),
|
|
"data": data.duplicate(true),
|
|
"done": done,
|
|
}
|
|
|
|
|
|
static func from_dict(d: Dictionary) -> Toil:
|
|
var t := Toil.new()
|
|
t.kind = StringName(d.get("kind", str(KIND_IDLE)))
|
|
t.data = (d.get("data", {}) as Dictionary).duplicate(true)
|
|
t.done = d.get("done", false)
|
|
return t
|
|
|
|
|
|
# ── convenience ──────────────────────────────────────────────────────────────
|
|
|
|
## Rebuild Vector2i from the JSON-safe int fields. Only valid for KIND_WALK.
|
|
func get_walk_destination() -> Vector2i:
|
|
return Vector2i(data.get("to_x", 0), data.get("to_y", 0))
|