5 Commits
Author SHA1 Message Date
dmg 9f3f27bb45 chore(knowledge): move canonical docs to shared SoMC wiki
CI / build (push) Successful in 3m7s
Release / release (push) Successful in 3m49s
2026-09-09 23:18:01 -04:00
dmg bd48e33ace fix(stats): skip registry entries without keys
Release / release (push) Successful in 2m18s
CI / build (push) Successful in 1m3s
2026-08-08 14:52:01 -04:00
dmg 03acea6ba5 fix(stats): use compatible Bukkit registry keys
Release / release (push) Successful in 2m18s
CI / build (push) Successful in 1m6s
2026-08-08 12:51:55 -04:00
dmg c76ea5b434 docs(design): add user story knowledge bundle
CI / build (push) Successful in 3m35s
Release / release (push) Successful in 4m6s
2026-08-08 12:31:15 -04:00
dmg baed3b4901 ci: harden artifact and release tooling
CI / build (push) Successful in 1m25s
Release / release (push) Successful in 1m51s
2026-08-01 11:55:45 -04:00
6 changed files with 78 additions and 14 deletions
+1 -7
View File
@@ -32,15 +32,9 @@ jobs:
- name: Build and test - name: Build and test
run: ./gradlew clean check jar run: ./gradlew clean check jar
- name: Name development artifact
run: |
short_sha=$(printf '%s' "$GITHUB_SHA" | cut -c1-7)
cp build/libs/spigot-event-producer-0.1.0-SNAPSHOT.jar \
"build/libs/spigot-event-producer-dev-${short_sha}.jar"
- name: Upload development artifact - name: Upload development artifact
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
with: with:
name: spigot-event-producer-${{ github.sha }} name: spigot-event-producer-${{ github.sha }}
path: build/libs/spigot-event-producer-dev-*.jar path: build/libs/*.jar
if-no-files-found: error if-no-files-found: error
+3 -3
View File
@@ -46,9 +46,9 @@ jobs:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }}
run: | run: |
npx -y \ npx -y \
-p semantic-release \ -p semantic-release@24.2.9 \
-p @semantic-release/commit-analyzer \ -p @semantic-release/commit-analyzer@13.0.1 \
-p @semantic-release/release-notes-generator \ -p @semantic-release/release-notes-generator@14.1.0 \
semantic-release \ semantic-release \
--branches main \ --branches main \
--plugins @semantic-release/commit-analyzer,@semantic-release/release-notes-generator --plugins @semantic-release/commit-analyzer,@semantic-release/release-notes-generator
+9
View File
@@ -0,0 +1,9 @@
# spigot-event-producer agent entrypoint
The canonical stories, engineering guidance, and **all process documents** are in the private [SoMC OKF wiki](https://git.garvis.dev/dmg/somc-okf/src/branch/main/index.md).
Before work, read the sibling `../somc-okf/index.md`, `../somc-okf/processes/index.md`, `../somc-okf/projects/spigot-event-producer/index.md`, `engineering.md` in that project section, and relevant `../somc-okf/user-stories/spigot-event-producer/` stories. Also follow the parent workspace `AGENTS.md` when present.
For standalone checkouts, start at the [project page](https://git.garvis.dev/dmg/somc-okf/src/branch/main/projects/spigot-event-producer/index.md) and [shared process](https://git.garvis.dev/dmg/somc-okf/src/branch/main/processes/development.md). Obtain wiki access before feature work; do not recreate a local knowledge bundle. Source builds do not require private wiki access.
Development follows [Development cycle](https://git.garvis.dev/dmg/somc-okf/src/branch/main/runbooks/development-cycle.md): approved stories, failing tests, passing implementation, verification, then source/wiki commit and push. GitOps updates are committed locally **without pushing**; only [Do release](https://git.garvis.dev/dmg/somc-okf/src/branch/main/runbooks/do-release.md) authorizes a reviewed GitOps push.
@@ -0,0 +1,21 @@
package games.dmg.spigotevents.stats;
import org.bukkit.Keyed;
import org.bukkit.NamespacedKey;
final class BukkitRegistryKeys {
private BukkitRegistryKeys() {}
static NamespacedKey get(Keyed value) {
try {
return value.getKey();
} catch (IllegalArgumentException ignored) {
return null;
}
}
static String format(Keyed value, String fallback) {
NamespacedKey key = get(value);
return key == null ? fallback : key.toString();
}
}
@@ -44,8 +44,7 @@ public final class PlayerSnapshotCollector {
data.put("pitch", location.getPitch()); data.put("pitch", location.getPitch());
data.put("game_mode", player.getGameMode().name().toLowerCase()); data.put("game_mode", player.getGameMode().name().toLowerCase());
var biome = location.getBlock().getBiome(); var biome = location.getBlock().getBiome();
var biomeKey = biome.getKeyOrNull(); data.put("biome", BukkitRegistryKeys.format(biome, biome.toString()));
data.put("biome", biomeKey == null ? biome.toString() : biomeKey.toString());
publish("player.location", identity(player), data); publish("player.location", identity(player), data);
} }
@@ -157,9 +156,13 @@ public final class PlayerSnapshotCollector {
if ((blocksOnly && !material.isBlock()) || (!blocksOnly && !material.isItem())) { if ((blocksOnly && !material.isBlock()) || (!blocksOnly && !material.isItem())) {
continue; continue;
} }
var materialKey = BukkitRegistryKeys.get(material);
if (materialKey == null) {
continue;
}
try { try {
target.put( target.put(
statistic.getKey() + "/" + material.getKeyOrThrow(), statistic.getKey() + "/" + materialKey,
currentPlayer.getStatistic(statistic, material)); currentPlayer.getStatistic(statistic, material));
} catch (IllegalArgumentException ignored) { } catch (IllegalArgumentException ignored) {
// Bukkit rejects combinations not represented by the game. // Bukkit rejects combinations not represented by the game.
@@ -180,9 +183,13 @@ public final class PlayerSnapshotCollector {
while (operations < budget && subtypeIndex < ENTITY_TYPES.length) { while (operations < budget && subtypeIndex < ENTITY_TYPES.length) {
EntityType entityType = ENTITY_TYPES[subtypeIndex++]; EntityType entityType = ENTITY_TYPES[subtypeIndex++];
operations++; operations++;
var entityTypeKey = BukkitRegistryKeys.get(entityType);
if (entityTypeKey == null) {
continue;
}
try { try {
target.put( target.put(
statistic.getKey() + "/" + entityType.getKeyOrThrow(), statistic.getKey() + "/" + entityTypeKey,
currentPlayer.getStatistic(statistic, entityType)); currentPlayer.getStatistic(statistic, entityType));
} catch (IllegalArgumentException ignored) { } catch (IllegalArgumentException ignored) {
// Bukkit rejects unsupported entity types. // Bukkit rejects unsupported entity types.
@@ -0,0 +1,33 @@
package games.dmg.spigotevents.stats;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNull;
import org.bukkit.NamespacedKey;
import org.bukkit.Keyed;
import org.junit.jupiter.api.Test;
class BukkitRegistryKeysTest {
@Test
void formatsARegisteredKey() {
Keyed keyed = () -> NamespacedKey.minecraft("plains");
assertEquals("minecraft:plains", BukkitRegistryKeys.format(keyed, "fallback"));
}
@Test
void reportsAnUnavailableKey() {
Keyed keyed = () -> null;
assertNull(BukkitRegistryKeys.get(keyed));
}
@Test
void reportsAKeyThatBukkitRejectsAsUnavailable() {
Keyed keyed = () -> {
throw new IllegalArgumentException("Registry entry does not have a key");
};
assertNull(BukkitRegistryKeys.get(keyed));
}
}