formatting
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
# dorf
|
# Dorf
|
||||||
|
|
||||||
This project is my way of learning Rust by recreating key aspects of Dwarf Fortress in Bevy. The aim is to build a feature-rich, procedurally generated simulation game, combining colony management, world-building, etc.
|
This project is my way of learning Rust by recreating key aspects of Dwarf Fortress in Bevy. The aim is to build a feature-rich, procedurally generated simulation game, combining colony management, world-building, etc.
|
||||||
|
|
||||||
@@ -11,96 +11,97 @@ This project is my way of learning Rust by recreating key aspects of Dwarf Fortr
|
|||||||
Work in progress.
|
Work in progress.
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
### Core Systems
|
### Core Systems
|
||||||
- [ ] Procedural world generation
|
|
||||||
- [ ] Terrain generation
|
#### Procedural World Generation
|
||||||
|
- [ ] Terrain generation
|
||||||
- [ ] Generate heightmaps and elevation
|
- [ ] Generate heightmaps and elevation
|
||||||
- [ ] Add water bodies and erosion effects
|
- [ ] Add water bodies and erosion effects
|
||||||
- [ ] Apply biome-specific textures
|
- [ ] Apply biome-specific textures
|
||||||
|
|
||||||
- [ ] Biome distribution
|
- [ ] Biome distribution
|
||||||
- [ ] Define biome attributes (temperature, rainfall, etc.)
|
- [ ] Define biome attributes (temperature, rainfall, etc.)
|
||||||
- [ ] Map biomes to regions based on attributes
|
- [ ] Map biomes to regions based on attributes
|
||||||
- [ ] Add transitional zones between biomes
|
- [ ] Add transitional zones between biomes
|
||||||
|
|
||||||
- [ ] Rivers, caves, and mountain ranges
|
- [ ] Rivers, caves, and mountain ranges
|
||||||
- [ ] Implement river pathfinding algorithms
|
- [ ] Implement river pathfinding algorithms
|
||||||
- [ ] Procedurally carve cave networks
|
- [ ] Procedurally carve cave networks
|
||||||
- [ ] Generate mountain chains with fractal noise
|
- [ ] Generate mountain chains with fractal noise
|
||||||
|
|
||||||
|
#### Resource Management
|
||||||
- [ ] Resource management
|
- [ ] Gathering raw materials
|
||||||
- [ ] Gathering raw materials
|
|
||||||
- [ ] Implement tree-cutting and stone-mining mechanics
|
- [ ] Implement tree-cutting and stone-mining mechanics
|
||||||
- [ ] Add dynamic replenishment or exhaustion of resources
|
- [ ] Add dynamic replenishment or exhaustion of resources
|
||||||
|
|
||||||
- [ ] Stockpile mechanics
|
- [ ] Stockpile mechanics
|
||||||
- [ ] Create system for defining and assigning stockpiles
|
- [ ] Create system for defining and assigning stockpiles
|
||||||
- [ ] Optimize pathfinding for resource transport
|
- [ ] Optimize pathfinding for resource transport
|
||||||
|
|
||||||
- [ ] Crafting items and tools
|
- [ ] Crafting items and tools
|
||||||
- [ ] Develop crafting recipes and progression
|
- [ ] Develop crafting recipes and progression
|
||||||
- [ ] Add tools with different qualities and effects
|
- [ ] Add tools with different qualities and effects
|
||||||
|
|
||||||
|
#### Colony Simulation
|
||||||
- [ ] Colony simulation
|
- [ ] Individual dwarves with unique traits
|
||||||
- [ ] Individual dwarves with unique traits
|
|
||||||
- [ ] Generate personality traits and preferences
|
- [ ] Generate personality traits and preferences
|
||||||
- [ ] Assign skill proficiencies and growth over time
|
- [ ] Assign skill proficiencies and growth over time
|
||||||
|
|
||||||
- [ ] Needs and mood systems
|
- [ ] Needs and mood systems
|
||||||
- [ ] Model basic needs (hunger, thirst, rest)
|
- [ ] Model basic needs (hunger, thirst, rest)
|
||||||
- [ ] Implement mood modifiers and stress responses
|
- [ ] Implement mood modifiers and stress responses
|
||||||
|
|
||||||
- [ ] Job assignment and task automation
|
- [ ] Job assignment and task automation
|
||||||
- [ ] Create task queue and priority system
|
- [ ] Create task queue and priority system
|
||||||
- [ ] Enable task reassignment dynamically
|
- [ ] Enable task reassignment dynamically
|
||||||
|
|
||||||
|
|
||||||
### Gameplay Mechanics
|
### Gameplay Mechanics
|
||||||
- [ ] Building and construction
|
|
||||||
- [ ] Rooms, workshops, and fortifications
|
#### Building and Construction
|
||||||
|
- [ ] Rooms, workshops, and fortifications
|
||||||
- [ ] Design grid-based construction system
|
- [ ] Design grid-based construction system
|
||||||
- [ ] Implement structural stability checks
|
- [ ] Implement structural stability checks
|
||||||
- [ ] Mining and digging mechanics
|
|
||||||
|
|
||||||
|
- [ ] Mining and digging mechanics
|
||||||
|
|
||||||
- [ ] Combat and defense
|
#### Combat and Defense
|
||||||
- [ ] Squad management
|
- [ ] Squad management
|
||||||
- [ ] Develop squad formation and control UI
|
- [ ] Develop squad formation and control UI
|
||||||
- [ ] Assign weapons and defensive equipment
|
- [ ] Assign weapons and defensive equipment
|
||||||
- [ ] Enemy invasions
|
|
||||||
|
- [ ] Enemy invasions
|
||||||
- [ ] Generate enemy waves with scaling difficulty
|
- [ ] Generate enemy waves with scaling difficulty
|
||||||
- [ ] Simulate AI pathfinding and strategies
|
- [ ] Simulate AI pathfinding and strategies
|
||||||
- [ ] Traps and defenses
|
|
||||||
|
- [ ] Traps and defenses
|
||||||
- [ ] Add trap-building interface
|
- [ ] Add trap-building interface
|
||||||
- [ ] Implement trigger mechanisms and consequences
|
- [ ] Implement trigger mechanisms and consequences
|
||||||
|
|
||||||
|
#### Economy and Trade (Possible)
|
||||||
- [ ] Economy and trade (possible)
|
- [ ] Trading with caravans
|
||||||
- [ ] Trading with caravans
|
|
||||||
- [ ] Generate trading caravans based on world events
|
- [ ] Generate trading caravans based on world events
|
||||||
- [ ] Add barter or currency-based exchange
|
- [ ] Add barter or currency-based exchange
|
||||||
- [ ] Currency and wealth system
|
|
||||||
|
- [ ] Currency and wealth system
|
||||||
- [ ] Track wealth and its effects on game dynamics
|
- [ ] Track wealth and its effects on game dynamics
|
||||||
- [ ] Introduce theft and economic threats
|
- [ ] Introduce theft and economic threats
|
||||||
|
|
||||||
|
|
||||||
### Procedural Storytelling
|
### Procedural Storytelling
|
||||||
- [ ] Historical world-building
|
|
||||||
- [ ] Generate civilizations, leaders, and conflicts
|
#### Historical World-Building
|
||||||
|
- [ ] Generate civilizations, leaders, and conflicts
|
||||||
- [ ] Assign dynamic histories to regions and NPCs
|
- [ ] Assign dynamic histories to regions and NPCs
|
||||||
- [ ] Model geopolitical relationships
|
- [ ] Model geopolitical relationships
|
||||||
|
|
||||||
- [ ] Persistent world history
|
- [ ] Persistent world history
|
||||||
- [ ] Save and load historical data across game sessions
|
- [ ] Save and load historical data across game sessions
|
||||||
- [ ] Link events and characters to history dynamically
|
- [ ] Link events and characters to history dynamically
|
||||||
|
|
||||||
- [ ] Events and narratives
|
#### Events and Narratives
|
||||||
- [ ] Random and scripted events
|
- [ ] Random and scripted events
|
||||||
- [ ] Add contextual random events (e.g., resource scarcity, rival factions)
|
- [ ] Add contextual random events (e.g., resource scarcity, rival factions)
|
||||||
|
|
||||||
|
|
||||||
### User Interface
|
### User Interface
|
||||||
- [ ] Visual grid-based interface
|
- [ ] Visual grid-based interface
|
||||||
- [ ] Add visual overlays for resources, paths, and zones
|
- [ ] Add visual overlays for resources, paths, and zones
|
||||||
|
|||||||
Reference in New Issue
Block a user