Skip to content

Files

This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Latest commit

e31efbd · Jul 3, 2020

History

History
166 lines (122 loc) · 5.82 KB

File metadata and controls

166 lines (122 loc) · 5.82 KB

+++ title = "This Month in Rust GameDev #11 - June 2020" date = 2020-07-01 transparent = true draft = true +++

Welcome to the eleventh issue of the Rust GameDev Workgroup’s monthly newsletter. Rust is a systems language pursuing the trifecta: safety, concurrency, and speed. These goals are well-aligned with game development. We hope to build an inviting ecosystem for anyone wishing to use Rust in their development process! Want to get involved? Join the Rust GameDev working group!

You can follow the newsletter creation process by watching the coordination issues. Want something mentioned in the next newsletter? Send us a pull request. Feel free to send PRs about your own projects!

Table of contents:

Game Updates

Learning Material Updates

Library & Tooling Updates

yaks is a minimalistic framework for automatic multithreading of hecs ECS library using Rayon data-parallelism library.

While the project itself started earlier this year, with this month's release yaks gained an overhauled API, further leaning into the promise of simplicity:

  • systems are any functions or closures of a specific signature,
  • Executor is a container for one or more systems,
  • system execution order can be defined when building an Executor to create concurrent chains of systems,
  • resources used by systems (any data that is not associated with an entity) are now borrowed for the duration of execution, instead of being owned by the framework.

All items in the library are exhaustively documented, and the repository contains a fully annotated example.

Enabled-by-default parallel cargo feature can be disabled to force everything in yaks to become single-threaded, which allows using code written with the framework on platforms without threading - notably, web.

Popular Workgroup Issues in Github

Meeting Minutes

See all meeting issues including full text notes or join the next meeting.

Requests for Contribution

Jobs

Bonus

Just an interesting Rust gamedev link from the past. :)


That's all news for today, thanks for reading!

Subscribe to @rust_gamedev on Twitter or /r/rust_gamedev subreddit if you want to receive fresh news!