Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/a5huynh/stone-cunning
A 2.5d dwarf fortress inspired game written in Rust
https://github.com/a5huynh/stone-cunning
amethyst game-development rust-lang
Last synced: 3 months ago
JSON representation
A 2.5d dwarf fortress inspired game written in Rust
- Host: GitHub
- URL: https://github.com/a5huynh/stone-cunning
- Owner: a5huynh
- Created: 2019-03-11T23:30:37.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-06-15T00:47:25.000Z (over 2 years ago)
- Last Synced: 2023-03-10T22:11:33.024Z (almost 2 years ago)
- Topics: amethyst, game-development, rust-lang
- Language: Rust
- Homepage:
- Size: 1.82 MB
- Stars: 10
- Watchers: 3
- Forks: 1
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# stone cunning
`stone-cunning` is a Dwarf Fortress inspired town builder.
The origin of the name "[stonecunning](https://roll20.net/compendium/dnd5e/Dwarf#content)" comes from D&D dwarven ability to check the origin of stonework.
## Media
![In-game screenshot](docs/screenshot.png)
## Building & Running
You can run the current version of `stone-cunning` by running the following
command in the project root directory:> cargo run --release
## Development
Stone cunning is divided up using [Cargo workspaces][cargo-workspaces], with
the idea that each individual library can be tested and run by itself without the need to run the entire game.[cargo-workspaces]: https://doc.rust-lang.org/book/ch14-03-cargo-workspaces.html
Libraries can depend on each other and often refer to each other, e.g. `libpath`
will need to refer to types in `libterrain` to make sure a path is unencumbered.### core
Module used to hold shared dependencies and utility functions.
### libdwarf
The core of `stone-cunning`, used to simulate the dwarfs and (eventually) monsters.
### libpath
Library used to pathfind.
### libterrain
Library used to generate terrain and eventually handle chunking, saving/loading
maps, etc.## Roadmap (TODOs)
### Core Mechanics
- [x] Pathing
- [ ] Resource gathering
- [ ] Mining
- [ ] Buildings
- [ ] Task management### Resources
- [ ] Tree variety
- [ ] Stone variety
- [ ] Farming support### Terrain
- [ ] Move biomes into config file(?)
- [ ] More Biome types.
- [ ] Support for multiple chunks.### NPCs
- [ ] Support for monsters.## Credits
* Font: *IBM VGA8* part of the [The Ultimate Oldschool PC Font Pack](https://int10h.org/oldschool-pc-fonts/). License: [CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/)