XMPPwocky / bevy-yoleck

Your Own Level Editor Creation Kit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Build Status Latest Version Rust Documentation

Bevy YOLECK - Your Own Level Editor Creation Kit

Yoleck is a crate for having a game built with the Bevy game engine act as its own level editor.

Features

  • Same executable can launch in either game mode or editor mode, depending on the plugins added to the app.
  • Write systems that create entities based on serializable structs - use same systems for both loading the levels and visualizing them in the editor.
  • Entity editing is done with egui widgets that edit these structs.
  • Support for external plugins that offer more visual editing.
    • One simple such plugin included behind feature flag - vpeol_2d.
  • Playtest the levels inside the editor.

Examples:

File Format

Yoleck saves the levels in JSON files that have the .yol extension. A .yol file's top level is a tuple (actually JSON array) of three values:

  • File metadata - e.g. Yoleck version.
  • Level data (placeholder - currently an empty object)
  • List of entities.

Each entity is a tuple of two values:

  • Entity metadata - e.g. its type.
  • Entity data - that's the user defined struct

The reason tuples are used instead of objects is to ensure ordering - to guarantee the metadata can be read before the data. This is important because the metadata is needed to parse the data.

Yoleck generates another JSON file in the same directory as the .yol files called index.yoli. The purpose of this file is to let the game know what level are available to it (in WASM, for example, the asset server cannot look at a directory's contents). The index file containes a tuple of two values:

  • Index metadata - e.g. Yoleck version.
  • List of objects, each contain a path to a level file relative to the index file.

Versions

bevy bevy-yoleck
0.9 0.4
0.8 0.3
0.7 0.1, 0.2

License

Licensed under either of

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

About

Your Own Level Editor Creation Kit

License:Other


Languages

Language:Rust 100.0%