1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
|
package world
import (
"fmt"
"os"
"path/filepath"
"strings"
"sync"
"gopkg.in/yaml.v3"
"thehouseoficarus/internal/behavior"
)
type World struct {
dataDir string
mu sync.Mutex
roomPathIndex map[int]string
groundItems map[int][]*groundEntry
seeded map[int]bool
objStates map[string]*ObjState
objMoves []ObjMove
hazardMu sync.Mutex
hazardPathIndex map[string]string
hazardDefs map[string]*HazardDef
}
func New(dataDir string) *World {
return &World{
dataDir: dataDir,
roomPathIndex: behavior.BuildRoomIndex(filepath.Join(dataDir, "rooms")),
groundItems: make(map[int][]*groundEntry),
seeded: make(map[int]bool),
objStates: make(map[string]*ObjState),
hazardDefs: make(map[string]*HazardDef),
}
}
func (w *World) LoadRoom(id int) (*Room, error) {
w.mu.Lock()
path, ok := w.roomPathIndex[id]
w.mu.Unlock()
if !ok {
return nil, fmt.Errorf("read room %d: no such room", id)
}
data, err := os.ReadFile(path)
if err != nil {
return nil, fmt.Errorf("read room %d: %w", id, err)
}
var room Room
if err := yaml.Unmarshal(data, &room); err != nil {
return nil, fmt.Errorf("parse room %d: %w", id, err)
}
room.ID = id
if room.Exits == nil {
room.Exits = make(map[ExitDir]ExitDef)
}
if room.ItemSpawns == nil {
room.ItemSpawns = make([]SpawnDef, 0)
}
if room.Mobs == nil {
room.Mobs = make([]RoomMob, 0)
}
return &room, nil
}
func (w *World) ResolveExit(input string) ExitDir {
if dir, ok := ExitAliases[strings.ToLower(input)]; ok {
return dir
}
canon := ExitDir(strings.ToLower(input))
switch canon {
case North, South, East, West, Northeast, Northwest, Southeast, Southwest, Up, Down:
return canon
}
return ""
}
func (w *World) SeedGroundItems(roomID int) {
w.mu.Lock()
if w.seeded[roomID] {
w.mu.Unlock()
return
}
w.seeded[roomID] = true
w.mu.Unlock()
room, err := w.LoadRoom(roomID)
if err != nil {
return
}
w.mu.Lock()
defer w.mu.Unlock()
for _, s := range room.ItemSpawns {
merged := false
for _, e := range w.groundItems[roomID] {
if e.quantity > 0 && strings.EqualFold(e.itemID, s.ID) &&
(e.reserveTimer <= 0 || e.reservedFor == "") &&
e.despawnTimer <= 0 {
e.quantity += s.Quantity
e.respawnQty += s.Quantity
e.isSpawn = true
e.respawnDelay = int(s.RespawnTicks)
merged = true
break
}
}
if !merged {
e := &groundEntry{
itemID: s.ID,
quantity: s.Quantity,
isSpawn: true,
respawnDelay: int(s.RespawnTicks),
respawnQty: s.Quantity,
}
w.groundItems[roomID] = append(w.groundItems[roomID], e)
}
}
}
func (w *World) RoomIndex() map[int]bool {
w.mu.Lock()
defer w.mu.Unlock()
ids := make(map[int]bool, len(w.roomPathIndex))
for id := range w.roomPathIndex {
ids[id] = true
}
return ids
}
func (w *World) RebuildRoomIndex(dataDir string) {
w.mu.Lock()
defer w.mu.Unlock()
w.roomPathIndex = behavior.BuildRoomIndex(filepath.Join(dataDir, "rooms"))
}
func (w *World) AddRoomPath(id int, path string) {
w.mu.Lock()
defer w.mu.Unlock()
w.roomPathIndex[id] = path
}
func (w *World) GetRoomPath(id int) (string, bool) {
w.mu.Lock()
defer w.mu.Unlock()
path, ok := w.roomPathIndex[id]
return path, ok
}
func (w *World) ClearHazardCache() {
w.hazardMu.Lock()
defer w.hazardMu.Unlock()
w.hazardPathIndex = nil
w.hazardDefs = make(map[string]*HazardDef)
}
func (w *World) Tick() {
w.mu.Lock()
defer w.mu.Unlock()
w.tickGroundItems()
w.tickObjStatesLocked()
}
func (w *World) ClearRoomState(roomID int) {
w.mu.Lock()
defer w.mu.Unlock()
delete(w.groundItems, roomID)
delete(w.seeded, roomID)
prefix := fmt.Sprintf("%d:", roomID)
for k := range w.objStates {
if strings.HasPrefix(k, prefix) {
delete(w.objStates, k)
}
}
}
|