-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
243 changed files
with
17,498 additions
and
8,190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Go | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
branches: [master] | ||
|
||
jobs: | ||
test: | ||
name: Test | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
|
||
- name: Run Tests | ||
run: go run github.com/onsi/ginkgo/v2/ginkgo -r -randomize-all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,49 @@ | ||
# Lacking Game Engine [![Go Report Card](https://goreportcard.com/badge/github.com/mokiat/lacking)](https://goreportcard.com/report/github.com/mokiat/lacking) [![Go Reference](https://pkg.go.dev/badge/github.com/mokiat/lacking.svg)](https://pkg.go.dev/github.com/mokiat/lacking) | ||
# Lacking Game Engine | ||
|
||
![logo](logo.png) | ||
[![Go Report Card](https://goreportcard.com/badge/github.com/mokiat/lacking)](https://goreportcard.com/report/github.com/mokiat/lacking) | ||
[![Go Reference](https://pkg.go.dev/badge/github.com/mokiat/lacking.svg)](https://pkg.go.dev/github.com/mokiat/lacking) | ||
|
||
A 3D game engine / game framework that lacks a lot of features (hence the name). | ||
[![logo](docs/images/logo.png)](https://mokiat.com/lacking/) | ||
|
||
This repository is a hobby project of mine that aims to support other hobby projects like [rally-mka](https://github.com/mokiat/rally-mka). There are no plans at the moment to have this become a serious project and as such it lacks proper testing and code cleanliness. | ||
A 3D game engine / framework that lacks a lot of features, hence the name. | ||
|
||
**WARNING:** If you do decide to base a project of yours off of this repository make sure you depend on a specific tagged version, as the `master` branch or new tagged versions are unlikely to be backward compatible. | ||
**WARNING** This project is still not stable. I am playing around with the code a lot and trying stuff. Avoid using it if you are looking for something serious and reliable. | ||
|
||
As I am quickly iterating over the code and making breaking changes all the time, avoid opening Pull Requests. The best you can do, if you want to contribute, is to open an Issue. Similarly, if you plan to use it for your own project, make sure to use a stable tag and be ready to face the consequences. | ||
|
||
|
||
## Getting Started | ||
|
||
To get a feel for how a game is structured and implemented using Lacking, have a look at the [source code](https://github.com/mokiat/rally-mka) of [Rally MKA](#rally-mka). | ||
|
||
Otherwise, have a look at the official [web page](https://mokiat.com/lacking/) which contains information on how to set up a Hello World project. | ||
|
||
|
||
## Examples | ||
|
||
I have uploaded some example games made with this engine on `itch.io`. | ||
|
||
### Rally MKA | ||
|
||
Drive around in a car with no particular purpose except to zone out. | ||
Best played with keyboard or mouse. The gamepad option is hard. | ||
|
||
[![Rally MKA](docs/images/example-rally-mka.png)](https://mokiat.itch.io/rally-mka) | ||
|
||
> This game was the initial reason for the lacking game engine. | ||
### AI Suppression | ||
|
||
A Game Jam entry. Use the keyboard to defend your ship from alien airships. Users of vim will have an easy time here. | ||
|
||
[![AI Suppression](docs/images/example-ai-suppression.png)](https://mokiat.itch.io/ai-suppression) | ||
|
||
> A solo 48h Sofia Game Jam (2023) entry. | ||
### Dem Cows | ||
|
||
Fly around in a plane and use a hanging club to pop cow balloons. As it uses semi-realistic physics it is best played with a gamepad and care should be taken regarding stall and speed. There wasn't enough time to balance this game. Winning it with keyboard is nearly impossible. | ||
|
||
[![Dem Cows](docs/images/example-dem-cows.png)](https://mokiat.itch.io/dem-cows) | ||
|
||
> A duo 48h Hardcore Game Jam (2024) entry. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
// Package audio provides audio processing and playback functionality. | ||
package audio |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.