doryen-rs
bracket-lib
Our great sponsors
doryen-rs | bracket-lib | |
---|---|---|
3 | 26 | |
230 | 1,215 | |
- | 4.7% | |
0.0 | 8.7 | |
about 2 months ago | about 2 months ago | |
Rust | Rust | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
doryen-rs
-
what is tcod?
Developers are starting to revive “Doryen” when they’ve ported the library to another language – including doryen-rs, a Rust port written by the original Jice …
- Rendering TUI To Web
-
Sharing Saturday #416
doryen-rs
bracket-lib
-
Minimal 2D library for games? I'm struggling a bit to settle on one to learn.
Maybe bracket-lib from the amethyst authors? I‘m currently working through that book and find the library quite intuitive and simple to use. It started out as a toolkit for rouge-like games but has been getting more general. On that note, I recommend the hands-on-rust book which teaches rust concepts while building games with bracket-lib. As you have read the book, I‘m sure you would get through the first chapters quickly.
-
Bevy ECS or custom implementation?
https://github.com/amethyst/bracket-lib has a great integration with Bevy, designed for exactly this sort of thing.
- libtcod use 8x8 font but scaled up to 16x16?
-
How difficult could it be to make a console program that looks like this and has a game loop running on a separate thread? Any suggestions or crate recommendations are welcome!
I've been doing some experiments with terminal based games and landed on https://github.com/amethyst/bracket-lib It's not exactly terminal based in the sense that it actually runs on OpenGL by default. But that's a plus imho because dealing with the bits of the terminal window that can change outside of your control (like fonts, window resize, etc) is a giant pita. It does let you swap the backend to run on crossterm if that's what you really want to do but if what you're after is the aesthetic like I am having bracket_lib handling all that makes life so much better.
- Rendering TUI To Web
-
Sharing Saturday #420
Bracket-Lib for Bevy Github
-
Sharing Saturday #418
Bracket-Terminal/RLTK for Bevy Github Branch | Twitter | Patreon
-
Sharing Saturday #416
bracket-lib 👈🏻 (using this now)
-
Console handling in bevy?
Hi, If you are interested in console and roguelike there is a specialised engine made just for that called bracket-lib made by Herbert Wolverson. He also has a book called Hands On Rust that is an excilent introduction to rust game development where you make a roguelike dungeon crawler in Rust using bracket-lib. I am finishing the book now and I can fully recommend it.
-
Rust Platformer - Part 1 - Bevy and ECS
I recently stumbled upon a short YouTube video of somebody building a roguelike game in Rust. From there, jumping from resource to resource, I ended up going through (part) of this massive (and awesome) tutorial by Herbert Wolverson about his Rust library bracket_lib. In this tutorial, Wolverson builds a roguelike game with colored text characters. After reading through, I felt like writing another type of game in Rust, so I looked at the available Rust game engines. The most popular, seems to be Amethyst, but it looks like they halted their development efforts. Second in line was Bevy. People are using it, support for Android and iOS is on the way, uses an ECS and have some usage examples: looks good.
What are some alternatives?
bevy - A refreshingly simple data-driven game engine built in Rust
Amethyst - Data-oriented and data-driven game engine written in Rust
bevy_webgl2 - WebGL2 renderer plugin for Bevy game engine
VTerminal - A new Look-and-Feel (LaF) for Java, which allows for a grid-based display of Unicode characters with custom fore/background colors, font sizes, and pseudo-shaders. Originally designed for developing Roguelike/lite games.
python-tcod - A high-performance Python port of libtcod. Includes the libtcodpy module for backwards compatibility with older projects.
Rust-HTML-roguelike - Rust WASM + HTML roguelike
rot.js - ROguelike Toolkit in JavaScript. Cool dungeon-related stuff, interactive manual, documentation, tests!
libtcod - A collection of tools and algorithms for developing traditional roguelikes. Such as field-of-view, pathfinding, and a tile-based terminal emulator.
roguelike_tutorial
rdl2021-tutorial - /r/roguelikedev Tutorial 2021
Axes-Armour-Ale - A fantasy, ASCII dungeon crawler for Windows, Linux & OSX
RogueSharp - A .NET Standard class library providing map generation, path-finding, and field-of-view utilities frequently used in roguelikes or 2D tile based games. Inspired by libtcod