add motion blur feature

This commit is contained in:
2026-07-08 02:13:44 +04:00
parent 9be1fd8f6b
commit 4e7c027ec0
4 changed files with 101 additions and 20 deletions

View File

@@ -156,6 +156,8 @@ public class RenderSettings {
private final boolean cameraPathExport; private final boolean cameraPathExport;
private final AntiAliasing antiAliasing; private final AntiAliasing antiAliasing;
private final int lensBlurSamples; private final int lensBlurSamples;
private final int motionBlurSubframes;
private final float shutterAngle;
private final String exportCommand; private final String exportCommand;
// We switched from rgb24 to bgra for performance at one point, so for backwards compatibility we need to // We switched from rgb24 to bgra for performance at one point, so for backwards compatibility we need to
@@ -191,6 +193,8 @@ public class RenderSettings {
false, false,
RenderSettings.AntiAliasing.NONE, RenderSettings.AntiAliasing.NONE,
16, 16,
1,
180f,
"", "",
RenderSettings.EncodingPreset.MP4_CUSTOM.getValue(), RenderSettings.EncodingPreset.MP4_CUSTOM.getValue(),
false false
@@ -218,6 +222,8 @@ public class RenderSettings {
boolean cameraPathExport, boolean cameraPathExport,
AntiAliasing antiAliasing, AntiAliasing antiAliasing,
int lensBlurSamples, int lensBlurSamples,
int motionBlurSubframes,
float shutterAngle,
String exportCommand, String exportCommand,
String exportArguments, String exportArguments,
boolean highPerformance boolean highPerformance
@@ -242,6 +248,8 @@ public class RenderSettings {
this.cameraPathExport = cameraPathExport; this.cameraPathExport = cameraPathExport;
this.antiAliasing = antiAliasing; this.antiAliasing = antiAliasing;
this.lensBlurSamples = lensBlurSamples; this.lensBlurSamples = lensBlurSamples;
this.motionBlurSubframes = motionBlurSubframes;
this.shutterAngle = shutterAngle;
this.exportCommand = exportCommand; this.exportCommand = exportCommand;
this.exportArguments = exportArguments; this.exportArguments = exportArguments;
this.highPerformance = highPerformance; this.highPerformance = highPerformance;
@@ -269,6 +277,8 @@ public class RenderSettings {
cameraPathExport, cameraPathExport,
antiAliasing, antiAliasing,
lensBlurSamples, lensBlurSamples,
motionBlurSubframes,
shutterAngle,
exportCommand, exportCommand,
exportArguments, exportArguments,
highPerformance highPerformance
@@ -464,6 +474,10 @@ public class RenderSettings {
public int getLensBlurSamples() { return lensBlurSamples; } public int getLensBlurSamples() { return lensBlurSamples; }
public int getMotionBlurSubframes() { return motionBlurSubframes; }
public float getShutterAngle() { return shutterAngle; }
public String getExportCommand() { public String getExportCommand() {
return exportCommand; return exportCommand;
} }

View File

@@ -8,6 +8,13 @@ import com.replaymod.replaystudio.pathing.path.Path;
import com.replaymod.simplepathing.ReplayModSimplePathing; import com.replaymod.simplepathing.ReplayModSimplePathing;
import com.replaymod.pathing.properties.LensProperties; import com.replaymod.pathing.properties.LensProperties;
import com.replaymod.render.RenderSettings;
import com.replaymod.render.utils.ByteBufferPool;
import com.replaymod.replay.ReplayHandler;
import com.replaymod.replay.ReplayModReplay;
import com.replaymod.replaystudio.pathing.path.Timeline;
import com.replaymod.simplepathing.SPTimeline;
import org.apache.commons.lang3.tuple.Triple; import org.apache.commons.lang3.tuple.Triple;
import java.util.Collections; import java.util.Collections;
@@ -15,6 +22,10 @@ import java.util.Map;
import java.util.concurrent.ThreadLocalRandom; import java.util.concurrent.ThreadLocalRandom;
import java.nio.ByteBuffer;
import de.johni0702.minecraft.gui.utils.lwjgl.Dimension;
public class RealLensOpenGlFrameCapturer public class RealLensOpenGlFrameCapturer
extends OpenGlFrameCapturer<RealLensOpenGlFrame, RealLensOpenGlFrameCapturer.Data> { extends OpenGlFrameCapturer<RealLensOpenGlFrame, RealLensOpenGlFrameCapturer.Data> {
@@ -78,41 +89,84 @@ public class RealLensOpenGlFrameCapturer
} }
private final Path positionPath; private final Path positionPath;
private final Timeline timeline;
private final ReplayHandler replayHandler;
public RealLensOpenGlFrameCapturer( public RealLensOpenGlFrameCapturer(
WorldRenderer worldRenderer, WorldRenderer worldRenderer,
RenderInfo renderInfo RenderInfo renderInfo
) { ) {
super(worldRenderer, renderInfo); super(worldRenderer, renderInfo);
this.positionPath = ReplayModSimplePathing.instance.getCurrentTimeline().getPositionPath(); SPTimeline spTimeline = ReplayModSimplePathing.instance.getCurrentTimeline();
this.positionPath = spTimeline.getPositionPath();
this.timeline = spTimeline.getTimeline();
this.replayHandler = ReplayModReplay.instance.getReplayHandler();
} }
@Override @Override
public Map<Channel, RealLensOpenGlFrame> process() { public Map<Channel, RealLensOpenGlFrame> process() {
float partialTicks = renderInfo.updateForNextFrame(); // Продвигает состояние игры к времени ТЕКУЩЕГО выходного кадра
// (через onTick -> timeline.applyToGame(videoTime)).
renderInfo.updateForNextFrame();
int frameId = framesDone++; int frameId = framesDone++;
int fps = renderInfo.getRenderSettings().getFramesPerSecond(); RenderSettings settings = renderInfo.getRenderSettings();
long keyframeTime = (long) frameId * 1000 / fps; int fps = settings.getFramesPerSecond();
int apertureSamples = settings.getLensBlurSamples();
int subframes = Math.max(1, settings.getMotionBlurSubframes()); // M
float shutter = settings.getShutterAngle(); // градусы
float focalDistance = positionPath.getValue(LensProperties.FOCAL_DISTANCE, keyframeTime).map(Triple::getLeft).orElse(5.0f); double dt = 1000.0 / fps; // длительность выходного кадра, мс
float apertureRadius = positionPath.getValue(LensProperties.APERTURE_RADIUS, keyframeTime).map(Triple::getLeft).orElse(0.05f); // сколько суб-кадров затвор открыт (округляем до целого)
int samples = renderInfo.getRenderSettings().getLensBlurSamples(); int openCount = Math.max(1, (int) Math.round(subframes * shutter / 360.0));
if (positionPath == null) { int width = getFrameWidth();
System.err.println("positionPath is null!"); int height = getFrameHeight();
focalDistance = Float.MAX_VALUE; int bpp = 4;
apertureRadius = 0.01f; int totalBytes = width * height * bpp;
// ОДИН аккумулятор на весь выходной кадр (сырой BGRA-порядок из glReadPixels)
long[] accumulator = new long[totalBytes];
int totalSamples = 0;
for (int j = 0; j < openCount; j++) {
// абсолютное время суб-кадра на таймлайне (мс), только вперёд
long tSub = (long) (frameId * dt + (j / (double) subframes) * dt);
// пересэмплить камеру + сущности + FOV/линзу на суб-времени
timeline.applyToGame(tSub, replayHandler);
// partialTicks для интерполяции сущностей внутри тика (50 мс)
float subPartialTicks = (float) ((tSub % 50L) / 50.0);
// DOF-параметры берём тоже на суб-времени, чтобы фокус ехал во время смаза
float focalDistance = positionPath.getValue(LensProperties.FOCAL_DISTANCE, tSub).map(Triple::getLeft).orElse(5.0f);
float apertureRadius = positionPath.getValue(LensProperties.APERTURE_RADIUS, tSub).map(Triple::getLeft).orElse(0.05f);
Data[] cameras = calculateCameras(focalDistance, apertureRadius, apertureSamples);
for (Data cam : cameras) {
OpenGlFrame sub = renderFrame(frameId, subPartialTicks, cam);
ByteBuffer buf = sub.getByteBuffer();
buf.rewind();
for (int i = 0; i < totalBytes; i++) {
accumulator[i] += (buf.get(i) & 0xFF);
}
ByteBufferPool.release(buf); // сразу освобождаем -> нет OOM
totalSamples++;
}
} }
Data[] cameras = calculateCameras(focalDistance, apertureRadius, samples); // усредняем в один кадр
ByteBuffer out = ByteBufferPool.allocate(totalBytes);
OpenGlFrame[] frames = new OpenGlFrame[cameras.length]; for (int i = 0; i < totalBytes; i++) {
out.put((byte) (accumulator[i] / totalSamples));
for (int i = 0; i < cameras.length; i++) {
frames[i] = renderFrame(frameId, partialTicks, cameras[i]);
} }
out.rewind();
return Collections.singletonMap(Channel.BRGA, new RealLensOpenGlFrame(frames)); OpenGlFrame averaged = new OpenGlFrame(frameId, new Dimension(width, height), bpp, out);
// Оборачиваем в RealLensOpenGlFrame с ОДНИМ кадром — процессор его пропустит через
// openGlBytesToBitmap (flip + swap R/B) и поделит на 1. Результат идентичен старому DOF.
return Collections.singletonMap(Channel.BRGA, new RealLensOpenGlFrame(new OpenGlFrame[]{ averaged }));
} }
} }

View File

@@ -102,6 +102,8 @@ public class GuiExportFailed extends GuiScreen {
oldSettings.isCameraPathExport(), oldSettings.isCameraPathExport(),
oldSettings.getAntiAliasing(), oldSettings.getAntiAliasing(),
oldSettings.getLensBlurSamples(), oldSettings.getLensBlurSamples(),
oldSettings.getMotionBlurSubframes(),
oldSettings.getShutterAngle(),
oldSettings.getExportCommand(), oldSettings.getExportCommand(),
oldSettings.getEncodingPreset().getValue(), oldSettings.getEncodingPreset().getValue(),
oldSettings.isHighPerformance() oldSettings.isHighPerformance()

View File

@@ -104,6 +104,8 @@ public class GuiRenderSettings extends AbstractGuiPopup<GuiRenderSettings> {
public final GuiNumberField videoWidth = new GuiNumberField().setSize(50, 20).setMinValue(1).setValidateOnFocusChange(true); public final GuiNumberField videoWidth = new GuiNumberField().setSize(50, 20).setMinValue(1).setValidateOnFocusChange(true);
public final GuiNumberField videoHeight = new GuiNumberField().setSize(50, 20).setMinValue(1).setValidateOnFocusChange(true); public final GuiNumberField videoHeight = new GuiNumberField().setSize(50, 20).setMinValue(1).setValidateOnFocusChange(true);
public final GuiNumberField lensBlurSamples = new GuiNumberField().setSize(50, 20).setMinValue(1).setMaxValue(512).setValidateOnFocusChange(true); public final GuiNumberField lensBlurSamples = new GuiNumberField().setSize(50, 20).setMinValue(1).setMaxValue(512).setValidateOnFocusChange(true);
public final GuiNumberField motionBlurSubframes = new GuiNumberField().setSize(50, 20).setMinValue(1).setMaxValue(512).setValidateOnFocusChange(true);
public final GuiNumberField shutterAngle = new GuiNumberField().setSize(50, 20).setMinValue(0).setMaxValue(360).setValidateOnFocusChange(true);
public final GuiSlider frameRateSlider = new GuiSlider().onValueChanged(new Runnable() { public final GuiSlider frameRateSlider = new GuiSlider().onValueChanged(new Runnable() {
@Override @Override
public void run() { public void run() {
@@ -201,7 +203,9 @@ public class GuiRenderSettings extends AbstractGuiPopup<GuiRenderSettings> {
depthMap, new GuiLabel(), depthMap, new GuiLabel(),
cameraPathExport, new GuiLabel(), cameraPathExport, new GuiLabel(),
new GuiLabel().setI18nText("replaymod.gui.rendersettings.antialiasing"), antiAliasingDropdown, new GuiLabel().setI18nText("replaymod.gui.rendersettings.antialiasing"), antiAliasingDropdown,
new GuiLabel().setI18nText("replaymod.gui.rendersettings.lensblursamples"), lensBlurSamples)); new GuiLabel().setI18nText("replaymod.gui.rendersettings.lensblursamples"), lensBlurSamples,
new GuiLabel().setI18nText("replaymod.gui.rendersettings.motionblursubframes"), motionBlurSubframes,
new GuiLabel().setI18nText("replaymod.gui.rendersettings.shutterangle"), shutterAngle));
public final GuiTextField exportCommand = new GuiTextField().setI18nHint("replaymod.gui.rendersettings.command") public final GuiTextField exportCommand = new GuiTextField().setI18nHint("replaymod.gui.rendersettings.command")
.setSize(55, 20).setMaxLength(100).onTextChanged((old) -> updateInputs()); .setSize(55, 20).setMaxLength(100).onTextChanged((old) -> updateInputs());
@@ -418,7 +422,10 @@ public class GuiRenderSettings extends AbstractGuiPopup<GuiRenderSettings> {
boolean commandChanged = !exportCommand.getText().isEmpty(); boolean commandChanged = !exportCommand.getText().isEmpty();
boolean argsChanged = !encodingPresetDropdown.getSelectedValue().getValue().equals(exportArguments.getText()); boolean argsChanged = !encodingPresetDropdown.getSelectedValue().getValue().equals(exportArguments.getText());
exportReset.setEnabled(commandChanged || argsChanged); exportReset.setEnabled(commandChanged || argsChanged);
lensBlurSamples.setEnabled(renderMethod == RenderSettings.RenderMethod.REALLENS); boolean isRealLens = renderMethod == RenderSettings.RenderMethod.REALLENS;
lensBlurSamples.setEnabled(isRealLens);
motionBlurSubframes.setEnabled(isRealLens);
shutterAngle.setEnabled(isRealLens);
} }
protected String updateResolution() { protected String updateResolution() {
@@ -546,6 +553,8 @@ public class GuiRenderSettings extends AbstractGuiPopup<GuiRenderSettings> {
cameraPathExport.setChecked(settings.isCameraPathExport()); cameraPathExport.setChecked(settings.isCameraPathExport());
antiAliasingDropdown.setSelected(settings.getAntiAliasing()); antiAliasingDropdown.setSelected(settings.getAntiAliasing());
lensBlurSamples.setValue(settings.getLensBlurSamples()); lensBlurSamples.setValue(settings.getLensBlurSamples());
motionBlurSubframes.setValue(settings.getMotionBlurSubframes());
shutterAngle.setValue((int) settings.getShutterAngle());
exportCommand.setText(settings.getExportCommand()); exportCommand.setText(settings.getExportCommand());
String exportArguments = settings.getExportArguments(); String exportArguments = settings.getExportArguments();
if (exportArguments == null || settings.getEncodingPreset() == null || invalidEncodingPreset) { if (exportArguments == null || settings.getEncodingPreset() == null || invalidEncodingPreset) {
@@ -580,6 +589,8 @@ public class GuiRenderSettings extends AbstractGuiPopup<GuiRenderSettings> {
cameraPathExport.isChecked(), cameraPathExport.isChecked(),
serialize || antiAliasingDropdown.isEnabled() ? antiAliasingDropdown.getSelectedValue() : RenderSettings.AntiAliasing.NONE, serialize || antiAliasingDropdown.isEnabled() ? antiAliasingDropdown.getSelectedValue() : RenderSettings.AntiAliasing.NONE,
lensBlurSamples.getInteger(), lensBlurSamples.getInteger(),
motionBlurSubframes.getInteger(),
(float) shutterAngle.getInteger(),
exportCommand.getText(), exportCommand.getText(),
exportArguments.getText(), exportArguments.getText(),
highPerformance highPerformance