Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/MeKaLu/Alka
Simple, fast, easy to get started mid-level game engine written in Zig
https://github.com/MeKaLu/Alka
game-development game-engine open-source zig
Last synced: 1 day ago
JSON representation
Simple, fast, easy to get started mid-level game engine written in Zig
- Host: GitHub
- URL: https://github.com/MeKaLu/Alka
- Owner: Kiakra
- License: other
- Created: 2021-05-12T14:39:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-08-10T19:37:47.000Z (over 3 years ago)
- Last Synced: 2024-04-17T12:00:47.445Z (7 months ago)
- Topics: game-development, game-engine, open-source, zig
- Language: C
- Homepage:
- Size: 3 MB
- Stars: 28
- Watchers: 1
- Forks: 1
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-zig - Alka🗒️Simple, fast, easy to get started mid-level game engine written in Zig
README
# Alka
Game engine written in zig, compatible with **zig version 0.8.0**.This engine does provide a toolset for you but generally you have to implement how they work and how should be.
For example if you want to use `GUI`, well you can and engine provides a tool for you but you have to implement how
`elements` behave, draw, etc. There is no `ButtonElement` or `TextBox`, only `Element`. Same goes for the `ECS` too.-----
You may need these packages to compile the engine(tested on ubuntu 21.04)
`libx11-dev libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev libgl-dev`Get started [now](https://github.com/Kiakra/Alka/blob/master/get-started.md)
[Documentation]()
-----
## Project goals
- [x] Single window operations
- [x] Input management
- [x] Asset manager
- [x] Custom batch system
- [x] 2D Camera
- [X] 2D Shape drawing
- [x] 2D Texture drawing
- [x] 2D Text drawing
- [x] Simple ecs
- [ ] Simple 2D lightning
- [ ] Simple 2D physics
- [x] GUI system
- [ ] Audio
- [ ] Optional: Data packer
- [ ] Optional: Scripting language
- [ ] Optional: Vulkan implementation
- [ ] Optional: Android support----
## About release cycle
* Versioning: major.minor.patch
* Every x.x.3 creates a new minor, which becomes x.(x + 1).0
* Again every x.3.x creates a new major, which becomes (x + 1).0.x
* When a new version comes, it'll comitted as x.x.x source update