Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: false
matrix:
target: [ bukkit, fabric, forge ]
target: [ bukkit, fabric, forge, neoforge ]

name: Build ${{ matrix.target }}
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ target/
.idea
.gradle
**/build/
**/run
!src/**/build/
gradle-app.setting
!gradle-wrapper.jar
Expand Down
17 changes: 17 additions & 0 deletions common/build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
plugins {
id "java"
id "java-library"
id "maven-publish"
}

compileJava {
options.compilerArgs += "-g"
}

dependencies {
Expand Down Expand Up @@ -34,3 +39,15 @@ shadowJar {

minimize()
}

publishing {
publications {
maven(MavenPublication) {
groupId = 'com.cssbham'
artifactId = 'common'
version = '1.0.0'

from components.java
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,20 @@ public void handle(CommandSender sender, CommandContext context) {
if (discordClientService.getDiscordClient().isMember(arg)) {
sender.sendMessage(Component.text("Making you green...").color(NamedTextColor.GRAY));
try {
permissionPluginService.grantMemberRole(sender.getUuid()).get();
} catch (InterruptedException | ExecutionException e) {
permissionPluginService.grantMemberRole(sender.getUuid()).whenComplete((v, err) -> {
if (err != null) {
sender.sendMessage(Component.text("There was a problem making you green. Try again later.")
.color(NamedTextColor.RED));
throw new RuntimeException(err);
}

sender.sendMessage(Component.text("Congratulations, you are now green!").color(NamedTextColor.GREEN));
});
} catch (Exception e) {
sender.sendMessage(Component.text("There was a problem making you green. Try again later.")
.color(NamedTextColor.RED));
throw new RuntimeException(e);
}
sender.sendMessage(Component.text("Congratulations, you are now green!").color(NamedTextColor.GREEN));
} else {
sender.sendMessage(Component.text("You don't appear to be a ").color(NamedTextColor.RED).append(
Component.text("Member").color(NamedTextColor.GREEN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,14 @@ public CompletableFuture<Void> grantMemberRole(UUID player) {
user.data().add(Node.builder("group.member").build());
user.data().remove(Node.builder("group.guest").build());
}
);
).whenCompleteAsync((v, err) -> {
if (err != null) {
err.printStackTrace();
return;
}

System.out.println("Success");
});
}

@Override
Expand Down
266 changes: 266 additions & 0 deletions neoforge/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,266 @@
plugins {
id 'java-library'
id 'maven-publish'
id 'idea'
id 'net.neoforged.moddev' version '2.0.92'
}

version = mod_version
group = mod_group_id

repositories {
mavenLocal()
}

base {
archivesName = mod_id + "-neoforge"
}

java.toolchain.languageVersion = JavaLanguageVersion.of(21)

jarJar.enabled = true

neoForge {
// Specify the version of NeoForge to use.
version = project.neo_version

parchment {
mappingsVersion = project.parchment_mappings_version
minecraftVersion = project.parchment_minecraft_version
}

// This line is optional. Access Transformers are automatically detected
// accessTransformers.add('src/main/resources/META-INF/accesstransformer.cfg')

// Default run configurations.
// These can be tweaked, removed, or duplicated as needed.
runs {
client {
client()

// Comma-separated list of namespaces to load gametests from. Empty = all namespaces.
systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id
}

server {
server()
programArgument '--nogui'
systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id
}

// This run config launches GameTestServer and runs all registered gametests, then exits.
// By default, the server will crash when no gametests are provided.
// The gametest system is also enabled by default for other run configs under the /test command.
gameTestServer {
type = "gameTestServer"
systemProperty 'neoforge.enabledGameTestNamespaces', project.mod_id
}

data {
data()

// example of overriding the workingDirectory set in configureEach above, uncomment if you want to use it
// gameDirectory = project.file('run-data')

// Specify the modid for data generation, where to output the resulting resource, and where to look for existing resources.
programArguments.addAll '--mod', project.mod_id, '--all', '--output', file('src/generated/resources/').getAbsolutePath(), '--existing', file('src/main/resources/').getAbsolutePath()
}

// applies to all the run configs above
configureEach {
// Recommended logging data for a userdev environment
// The markers can be added/remove as needed separated by commas.
// "SCAN": For mods scan.
// "REGISTRIES": For firing of registry events.
// "REGISTRYDUMP": For getting the contents of all registries.
systemProperty 'forge.logging.markers', 'REGISTRIES'

// Recommended logging level for the console
// You can set various levels here.
// Please read: https://stackoverflow.com/questions/2031163/when-to-use-the-different-log-levels
logLevel = org.slf4j.event.Level.DEBUG
}
}

mods {
// define mod <-> source bindings
// these are used to tell the game which sources are for which mod
// mostly optional in a single mod project
// but multi mod projects should define one per mod
"${mod_id}" {
sourceSet(sourceSets.main)
sourceSet(project(":common").sourceSets.main)
}
}
}

// Include resources generated by data generators.
sourceSets.main.resources { srcDir 'src/generated/resources' }

compileJava {
options.compilerArgs += "-g"
}

dependencies {
// Example mod dependency with JEI
// The JEI API is declared for compile time use, while the full JEI artifact is used at runtime
// compileOnly "mezz.jei:jei-${mc_version}-common-api:${jei_version}"
// compileOnly "mezz.jei:jei-${mc_version}-forge-api:${jei_version}"
// runtimeOnly "mezz.jei:jei-${mc_version}-forge:${jei_version}"

// Example mod dependency using a mod jar from ./libs with a flat dir repository
// This maps to ./libs/coolmod-${mc_version}-${coolmod_version}.jar
// The group id is ignored when searching -- in this case, it is "blank"
// implementation "blank:coolmod-${mc_version}:${coolmod_version}"

// Example mod dependency using a file as dependency
// implementation files("libs/coolmod-${mc_version}-${coolmod_version}.jar")

// Example project dependency using a sister or child project:
// implementation project(":myproject")

// For more info:
// http://www.gradle.org/docs/current/userguide/artifact_dependencies_tutorial.html
// http://www.gradle.org/docs/current/userguide/dependency_management.html

// implementation "net.neoforged:neoforge:${neo_version}"

/* compileOnly(jarJar("net.kyori:adventure-api:4.17.0")) {
exclude(module: "adventure-bom")
exclude(module: "annotations")
}
compileOnly(jarJar("net.kyori:adventure-text-serializer-gson:4.17.0")) {
exclude(module: "adventure-bom")
exclude(module: "adventure-api")
exclude(module: "annotations")
exclude(module: "auto-service-annotations")
exclude(module: "gson")
} */

jarJar(implementation(group: "net.kyori", name: "adventure-platform-neoforge", version: "6.0.0") {
exclude(module: "annotations")
exclude(module: "auto-service-annotations")
exclude(module: "gson")
})
jarJar(implementation ("net.dv8tion:JDA:5.0.2") {
exclude(module: "opus-java")
exclude(module: "annotations")
exclude(module: "slf4j-api")
})
jarJar(implementation ("club.minnced:discord-webhooks:0.8.4") {
exclude(module: "slf4j-api")
})
jarJar(implementation("org.yaml:snakeyaml:2.2"))
jarJar(implementation("com.neovisionaries:nv-websocket-client:2.14"))
jarJar(implementation("com.squareup.okhttp3:okhttp:4.12.0"))
jarJar(implementation("org.apache.commons:commons-collections4:4.4"))
jarJar(implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.10"))
jarJar(implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.10"))
jarJar(implementation("org.jetbrains.kotlin:kotlin-stdlib-common:1.9.10"))
jarJar(implementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.10"))
jarJar(implementation("com.squareup.okio:okio:3.6.0"))
jarJar(implementation("net.sf.trove4j:core:3.1.0"))
jarJar(implementation("com.fasterxml.jackson.core:jackson-core:2.17.2"))
jarJar(implementation("com.fasterxml.jackson:jackson-bom:2.17.2"))
jarJar(implementation("com.fasterxml.jackson.core:jackson-annotations:2.17.2"))
jarJar(implementation("com.fasterxml.jackson.core:jackson-databind:2.17.2"))
jarJar(implementation("org.json:json:20230618"))

shadow(compileOnly(project(path: ":common"))) {
transitive(false)
}
// additionalRuntimeClasspath("org.yaml:snakeyaml:2.2")
// additionalRuntimeClasspath("net.dv8tion:JDA:5.0.2")
// additionalRuntimeClasspath("club.minnced:discord-webhooks:0.8.4")
// additionalRuntimeClasspath("com.cssbham:common:1.0.0")
// additionalRuntimeClasspath("net.kyori:adventure-api:4.17.0")
// additionalRuntimeClasspath("net.kyori:adventure-platform-neoforge:6.0.0")
// additionalRuntimeClasspath("net.kyori:adventure-text-serializer-gson:4.17.0")
}

// tasks.shadowJar.enabled = false

// This block of code expands all declared replace properties in the specified resource targets.
// A missing property will result in an error. Properties are expanded using ${} Groovy notation.
var generateModMetadata = tasks.register("generateModMetadata", ProcessResources) {
var replaceProperties = [
minecraft_version : minecraft_version,
minecraft_version_range: minecraft_version_range,
neo_version : neo_version,
neo_version_range : neo_version_range,
loader_version_range : loader_version_range,
mod_id : mod_id,
mod_name : mod_name,
mod_license : mod_license,
mod_version : mod_version,
mod_authors : mod_authors,
mod_description : mod_description
]
inputs.properties replaceProperties
expand replaceProperties
from "src/main/templates"
into "build/generated/sources/modMetadata"
}

// Include the output of "generateModMetadata" as an input directory for the build
// this works with both building through Gradle and the IDE.
sourceSets.main.resources.srcDir generateModMetadata
// To avoid having to run "generateModMetadata" manually, make it run on every project reload
neoForge.ideSyncTask generateModMetadata

// IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior.
idea {
module {
downloadSources = true
downloadJavadoc = true
}
}
/*
tasks.shadowJar {
configurations = [project.configurations.shadow]

dependencies {
exclude(dependency("net.kyori:adventure-platform-neoforge:6.0.0"))
}

doLast {
copy {
from("build/generated/jarjar/META-INF/jarjar")
into("META-INF/jarjar")
}
}

// exclude("net/**")
// exclude("META-INF/services/*")
// minimize()

archiveFileName = "cssminecraft-neoforge-${project.version}.jar"
}

*/

tasks.shadowJar.enabled = false
/*
tasks.register("shadeCommon") {
copy {
from("../common/build/classes/main/com/cssbham/cssminecraft/common")
into("build/classes/")
}
} */

tasks.jar {
from("../common/build/classes/java/main/com/cssbham/cssminecraft/common") {
into("com/cssbham/cssminecraft/common")
}
}
/*
tasks.register("copyJarJar") {
copy {
from ("build/generated/jarjar/META-INF/jarjar")
into("META-INF/jarjar")
}
}

tasks.copyJarJar.dependsOn(jarJar)
*/

44 changes: 44 additions & 0 deletions neoforge/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
org.gradle.jvmargs=-Xmx2G
org.gradle.daemon=true
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.configuration-cache=true

## Environment Properties
# You can find the latest versions here: https://projects.neoforged.net/neoforged/neoforge
# The Minecraft version must agree with the Neo version to get a valid artifact
minecraft_version=1.21.1
# The Minecraft version range can use any release version of Minecraft as bounds.
# Snapshots, pre-releases, and release candidates are not guaranteed to sort properly
# as they do not follow standard versioning conventions.
minecraft_version_range=[1.21.1,1.22)
# The Neo version must agree with the Minecraft version to get a valid artifact
neo_version=21.1.176
# The Neo version range can use any version of Neo as bounds
neo_version_range=[21,)
# The loader version range can only use the major version of FML as bounds
loader_version_range=[4,)

parchment_minecraft_version=1.21.4
parchment_mappings_version=2025.03.23

## Mod Properties

# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
# Must match the String constant located in the main mod class annotated with @Mod.
mod_id=cssminecraft
# The human-readable display name for the mod.
mod_name=CSS-Minecraft
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=todo
# The mod version. See https://semver.org/
mod_version=1.0.0
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
mod_group_id=com.cssbham.cssminecraft.neoforge
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
mod_authors=
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
mod_description=
Loading