Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/essentialgg/universalcraft

A Minecraft modding library designed to seamlessly support a single code base branching different Minecraft versions and LWJGL versions
https://github.com/essentialgg/universalcraft

Last synced: about 10 hours ago
JSON representation

A Minecraft modding library designed to seamlessly support a single code base branching different Minecraft versions and LWJGL versions

Awesome Lists containing this project

README

        

# UniversalCraft

A full Java interop library that wraps Minecraft classes which allows you to write code for multiple versions at the same time. Built using ReplayMod's [Preprocessor](https://github.com/ReplayMod/preprocessor).

It also features a "standalone" edition, which can run GUIs without Minecraft so long as they only depend on
UniversalCraft and not Minecraft directly.
This can allow for a faster development loop (no need to wait a minute for Minecraft to start),
automated testing without having to bootstrap a full Minecraft environment,
and even development of completely standalone applications using the same toolkit (e.g. [Elementa]) as one is already
familiar with from Minecraft development.
See the `standalone/example/` folder for a fully functional example.

## Dependency

It's recommended that you include [Essential](link eventually) instead of adding it yourself.

In your repository block, add:

Groovy
```groovy
maven {
url = "https://repo.essential.gg/repository/maven-public"
}
```
Kotlin
```kotlin
maven(url = "https://repo.essential.gg/repository/maven-public")
```

To use the latest builds, use the following dependency format, use the build reference to find the correct replacements:

Forge

```kotlin
implementation("gg.essential:universalcraft-$mcVersion-$mcPlatform:$buildNumber")
```

Fabric

Groovy
```groovy
modImplementation(include("gg.essential:universalcraft-$mcVersion-$mcPlatform:$buildNumber"))
```
Kotlin
```kotlin
modImplementation(include("gg.essential:universalcraft-$mcVersion-$mcPlatform:$buildNumber")!!)
```

### Build Reference

Build Reference



mcVersion
mcPlatform
buildNumber


standalone
N/A

standalone


1.21fabric1.21-fabric
1.20.6fabric1.20.6-fabric
1.20.4forge1.20.4-forge
1.20.4fabric1.20.4-fabric
1.20.2forge1.20.2-forge
1.20.2fabric1.20.2-fabric
1.20.1forge1.20.1-forge
1.20.1fabric1.20.1-fabric
1.20fabric1.20-fabric
1.19.4forge1.19.4-forge
1.19.4fabric1.19.4-fabric
1.19.3forge1.19.3-forge
1.19.3fabric1.19.3-fabric
1.19.2forge1.19.2-forge
1.19.2fabric1.19.2-fabric
1.19.1fabric1.19.1-fabric
1.19fabric1.19-fabric
1.18.1forge1.18.1-forge
1.18.1fabric1.18.1-fabric
1.17.1forge1.17.1-forge
1.17.1fabric1.17.1-fabric
1.16.2fabric1.16.2-fabric
1.16.2forge1.16.2-forge
1.12.2forge1.12.2-forge
1.8.9forge1.8.9-forge

IMPORTANT!

If you are using forge, you must also relocate UC to avoid potential crashes with other mods. To do this, you will need to use the Shadow Gradle plugin.

Groovy Version

You can do this by either putting it in your plugins block:
```groovy
plugins {
id "com.github.johnrengelman.shadow" version "$version"
}
```
or by including it in your buildscript's classpath and applying it:
```groovy
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath "gradle.plugin.com.github.jengelman.gradle.plugins:shadow:$version"
}
}

apply plugin: "com.github.johnrengelman.shadow"
```
You'll then want to relocate UC to your own package to avoid breaking other mods
```groovy
shadowJar {
archiveClassifier.set(null)
relocate("gg.essential.universal", "your.package.universal")
}
tasks.named("reobfJar").configure { dependsOn(tasks.named("shadowJar")) }
```

Kotlin Script Version

You can do this by either putting it in your plugins block:
```kotlin
plugins {
id("com.github.johnrengelman.shadow") version "$version"
}
```
or by including it in your buildscript's classpath and applying it:
```kotlin
buildscript {
repositories {
gradlePluginPortal()
}
dependencies {
classpath("gradle.plugin.com.github.jengelman.gradle.plugins:shadow:$version")
}
}

apply(plugin = "com.github.johnrengelman.shadow")
```
You'll then want to relocate UC to your own package to avoid breaking other mods
```kotlin
tasks.shadowJar {
archiveClassifier.set(null)
relocate("gg.essential.universal", "your.package.universal")
}
tasks.reobfJar { dependsOn(tasks.shadowJar) }
```

[Elementa]: https://github.com/EssentialGG/Elementa