13 Commits

Author SHA1 Message Date
efe535da9b Merge pull request 'Dump gradle version to 9, dump to 5.2.0, remove cache in CI' (#36) from dev into master
All checks were successful
Test and Deploy / build (21, ubuntu-latest) (push) Successful in 2m3s
Test and Deploy / deploy (21, ubuntu-latest) (push) Successful in 2m5s
Reviewed-on: #36
2025-10-04 10:34:38 +00:00
5e12403a5a Fix tests
All checks were successful
Test and Deploy / build (21, ubuntu-latest) (push) Successful in 2m9s
Test and Deploy / deploy (21, ubuntu-latest) (push) Has been skipped
2025-10-04 12:31:52 +02:00
fdf51d95c1 Update junit to 5.14
Some checks failed
Test and Deploy / build (21, ubuntu-latest) (push) Failing after 1m55s
Test and Deploy / deploy (21, ubuntu-latest) (push) Has been skipped
2025-10-04 12:25:51 +02:00
3266f46d17 Dump gradle version to 9, dump to 5.2.0, remove cache in CI
Some checks failed
Test and Deploy / build (21, ubuntu-latest) (push) Failing after 1m54s
Test and Deploy / deploy (21, ubuntu-latest) (push) Has been skipped
2025-10-04 12:15:48 +02:00
5c9b641091 Merge pull request 'Add ExtendedSimplePositionWidget and MultiTabWrapperWidget' (#35) from dev into master
All checks were successful
Test and Deploy / build (21, ubuntu-latest) (push) Successful in 11m14s
Test and Deploy / deploy (21, ubuntu-latest) (push) Successful in 2m11s
Reviewed-on: #35
2025-09-30 21:38:03 +00:00
43856aefbc Update java version on CI
All checks were successful
Test and Deploy / build (21, ubuntu-latest) (push) Successful in 11m22s
Test and Deploy / deploy (21, ubuntu-latest) (push) Has been skipped
Test and Deploy / build (21, ubuntu-latest) (pull_request) Successful in 11m16s
Test and Deploy / deploy (21, ubuntu-latest) (pull_request) Has been skipped
2025-09-30 22:54:07 +02:00
a4733d073e feat: add ExtendedSimplePositionWidget and MultiTabWrapperWidget
Some checks failed
Test and Deploy / build (17, ubuntu-latest) (push) Failing after 5m21s
Test and Deploy / deploy (17, ubuntu-latest) (push) Has been skipped
2025-09-30 22:01:56 +02:00
1a5d9f088f Merge pull request '5.1.1' (#34) from dev into master
All checks were successful
Test and Deploy / build (17, ubuntu-latest) (push) Successful in 2m11s
Test and Deploy / deploy (17, ubuntu-latest) (push) Successful in 4m23s
Reviewed-on: #34
2024-12-13 19:33:23 +01:00
d74fb27d30 Update loader and fabricapi, dump to 5.1.1
All checks were successful
Test and Deploy / build (17, ubuntu-latest) (push) Successful in 5m32s
Test and Deploy / build (17, ubuntu-latest) (pull_request) Successful in 2m10s
Test and Deploy / deploy (17, ubuntu-latest) (push) Has been skipped
Test and Deploy / deploy (17, ubuntu-latest) (pull_request) Has been skipped
2024-12-13 19:25:04 +01:00
2d3f8c151b Include hibernate inside Toolbox archive 2024-12-13 19:23:08 +01:00
20dc34714e Merge pull request '5.1.0: add player life cycle events' (#33) from dev into master
All checks were successful
Test and Deploy / build (17, ubuntu-latest) (push) Successful in 2m53s
Test and Deploy / deploy (17, ubuntu-latest) (push) Successful in 4m4s
Reviewed-on: #33
2024-08-20 18:52:18 +02:00
267bd3644c ci: add cache
All checks were successful
Test and Deploy / build (17, ubuntu-latest) (push) Successful in 6m12s
Test and Deploy / deploy (17, ubuntu-latest) (push) Has been skipped
Test and Deploy / build (17, ubuntu-latest) (pull_request) Successful in 2m26s
Test and Deploy / deploy (17, ubuntu-latest) (pull_request) Has been skipped
2024-08-20 18:42:39 +02:00
d6515d9cbb feat: add player join and leave events
Some checks failed
Test and Deploy / deploy (17, ubuntu-latest) (push) Blocked by required conditions
Test and Deploy / build (17, ubuntu-latest) (push) Has been cancelled
2024-08-20 18:39:30 +02:00
14 changed files with 215 additions and 15 deletions

View File

@@ -8,7 +8,7 @@ on:
push:
branches: [ master, dev ]
pull_request:
branches: [ master, dev ]
branches: [ dev ]
env:
REPO_USERNAME: Altarik
@@ -20,7 +20,7 @@ jobs:
build:
strategy:
matrix:
java: [ '17' ]
java: [ '21' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
@@ -32,7 +32,15 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'oracle'
distribution: 'temurin'
# - uses: actions/cache@v3
# with:
# path: |
# ~/.gradle/caches
# ~/.gradle/wrapper
# key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
# restore-keys: |
# ${{ runner.os }}-gradle-
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: |
@@ -43,7 +51,7 @@ jobs:
deploy:
strategy:
matrix:
java: [ '17' ]
java: [ '21' ]
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
if: ${{ gitea.ref == 'refs/heads/master' && gitea.event_name == 'push' }}
@@ -57,7 +65,7 @@ jobs:
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java }}
distribution: 'oracle'
distribution: 'temurin'
- name: make gradle wrapper executable
if: ${{ runner.os != 'Windows' }}
run: |

4
Core/build.gradle Normal file
View File

@@ -0,0 +1,4 @@
loom {
accessWidenerPath = file("src/main/resources/core.accesswidener")
}

View File

@@ -0,0 +1,34 @@
package fr.altarik.toolbox.core.client.gui;
import net.minecraft.client.gui.widget.Positioner;
import net.minecraft.client.gui.widget.SimplePositioningWidget;
import net.minecraft.client.gui.widget.Widget;
import java.util.ArrayList;
import java.util.List;
import java.util.function.Consumer;
public abstract class ExtendedSimplePositionWidget extends SimplePositioningWidget {
private final List<Element> elements = new ArrayList<>();
public ExtendedSimplePositionWidget(int x, int y, int width, int height) {
super(x, y, width, height);
}
@Override
public <T extends Widget> T add(T widget, Positioner positioner) {
this.elements.add(new Element(widget, positioner));
return widget;
}
public <T extends Widget> void remove(T widget) {
this.elements.remove(new Element(widget, this.copyPositioner()));
}
@Override
public void forEachElement(Consumer<Widget> consumer) {
this.elements.forEach((element) -> consumer.accept(element.widget));
}
}

View File

@@ -0,0 +1,39 @@
package fr.altarik.toolbox.core.client.gui;
import net.minecraft.client.gui.screen.Screen;
import net.minecraft.client.gui.widget.Widget;
import net.minecraft.client.gui.widget.WrapperWidget;
import java.util.function.Consumer;
public abstract class MultiTabWrapperWidget<A extends Enum<A>, B extends Widget> extends WrapperWidget {
protected final Screen parent;
protected A currentTab;
public MultiTabWrapperWidget(Screen parent) {
this(parent, 0, 0, 0, 0);
}
public MultiTabWrapperWidget(Screen parent, int x, int y, int width, int height) {
super(x, y, width, height);
this.parent = parent;
}
protected void setCurrentTab(A currentTab) {
this.currentTab = currentTab;
update();
}
protected abstract B getCurrentTab();
public abstract void update();
public abstract void remove();
@Override
public void forEachElement(Consumer<Widget> consumer) {
// ignore
}
}

View File

@@ -0,0 +1,37 @@
package fr.altarik.toolbox.core.event;
import net.fabricmc.fabric.api.event.Event;
import net.fabricmc.fabric.api.event.EventFactory;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.util.ActionResult;
public interface PlayerLifecycleCallback {
Event<PlayerJoin> PLAYER_JOIN = EventFactory.createArrayBacked(PlayerJoin.class, listeners -> player -> {
for(PlayerJoin listener : listeners) {
ActionResult result = listener.onPlayerJoin(player);
if (result != ActionResult.PASS)
return result;
}
return ActionResult.PASS;
});
Event<PlayerLeave> PLAYER_LEAVE = EventFactory.createArrayBacked(PlayerLeave.class, listeners -> player -> {
for(PlayerLeave listener : listeners) {
ActionResult result = listener.onPlayerLeave(player);
if (result != ActionResult.PASS)
return result;
}
return ActionResult.PASS;
});
@FunctionalInterface
interface PlayerJoin {
ActionResult onPlayerJoin(ServerPlayerEntity player);
}
@FunctionalInterface
interface PlayerLeave {
ActionResult onPlayerLeave(ServerPlayerEntity player);
}
}

View File

@@ -0,0 +1,20 @@
package fr.altarik.toolbox.core.mixin;
import fr.altarik.toolbox.core.event.PlayerLifecycleCallback;
import net.minecraft.network.ClientConnection;
import net.minecraft.server.PlayerManager;
import net.minecraft.server.network.ConnectedClientData;
import net.minecraft.server.network.ServerPlayerEntity;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
@Mixin(PlayerManager.class)
public class PlayerJoinEvent {
@Inject(method = "onPlayerConnect", at = @At(value = "RETURN"))
private void onPlayerConnect(ClientConnection connection, ServerPlayerEntity player, ConnectedClientData clientData, CallbackInfo ci) {
PlayerLifecycleCallback.PLAYER_JOIN.invoker().onPlayerJoin(player);
}
}

View File

@@ -0,0 +1,23 @@
package fr.altarik.toolbox.core.mixin;
import fr.altarik.toolbox.core.event.PlayerLifecycleCallback;
import net.minecraft.server.network.ServerPlayNetworkHandler;
import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.text.Text;
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;
@Mixin(ServerPlayNetworkHandler.class)
public class PlayerLeaveEvent {
@Shadow
public ServerPlayerEntity player;
@Inject(at = @At(value = "HEAD"), method = "onDisconnected")
private void onPlayerQuit(Text reason, CallbackInfo ci) {
PlayerLifecycleCallback.PLAYER_LEAVE.invoker().onPlayerLeave(player);
}
}

View File

@@ -0,0 +1,14 @@
{
"required": true,
"minVersion": "0.8",
"package": "fr.altarik.toolbox.core.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
"PlayerJoinEvent",
"PlayerLeaveEvent"
],
"verbose": false,
"injectors": {
"defaultRequire": 1
}
}

View File

@@ -0,0 +1,4 @@
accessWidener v2 named
accessible class net/minecraft/client/gui/widget/SimplePositioningWidget$Element
accessible method net/minecraft/client/gui/widget/SimplePositioningWidget$Element <init> (Lnet/minecraft/client/gui/widget/Widget;Lnet/minecraft/client/gui/widget/Positioner;)V

View File

@@ -19,7 +19,9 @@
"entrypoints": {
"main": []
},
"mixins": [],
"mixins": [
"Core.mixins.json"
],
"depends": {
"fabricloader": "^${loaderVersion}",
"fabric-api": "*",

View File

@@ -1,7 +1,20 @@
dependencies {
implementation 'org.postgresql:postgresql:42.6.0'
implementation 'org.postgresql:postgresql:42.7.5'
testImplementation 'com.google.code.gson:gson:2.10'
implementation project(':Core')
// implementation "org.hibernate.orm:hibernate-core:${project.hibernate_version}"
include "org.hibernate.orm:hibernate-core:${project.hibernate_version}"
include "jakarta.activation:jakarta.activation-api:2.1.1"
include "jakarta.inject:jakarta.inject-api:2.0.1"
include "jakarta.persistence:jakarta.persistence-api:3.1.0"
include "jakarta.transaction:jakarta.transaction-api:2.0.1"
include "jakarta.xml.bind:jakarta.xml.bind-api:4.0.0"
include "org.hibernate.common:hibernate-commons-annotations:7.0.3.Final"
include "org.jboss.logging:jboss-logging:3.5.0.Final"
include "com.fasterxml:classmate:1.5.1"
include "net.bytebuddy:byte-buddy:1.14.18"
include "org.antlr:antlr4-runtime:4.13.0"
include "io.smallrye:jandex:3.2.0"
}
test {

View File

@@ -2,7 +2,7 @@ import fr.altarik.CreateTag
import fr.altarik.ReportDiscord
plugins {
id 'fabric-loom' version '1.5-SNAPSHOT' apply false
id 'fabric-loom' version "${loom_version}" apply false
}
Properties local = new Properties()
@@ -81,8 +81,8 @@ allprojects {
}
dependencies {
testImplementation "org.junit.jupiter:junit-jupiter-api:${project.junit_version}"
testRuntimeOnly "org.junit.jupiter:junit-jupiter-engine:${project.junit_version}"
testImplementation "org.junit.jupiter:junit-jupiter:${project.junit_version}"
testRuntimeOnly "org.junit.platform:junit-platform-launcher"
minecraft "com.mojang:minecraft:${project.minecraft_version}"
mappings "net.fabricmc:yarn:${project.yarn_mappings}:v2"
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

View File

@@ -1,14 +1,16 @@
org.gradle.jvmargs=-Xmx1G
fabric.loom.multiProjectOptimisation=true
junit_version=5.9.0
junit_version=5.14.0
minecraft_version=1.20.4
yarn_mappings=1.20.4+build.3
loader_version=0.15.6
fabric_version=0.95.4+1.20.4
loader_version=0.17.2
fabric_version=0.97.3+1.20.4
hibernate_version=6.6.3.Final
loom_version=1.11-SNAPSHOT
maven_group=fr.altarik.toolbox
maven_version=5.0.0
maven_version=5.2.0
git_owner=quentinlegot
git_repo=Toolbox

View File

@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists