about summary refs log tree commit diff
path: root/src/display/color.rs
AgeCommit message (Collapse)AuthorFilesLines
2019-08-03 Add inventory, and the ability to pick up itemsGriffin Smith1-0/+9
Add inventory as a basic vector of items attached to the character, and the ability to pick up a single item where the character stands
2019-08-03 Fix a bunch more Clippy lints, but disable in CircleGriffin Smith1-5/+5
The unused error is causing more trouble than it's worth at this point
2019-07-27 Add a generic text-prompt systemGriffin Smith1-1/+0
Add a generic text-prompt system to the Game, and use it to prompt the character for their name on startup. There's also a Promise type in util, which is used for the result of the prompt.
2019-07-19 Add the beginning of item entitiesGriffin Smith1-0/+6
Add a new Item raw type and entity type, with preliminary, basic support for food. There's a really frustrating toml-rs bug that prevents writing these nicely as toml right now, so I also added support for mixing JSON and TOML in a single config dir
2019-07-14 Add (statically-included) entity rawsGriffin Smith1-0/+149
Add a system for statically-included entity raws (which necessitated making a deserializable existential Color struct) and test it out by initializing the game (for now) with a single on-screen gormlak.