Skip to content

Commit

Permalink
docs: update readme.md and license.md. (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
erlend-sh committed Nov 28, 2023
1 parent a0e3784 commit a44efcd
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 18 deletions.
4 changes: 1 addition & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
'Fish Fight: Jumpy' source code is dual-licensed under either
Bones source code is dual-licensed under either

* MIT License (licenses/LICENSE-MIT or http://opensource.org/licenses/MIT)
* Apache License, Version 2.0 (licenses/LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)

at your option.

Fish Fight media assets are Copyright (c) 2020-2022 The Fish Fight Game & Spicy Lobster Developers and licensed as [CC BY-NC](https://creativecommons.org/licenses/by-nc/4.0/).
23 changes: 8 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,36 +2,28 @@
<img src="https://raw.githubusercontent.com/fishfolk/bones_branding/main/renders/logo-rect.svg" align="center" width="250px" />
<h1>Bones</h1>

An easy-to-use game engine for making real games.
A 'meta-engine' framework made to facilitate the development of moddable, multiplayer 2D games.

[![Documentation](https://img.shields.io/badge/documentation-fishfolk.org-green.svg?labelColor=1e1c24&color=f3ee7a)](https://fishfolk.org/bones/overview/introduction/)
[![Crates.io](https://img.shields.io/crates/v/bones_lib?labelColor=1e1c24)](https://crates.io/crates/bones_lib)
[![docs.rs](https://img.shields.io/docsrs/bones_framework?label=API%20Docs&labelColor=1e1c24)](https://docs.rs/bones_framework)
[![Main Branch Docs](https://img.shields.io/badge/API_Docs-Main_Branch-blue?labelColor=1e1c24&color=red)](https://fishfolk.github.io/bones/rustdoc/bones_framework/index.html)
[![License](https://img.shields.io/badge/License-MIT%20or%20Apache%202-green.svg?label=license&labelColor=1e1c24&color=34925e)](./LICENSE)
[![Discord](https://img.shields.io/badge/chat-on%20discord-green.svg?logo=discord&logoColor=fff&labelColor=1e1c24&color=8d5b3f)][Discord]
[![Discord](https://img.shields.io/discord/865004050357682246?logo=discord&logoColor=white)](https://discord.gg/4smxjcheE5)

<hr />

</div>

Bones is a work-in-progress game engine for helping your make real games. This means that we are building real games with it, and everything that we can make game-independent is being put back into bones. The bones framework can be rendered with [Bevy], but is fundamentally engine agnostic and comes with it's own ECS, asset server, and user experience. Bones is officially focused on 2D games, but can be used for 3D games too if you are willing to create custom rendering integrations.
Initially borne out of [Jumpy](https://github.com/fishfolk/jumpy), Bones will eventually be the engine of choice for all [Fish Folk](https://github.com/fishfolk) games. It is suitable for any other games with similar requirements.

Bones is used in the [Jumpy] game, and will possibly be used in other FishFolk games in the future.

Check out [Fishfolk.org] for more documentation and tutorials.

[fishfolk.org]: https://fishfolk.org
[bevy]: https://bevyengine.org
[jumpy]: https://github.com/fishfolk/jumpy
[discord]: https://discord.gg/4smxjcheE5
[revolt]: https://weird.dev/invite/ZagXxrS4
By default Bones is rendered with [Bevy](https://bevyengine.org), but it is fundamentally engine-agnostic and comes with its own lightweight ECS, asset server and user experience. Bones is officially focused on 2D games and models itself after the likes of [Corgi](https://corgi-engine.moremountains.com/). It can however be used for 3D games as well, if you are willing to create custom rendering integrations.

## Overview

### Bones ECS

Bones is designed around a simple, custom Entity Component System ( ECS ), designed to make it easier to get a few features that are important to us:
Bones is designed around a simple, custom Entity Component System (ECS), designed to make it easier to get a few features that are important to us:

- **Determinism:** Bones ECS is deterministic by default, making it easier to get a re-producible and predictable gameplay.
- **Snapshot/Restore:** The Bones ECS world can be trivially snapshot and restored.
Expand Down Expand Up @@ -95,13 +87,13 @@ The scripting system is not limited to Lua. Using the simple dynamic API to [`bo
create your own integrations to any language or system you desire.

The scripting system is new and work-in-progress, but all of the major things have been
successfully implemented, and it is going to be actively used in [Jumpy].
successfully implemented, and it is going to be actively used in Jumpy.

[`piccolo`]: https://github.com/kyren/piccolo/

## Contributing

If you would like to contribute, feel free to reach out on our [Discord] or [Revolt] server to ask questions!
If you would like to contribute, feel free to reach out on our [Discord](https://discord.gg/4smxjcheE5) or [Revolt](https://weird.dev/invite/ZagXxrS4) server to ask questions!

We also use [TODO Issue][tdi] to automatically create issues from all of our `TODO` comments in code. You can check out the [todo issue list][tdil] to see if there's any thing you'd like to take a hack at.

Expand All @@ -114,5 +106,6 @@ Our architecure has many things in common with these other awesome projects:

- [Gamercade](https://github.com/gamercade-io/) / wasm4
- [Ambient](https://github.com/AmbientRun/Ambient)
- [flecs-polyglot](https://github.com/flecs-hub/flecs-polyglot)
- [Tangle](https://github.com/kettle11/tangle)
- [Godot sandbox #5010](https://github.com/godotengine/godot-proposals/issues/5010)

0 comments on commit a44efcd

Please sign in to comment.