plutoengine/README.md

120 lines
3.4 KiB
Markdown
Raw Normal View History

2020-08-18 15:41:26 +00:00
# plutoengine
2022-04-16 17:10:17 +00:00
![Build Status](https://github.com/493msi/plutoengine/workflows/Gradle%20Package/badge.svg)
![Maven Version](https://img.shields.io/github/v/tag/493msi/plutoengine?label=Latest%20Version)
My hobby game engine. This repository unifies all my previous Pluto repositories.
2022-04-16 17:10:17 +00:00
## How to use Pluto
**Quick start**
Download [the demo project](https://github.com/plutoengine/plutoengine-basic-demo) open it in IntelliJ IDEA.
**Gradle**
```groovy
repositories {
mavenCentral()
maven {
name = "Vega"
url = uri("https://vega.botdiril.com/")
}
}
dependencies {
2022-04-17 02:33:56 +00:00
implementation group: "org.plutoengine", name: "plutocore", version: "22.2.0.0-alpha.0"
2022-04-16 17:10:17 +00:00
}
```
**or for Gradle Kotlin DSL**
```kotlin
repositories {
mavenCentral()
maven {
name = "Vega"
url = uri("https://vega.botdiril.com/")
}
}
dependencies {
2022-04-17 02:33:56 +00:00
implementation("org.plutoengine", "plutocore", "22.2.0.0-alpha.0")
2022-04-16 17:10:17 +00:00
}
```
### Versioning
All submodules share a version number for simplicity reasons.
Since version `20.2.0.0-alpha.0`, PlutoEngine uses
a combined version of [semantic versioning](https://semver.org/)
and [calendar versioning](https://calver.org/), the first number
denotes the year.
Therefore, the version format is always `YY.MAJOR.MINOR.PATCH-prerelease`.
*Only `major` and `year` version changes will bring breaking API changes,
**except for pre-release versions**, which may introduce breaking changes
at any time. Pre-release versions will never increment the `minor` or `patch`
version numbers.*
## Usability status of submodules
### Safe submodules
* **PlutoCore** - Stable
2020-09-04 13:31:05 +00:00
* **PlutoFramebuffer** - Stable
* **PlutoMesher** - Stable
* **PlutoShader** - Stable
* **PlutoTexture** - Stable
2020-09-04 13:31:05 +00:00
* **PlutoSpriteSheet** - Stable, some features are unfinished
* **PlutoDisplay** - Stable, collision API nowhere near completion
2021-01-16 16:44:44 +00:00
* **PlutoUSS2** - Stable
* **PlutoLib** - Mostly stable
### Unstable submodules
2022-04-14 18:31:47 +00:00
* **PlutoGUI** - Recently rewritten, the API is highly unstable
* **PlutoRuntime** - Somewhat tentative, the module API has been rewritten and might contain bugs
* **PlutoAudio** - Somewhat usable, unfinished
## Current priorities
2020-09-25 10:53:10 +00:00
See `NEXT_RELEASE_DRAFT.md` for details.
2022-04-14 18:31:47 +00:00
### To be fixed
[ *Features or bugs that should be fixed **ASAP*** ]
* Implement gradient variation support for Libra fills
* Improve code quality in PlutoGUI
### Very high priority
2020-09-25 10:53:10 +00:00
[ *Implemented in the current release.* ]
2022-04-14 18:31:47 +00:00
* Improve image loading capabilities, possibly rewrite PlutoLib#TPL
### High priority
2020-09-25 10:53:10 +00:00
[ *Implemented in the next release.* ]
2020-09-25 10:36:59 +00:00
* Finish PlutoAudio
* Depends on the stage system
2022-04-14 18:31:47 +00:00
* Expand upon the Color API
* Color mixing and blending
* Color transformation
* High-performance serialization
### Normal priority
2020-09-25 10:53:10 +00:00
[ *Planned for an upcoming release.* ]
* The collision system for PlutoStatic
### Low priority
2020-09-25 10:53:10 +00:00
[ *Items not required immediately, planned to be implemented eventually.* ]
2020-09-24 01:07:15 +00:00
* Allow multiple running instances of Pluto
* Alternatively, if this deems too difficult to implement,
2021-01-16 16:44:44 +00:00
prohibit the creation of more than one instance per JVM to avoid issues
* A networking API
* Re-add support for external mod jars to the ModLoader
* This feature requires a full rewrite and possibly a complete overhaul
* Mods should have limited execution levels, for example restricted file access
or disabled native library loading (this is probably not possible)