Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6abc7f9475 | ||
|
|
e2c63fde7c |
@@ -5,7 +5,7 @@ org.gradle.configuration-cache=false
|
|||||||
|
|
||||||
# Mod
|
# Mod
|
||||||
mod_id=video_player
|
mod_id=video_player
|
||||||
mod_version=0.4.25
|
mod_version=0.4.27
|
||||||
maven_group=com.ejclaw.videoplayer
|
maven_group=com.ejclaw.videoplayer
|
||||||
archives_base_name=video_player
|
archives_base_name=video_player
|
||||||
|
|
||||||
|
|||||||
@@ -180,27 +180,24 @@ public class JavaCvBackend implements VideoBackend {
|
|||||||
// stale srcAddr — closing the grabber there frees the av_frame plane and the next
|
// stale srcAddr — closing the grabber there frees the av_frame plane and the next
|
||||||
// memcpy crashes inside StubRoutines::jbyte_disjoint_arraycopy (exactly the 4K-delete
|
// memcpy crashes inside StubRoutines::jbyte_disjoint_arraycopy (exactly the 4K-delete
|
||||||
// crash dump we saw). So the safe rule is: only the decoder thread touches the
|
// crash dump we saw). So the safe rule is: only the decoder thread touches the
|
||||||
// grabber. External stop signals `running=false`, stops the audio line, interrupts the
|
// grabber. External stop signals `running=false`, stops the audio line, interrupts
|
||||||
// worker, and joins briefly; the worker's own `finally` calls grabber.close(). Inside
|
// the worker, and returns immediately; the worker's own `finally` calls
|
||||||
// the loop, grab() unblocks via the rw_timeout/timeout options (3 s, set in runLoop)
|
// grabber.close() whenever grab()/start() eventually returns.
|
||||||
// even on a stuck HTTP read, so the join below normally returns within a frame.
|
//
|
||||||
|
// We deliberately do NOT join the worker. close() runs on the client tick thread (via
|
||||||
|
// VideoPlayback.tick → Entry.close), and the worker can spend several seconds inside
|
||||||
|
// the native FFmpeg probe at the top of runLoop — probesize=8 MB and
|
||||||
|
// analyzeduration=2 s do not honor the `running` flag and Thread.interrupt() doesn't
|
||||||
|
// unblock native I/O. A bounded join() there (the old 2 s) is exactly the "place then
|
||||||
|
// immediately delete freezes the game for a moment" symptom: the worker hasn't
|
||||||
|
// entered the grab() loop yet, so flipping running=false has no effect on it until
|
||||||
|
// start() returns. The worker is a daemon, the audio line is already silenced above,
|
||||||
|
// and Entry has been removed from the active map by the caller — nothing observable
|
||||||
|
// depends on the grabber having been closed before this method returns.
|
||||||
Thread t = worker;
|
Thread t = worker;
|
||||||
worker = null;
|
worker = null;
|
||||||
if (t != null) {
|
if (t != null) {
|
||||||
t.interrupt();
|
t.interrupt();
|
||||||
try {
|
|
||||||
t.join(2000);
|
|
||||||
} catch (InterruptedException ie) {
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
}
|
|
||||||
if (t.isAlive()) {
|
|
||||||
// Worker still blocked in native grab() — let it finish on its own. Its
|
|
||||||
// finally still closes the grabber when grab() eventually returns / throws.
|
|
||||||
// No native pointers leak in the meantime because we don't touch them here.
|
|
||||||
VideoPlayerMod.LOG.warn(
|
|
||||||
"[{}] decoder did not exit within 2 s of stop; orphaning until next grab() returns",
|
|
||||||
VideoPlayerMod.MOD_ID);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
ready = false;
|
ready = false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -23,15 +23,29 @@ import net.minecraft.server.permissions.Permissions;
|
|||||||
import net.minecraft.world.level.block.Block;
|
import net.minecraft.world.level.block.Block;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* SPEC §4.5.1 — {@code /videoPlace <pos> <facing> <width> <height> <volume> <url>}.
|
* SPEC §4.5.1 — {@code /videoPlace} has two accepted forms:
|
||||||
*
|
*
|
||||||
* <p>{@code volume} is an integer 0..100 (percent) or {@code -1} to start muted. The percent
|
* <ul>
|
||||||
* form mirrors the GUI slider; {@code -1} is a CLI shortcut so admins don't need a follow-up
|
* <li><b>Legacy 5-arg</b>: {@code /videoPlace <pos> <facing> <width> <height> <url>}
|
||||||
* {@code /videoMute} step.
|
* — preserved for existing command blocks. Volume defaults to 50% and muted=false.
|
||||||
|
* The {@code url} here is a single-token string so it doesn't swallow the {@code volume}
|
||||||
|
* slot of the new form.</li>
|
||||||
|
* <li><b>New 6-arg</b>: {@code /videoPlace <pos> <facing> <width> <height> <volume> <url>}
|
||||||
|
* — {@code volume} is 0..100 (percent) or {@code -1} to start muted. The percent form
|
||||||
|
* mirrors the GUI slider; {@code -1} is a CLI shortcut so admins don't need a follow-up
|
||||||
|
* {@code /videoMute} step. {@code url} is greedy here, so URLs containing spaces (rare
|
||||||
|
* but possible after URL-decoding) still work.</li>
|
||||||
|
* </ul>
|
||||||
|
*
|
||||||
|
* <p>Brigadier disambiguates the two by the type of the 5th argument: integer → new form,
|
||||||
|
* non-integer token → legacy form.
|
||||||
*/
|
*/
|
||||||
public final class VideoPlaceCommand {
|
public final class VideoPlaceCommand {
|
||||||
private VideoPlaceCommand() {}
|
private VideoPlaceCommand() {}
|
||||||
|
|
||||||
|
/** Default volume (percent) applied to the legacy 5-arg form. */
|
||||||
|
private static final int DEFAULT_VOLUME_PCT = 50;
|
||||||
|
|
||||||
public static void register(CommandDispatcher<CommandSourceStack> dispatcher) {
|
public static void register(CommandDispatcher<CommandSourceStack> dispatcher) {
|
||||||
dispatcher.register(build("videoPlace"));
|
dispatcher.register(build("videoPlace"));
|
||||||
}
|
}
|
||||||
@@ -44,13 +58,33 @@ public final class VideoPlaceCommand {
|
|||||||
.then(Commands.argument("facing", StringArgumentType.word())
|
.then(Commands.argument("facing", StringArgumentType.word())
|
||||||
.then(Commands.argument("width", IntegerArgumentType.integer(1, 32))
|
.then(Commands.argument("width", IntegerArgumentType.integer(1, 32))
|
||||||
.then(Commands.argument("height", IntegerArgumentType.integer(1, 32))
|
.then(Commands.argument("height", IntegerArgumentType.integer(1, 32))
|
||||||
|
// New form: volume (int) + greedy url
|
||||||
.then(Commands.argument("volume", IntegerArgumentType.integer(-1, 100))
|
.then(Commands.argument("volume", IntegerArgumentType.integer(-1, 100))
|
||||||
.then(Commands.argument("url", StringArgumentType.greedyString())
|
.then(Commands.argument("url", StringArgumentType.greedyString())
|
||||||
.executes(VideoPlaceCommand::run)))))));
|
.executes(ctx -> runNew(ctx))))
|
||||||
|
// Legacy form: single-token url, no volume slot. Single-token string
|
||||||
|
// is intentional so "<int> https://..." cannot be parsed as a legacy
|
||||||
|
// url that happens to start with a number — Brigadier first tries the
|
||||||
|
// new branch and only falls through here if "volume" isn't an int.
|
||||||
|
.then(Commands.argument("url", StringArgumentType.string())
|
||||||
|
.executes(ctx -> runLegacy(ctx)))))));
|
||||||
}
|
}
|
||||||
|
|
||||||
private static int run(com.mojang.brigadier.context.CommandContext<CommandSourceStack> ctx)
|
private static int runNew(com.mojang.brigadier.context.CommandContext<CommandSourceStack> ctx)
|
||||||
throws CommandSyntaxException {
|
throws CommandSyntaxException {
|
||||||
|
int volumeArg = IntegerArgumentType.getInteger(ctx, "volume");
|
||||||
|
String url = StringArgumentType.getString(ctx, "url");
|
||||||
|
return runWithValues(ctx, volumeArg, url);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int runLegacy(com.mojang.brigadier.context.CommandContext<CommandSourceStack> ctx)
|
||||||
|
throws CommandSyntaxException {
|
||||||
|
String url = StringArgumentType.getString(ctx, "url");
|
||||||
|
return runWithValues(ctx, DEFAULT_VOLUME_PCT, url);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int runWithValues(com.mojang.brigadier.context.CommandContext<CommandSourceStack> ctx,
|
||||||
|
int volumeArg, String rawUrl) throws CommandSyntaxException {
|
||||||
CommandSourceStack src = ctx.getSource();
|
CommandSourceStack src = ctx.getSource();
|
||||||
ServerLevel level = src.getLevel();
|
ServerLevel level = src.getLevel();
|
||||||
BlockPos pos = BlockPosArgument.getLoadedBlockPos(ctx, "pos");
|
BlockPos pos = BlockPosArgument.getLoadedBlockPos(ctx, "pos");
|
||||||
@@ -61,13 +95,12 @@ public final class VideoPlaceCommand {
|
|||||||
}
|
}
|
||||||
int width = IntegerArgumentType.getInteger(ctx, "width");
|
int width = IntegerArgumentType.getInteger(ctx, "width");
|
||||||
int height = IntegerArgumentType.getInteger(ctx, "height");
|
int height = IntegerArgumentType.getInteger(ctx, "height");
|
||||||
int volumeArg = IntegerArgumentType.getInteger(ctx, "volume");
|
|
||||||
// -1 is the CLI mute shortcut; the BE keeps the underlying volume so an admin can
|
// -1 is the CLI mute shortcut; the BE keeps the underlying volume so an admin can
|
||||||
// /videoMute false later without re-typing a level. Anything 0..100 sets %-volume and
|
// /videoMute false later without re-typing a level. Anything 0..100 sets %-volume and
|
||||||
// clears mute.
|
// clears mute.
|
||||||
boolean placeMuted = volumeArg < 0;
|
boolean placeMuted = volumeArg < 0;
|
||||||
float placeVolume = placeMuted ? 0.5F : (volumeArg / 100.0F);
|
float placeVolume = placeMuted ? 0.5F : (volumeArg / 100.0F);
|
||||||
String raw = StringArgumentType.getString(ctx, "url").trim();
|
String raw = rawUrl == null ? "" : rawUrl.trim();
|
||||||
// Accept either an http(s) URL or a /videoCache add <name> entry: resolveUrlOrName()
|
// Accept either an http(s) URL or a /videoCache add <name> entry: resolveUrlOrName()
|
||||||
// returns the canonical URL in both cases, or null when a non-URL string didn't match
|
// returns the canonical URL in both cases, or null when a non-URL string didn't match
|
||||||
// any named entry.
|
// any named entry.
|
||||||
|
|||||||
Reference in New Issue
Block a user