Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
Andman431 authored Nov 15, 2024
1 parent 3aa0aa3 commit a6b5048
Show file tree
Hide file tree
Showing 10 changed files with 255 additions and 0 deletions.
89 changes: 89 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,89 @@
plugins {
id 'fabric-loom' version '1.8-SNAPSHOT'
id 'maven-publish'
}

version = project.mod_version
group = project.maven_group

base {
archivesName = project.archives_base_name
}


repositories {
// Add repositories to retrieve artifacts from in here.
// You should only use this when depending on other mods because
// Loom adds the essential maven repositories to download Minecraft and libraries from automatically.
// See https://docs.gradle.org/current/userguide/declaring_repositories.html
// for more information about repositories.
}

dependencies {
// To change the versions see the gradle.properties file
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

modImplementation "net.fabricmc.fabric-api:fabric-api:${project.fabric_version}"
}

processResources {
inputs.property "version", project.version
inputs.property "minecraft_version", project.minecraft_version
inputs.property "loader_version", project.loader_version
filteringCharset "UTF-8"

filesMatching("fabric.mod.json") {
expand "version": project.version,
"minecraft_version": project.minecraft_version,
"loader_version": project.loader_version
}
}

def targetJavaVersion = 21
tasks.withType(JavaCompile).configureEach {
// ensure that the encoding is set to UTF-8, no matter what the system default is
// this fixes some edge cases with special characters not displaying correctly
// see http://yodaconditions.net/blog/fix-for-java-file-encoding-problems-with-gradle.html
// If Javadoc is generated, this must be specified in that task too.
it.options.encoding = "UTF-8"
if (targetJavaVersion >= 10 || JavaVersion.current().isJava10Compatible()) {
it.options.release.set(targetJavaVersion)
}
}

java {
def javaVersion = JavaVersion.toVersion(targetJavaVersion)
if (JavaVersion.current() < javaVersion) {
toolchain.languageVersion = JavaLanguageVersion.of(targetJavaVersion)
}
// Loom will automatically attach sourcesJar to a RemapSourcesJar task and to the "build" task
// if it is present.
// If you remove this line, sources will not be generated.
withSourcesJar()
}

jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
}

// configure the maven publication
publishing {
publications {
create("mavenJava", MavenPublication) {
artifactId = project.archives_base_name
from components.java
}
}

// See https://docs.gradle.org/current/userguide/publishing_maven.html for information on how to set up publishing.
repositories {
// Add repositories to publish to here.
// Notice: This block does NOT have the same function as the block in the top level.
// The repositories here will be used for publishing your artifact, not for
// retrieving dependencies.
}
}
17 changes: 17 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# Done to increase the memory available to gradle.
org.gradle.jvmargs=-Xmx1G

# Fabric Properties
# check these on https://modmuss50.me/fabric.html
minecraft_version=1.21.1
yarn_mappings=1.21.1+build.3
loader_version=0.16.7

# Mod Properties
mod_version = 1.0-SNAPSHOT
maven_group = me.andman
archives_base_name = Fullbright

# Dependencies
# check this on https://modmuss50.me/fabric.html
fabric_version=0.106.0+1.21.1
1 change: 1 addition & 0 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-bin.zip
9 changes: 9 additions & 0 deletions settings.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
pluginManagement {
repositories {
maven {
name = 'Fabric'
url = 'https://maven.fabricmc.net/'
}
gradlePluginPortal()
}
}
16 changes: 16 additions & 0 deletions src/main/java/me/andman/fullbright/Fullbright.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package me.andman.fullbright;

import me.andman.fullbright.event.LightmapUpdateCallback;
import net.fabricmc.api.ModInitializer;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Fullbright implements ModInitializer {
public static final Logger LOGGER = LoggerFactory.getLogger(Fullbright.class);

@Override
public void onInitialize() {
LOGGER.info("Initializing Fullbright...");
LightmapUpdateCallback.EVENT.register(_gamma -> 15F);
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
package me.andman.fullbright.event;

import net.fabricmc.fabric.api.event.Event;
import net.fabricmc.fabric.api.event.EventFactory;

@FunctionalInterface
public interface LightmapUpdateCallback {
Event<LightmapUpdateCallback> EVENT = EventFactory.createArrayBacked(LightmapUpdateCallback.class, listeners -> _gamma -> {
float gamma = _gamma;
for (var listener : listeners) {
gamma = listener.onUpdate(gamma);
}

return gamma;
});

/**
* Called when updating the light map.
* @param gamma the passed along gamma value
* @return the gamma value
*/
float onUpdate(float gamma);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package me.andman.fullbright.mixin;

import me.andman.fullbright.event.LightmapUpdateCallback;
import net.minecraft.client.render.LightmapTextureManager;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Redirect;

@Mixin(LightmapTextureManager.class)
public class LightmapTextureManagerMixin {
@Redirect(method = "update", at = @At(value = "INVOKE", target = "Ljava/lang/Double;floatValue()F", ordinal = 1))
private float onUpdate(Double d) {
return LightmapUpdateCallback.EVENT.invoker().onUpdate(d.floatValue());
}
}
40 changes: 40 additions & 0 deletions src/main/java/me/andman/fullbright/mixin/SimpleOptionMixin.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
package me.andman.fullbright.mixin;

import com.mojang.serialization.Codec;
import net.minecraft.client.option.SimpleOption;
import net.minecraft.client.resource.language.I18n;
import net.minecraft.text.Text;
import org.spongepowered.asm.mixin.Final;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Shadow;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;

// hax
@Mixin(SimpleOption.class)
public class SimpleOptionMixin<T> {
@Shadow
@Final
Text text;

@Shadow
T value;

@Inject(method = "getCodec", at = @At("HEAD"), cancellable = true)
private void fullbright$returnFakeCodec(CallbackInfoReturnable<Codec<Double>> cir) {
if (text.getString().equals(I18n.translate("options.gamma"))) {
cir.setReturnValue(Codec.DOUBLE);
}
}

@Inject(method = "setValue", at = @At("HEAD"), cancellable = true)
private void fullbright$setGammaValue(T value, CallbackInfo ci) {
if (text.getString().equals(I18n.translate("options.gamma"))) {
this.value = value;
ci.cancel();
}
}

}
30 changes: 30 additions & 0 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"schemaVersion": 1,
"id": "fullbright",
"version": "${version}",

"name": "Fullbright",
"description": "Some useful client/mod",
"authors": ["Andman"],
"contact": {},

"license": "All-Rights-Reserved",
"icon": "assets/fullbright/icon.png",

"environment": "*",
"entrypoints": {
"main": [
"me.andman.fullbright.Fullbright"
]
},

"mixins": [
"fullbright.mixins.json"
],

"depends": {
"minecraft": "~${minecraft_version}",
"fabricloader": ">=${loader_version}",
"fabric-api": "*"
}
}
15 changes: 15 additions & 0 deletions src/main/resources/fullbright.mixins.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"required": true,
"minVersion": "0.8",
"package": "me.andman.fullbright.mixin",
"compatibilityLevel": "JAVA_21",
"mixins": [
],
"client": [
"LightmapTextureManagerMixin",
"SimpleOptionMixin"
],
"injectors": {
"defaultRequire": 1
}
}

0 comments on commit a6b5048

Please sign in to comment.