Spaces:
Running
Running
File size: 7,817 Bytes
e4be2d4 | 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 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 | # Location & World Map System
## Overview
The D&D RAG system uses a **hybrid approach** combining **fixed starter locations** with **LLM-enhanced procedural generation** for endless exploration.
## β
LLM-Enhanced Location Generation (IMPLEMENTED!)
**New implementation** (`/explore` command):
### How It Works:
```python
Player: /explore
1. Python determines structure:
- Location type (weighted random based on current location)
- Safety level (safe/dangerous)
- Connections (bidirectional link to current location)
2. LLM generates flavor (ONCE per location):
Prompt includes:
- Current location context
- Recent battles (defeated enemies)
- Time of day
- NPCs present
- Weather/day
LLM Response:
NAME: Shadowfang Grotto
DESCRIPTION: A damp cavern where goblin corpses still litter the floor...
3. Location CACHED in world_map:
session.world_map["Shadowfang Grotto"] = Location(...)
4. On revisit:
- Load from cache (no regeneration!)
- LLM only narrates travel
- Can reference state changes (defeated_enemies, moved_items)
```
### Key Features:
β
**Generated ONCE** - LLM creates name + description on first `/explore`
β
**CACHED forever** - Stored in `world_map`, never regenerated
β
**Context-aware** - LLM sees game state (battles, NPCs, time, weather)
β
**Graceful fallback** - If LLM fails, falls back to template generation
β
**Unique names** - No more "Dark Cavern #3" duplicates
β
**Rich descriptions** - Atmospheric, specific to your adventure
### Code Location:
- **LLM enhancement**: `world_builder.py::generate_llm_enhanced_location()` (lines 329-434)
- **Integration**: `gm_dialogue_unified.py` `/explore` command (lines 365-416)
- **Template fallback**: `world_builder.py::generate_random_location()` (still available)
### Testing:
```bash
pytest tests/test_llm_location_generation.py # 5/5 passing β
pytest tests/test_location_generation.py # 11/11 passing β
```
## How It Works
### 1. **Fixed Starting World**
`dnd_rag_system/systems/world_builder.py::create_starting_world()`
**Pre-built locations:**
- **Town Square** (hub) β connects to everything
- **The Prancing Pony Inn** (safe, has inn)
- **Market Square** (safe, has shop)
- **Temple District** (safe, healing)
- **Adventurer's Guild Hall** (safe, has shop)
- **Town Gates** (safe, transition point)
- **Forest Path** (dangerous)
- **Mountain Road** (dangerous)
- **Dark Cave** (dangerous, undiscovered initially)
- **Old Ruins** (dangerous, undiscovered)
- **Dragon's Lair** (dangerous, undiscovered)
- **MΓΌrren** (dangerous mountain village with shop/inn)
All locations are **pre-connected** with bidirectional paths defined in the `connections` field.
### 2. **Procedural Location Generation**
`dnd_rag_system/systems/world_builder.py::generate_random_location()`
**How `/explore` works:**
1. Player types `/explore` or `/search`
2. System checks current location
3. Checks if location already has 6+ connections (max explored)
4. If space available:
- Generates new location based on current location type
- Creates procedural name (e.g., "Dark Cavern", "Ancient Ruins")
- Adds procedural description
- Creates **bidirectional connection**
- Adds to world map
**Generation Rules:**
From **TOWN/TAVERN/SHOP**:
- 40% Forest
- 40% Wilderness
- 20% Mountain
From **FOREST/WILDERNESS**:
- 30% Cave
- 20% Ruins
- 25% More Forest
- 25% More Wilderness
From **MOUNTAIN**:
- 50% Cave
- 20% Castle
- 30% Ruins
From **DUNGEON/CAVE**:
- 40% Cave
- 30% Ruins
- 30% Dungeon (deeper)
### 3. **World Map Storage**
**In GameSession (`game_state.py`):**
```python
world_map: Dict[str, Location] = {} # location_name -> Location object
```
**Location object fields:**
- `name: str` - Location name
- `location_type: LocationType` - TOWN, CAVE, FOREST, etc.
- `description: str` - Text description
- `connections: List[str]` - Connected location names
- `is_safe: bool` - Safe for resting?
- `is_discovered: bool` - Has player found it?
- `has_shop: bool` - Can buy/sell items?
- `has_inn: bool` - Can rest here?
- `resident_npcs: List[str]` - NPCs that live here
- `items: List[str]` - Items available to take
- `visit_count: int` - Times visited
- `last_visit_day: int` - Game day of last visit
### 4. **Map Commands**
**`/map`** - Show current location + discovered areas
```
πΊοΈ WORLD MAP
π Current Location: Town Square
The heart of the town, bustling with activity...
π§ You can travel to:
β
The Prancing Pony Inn (tavern)
β
Market Square (shop)
βοΈ Forest Path (forest)
β ??? (undiscovered area)
π All Discovered Locations (8):
π β
Town Square (town) [3x]
β
Market Square (shop)
βοΈ Dark Cavern (cave)
...
π‘ Use `/travel <location>` to move, `/explore` to discover new areas.
```
**`/locations`** - Simple list of discovered locations
```
πΊοΈ Discovered Locations:
- Town Square (town) (visited 3x)
- Market Square (shop)
- Dark Cavern (cave)
...
```
**`/travel <location>`** - Move to connected location
```python
# In gm_dialogue_unified.py (lines 249-262)
if lower_input.startswith('/travel '):
destination = player_input[8:].strip()
success, message = self.session.travel_to(destination)
# Returns success/failure message
```
**`/explore` or `/search`** - Generate new random location
```python
# In gm_dialogue_unified.py (lines 365-394)
new_location = generate_random_location(current_loc)
self.session.add_location(new_location)
self.session.connect_locations(current_loc.name, new_location.name)
```
### 5. **Connection Management**
**Bidirectional connections:**
```python
# When connecting locations
self.session.connect_locations("Town Square", "Forest Path")
# This updates BOTH locations:
# - Town Square.connections includes "Forest Path"
# - Forest Path.connections includes "Town Square"
```
**Max connections:** 6 per location (prevents infinite branching)
**Travel validation:**
```python
def travel_to(self, destination: str) -> Tuple[bool, str]:
# Check if destination is in current location's connections
# Check if destination exists in world_map
# If valid: update current_location, record visit, return description
```
### 6. **Discovery System**
**Locations have `is_discovered` flag:**
- Fixed locations start as `discovered=True` (except caves/dungeons)
- Generated locations start as `discovered=False`
- Becomes discovered when:
- Player travels there
- Location is mentioned in narrative
- Player uses `/explore` to create it
**In map display:**
- Discovered: Shows full name and type
- Undiscovered: Shows "β ??? (undiscovered area)"
### 7. **Key Files**
**Core Implementation:**
- `dnd_rag_system/systems/world_builder.py` - Location generation
- `dnd_rag_system/systems/game_state.py` - Location storage, travel logic
- `dnd_rag_system/systems/gm_dialogue_unified.py` - Map commands (lines 249-394)
**Location Types (enum):**
```python
class LocationType(Enum):
TOWN = "town"
TAVERN = "tavern"
SHOP = "shop"
TEMPLE = "temple"
GUILD_HALL = "guild_hall"
FOREST = "forest"
MOUNTAIN = "mountain"
CAVE = "cave"
RUINS = "ruins"
CASTLE = "castle"
DUNGEON = "dungeon"
WILDERNESS = "wilderness"
```
## Summary
**Locations are:**
- β
**Fixed** for the starting world (12 hand-crafted locations)
- β
**Procedurally generated** via `/explore` command (unlimited)
- β
**Fully connected** via bidirectional graph
- β
**Stored in world_map** dictionary in GameSession
- β
**Tracked** with visit counts, discovery status, connections
- β
**Displayed** via `/map` and `/locations` commands
- β
**Navigable** via `/travel <location>` command
**The mapping is dynamic and grows as players explore!** πΊοΈ
|