Compare commits
18 Commits
1.8.9-2.0.
...
1.8-2.0.0-
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1ffeb010d5 | ||
|
|
c122d30065 | ||
|
|
27fd25ae84 | ||
|
|
db6b0ff5a6 | ||
|
|
d61d0ac670 | ||
|
|
f7460f9bf5 | ||
|
|
bdbffd5c33 | ||
|
|
5cbfd2884e | ||
|
|
6095aef3d1 | ||
|
|
64898ce288 | ||
|
|
70e3e54038 | ||
|
|
3f2b3d62f7 | ||
|
|
d2def94fc1 | ||
|
|
2c64030459 | ||
|
|
4deb374a7f | ||
|
|
5302bcaed4 | ||
|
|
057edccf26 | ||
|
|
cd16211309 |
Submodule ReplayStudio updated: 2344abe0cd...c615476693
@@ -19,7 +19,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'net.minecraftforge.gradle:ForgeGradle:2.1-SNAPSHOT'
|
classpath 'net.minecraftforge.gradle:ForgeGradle:2.0-SNAPSHOT'
|
||||||
classpath 'org.spongepowered:mixingradle:0.3-SNAPSHOT'
|
classpath 'org.spongepowered:mixingradle:0.3-SNAPSHOT'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -36,9 +36,9 @@ archivesBaseName = "replaymod"
|
|||||||
|
|
||||||
minecraft {
|
minecraft {
|
||||||
coreMod = 'com.replaymod.core.LoadingPlugin'
|
coreMod = 'com.replaymod.core.LoadingPlugin'
|
||||||
version = '1.8.9-11.15.1.1722'
|
version = '1.8-11.14.4.1563'
|
||||||
runDir = "eclipse"
|
runDir = "eclipse"
|
||||||
mappings = "stable_22"
|
mappings = "snapshot_nodoc_20141130"
|
||||||
replace '@MOD_VERSION@', project.version
|
replace '@MOD_VERSION@', project.version
|
||||||
replace '@MC_VERSION@', project.minecraft.version
|
replace '@MC_VERSION@', project.minecraft.version
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -56,7 +56,7 @@ Please use [Optifine](https://optifine.net/) instead.
|
|||||||
|
|
||||||
### Custom Main Menu [custom-main-menu]
|
### Custom Main Menu [custom-main-menu]
|
||||||
The [Custom Main Menu](https://mods.curse.com/mc-mods/minecraft/226406-custom-main-menu) mod is often used in mod packs to customize their Main Menu with a button layout fitting the background image, links to their website / bug tracker and similar.
|
The [Custom Main Menu](https://mods.curse.com/mc-mods/minecraft/226406-custom-main-menu) mod is often used in mod packs to customize their Main Menu with a button layout fitting the background image, links to their website / bug tracker and similar.
|
||||||
If you are familiar with it, the button ids for the Replay Mod are: **17890234** (text: `replaymod.gui.replayviewer`), **17890235** (text: `replaymod.gui.replayviewer`) and **17890236** (text: `replaymod.gui.replaycenter`)
|
If you are familiar with it, the button ids for the Replay Mod are: **17890234** (text: `replaymod.gui.replayviewer`), **17890237** (text: `replaymod.gui.replayeditor`) and **17890236** (text: `replaymod.gui.replaycenter`)
|
||||||
|
|
||||||
Due to the nature of this Custom Main Menu mod, buttons added to the Main Menu by 3rd party mods like the **Replay Mod** will not show up by default.
|
Due to the nature of this Custom Main Menu mod, buttons added to the Main Menu by 3rd party mods like the **Replay Mod** will not show up by default.
|
||||||
Thus, to access the Replay Viewer/Editor/Center, you need to manually configure the position for those buttons.
|
Thus, to access the Replay Viewer/Editor/Center, you need to manually configure the position for those buttons.
|
||||||
|
|||||||
2
jGui
2
jGui
Submodule jGui updated: 2ed5da06b7...a77d2f3f50
@@ -4,7 +4,7 @@ import net.minecraftforge.fml.relauncher.CoreModManager;
|
|||||||
import net.minecraftforge.fml.relauncher.IFMLLoadingPlugin;
|
import net.minecraftforge.fml.relauncher.IFMLLoadingPlugin;
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.spongepowered.asm.launch.MixinBootstrap;
|
import org.spongepowered.asm.launch.MixinBootstrap;
|
||||||
import org.spongepowered.asm.mixin.Mixins;
|
import org.spongepowered.asm.mixin.MixinEnvironment;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.net.URISyntaxException;
|
import java.net.URISyntaxException;
|
||||||
@@ -16,10 +16,10 @@ public class LoadingPlugin implements IFMLLoadingPlugin {
|
|||||||
|
|
||||||
public LoadingPlugin() {
|
public LoadingPlugin() {
|
||||||
MixinBootstrap.init();
|
MixinBootstrap.init();
|
||||||
Mixins.addConfiguration("mixins.recording.replaymod.json");
|
MixinEnvironment.getDefaultEnvironment().addConfiguration("mixins.recording.replaymod.json");
|
||||||
Mixins.addConfiguration("mixins.render.replaymod.json");
|
MixinEnvironment.getDefaultEnvironment().addConfiguration("mixins.render.replaymod.json");
|
||||||
Mixins.addConfiguration("mixins.replay.replaymod.json");
|
MixinEnvironment.getDefaultEnvironment().addConfiguration("mixins.replay.replaymod.json");
|
||||||
Mixins.addConfiguration("mixins.compat.shaders.replaymod.json");
|
MixinEnvironment.getDefaultEnvironment().addConfiguration("mixins.compat.shaders.replaymod.json");
|
||||||
|
|
||||||
CodeSource codeSource = getClass().getProtectionDomain().getCodeSource();
|
CodeSource codeSource = getClass().getProtectionDomain().getCodeSource();
|
||||||
if (codeSource != null) {
|
if (codeSource != null) {
|
||||||
@@ -29,7 +29,7 @@ public class LoadingPlugin implements IFMLLoadingPlugin {
|
|||||||
if (file.isFile()) {
|
if (file.isFile()) {
|
||||||
// This forces forge to reexamine the jar file for FML mods
|
// This forces forge to reexamine the jar file for FML mods
|
||||||
// Should eventually be handled by Mixin itself, maybe?
|
// Should eventually be handled by Mixin itself, maybe?
|
||||||
CoreModManager.getIgnoredMods().remove(file.getName());
|
CoreModManager.getLoadedCoremods().remove(file.getName());
|
||||||
}
|
}
|
||||||
} catch (URISyntaxException e) {
|
} catch (URISyntaxException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
|||||||
@@ -14,12 +14,7 @@ import net.minecraft.client.Minecraft;
|
|||||||
import net.minecraft.client.settings.GameSettings;
|
import net.minecraft.client.settings.GameSettings;
|
||||||
import net.minecraft.crash.CrashReport;
|
import net.minecraft.crash.CrashReport;
|
||||||
import net.minecraft.crash.CrashReportCategory;
|
import net.minecraft.crash.CrashReportCategory;
|
||||||
import net.minecraft.util.ChatComponentText;
|
import net.minecraft.util.*;
|
||||||
import net.minecraft.util.ChatComponentTranslation;
|
|
||||||
import net.minecraft.util.ChatStyle;
|
|
||||||
import net.minecraft.util.EnumChatFormatting;
|
|
||||||
import net.minecraft.util.IChatComponent;
|
|
||||||
import net.minecraft.util.ResourceLocation;
|
|
||||||
import net.minecraftforge.common.config.Configuration;
|
import net.minecraftforge.common.config.Configuration;
|
||||||
import net.minecraftforge.fml.client.FMLClientHandler;
|
import net.minecraftforge.fml.client.FMLClientHandler;
|
||||||
import net.minecraftforge.fml.common.FMLCommonHandler;
|
import net.minecraftforge.fml.common.FMLCommonHandler;
|
||||||
@@ -36,6 +31,7 @@ import org.apache.commons.io.FileUtils;
|
|||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import java.util.Queue;
|
||||||
|
|
||||||
@Mod(modid = ReplayMod.MOD_ID,
|
@Mod(modid = ReplayMod.MOD_ID,
|
||||||
useMetadata = true,
|
useMetadata = true,
|
||||||
@@ -130,7 +126,150 @@ public class ReplayMod {
|
|||||||
if(!FMLClientHandler.instance().hasOptifine())
|
if(!FMLClientHandler.instance().hasOptifine())
|
||||||
GameSettings.Options.RENDER_DISTANCE.setValueMax(64f);
|
GameSettings.Options.RENDER_DISTANCE.setValueMax(64f);
|
||||||
|
|
||||||
testIfMoeshAndExitMinecraft();
|
if (System.getProperty("replaymod.render.file") != null) {
|
||||||
|
final File file = new File(System.getProperty("replaymod.render.file"));
|
||||||
|
if (!file.exists()) {
|
||||||
|
throw new IOException("File \"" + file.getPath() + "\" not found.");
|
||||||
|
}
|
||||||
|
|
||||||
|
final String path = System.getProperty("replaymod.render.path");
|
||||||
|
String type = System.getProperty("replaymod.render.type");
|
||||||
|
String bitrate = System.getProperty("replaymod.render.bitrate");
|
||||||
|
String fps = System.getProperty("replaymod.render.fps");
|
||||||
|
String waitForChunks = System.getProperty("replaymod.render.waitforchunks");
|
||||||
|
String linearMovement = System.getProperty("replaymod.render.linearmovement");
|
||||||
|
String skyColor = System.getProperty("replaymod.render.skycolor");
|
||||||
|
String width = System.getProperty("replaymod.render.width");
|
||||||
|
String height = System.getProperty("replaymod.render.height");
|
||||||
|
String exportCommand = System.getProperty("replaymod.render.exportcommand");
|
||||||
|
String exportCommandArgs = System.getProperty("replaymod.render.exportcommandargs");
|
||||||
|
/*
|
||||||
|
final RenderOptions options = new RenderOptions();
|
||||||
|
if (bitrate != null) {
|
||||||
|
options.setBitrate(bitrate);
|
||||||
|
}
|
||||||
|
if (fps != null) {
|
||||||
|
options.setFps(Integer.parseInt(fps));
|
||||||
|
}
|
||||||
|
if (waitForChunks != null) {
|
||||||
|
options.setWaitForChunks(Boolean.parseBoolean(waitForChunks));
|
||||||
|
}
|
||||||
|
if (linearMovement != null) {
|
||||||
|
options.setLinearMovement(Boolean.parseBoolean(linearMovement));
|
||||||
|
}
|
||||||
|
if (skyColor != null) {
|
||||||
|
if (skyColor.startsWith("0x")) {
|
||||||
|
options.setSkyColor(Integer.parseInt(skyColor.substring(2), 16));
|
||||||
|
} else {
|
||||||
|
options.setSkyColor(Integer.parseInt(skyColor));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if (width != null) {
|
||||||
|
options.setWidth(Integer.parseInt(width));
|
||||||
|
}
|
||||||
|
if (height != null) {
|
||||||
|
options.setHeight(Integer.parseInt(height));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (exportCommand != null) {
|
||||||
|
options.setExportCommand(exportCommand);
|
||||||
|
}
|
||||||
|
if (exportCommandArgs != null) {
|
||||||
|
options.setExportCommandArgs(exportCommandArgs);
|
||||||
|
} else {
|
||||||
|
options.setExportCommandArgs(EncodingPreset.MP4DEFAULT.getCommandLineArgs());
|
||||||
|
}
|
||||||
|
|
||||||
|
options.setOutputFile(new File(String.valueOf(System.currentTimeMillis())));
|
||||||
|
|
||||||
|
Pipelines.Preset pipelinePreset = Pipelines.Preset.DEFAULT;
|
||||||
|
if (type != null) {
|
||||||
|
String[] parts = type.split(":");
|
||||||
|
type = parts[0].toUpperCase();
|
||||||
|
if ("NORMAL".equals(type) || "DEFAULT".equals(type)) {
|
||||||
|
pipelinePreset = Pipelines.Preset.DEFAULT;
|
||||||
|
} else if ("STEREO".equals(type) || "STEREOSCOPIC".equals(type)) {
|
||||||
|
pipelinePreset = Pipelines.Preset.STEREOSCOPIC;
|
||||||
|
} else if ("CUBIC".equals(type)) {
|
||||||
|
if (parts.length < 2) {
|
||||||
|
throw new IllegalArgumentException("Cubic renderer requires boolean for whether it's stable.");
|
||||||
|
}
|
||||||
|
pipelinePreset = Pipelines.Preset.CUBIC;
|
||||||
|
} else if ("EQUIRECTANGULAR".equals(type)) {
|
||||||
|
if (parts.length < 2) {
|
||||||
|
throw new IllegalArgumentException("Equirectangular renderer requires boolean for whether it's stable.");
|
||||||
|
}
|
||||||
|
pipelinePreset = Pipelines.Preset.EQUIRECTANGULAR;
|
||||||
|
} else if ("ODS".equals(type)) {
|
||||||
|
if (parts.length < 2) {
|
||||||
|
throw new IllegalArgumentException("ODS renderer requires boolean for whether it's stable.");
|
||||||
|
}
|
||||||
|
pipelinePreset = Pipelines.Preset.ODS;
|
||||||
|
} else {
|
||||||
|
throw new IllegalArgumentException("Unknown type: " + parts[0]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
options.setMode(pipelinePreset);
|
||||||
|
*/
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
Queue<ListenableFutureTask> tasks = mc.scheduledTasks;
|
||||||
|
synchronized (mc.scheduledTasks) {
|
||||||
|
tasks.add(ListenableFutureTask.create(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
String renderDistance = System.getProperty("replaymod.render.mc.renderdistance");
|
||||||
|
String clouds = System.getProperty("replaymod.render.mc.clouds");
|
||||||
|
if (renderDistance != null) {
|
||||||
|
mc.gameSettings.renderDistanceChunks = Integer.parseInt(renderDistance);
|
||||||
|
}
|
||||||
|
if (clouds != null) {
|
||||||
|
mc.gameSettings.clouds = Boolean.parseBoolean(clouds);
|
||||||
|
}
|
||||||
|
|
||||||
|
System.out.println("Loading replay...");
|
||||||
|
// TODO
|
||||||
|
// try {
|
||||||
|
// ReplayHandler.startReplay(file, false);
|
||||||
|
// } catch (Throwable t) {
|
||||||
|
// t.printStackTrace();
|
||||||
|
// FMLCommonHandler.instance().exitJava(1, false);
|
||||||
|
// }
|
||||||
|
//
|
||||||
|
// int index = 0;
|
||||||
|
// if (path != null) {
|
||||||
|
// for (KeyframeSet set : ReplayHandler.getKeyframeRepository()) {
|
||||||
|
// if (set.getName().equals(path)) {
|
||||||
|
// break;
|
||||||
|
// }
|
||||||
|
// index++;
|
||||||
|
// }
|
||||||
|
// if (index >= ReplayHandler.getKeyframeRepository().length) {
|
||||||
|
// throw new IllegalArgumentException("No path named \"" + path + "\".");
|
||||||
|
// }
|
||||||
|
// } else if (ReplayHandler.getKeyframeRepository().length == 0) {
|
||||||
|
// throw new IllegalArgumentException("Replay file has no paths defined.");
|
||||||
|
// }
|
||||||
|
// ReplayHandler.useKeyframePresetFromRepository(index);
|
||||||
|
//
|
||||||
|
// System.out.println("Rendering started...");
|
||||||
|
// try {
|
||||||
|
// ReplayProcess.startReplayProcess(options, true);
|
||||||
|
// } catch (Throwable t) {
|
||||||
|
// t.printStackTrace();
|
||||||
|
// FMLCommonHandler.instance().exitJava(1, false);
|
||||||
|
// }
|
||||||
|
// if (mc.hasCrashed) {
|
||||||
|
// System.out.println(mc.crashReporter.getCompleteReport());
|
||||||
|
// }
|
||||||
|
// System.out.println("Rendering done. Shutting down...");
|
||||||
|
// mc.shutdown();
|
||||||
|
}
|
||||||
|
}, null));
|
||||||
|
}
|
||||||
|
|
||||||
|
testIfMoeshAndExitMinecraft();
|
||||||
|
}
|
||||||
|
|
||||||
runLater(() -> {
|
runLater(() -> {
|
||||||
// Cleanup deleted corrupted replays
|
// Cleanup deleted corrupted replays
|
||||||
@@ -167,8 +306,10 @@ public class ReplayMod {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void runLater(Runnable runnable) {
|
public void runLater(Runnable runnable) {
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
|
Queue<ListenableFutureTask> tasks = mc.scheduledTasks;
|
||||||
synchronized (mc.scheduledTasks) {
|
synchronized (mc.scheduledTasks) {
|
||||||
mc.scheduledTasks.add(ListenableFutureTask.create(runnable, null));
|
tasks.add(ListenableFutureTask.create(runnable, null));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -3,6 +3,7 @@ package com.replaymod.core.gui;
|
|||||||
import com.google.common.io.Files;
|
import com.google.common.io.Files;
|
||||||
import com.replaymod.replaystudio.PacketData;
|
import com.replaymod.replaystudio.PacketData;
|
||||||
import com.replaymod.replaystudio.io.ReplayInputStream;
|
import com.replaymod.replaystudio.io.ReplayInputStream;
|
||||||
|
import com.replaymod.replaystudio.io.ReplayOutputStream;
|
||||||
import com.replaymod.replaystudio.replay.ReplayFile;
|
import com.replaymod.replaystudio.replay.ReplayFile;
|
||||||
import com.replaymod.replaystudio.replay.ReplayMetaData;
|
import com.replaymod.replaystudio.replay.ReplayMetaData;
|
||||||
import com.replaymod.replaystudio.replay.ZipReplayFile;
|
import com.replaymod.replaystudio.replay.ZipReplayFile;
|
||||||
@@ -45,15 +46,19 @@ public class RestoreReplayGui extends AbstractGuiScreen<RestoreReplayGui> {
|
|||||||
ReplayMetaData metaData = replayFile.getMetaData();
|
ReplayMetaData metaData = replayFile.getMetaData();
|
||||||
if (metaData != null && metaData.getDuration() == 0) {
|
if (metaData != null && metaData.getDuration() == 0) {
|
||||||
// Try to restore replay duration
|
// Try to restore replay duration
|
||||||
try (ReplayInputStream in = replayFile.getPacketData()) {
|
// We need to re-write the packet data in case there are any incomplete packets dangling at the end
|
||||||
|
try (ReplayInputStream in = replayFile.getPacketData();
|
||||||
|
ReplayOutputStream out = replayFile.writePacketData()) {
|
||||||
PacketData last = null;
|
PacketData last = null;
|
||||||
while ((last = in.readPacket()) != null) {
|
while ((last = in.readPacket()) != null) {
|
||||||
metaData.setDuration((int) last.getTime());
|
metaData.setDuration((int) last.getTime());
|
||||||
|
out.write(last);
|
||||||
}
|
}
|
||||||
replayFile.writeMetaData(metaData);
|
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
t.printStackTrace();
|
t.printStackTrace();
|
||||||
}
|
}
|
||||||
|
// Write back the actual duration
|
||||||
|
replayFile.writeMetaData(metaData);
|
||||||
}
|
}
|
||||||
replayFile.save();
|
replayFile.save();
|
||||||
replayFile.close();
|
replayFile.close();
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ package com.replaymod.core.utils;
|
|||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
import net.minecraft.client.renderer.Tessellator;
|
import net.minecraft.client.renderer.Tessellator;
|
||||||
import net.minecraft.client.renderer.WorldRenderer;
|
import net.minecraft.client.renderer.WorldRenderer;
|
||||||
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
|
|
||||||
import org.lwjgl.BufferUtils;
|
import org.lwjgl.BufferUtils;
|
||||||
import org.lwjgl.opengl.GL11;
|
import org.lwjgl.opengl.GL11;
|
||||||
|
|
||||||
@@ -35,14 +34,14 @@ public class OpenGLUtils {
|
|||||||
float f5 = 1.0F / textureHeight;
|
float f5 = 1.0F / textureHeight;
|
||||||
|
|
||||||
Tessellator tessellator = Tessellator.getInstance();
|
Tessellator tessellator = Tessellator.getInstance();
|
||||||
WorldRenderer vertexBuffer = tessellator.getWorldRenderer();
|
WorldRenderer worldrenderer = tessellator.getWorldRenderer();
|
||||||
GlStateManager.translate(x+(width/2), y+(width/2), 0);
|
GlStateManager.translate(x+(width/2), y+(width/2), 0);
|
||||||
GlStateManager.rotate(rotation, 0, 0, 1);
|
GlStateManager.rotate(rotation, 0, 0, 1);
|
||||||
vertexBuffer.begin(GL11.GL_QUADS, DefaultVertexFormats.POSITION_TEX);
|
worldrenderer.startDrawingQuads();
|
||||||
vertexBuffer.pos(-width / 2, height / 2, 0.0D).tex((double) (u * f4), (double) ((v + (float) height) * f5)).endVertex();
|
worldrenderer.addVertexWithUV(-width / 2, height / 2, 0.0D, (double) (u * f4), (double) ((v + (float) height) * f5));
|
||||||
vertexBuffer.pos(width/2, height/2, 0.0D).tex((double)((u + (float)width) * f4), (double)((v + (float)height) * f5)).endVertex();
|
worldrenderer.addVertexWithUV(width/2, height/2, 0.0D, (double)((u + (float)width) * f4), (double)((v + (float)height) * f5));
|
||||||
vertexBuffer.pos(width/2, -height/2, 0.0D).tex((double)((u + (float)width) * f4), (double)(v * f5)).endVertex();
|
worldrenderer.addVertexWithUV(width/2, -height/2, 0.0D, (double)((u + (float)width) * f4), (double)(v * f5));
|
||||||
vertexBuffer.pos(-width/2, -height/2, 0.0D).tex((double)(u * f4), (double)(v * f5)).endVertex();
|
worldrenderer.addVertexWithUV(-width/2, -height/2, 0.0D, (double)(u * f4), (double)(v * f5));
|
||||||
tessellator.draw();
|
tessellator.draw();
|
||||||
|
|
||||||
GlStateManager.popMatrix();
|
GlStateManager.popMatrix();
|
||||||
|
|||||||
@@ -27,8 +27,20 @@ import org.lwjgl.util.ReadableDimension;
|
|||||||
|
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
|
import javax.net.ssl.SSLContext;
|
||||||
|
import javax.net.ssl.SSLSocketFactory;
|
||||||
|
import javax.net.ssl.TrustManagerFactory;
|
||||||
import java.awt.image.BufferedImage;
|
import java.awt.image.BufferedImage;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.security.KeyManagementException;
|
||||||
|
import java.security.KeyStore;
|
||||||
|
import java.security.KeyStoreException;
|
||||||
|
import java.security.NoSuchAlgorithmException;
|
||||||
|
import java.security.cert.Certificate;
|
||||||
|
import java.security.cert.CertificateException;
|
||||||
|
import java.security.cert.CertificateFactory;
|
||||||
import java.text.SimpleDateFormat;
|
import java.text.SimpleDateFormat;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
@@ -51,6 +63,42 @@ public class Utils {
|
|||||||
DEFAULT_THUMBNAIL = thumbnail;
|
DEFAULT_THUMBNAIL = thumbnail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Neither the root certificate of LetsEncrypt nor the root that cross-signed it is included in the default
|
||||||
|
* Java keystore prior to 8u101.
|
||||||
|
* Therefore whenever a connection to the replaymod.com site is made, this SSLContext has to be used instead.
|
||||||
|
* It has been constructed to include the necessary root certificates.
|
||||||
|
* @see #SSL_SOCKET_FACTORY
|
||||||
|
*/
|
||||||
|
public static final SSLContext SSL_CONTEXT;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @see #SSL_CONTEXT
|
||||||
|
*/
|
||||||
|
public static final SSLSocketFactory SSL_SOCKET_FACTORY;
|
||||||
|
|
||||||
|
static {
|
||||||
|
// Largely from https://community.letsencrypt.org/t/134/37
|
||||||
|
try (InputStream in = Utils.class.getResourceAsStream("/dst_root_ca_x3.pem")){
|
||||||
|
Certificate certificate = CertificateFactory.getInstance("X.509").generateCertificate(in);
|
||||||
|
|
||||||
|
KeyStore keyStore = KeyStore.getInstance(KeyStore.getDefaultType());
|
||||||
|
keyStore.load(null, null);
|
||||||
|
keyStore.setCertificateEntry("1", certificate);
|
||||||
|
|
||||||
|
TrustManagerFactory trustManagerFactory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm());
|
||||||
|
trustManagerFactory.init(keyStore);
|
||||||
|
|
||||||
|
SSLContext ctx = SSLContext.getInstance("TLS");
|
||||||
|
ctx.init(null, trustManagerFactory.getTrustManagers(), null);
|
||||||
|
SSL_CONTEXT = ctx;
|
||||||
|
SSL_SOCKET_FACTORY = ctx.getSocketFactory();
|
||||||
|
} catch (IOException | CertificateException | KeyStoreException | NoSuchAlgorithmException | KeyManagementException e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static String convertSecondsToShortString(int seconds) {
|
public static String convertSecondsToShortString(int seconds) {
|
||||||
int hours = seconds/(60*60);
|
int hours = seconds/(60*60);
|
||||||
int min = seconds/60 - hours*60;
|
int min = seconds/60 - hours*60;
|
||||||
|
|||||||
@@ -27,7 +27,7 @@ public class WrappedTimer extends Timer {
|
|||||||
to.elapsedPartialTicks = from.elapsedPartialTicks;
|
to.elapsedPartialTicks = from.elapsedPartialTicks;
|
||||||
to.lastSyncSysClock = from.lastSyncSysClock;
|
to.lastSyncSysClock = from.lastSyncSysClock;
|
||||||
to.lastSyncHRClock = from.lastSyncHRClock;
|
to.lastSyncHRClock = from.lastSyncHRClock;
|
||||||
to.counter = from.counter;
|
to.field_74285_i = from.field_74285_i;
|
||||||
to.timeSyncAdjustment = from.timeSyncAdjustment;
|
to.timeSyncAdjustment = from.timeSyncAdjustment;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.replaymod.editor.gui;
|
package com.replaymod.editor.gui;
|
||||||
|
|
||||||
|
import com.google.common.io.Files;
|
||||||
import com.google.common.util.concurrent.FutureCallback;
|
import com.google.common.util.concurrent.FutureCallback;
|
||||||
import com.google.common.util.concurrent.Futures;
|
import com.google.common.util.concurrent.Futures;
|
||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
@@ -34,6 +35,7 @@ import de.johni0702.minecraft.gui.popup.GuiInfoPopup;
|
|||||||
import de.johni0702.minecraft.gui.popup.GuiYesNoPopup;
|
import de.johni0702.minecraft.gui.popup.GuiYesNoPopup;
|
||||||
import de.johni0702.minecraft.gui.utils.Colors;
|
import de.johni0702.minecraft.gui.utils.Colors;
|
||||||
import net.minecraft.crash.CrashReport;
|
import net.minecraft.crash.CrashReport;
|
||||||
|
import org.apache.commons.io.FileUtils;
|
||||||
import org.apache.commons.io.FilenameUtils;
|
import org.apache.commons.io.FilenameUtils;
|
||||||
import org.lwjgl.util.ReadableDimension;
|
import org.lwjgl.util.ReadableDimension;
|
||||||
|
|
||||||
@@ -119,10 +121,21 @@ public class GuiReplayEditor extends GuiScreen {
|
|||||||
public void save(File inputFile, PacketStream.FilterInfo...filters) {
|
public void save(File inputFile, PacketStream.FilterInfo...filters) {
|
||||||
save(FilenameUtils.getBaseName(inputFile.getName()), (outputFile) -> {
|
save(FilenameUtils.getBaseName(inputFile.getName()), (outputFile) -> {
|
||||||
Studio studio = new ReplayStudio();
|
Studio studio = new ReplayStudio();
|
||||||
try (ReplayFile outputReplay = new ZipReplayFile(studio, inputFile, outputFile);
|
File tmpDir = null;
|
||||||
ReplayOutputStream out = outputReplay.writePacketData()) {
|
try {
|
||||||
// The input replay file MUST be closed before saving the output file
|
File actualOutputFile = outputFile;
|
||||||
try (ReplayFile inputReplay = new ZipReplayFile(studio, inputFile);
|
if (outputFile.getCanonicalPath().equals(inputFile.getCanonicalPath())) {
|
||||||
|
// Input and output files are identical. Due to the way the ZipReplayFile stores its temporary
|
||||||
|
// data, the same replay file must not be opened twice for writing (tmp files will be deleted once
|
||||||
|
// either one is closed or, on Windows, will throw an exception when deleted).
|
||||||
|
tmpDir = Files.createTempDir();
|
||||||
|
outputFile = new File(tmpDir, "replay.mcpr");
|
||||||
|
LOGGER.debug("Output file is identical to input file, using temporary output file {} instead",
|
||||||
|
outputFile);
|
||||||
|
}
|
||||||
|
try (ReplayFile outputReplay = new ZipReplayFile(studio, inputFile, outputFile);
|
||||||
|
ReplayOutputStream out = outputReplay.writePacketData();
|
||||||
|
ReplayFile inputReplay = new ZipReplayFile(studio, inputFile);
|
||||||
ReplayInputStream in = inputReplay.getPacketData()) {
|
ReplayInputStream in = inputReplay.getPacketData()) {
|
||||||
ReplayMetaData metaData = inputReplay.getMetaData();
|
ReplayMetaData metaData = inputReplay.getMetaData();
|
||||||
PacketStream stream = studio.createReplayStream(in, true);
|
PacketStream stream = studio.createReplayStream(in, true);
|
||||||
@@ -154,11 +167,21 @@ public class GuiReplayEditor extends GuiScreen {
|
|||||||
// Update duration of new replay
|
// Update duration of new replay
|
||||||
metaData.setDuration((int) lastTimestamp);
|
metaData.setDuration((int) lastTimestamp);
|
||||||
outputReplay.writeMetaData(metaData);
|
outputReplay.writeMetaData(metaData);
|
||||||
|
|
||||||
|
out.close();
|
||||||
|
outputReplay.save();
|
||||||
|
}
|
||||||
|
if (outputFile != actualOutputFile) {
|
||||||
|
LOGGER.debug("Moving temporary output file {} to {}");
|
||||||
|
FileUtils.forceDelete(actualOutputFile);
|
||||||
|
FileUtils.moveFile(outputFile, actualOutputFile);
|
||||||
}
|
}
|
||||||
out.close();
|
|
||||||
outputReplay.save();
|
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
throw new RuntimeException(e);
|
throw new RuntimeException(e);
|
||||||
|
} finally {
|
||||||
|
if (tmpDir != null && !FileUtils.deleteQuietly(tmpDir)) {
|
||||||
|
LOGGER.warn("Failed to delete temporary directory {}", tmpDir);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,6 +39,10 @@ import static com.replaymod.editor.ReplayModEditor.LOGGER;
|
|||||||
import static java.util.Optional.ofNullable;
|
import static java.util.Optional.ofNullable;
|
||||||
|
|
||||||
public class GuiTrimPanel extends GuiPanel {
|
public class GuiTrimPanel extends GuiPanel {
|
||||||
|
private static GuiNumberField newGuiNumberField() {
|
||||||
|
return new GuiNumberField().setMaxLength(2).setSize(20, 20).setValidateOnFocusChange(true);
|
||||||
|
}
|
||||||
|
|
||||||
// Special value indicating no replay files were found
|
// Special value indicating no replay files were found
|
||||||
private static final File NO_REPLAY = new File(".");
|
private static final File NO_REPLAY = new File(".");
|
||||||
// Special value for the initial "Select Marker Keyframe" entry
|
// Special value for the initial "Select Marker Keyframe" entry
|
||||||
@@ -50,16 +54,16 @@ public class GuiTrimPanel extends GuiPanel {
|
|||||||
.setMinSize(new Dimension(200, 20)).onSelection(i -> updateSelectedReplay())
|
.setMinSize(new Dimension(200, 20)).onSelection(i -> updateSelectedReplay())
|
||||||
.setToString(f -> f == NO_REPLAY ? "" : FilenameUtils.getBaseName(f.getName()));
|
.setToString(f -> f == NO_REPLAY ? "" : FilenameUtils.getBaseName(f.getName()));
|
||||||
|
|
||||||
public final GuiNumberField startHour = new GuiNumberField().setSize(20, 20).setMaxLength(2);
|
public final GuiNumberField startHour = newGuiNumberField();
|
||||||
public final GuiNumberField startMin = new GuiNumberField().setSize(20, 20).setMaxLength(2);
|
public final GuiNumberField startMin = newGuiNumberField();
|
||||||
public final GuiNumberField startSec = new GuiNumberField().setSize(20, 20).setMaxLength(2);
|
public final GuiNumberField startSec = newGuiNumberField();
|
||||||
public final GuiNumberField startMilli = new GuiNumberField().setSize(40, 20).setMaxLength(4);
|
public final GuiNumberField startMilli = newGuiNumberField().setSize(40, 20).setMaxLength(4);
|
||||||
public final GuiDropdownMenu<Marker> startMarker = new GuiDropdownMenu<>();
|
public final GuiDropdownMenu<Marker> startMarker = new GuiDropdownMenu<>();
|
||||||
|
|
||||||
public final GuiNumberField endHour = new GuiNumberField().setSize(20, 20).setMaxLength(2);
|
public final GuiNumberField endHour = newGuiNumberField();
|
||||||
public final GuiNumberField endMin = new GuiNumberField().setSize(20, 20).setMaxLength(2);
|
public final GuiNumberField endMin = newGuiNumberField();
|
||||||
public final GuiNumberField endSec = new GuiNumberField().setSize(20, 20).setMaxLength(2);
|
public final GuiNumberField endSec = newGuiNumberField();
|
||||||
public final GuiNumberField endMilli = new GuiNumberField().setSize(40, 20).setMaxLength(4);
|
public final GuiNumberField endMilli = newGuiNumberField().setSize(40, 20).setMaxLength(4);
|
||||||
public final GuiDropdownMenu<Marker> endMarker = new GuiDropdownMenu<>();
|
public final GuiDropdownMenu<Marker> endMarker = new GuiDropdownMenu<>();
|
||||||
|
|
||||||
public final GuiPanel timePanel = new GuiPanel(this)
|
public final GuiPanel timePanel = new GuiPanel(this)
|
||||||
|
|||||||
@@ -82,7 +82,7 @@ public class LocalizationExtra implements Extra {
|
|||||||
availableLanguages.put(langcode, prop);
|
availableLanguages.put(langcode, prop);
|
||||||
return true;
|
return true;
|
||||||
} catch (ApiException e) {
|
} catch (ApiException e) {
|
||||||
if (e.getError().getId() != 16) { // This language has not been translated
|
if (e.getError() == null || e.getError().getId() != 16) { // This language has not been translated
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
} catch(ConnectException ce) {
|
} catch(ConnectException ce) {
|
||||||
|
|||||||
@@ -17,6 +17,7 @@ import de.johni0702.minecraft.gui.utils.Colors;
|
|||||||
import net.minecraftforge.fml.common.Loader;
|
import net.minecraftforge.fml.common.Loader;
|
||||||
import org.apache.commons.io.FileUtils;
|
import org.apache.commons.io.FileUtils;
|
||||||
|
|
||||||
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileOutputStream;
|
import java.io.FileOutputStream;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
@@ -24,8 +25,10 @@ import java.nio.channels.Channels;
|
|||||||
import java.nio.channels.FileChannel;
|
import java.nio.channels.FileChannel;
|
||||||
import java.nio.channels.ReadableByteChannel;
|
import java.nio.channels.ReadableByteChannel;
|
||||||
|
|
||||||
|
import static com.replaymod.core.utils.Utils.SSL_SOCKET_FACTORY;
|
||||||
|
|
||||||
public class OpenEyeExtra implements Extra {
|
public class OpenEyeExtra implements Extra {
|
||||||
private static final String DOWNLOAD_URL = "http://www.replaymod.com/dl/openeye/" + Loader.MC_VERSION;
|
private static final String DOWNLOAD_URL = "https://www.replaymod.com/dl/openeye/" + Loader.MC_VERSION;
|
||||||
private static final Setting<Boolean> ASK_FOR_OPEN_EYE = new Setting<>("advanced", "askForOpenEye", null, true);
|
private static final Setting<Boolean> ASK_FOR_OPEN_EYE = new Setting<>("advanced", "askForOpenEye", null, true);
|
||||||
|
|
||||||
private ReplayMod mod;
|
private ReplayMod mod;
|
||||||
@@ -69,7 +72,9 @@ public class OpenEyeExtra implements Extra {
|
|||||||
File targetFile = new File("mods/" + Loader.MC_VERSION, "OpenEye.jar");
|
File targetFile = new File("mods/" + Loader.MC_VERSION, "OpenEye.jar");
|
||||||
FileUtils.forceMkdir(targetFile.getParentFile());
|
FileUtils.forceMkdir(targetFile.getParentFile());
|
||||||
|
|
||||||
ReadableByteChannel in = Channels.newChannel(new URL(DOWNLOAD_URL).openStream());
|
HttpsURLConnection connection = (HttpsURLConnection) new URL(DOWNLOAD_URL).openConnection();
|
||||||
|
connection.setSSLSocketFactory(SSL_SOCKET_FACTORY);
|
||||||
|
ReadableByteChannel in = Channels.newChannel(connection.getInputStream());
|
||||||
FileChannel out = new FileOutputStream(targetFile).getChannel();
|
FileChannel out = new FileOutputStream(targetFile).getChannel();
|
||||||
out.transferFrom(in, 0, Long.MAX_VALUE);
|
out.transferFrom(in, 0, Long.MAX_VALUE);
|
||||||
} catch (Throwable e) {
|
} catch (Throwable e) {
|
||||||
|
|||||||
@@ -11,7 +11,10 @@ import com.replaymod.replay.events.ReplayCloseEvent;
|
|||||||
import com.replaymod.replay.events.ReplayOpenEvent;
|
import com.replaymod.replay.events.ReplayOpenEvent;
|
||||||
import net.minecraft.client.renderer.entity.RenderManager;
|
import net.minecraft.client.renderer.entity.RenderManager;
|
||||||
import net.minecraft.client.renderer.entity.RenderPlayer;
|
import net.minecraft.client.renderer.entity.RenderPlayer;
|
||||||
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.entity.player.EntityPlayer;
|
import net.minecraft.entity.player.EntityPlayer;
|
||||||
|
import net.minecraftforge.client.event.RenderHandEvent;
|
||||||
|
import net.minecraftforge.common.MinecraftForge;
|
||||||
import net.minecraftforge.fml.common.FMLCommonHandler;
|
import net.minecraftforge.fml.common.FMLCommonHandler;
|
||||||
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
||||||
import org.lwjgl.input.Keyboard;
|
import org.lwjgl.input.Keyboard;
|
||||||
@@ -56,6 +59,7 @@ public class PlayerOverview implements Extra {
|
|||||||
});
|
});
|
||||||
|
|
||||||
FMLCommonHandler.instance().bus().register(this);
|
FMLCommonHandler.instance().bus().register(this);
|
||||||
|
MinecraftForge.EVENT_BUS.register(this);
|
||||||
|
|
||||||
RenderManager renderManager = mod.getMinecraft().getRenderManager();
|
RenderManager renderManager = mod.getMinecraft().getRenderManager();
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
@@ -92,6 +96,14 @@ public class PlayerOverview implements Extra {
|
|||||||
hiddenPlayers.clear();
|
hiddenPlayers.clear();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SubscribeEvent
|
||||||
|
public void oRenderHand(RenderHandEvent event) {
|
||||||
|
Entity view = module.getCore().getMinecraft().getRenderViewEntity();
|
||||||
|
if (view != null && isHidden(view.getUniqueID())) {
|
||||||
|
event.setCanceled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public boolean isSavingEnabled() {
|
public boolean isSavingEnabled() {
|
||||||
return savingEnabled;
|
return savingEnabled;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -90,7 +90,7 @@ public class PlayerOverviewGui extends GuiScreen implements Closeable {
|
|||||||
public void draw(GuiRenderer renderer, ReadableDimension size, RenderInfo renderInfo) {
|
public void draw(GuiRenderer renderer, ReadableDimension size, RenderInfo renderInfo) {
|
||||||
renderer.bindTexture(texture);
|
renderer.bindTexture(texture);
|
||||||
renderer.drawTexturedRect(0, 0, 8, 8, 16, 16, 8, 8, 64, 64);
|
renderer.drawTexturedRect(0, 0, 8, 8, 16, 16, 8, 8, 64, 64);
|
||||||
if (p.isWearing(EnumPlayerModelParts.HAT)) {
|
if (p.func_175148_a(EnumPlayerModelParts.HAT)) {
|
||||||
renderer.drawTexturedRect(0, 0, 40, 8, size.getWidth(), size.getHeight(), 8, 8, 64, 64);
|
renderer.drawTexturedRect(0, 0, 40, 8, size.getWidth(), size.getHeight(), 8, 8, 64, 64);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,9 +1,9 @@
|
|||||||
package com.replaymod.extras.playeroverview;
|
package com.replaymod.extras.playeroverview;
|
||||||
|
|
||||||
import net.minecraft.client.entity.AbstractClientPlayer;
|
|
||||||
import net.minecraft.client.renderer.culling.ICamera;
|
import net.minecraft.client.renderer.culling.ICamera;
|
||||||
import net.minecraft.client.renderer.entity.RenderManager;
|
import net.minecraft.client.renderer.entity.RenderManager;
|
||||||
import net.minecraft.client.renderer.entity.RenderPlayer;
|
import net.minecraft.client.renderer.entity.RenderPlayer;
|
||||||
|
import net.minecraft.entity.Entity;
|
||||||
|
|
||||||
public class PlayerRenderHook extends RenderPlayer {
|
public class PlayerRenderHook extends RenderPlayer {
|
||||||
private final PlayerOverview extra;
|
private final PlayerOverview extra;
|
||||||
@@ -14,7 +14,7 @@ public class PlayerRenderHook extends RenderPlayer {
|
|||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean shouldRender(AbstractClientPlayer entity, ICamera camera, double camX, double camY, double camZ) {
|
public boolean shouldRender(Entity entity, ICamera camera, double camX, double camY, double camZ) {
|
||||||
return !extra.isHidden(entity.getUniqueID()) && super.shouldRender(entity, camera, camX, camY, camZ);
|
return !extra.isHidden(entity.getUniqueID()) && super.shouldRender(entity, camera, camX, camY, camZ);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -15,13 +15,19 @@ import org.apache.commons.io.FileUtils;
|
|||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
|
|
||||||
import javax.imageio.ImageIO;
|
import javax.imageio.ImageIO;
|
||||||
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
import java.awt.image.BufferedImage;
|
import java.awt.image.BufferedImage;
|
||||||
import java.io.*;
|
import java.io.BufferedInputStream;
|
||||||
import java.net.HttpURLConnection;
|
import java.io.File;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
|
import static com.replaymod.core.utils.Utils.SSL_SOCKET_FACTORY;
|
||||||
|
|
||||||
public class ApiClient {
|
public class ApiClient {
|
||||||
|
|
||||||
private static final Minecraft mc = Minecraft.getMinecraft();
|
private static final Minecraft mc = Minecraft.getMinecraft();
|
||||||
@@ -130,7 +136,11 @@ public class ApiClient {
|
|||||||
QueryBuilder builder = new QueryBuilder(ReplayModApiMethods.get_thumbnail);
|
QueryBuilder builder = new QueryBuilder(ReplayModApiMethods.get_thumbnail);
|
||||||
builder.put("id", file);
|
builder.put("id", file);
|
||||||
URL url = new URL(builder.toString());
|
URL url = new URL(builder.toString());
|
||||||
return ImageIO.read(url);
|
HttpsURLConnection connection = (HttpsURLConnection) url.openConnection();
|
||||||
|
connection.setSSLSocketFactory(SSL_SOCKET_FACTORY);
|
||||||
|
try (InputStream in = connection.getInputStream()) {
|
||||||
|
return ImageIO.read(in);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private boolean cancelDownload = false;
|
private boolean cancelDownload = false;
|
||||||
@@ -143,7 +153,8 @@ public class ApiClient {
|
|||||||
builder.put("id", file);
|
builder.put("id", file);
|
||||||
String url = builder.toString();
|
String url = builder.toString();
|
||||||
URL website = new URL(url);
|
URL website = new URL(url);
|
||||||
HttpURLConnection con = (HttpURLConnection) website.openConnection();
|
HttpsURLConnection con = (HttpsURLConnection) website.openConnection();
|
||||||
|
con.setSSLSocketFactory(SSL_SOCKET_FACTORY);
|
||||||
|
|
||||||
int fileSize = con.getContentLength();
|
int fileSize = con.getContentLength();
|
||||||
|
|
||||||
|
|||||||
@@ -7,12 +7,14 @@ import com.google.gson.JsonParser;
|
|||||||
import com.replaymod.online.api.replay.holders.ApiError;
|
import com.replaymod.online.api.replay.holders.ApiError;
|
||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
|
|
||||||
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.net.HttpURLConnection;
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
import static com.replaymod.core.utils.Utils.SSL_SOCKET_FACTORY;
|
||||||
|
|
||||||
public class SimpleApiClient {
|
public class SimpleApiClient {
|
||||||
|
|
||||||
private static final JsonParser jsonParser = new JsonParser();
|
private static final JsonParser jsonParser = new JsonParser();
|
||||||
@@ -72,10 +74,11 @@ public class SimpleApiClient {
|
|||||||
// read response
|
// read response
|
||||||
String responseContent = null;
|
String responseContent = null;
|
||||||
InputStream is = null;
|
InputStream is = null;
|
||||||
HttpURLConnection httpUrlConnection = null;
|
HttpsURLConnection httpUrlConnection = null;
|
||||||
try {
|
try {
|
||||||
URL url = new URL(urlString);
|
URL url = new URL(urlString);
|
||||||
httpUrlConnection = (HttpURLConnection) url.openConnection();
|
httpUrlConnection = (HttpsURLConnection) url.openConnection();
|
||||||
|
httpUrlConnection.setSSLSocketFactory(SSL_SOCKET_FACTORY);
|
||||||
|
|
||||||
httpUrlConnection.setRequestMethod("GET");
|
httpUrlConnection.setRequestMethod("GET");
|
||||||
|
|
||||||
|
|||||||
@@ -9,16 +9,18 @@ import lombok.RequiredArgsConstructor;
|
|||||||
import org.apache.commons.io.IOUtils;
|
import org.apache.commons.io.IOUtils;
|
||||||
import org.apache.commons.lang3.StringUtils;
|
import org.apache.commons.lang3.StringUtils;
|
||||||
|
|
||||||
|
import javax.net.ssl.HttpsURLConnection;
|
||||||
import java.io.DataOutputStream;
|
import java.io.DataOutputStream;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.FileInputStream;
|
import java.io.FileInputStream;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.net.HttpURLConnection;
|
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.net.URLEncoder;
|
import java.net.URLEncoder;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
|
import static com.replaymod.core.utils.Utils.SSL_SOCKET_FACTORY;
|
||||||
|
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
public class FileUploader {
|
public class FileUploader {
|
||||||
private static final Gson gson = new Gson();
|
private static final Gson gson = new Gson();
|
||||||
@@ -48,7 +50,8 @@ public class FileUploader {
|
|||||||
postData += "&name=" + URLEncoder.encode(filename, "UTF-8");
|
postData += "&name=" + URLEncoder.encode(filename, "UTF-8");
|
||||||
|
|
||||||
String url = ReplayModApiMethods.upload_file + postData;
|
String url = ReplayModApiMethods.upload_file + postData;
|
||||||
HttpURLConnection con = (HttpURLConnection) new URL(url).openConnection();
|
HttpsURLConnection con = (HttpsURLConnection) new URL(url).openConnection();
|
||||||
|
con.setSSLSocketFactory(SSL_SOCKET_FACTORY);
|
||||||
con.setUseCaches(false);
|
con.setUseCaches(false);
|
||||||
con.setDoOutput(true);
|
con.setDoOutput(true);
|
||||||
con.setRequestMethod("POST");
|
con.setRequestMethod("POST");
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ package com.replaymod.online.api.replay;
|
|||||||
|
|
||||||
public class ReplayModApiMethods {
|
public class ReplayModApiMethods {
|
||||||
|
|
||||||
public static final String REPLAYMOD_BASE_URL = "http://ReplayMod.com/api/";
|
public static final String REPLAYMOD_BASE_URL = "https://ReplayMod.com/api/";
|
||||||
|
|
||||||
public static final String register = REPLAYMOD_BASE_URL+"register";
|
public static final String register = REPLAYMOD_BASE_URL+"register";
|
||||||
public static final String check_authkey = REPLAYMOD_BASE_URL+"check_authkey";
|
public static final String check_authkey = REPLAYMOD_BASE_URL+"check_authkey";
|
||||||
|
|||||||
@@ -12,6 +12,7 @@ import org.spongepowered.asm.mixin.injection.At;
|
|||||||
import org.spongepowered.asm.mixin.injection.Inject;
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
|
||||||
@@ -40,12 +41,14 @@ public abstract class MixinNetHandlerPlayClient {
|
|||||||
if (gameController.thePlayer == null) return;
|
if (gameController.thePlayer == null) return;
|
||||||
|
|
||||||
RecordingEventHandler handler = getRecordingEventHandler();
|
RecordingEventHandler handler = getRecordingEventHandler();
|
||||||
if (handler != null && packet.getAction() == S38PacketPlayerListItem.Action.ADD_PLAYER) {
|
if (handler != null && packet.func_179768_b() == S38PacketPlayerListItem.Action.ADD_PLAYER) {
|
||||||
for (S38PacketPlayerListItem.AddPlayerData data : packet.getEntries()) {
|
@SuppressWarnings("unchecked")
|
||||||
if (data.getProfile() == null || data.getProfile().getId() == null) continue;
|
List<S38PacketPlayerListItem.AddPlayerData> dataList = packet.func_179767_a();
|
||||||
|
for (S38PacketPlayerListItem.AddPlayerData data : dataList) {
|
||||||
|
if (data.func_179962_a() == null || data.func_179962_a().getId() == null) continue;
|
||||||
// Only add spawn packet for our own player and only if he isn't known yet
|
// Only add spawn packet for our own player and only if he isn't known yet
|
||||||
if (data.getProfile().getId().equals(Minecraft.getMinecraft().thePlayer.getGameProfile().getId())
|
if (data.func_179962_a().getId().equals(Minecraft.getMinecraft().thePlayer.getGameProfile().getId())
|
||||||
&& !playerInfoMap.containsKey(data.getProfile().getId())) {
|
&& !playerInfoMap.containsKey(data.func_179962_a().getId())) {
|
||||||
handler.onPlayerJoin();
|
handler.onPlayerJoin();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -85,7 +85,7 @@ public class PacketListener extends ChannelInboundHandlerAdapter {
|
|||||||
public void save(Packet packet) {
|
public void save(Packet packet) {
|
||||||
try {
|
try {
|
||||||
if(packet instanceof S0CPacketSpawnPlayer) {
|
if(packet instanceof S0CPacketSpawnPlayer) {
|
||||||
UUID uuid = ((S0CPacketSpawnPlayer) packet).getPlayer();
|
UUID uuid = ((S0CPacketSpawnPlayer) packet).func_179819_c();
|
||||||
Set<String> uuids = new HashSet<>(Arrays.asList(metaData.getPlayers()));
|
Set<String> uuids = new HashSet<>(Arrays.asList(metaData.getPlayers()));
|
||||||
uuids.add(uuid.toString());
|
uuids.add(uuid.toString());
|
||||||
metaData.setPlayers(uuids.toArray(new String[uuids.size()]));
|
metaData.setPlayers(uuids.toArray(new String[uuids.size()]));
|
||||||
@@ -153,7 +153,7 @@ public class PacketListener extends ChannelInboundHandlerAdapter {
|
|||||||
|
|
||||||
if(packet instanceof S0DPacketCollectItem) {
|
if(packet instanceof S0DPacketCollectItem) {
|
||||||
if(mc.thePlayer != null ||
|
if(mc.thePlayer != null ||
|
||||||
((S0DPacketCollectItem) packet).getEntityID() == mc.thePlayer.getEntityId()) {
|
((S0DPacketCollectItem) packet).func_149353_d() == mc.thePlayer.getEntityId()) {
|
||||||
super.channelRead(ctx, msg);
|
super.channelRead(ctx, msg);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -205,11 +205,11 @@ public class PacketListener extends ChannelInboundHandlerAdapter {
|
|||||||
|
|
||||||
if(packet instanceof S0CPacketSpawnPlayer) {
|
if(packet instanceof S0CPacketSpawnPlayer) {
|
||||||
S0CPacketSpawnPlayer p = (S0CPacketSpawnPlayer) packet;
|
S0CPacketSpawnPlayer p = (S0CPacketSpawnPlayer) packet;
|
||||||
if (p.watcher == null) {
|
if (p.field_148960_i == null) {
|
||||||
p.watcher = new DataWatcher(null);
|
p.field_148960_i = new DataWatcher(null);
|
||||||
if(p.func_148944_c() != null) {
|
if(p.func_148944_c() != null) {
|
||||||
for(DataWatcher.WatchableObject wo : p.func_148944_c()) {
|
for(DataWatcher.WatchableObject wo : (List<DataWatcher.WatchableObject>) p.func_148944_c()) {
|
||||||
p.watcher.addObject(wo.getDataValueId(), wo.getObject());
|
p.field_148960_i.addObject(wo.getDataValueId(), wo.getObject());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9,6 +9,7 @@ import com.replaymod.replaystudio.replay.ReplayFile;
|
|||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.client.gui.GuiScreenWorking;
|
import net.minecraft.client.gui.GuiScreenWorking;
|
||||||
import net.minecraft.client.gui.GuiYesNo;
|
import net.minecraft.client.gui.GuiYesNo;
|
||||||
|
import net.minecraft.client.gui.GuiYesNoCallback;
|
||||||
import net.minecraft.client.multiplayer.ServerData;
|
import net.minecraft.client.multiplayer.ServerData;
|
||||||
import net.minecraft.client.multiplayer.ServerList;
|
import net.minecraft.client.multiplayer.ServerList;
|
||||||
import net.minecraft.client.network.NetHandlerPlayClient;
|
import net.minecraft.client.network.NetHandlerPlayClient;
|
||||||
@@ -26,6 +27,7 @@ import javax.annotation.Nonnull;
|
|||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
import java.util.HashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -52,6 +54,9 @@ public class ResourcePackRecorder {
|
|||||||
boolean doWrite = false; // Whether we are the first and have to write it
|
boolean doWrite = false; // Whether we are the first and have to write it
|
||||||
synchronized (replayFile) { // Need to read, modify and write the resource pack index atomically
|
synchronized (replayFile) { // Need to read, modify and write the resource pack index atomically
|
||||||
Map<Integer, String> index = replayFile.getResourcePackIndex();
|
Map<Integer, String> index = replayFile.getResourcePackIndex();
|
||||||
|
if (index == null) {
|
||||||
|
index = new HashMap<>();
|
||||||
|
}
|
||||||
if (!index.containsValue(hash)) {
|
if (!index.containsValue(hash)) {
|
||||||
// Hash is unknown, we have to write the resource pack ourselves
|
// Hash is unknown, we have to write the resource pack ourselves
|
||||||
doWrite = true;
|
doWrite = true;
|
||||||
@@ -74,8 +79,8 @@ public class ResourcePackRecorder {
|
|||||||
final int requestId = nextRequestId++;
|
final int requestId = nextRequestId++;
|
||||||
final NetHandlerPlayClient netHandler = mc.getNetHandler();
|
final NetHandlerPlayClient netHandler = mc.getNetHandler();
|
||||||
final NetworkManager netManager = netHandler.getNetworkManager();
|
final NetworkManager netManager = netHandler.getNetworkManager();
|
||||||
final String url = packet.getURL();
|
final String url = packet.func_179783_a();
|
||||||
final String hash = packet.getHash();
|
final String hash = packet.func_179784_b();
|
||||||
|
|
||||||
if (url.startsWith("level://")) {
|
if (url.startsWith("level://")) {
|
||||||
String levelName = url.substring("level://".length());
|
String levelName = url.substring("level://".length());
|
||||||
@@ -84,7 +89,7 @@ public class ResourcePackRecorder {
|
|||||||
|
|
||||||
if (levelDir.isFile()) {
|
if (levelDir.isFile()) {
|
||||||
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.ACCEPTED));
|
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.ACCEPTED));
|
||||||
Futures.addCallback(mc.getResourcePackRepository().setResourcePackInstance(levelDir), new FutureCallback<Object>() {
|
Futures.addCallback(mc.getResourcePackRepository().func_177319_a(levelDir), new FutureCallback() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(Object result) {
|
public void onSuccess(Object result) {
|
||||||
recordResourcePack(levelDir, requestId);
|
recordResourcePack(levelDir, requestId);
|
||||||
@@ -107,19 +112,24 @@ public class ResourcePackRecorder {
|
|||||||
} else if (serverData != null && serverData.getResourceMode() != ServerData.ServerResourceMode.PROMPT) {
|
} else if (serverData != null && serverData.getResourceMode() != ServerData.ServerResourceMode.PROMPT) {
|
||||||
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.DECLINED));
|
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.DECLINED));
|
||||||
} else {
|
} else {
|
||||||
mc.addScheduledTask(() -> mc.displayGuiScreen(new GuiYesNo((result, id) -> {
|
// Lambdas MUST NOT be used with methods that need re-obfuscation in FG prior to 2.2 (will result in AbstractMethodError)
|
||||||
if (serverData != null) {
|
//noinspection Convert2Lambda
|
||||||
serverData.setResourceMode(result ? ServerData.ServerResourceMode.ENABLED : ServerData.ServerResourceMode.DISABLED);
|
mc.addScheduledTask(() -> mc.displayGuiScreen(new GuiYesNo(new GuiYesNoCallback() {
|
||||||
}
|
@Override
|
||||||
if (result) {
|
public void confirmClicked(boolean result, int id) {
|
||||||
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.ACCEPTED));
|
if (serverData != null) {
|
||||||
downloadResourcePackFuture(requestId, url, hash);
|
serverData.setResourceMode(result ? ServerData.ServerResourceMode.ENABLED : ServerData.ServerResourceMode.DISABLED);
|
||||||
} else {
|
}
|
||||||
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.DECLINED));
|
if (result) {
|
||||||
}
|
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.ACCEPTED));
|
||||||
|
ResourcePackRecorder.this.downloadResourcePackFuture(requestId, url, hash);
|
||||||
|
} else {
|
||||||
|
netManager.sendPacket(new C19PacketResourcePackStatus(hash, C19PacketResourcePackStatus.Action.DECLINED));
|
||||||
|
}
|
||||||
|
|
||||||
ServerList.func_147414_b(serverData);
|
ServerList.func_147414_b(serverData);
|
||||||
mc.displayGuiScreen(null);
|
mc.displayGuiScreen(null);
|
||||||
|
}
|
||||||
}, I18n.format("multiplayer.texturePrompt.line1"), I18n.format("multiplayer.texturePrompt.line2"), 0)));
|
}, I18n.format("multiplayer.texturePrompt.line1"), I18n.format("multiplayer.texturePrompt.line2"), 0)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -161,16 +171,16 @@ public class ResourcePackRecorder {
|
|||||||
}
|
}
|
||||||
|
|
||||||
final File file = new File(repo.dirServerResourcepacks, fileName);
|
final File file = new File(repo.dirServerResourcepacks, fileName);
|
||||||
repo.lock.lock();
|
repo.field_177321_h.lock();
|
||||||
try {
|
try {
|
||||||
repo.clearResourcePack();
|
repo.func_148529_f();
|
||||||
|
|
||||||
if (file.exists() && hash.length() == 40) {
|
if (file.exists() && hash.length() == 40) {
|
||||||
try {
|
try {
|
||||||
String fileHash = Hashing.sha1().hashBytes(Files.toByteArray(file)).toString();
|
String fileHash = Hashing.sha1().hashBytes(Files.toByteArray(file)).toString();
|
||||||
if (fileHash.equals(hash)) {
|
if (fileHash.equals(hash)) {
|
||||||
recordResourcePack(file, requestId);
|
recordResourcePack(file, requestId);
|
||||||
return repo.setResourcePackInstance(file);
|
return repo.func_177319_a(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
logger.warn("File " + file + " had wrong hash (expected " + hash + ", found " + fileHash + "). Deleting it.");
|
logger.warn("File " + file + " had wrong hash (expected " + hash + ", found " + fileHash + "). Deleting it.");
|
||||||
@@ -186,13 +196,13 @@ public class ResourcePackRecorder {
|
|||||||
|
|
||||||
Futures.getUnchecked(mc.addScheduledTask(() -> mc.displayGuiScreen(guiScreen)));
|
Futures.getUnchecked(mc.addScheduledTask(() -> mc.displayGuiScreen(guiScreen)));
|
||||||
|
|
||||||
Map<String, String> sessionInfo = Minecraft.getSessionInfo();
|
Map sessionInfo = Minecraft.getSessionInfo();
|
||||||
repo.downloadingPacks = HttpUtil.downloadResourcePack(file, url, sessionInfo, 50 * 1024 * 1024, guiScreen, mc.getProxy());
|
repo.field_177322_i = HttpUtil.func_180192_a(file, url, sessionInfo, 50 * 1024 * 1024, guiScreen, mc.getProxy());
|
||||||
Futures.addCallback(repo.downloadingPacks, new FutureCallback<Object>() {
|
Futures.addCallback(repo.field_177322_i, new FutureCallback() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(Object value) {
|
public void onSuccess(Object value) {
|
||||||
recordResourcePack(file, requestId);
|
recordResourcePack(file, requestId);
|
||||||
repo.setResourcePackInstance(file);
|
repo.func_177319_a(file);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -200,9 +210,9 @@ public class ResourcePackRecorder {
|
|||||||
throwable.printStackTrace();
|
throwable.printStackTrace();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return repo.downloadingPacks;
|
return repo.field_177322_i;
|
||||||
} finally {
|
} finally {
|
||||||
repo.lock.unlock();
|
repo.field_177321_h.unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -75,9 +75,9 @@ public class ODSFrameCapturer implements FrameCapturer<ODSOpenGlFrame> {
|
|||||||
linkState(1, "lightMapEnabled");
|
linkState(1, "lightMapEnabled");
|
||||||
linkState(2, "hurtTextureEnabled");
|
linkState(2, "hurtTextureEnabled");
|
||||||
final Program.Uniform uniform = shaderProgram.getUniformVariable("fogEnabled");
|
final Program.Uniform uniform = shaderProgram.getUniformVariable("fogEnabled");
|
||||||
previousFogState = GlStateManager.fogState.fog;
|
previousFogState = GlStateManager.fogState.field_179049_a;
|
||||||
uniform.set(previousFogState.currentState);
|
uniform.set(previousFogState.currentState);
|
||||||
GlStateManager.fogState.fog = new BooleanState(previousFogState.capability) {
|
GlStateManager.fogState.field_179049_a = new BooleanState(previousFogState.capability) {
|
||||||
@Override
|
@Override
|
||||||
public void setState(boolean state) {
|
public void setState(boolean state) {
|
||||||
super.setState(state);
|
super.setState(state);
|
||||||
@@ -135,7 +135,7 @@ public class ODSFrameCapturer implements FrameCapturer<ODSOpenGlFrame> {
|
|||||||
for (int i = 0; i < 3; i++) {
|
for (int i = 0; i < 3; i++) {
|
||||||
GlStateManager.textureState[i].texture2DState = previousStates[i];
|
GlStateManager.textureState[i].texture2DState = previousStates[i];
|
||||||
}
|
}
|
||||||
GlStateManager.fogState.fog = previousFogState;
|
GlStateManager.fogState.field_179049_a = previousFogState;
|
||||||
}
|
}
|
||||||
|
|
||||||
private class CubicStereoFrameCapturer extends CubicPboOpenGlFrameCapturer {
|
private class CubicStereoFrameCapturer extends CubicPboOpenGlFrameCapturer {
|
||||||
|
|||||||
@@ -80,8 +80,8 @@ public class GuiRenderSettings extends GuiScreen implements Closeable {
|
|||||||
}
|
}
|
||||||
}).setMinSize(new Dimension(0, 20)).setValues(RenderSettings.EncodingPreset.values());
|
}).setMinSize(new Dimension(0, 20)).setValues(RenderSettings.EncodingPreset.values());
|
||||||
|
|
||||||
public final GuiNumberField videoWidth = new GuiNumberField().setSize(50, 20).setMinValue(1);
|
public final GuiNumberField videoWidth = new GuiNumberField().setSize(50, 20).setMinValue(1).setValidateOnFocusChange(true);
|
||||||
public final GuiNumberField videoHeight = new GuiNumberField().setSize(50, 20).setMinValue(1);
|
public final GuiNumberField videoHeight = new GuiNumberField().setSize(50, 20).setMinValue(1).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() {
|
||||||
@@ -93,7 +93,7 @@ public class GuiRenderSettings extends GuiScreen implements Closeable {
|
|||||||
.setLayout(new HorizontalLayout(HorizontalLayout.Alignment.RIGHT).setSpacing(2))
|
.setLayout(new HorizontalLayout(HorizontalLayout.Alignment.RIGHT).setSpacing(2))
|
||||||
.addElements(new HorizontalLayout.Data(0.5), videoWidth, new GuiLabel().setText("*"), videoHeight);
|
.addElements(new HorizontalLayout.Data(0.5), videoWidth, new GuiLabel().setText("*"), videoHeight);
|
||||||
|
|
||||||
public final GuiNumberField bitRateField = new GuiNumberField().setValue(10).setSize(50, 20);
|
public final GuiNumberField bitRateField = new GuiNumberField().setValue(10).setSize(50, 20).setValidateOnFocusChange(true);
|
||||||
public final GuiDropdownMenu<String> bitRateUnit = new GuiDropdownMenu<String>()
|
public final GuiDropdownMenu<String> bitRateUnit = new GuiDropdownMenu<String>()
|
||||||
.setSize(50, 20).setValues("bps", "kbps", "mbps").setSelected("mbps");
|
.setSize(50, 20).setValues("bps", "kbps", "mbps").setSelected("mbps");
|
||||||
|
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ public class ChunkLoadingRenderGlobal {
|
|||||||
|
|
||||||
private final RenderGlobal hooked;
|
private final RenderGlobal hooked;
|
||||||
private final ChunkRenderDispatcher renderDispatcher;
|
private final ChunkRenderDispatcher renderDispatcher;
|
||||||
private final JailingQueue<ChunkCompileTaskGenerator> workerJailingQueue;
|
private final JailingQueue<?> workerJailingQueue;
|
||||||
private final CustomChunkRenderWorker renderWorker;
|
private final CustomChunkRenderWorker renderWorker;
|
||||||
private int frame;
|
private int frame;
|
||||||
|
|
||||||
@@ -27,7 +27,7 @@ public class ChunkLoadingRenderGlobal {
|
|||||||
this.renderWorker = new CustomChunkRenderWorker(renderDispatcher, new RegionRenderCacheBuilder());
|
this.renderWorker = new CustomChunkRenderWorker(renderDispatcher, new RegionRenderCacheBuilder());
|
||||||
|
|
||||||
int workerThreads = renderDispatcher.listThreadedWorkers.size();
|
int workerThreads = renderDispatcher.listThreadedWorkers.size();
|
||||||
BlockingQueue<ChunkCompileTaskGenerator> queueChunkUpdates = renderDispatcher.queueChunkUpdates;
|
BlockingQueue<Object> queueChunkUpdates = renderDispatcher.queueChunkUpdates;
|
||||||
workerJailingQueue = new JailingQueue<>(queueChunkUpdates);
|
workerJailingQueue = new JailingQueue<>(queueChunkUpdates);
|
||||||
renderDispatcher.queueChunkUpdates = workerJailingQueue;
|
renderDispatcher.queueChunkUpdates = workerJailingQueue;
|
||||||
ChunkCompileTaskGenerator element = new ChunkCompileTaskGenerator(null, null);
|
ChunkCompileTaskGenerator element = new ChunkCompileTaskGenerator(null, null);
|
||||||
@@ -51,6 +51,7 @@ public class ChunkLoadingRenderGlobal {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@SuppressWarnings("unchecked")
|
||||||
public void updateChunks() {
|
public void updateChunks() {
|
||||||
while (renderDispatcher.runChunkUploads(0)) {
|
while (renderDispatcher.runChunkUploads(0)) {
|
||||||
hooked.displayListEntitiesDirty = true;
|
hooked.displayListEntitiesDirty = true;
|
||||||
@@ -58,7 +59,7 @@ public class ChunkLoadingRenderGlobal {
|
|||||||
|
|
||||||
while (!renderDispatcher.queueChunkUpdates.isEmpty()) {
|
while (!renderDispatcher.queueChunkUpdates.isEmpty()) {
|
||||||
try {
|
try {
|
||||||
renderWorker.processTask(renderDispatcher.queueChunkUpdates.poll());
|
renderWorker.processTask((ChunkCompileTaskGenerator) renderDispatcher.queueChunkUpdates.poll());
|
||||||
} catch (InterruptedException ignored) { }
|
} catch (InterruptedException ignored) { }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -12,13 +12,13 @@ import org.spongepowered.asm.mixin.injection.Redirect;
|
|||||||
|
|
||||||
@Mixin(EffectRenderer.class)
|
@Mixin(EffectRenderer.class)
|
||||||
public abstract class MixinEffectRenderer {
|
public abstract class MixinEffectRenderer {
|
||||||
@Redirect(method = "renderParticles", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/particle/EntityFX;renderParticle(Lnet/minecraft/client/renderer/WorldRenderer;Lnet/minecraft/entity/Entity;FFFFFF)V"))
|
@Redirect(method = "renderParticles", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/particle/EntityFX;func_180434_a(Lnet/minecraft/client/renderer/WorldRenderer;Lnet/minecraft/entity/Entity;FFFFFF)V"))
|
||||||
private void renderNormalParticle(EntityFX fx, WorldRenderer worldRenderer, Entity view, float partialTicks,
|
private void renderNormalParticle(EntityFX fx, WorldRenderer worldRenderer, Entity view, float partialTicks,
|
||||||
float rotX, float rotXZ, float rotZ, float rotYZ, float rotXY) {
|
float rotX, float rotXZ, float rotZ, float rotYZ, float rotXY) {
|
||||||
renderParticle(fx, worldRenderer, view, partialTicks, rotX, rotXZ, rotZ, rotYZ, rotXY);
|
renderParticle(fx, worldRenderer, view, partialTicks, rotX, rotXZ, rotZ, rotYZ, rotXY);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Redirect(method = "renderLitParticles", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/particle/EntityFX;renderParticle(Lnet/minecraft/client/renderer/WorldRenderer;Lnet/minecraft/entity/Entity;FFFFFF)V"))
|
@Redirect(method = "renderLitParticles", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/particle/EntityFX;func_180434_a(Lnet/minecraft/client/renderer/WorldRenderer;Lnet/minecraft/entity/Entity;FFFFFF)V"))
|
||||||
private void renderLitParticle(EntityFX fx, WorldRenderer worldRenderer, Entity view, float partialTicks,
|
private void renderLitParticle(EntityFX fx, WorldRenderer worldRenderer, Entity view, float partialTicks,
|
||||||
float rotX, float rotXZ, float rotZ, float rotYZ, float rotXY) {
|
float rotX, float rotXZ, float rotZ, float rotYZ, float rotXY) {
|
||||||
renderParticle(fx, worldRenderer, view, partialTicks, rotX, rotXZ, rotZ, rotYZ, rotXY);
|
renderParticle(fx, worldRenderer, view, partialTicks, rotX, rotXZ, rotZ, rotYZ, rotXY);
|
||||||
@@ -42,6 +42,6 @@ public abstract class MixinEffectRenderer {
|
|||||||
rotYZ = (float) (-rotZ * Math.sin(pitch));
|
rotYZ = (float) (-rotZ * Math.sin(pitch));
|
||||||
rotXY = (float) (rotX * Math.sin(pitch));
|
rotXY = (float) (rotX * Math.sin(pitch));
|
||||||
}
|
}
|
||||||
fx.renderParticle(worldRenderer, view, partialTicks, rotX, rotXZ, rotZ, rotYZ, rotXY);
|
fx.func_180434_a(worldRenderer, view, partialTicks, rotX, rotXZ, rotZ, rotYZ, rotXY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -219,7 +219,7 @@ public class VideoRenderer implements RenderInfo {
|
|||||||
|
|
||||||
updateDisplaySize();
|
updateDisplaySize();
|
||||||
|
|
||||||
ScaledResolution scaled = new ScaledResolution(mc);
|
ScaledResolution scaled = new ScaledResolution(mc, displayWidth, displayHeight);
|
||||||
gui.toMinecraft().setWorldAndResolution(mc, scaled.getScaledWidth(), scaled.getScaledHeight());
|
gui.toMinecraft().setWorldAndResolution(mc, scaled.getScaledWidth(), scaled.getScaledHeight());
|
||||||
|
|
||||||
chunkLoadingRenderGlobal = new ChunkLoadingRenderGlobal(mc.renderGlobal);
|
chunkLoadingRenderGlobal = new ChunkLoadingRenderGlobal(mc.renderGlobal);
|
||||||
@@ -286,7 +286,7 @@ public class VideoRenderer implements RenderInfo {
|
|||||||
|
|
||||||
mc.entityRenderer.setupOverlayRendering();
|
mc.entityRenderer.setupOverlayRendering();
|
||||||
|
|
||||||
ScaledResolution scaled = new ScaledResolution(mc);
|
ScaledResolution scaled = new ScaledResolution(mc, mc.displayWidth, mc.displayHeight);
|
||||||
gui.toMinecraft().setWorldAndResolution(mc, scaled.getScaledWidth(), scaled.getScaledHeight());
|
gui.toMinecraft().setWorldAndResolution(mc, scaled.getScaledWidth(), scaled.getScaledHeight());
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
|||||||
@@ -16,6 +16,8 @@ import javax.imageio.ImageIO;
|
|||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import java.awt.image.BufferedImage;
|
import java.awt.image.BufferedImage;
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
|
import java.util.Queue;
|
||||||
|
import java.util.concurrent.FutureTask;
|
||||||
|
|
||||||
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
|
@RequiredArgsConstructor(access = AccessLevel.PRIVATE)
|
||||||
@Getter
|
@Getter
|
||||||
@@ -43,7 +45,7 @@ public class NoGuiScreenshot {
|
|||||||
mc.getFramebuffer().bindFramebuffer(true);
|
mc.getFramebuffer().bindFramebuffer(true);
|
||||||
GlStateManager.enableTexture2D();
|
GlStateManager.enableTexture2D();
|
||||||
|
|
||||||
mc.entityRenderer.updateCameraAndRender(mc.timer.renderPartialTicks, System.nanoTime());
|
mc.entityRenderer.updateCameraAndRender(mc.timer.renderPartialTicks);
|
||||||
|
|
||||||
mc.getFramebuffer().unbindFramebuffer();
|
mc.getFramebuffer().unbindFramebuffer();
|
||||||
GlStateManager.popMatrix();
|
GlStateManager.popMatrix();
|
||||||
@@ -99,7 +101,9 @@ public class NoGuiScreenshot {
|
|||||||
// of the game loop. We cannot use the addScheduledTask method as it'll run the task if called
|
// of the game loop. We cannot use the addScheduledTask method as it'll run the task if called
|
||||||
// from the minecraft thread which is exactly what we want to avoid.
|
// from the minecraft thread which is exactly what we want to avoid.
|
||||||
synchronized (mc.scheduledTasks) {
|
synchronized (mc.scheduledTasks) {
|
||||||
mc.scheduledTasks.add(ListenableFutureTask.create(runnable, null));
|
@SuppressWarnings("unchecked")
|
||||||
|
Queue<FutureTask> queue = mc.scheduledTasks;
|
||||||
|
queue.add(ListenableFutureTask.create(runnable, null));
|
||||||
}
|
}
|
||||||
return future;
|
return future;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -311,7 +311,7 @@ public class ReplayHandler {
|
|||||||
mc.getFramebuffer().bindFramebuffer(true);
|
mc.getFramebuffer().bindFramebuffer(true);
|
||||||
mc.entityRenderer.setupOverlayRendering();
|
mc.entityRenderer.setupOverlayRendering();
|
||||||
|
|
||||||
ScaledResolution resolution = new ScaledResolution(mc);
|
ScaledResolution resolution = new ScaledResolution(mc, mc.displayWidth, mc.displayHeight);
|
||||||
guiScreen.setWorldAndResolution(mc, resolution.getScaledWidth(), resolution.getScaledHeight());
|
guiScreen.setWorldAndResolution(mc, resolution.getScaledWidth(), resolution.getScaledHeight());
|
||||||
guiScreen.drawScreen(0, 0, 0);
|
guiScreen.drawScreen(0, 0, 0);
|
||||||
|
|
||||||
@@ -329,7 +329,9 @@ public class ReplayHandler {
|
|||||||
replaySender.setReplaySpeed(0);
|
replaySender.setReplaySpeed(0);
|
||||||
|
|
||||||
mc.getNetHandler().getNetworkManager().processReceivedPackets();
|
mc.getNetHandler().getNetworkManager().processReceivedPackets();
|
||||||
for (Entity entity : mc.theWorld.loadedEntityList) {
|
@SuppressWarnings("unchecked")
|
||||||
|
List<Entity> entities = (List<Entity>) mc.theWorld.loadedEntityList;
|
||||||
|
for (Entity entity : entities) {
|
||||||
if (entity instanceof EntityOtherPlayerMP) {
|
if (entity instanceof EntityOtherPlayerMP) {
|
||||||
EntityOtherPlayerMP e = (EntityOtherPlayerMP) entity;
|
EntityOtherPlayerMP e = (EntityOtherPlayerMP) entity;
|
||||||
e.setPosition(e.otherPlayerMPX, e.otherPlayerMPY, e.otherPlayerMPZ);
|
e.setPosition(e.otherPlayerMPX, e.otherPlayerMPY, e.otherPlayerMPZ);
|
||||||
|
|||||||
@@ -354,7 +354,7 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (p instanceof S40PacketDisconnect) {
|
if (p instanceof S40PacketDisconnect) {
|
||||||
IChatComponent reason = ((S40PacketDisconnect) p).getReason();
|
IChatComponent reason = ((S40PacketDisconnect) p).func_149165_c();
|
||||||
if ("Please update to view this replay.".equals(reason.getUnformattedText())) {
|
if ("Please update to view this replay.".equals(reason.getUnformattedText())) {
|
||||||
// This version of the mod supports replay restrictions so we are allowed
|
// This version of the mod supports replay restrictions so we are allowed
|
||||||
// to remove this packet.
|
// to remove this packet.
|
||||||
@@ -368,7 +368,7 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
|
|
||||||
if(p instanceof S48PacketResourcePackSend) {
|
if(p instanceof S48PacketResourcePackSend) {
|
||||||
S48PacketResourcePackSend packet = (S48PacketResourcePackSend) p;
|
S48PacketResourcePackSend packet = (S48PacketResourcePackSend) p;
|
||||||
String url = packet.getURL();
|
String url = packet.func_179783_a();
|
||||||
if (url.startsWith("replay://")) {
|
if (url.startsWith("replay://")) {
|
||||||
int id = Integer.parseInt(url.substring("replay://".length()));
|
int id = Integer.parseInt(url.substring("replay://".length()));
|
||||||
Map<Integer, String> index = replayFile.getResourcePackIndex();
|
Map<Integer, String> index = replayFile.getResourcePackIndex();
|
||||||
@@ -379,7 +379,7 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
if (!file.exists()) {
|
if (!file.exists()) {
|
||||||
IOUtils.copy(replayFile.getResourcePack(hash).get(), new FileOutputStream(file));
|
IOUtils.copy(replayFile.getResourcePack(hash).get(), new FileOutputStream(file));
|
||||||
}
|
}
|
||||||
mc.getResourcePackRepository().setResourcePackInstance(file);
|
mc.getResourcePackRepository().func_177319_a(file);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
@@ -403,8 +403,8 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
|
|
||||||
if(p instanceof S07PacketRespawn) {
|
if(p instanceof S07PacketRespawn) {
|
||||||
S07PacketRespawn respawn = (S07PacketRespawn) p;
|
S07PacketRespawn respawn = (S07PacketRespawn) p;
|
||||||
p = new S07PacketRespawn(respawn.getDimensionID(),
|
p = new S07PacketRespawn(respawn.func_149082_c(),
|
||||||
respawn.getDifficulty(), respawn.getWorldType(), GameType.SPECTATOR);
|
respawn.func_149081_d(), respawn.func_149080_f(), GameType.SPECTATOR);
|
||||||
|
|
||||||
allowMovement = true;
|
allowMovement = true;
|
||||||
}
|
}
|
||||||
@@ -431,8 +431,8 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if(cent != null) {
|
if(cent != null) {
|
||||||
if(!allowMovement && !((Math.abs(cent.posX - ppl.getX()) > TP_DISTANCE_LIMIT) ||
|
if(!allowMovement && !((Math.abs(cent.posX - ppl.func_148932_c()) > TP_DISTANCE_LIMIT) ||
|
||||||
(Math.abs(cent.posZ - ppl.getZ()) > TP_DISTANCE_LIMIT))) {
|
(Math.abs(cent.posZ - ppl.func_148933_e()) > TP_DISTANCE_LIMIT))) {
|
||||||
return null;
|
return null;
|
||||||
} else {
|
} else {
|
||||||
allowMovement = false;
|
allowMovement = false;
|
||||||
@@ -451,7 +451,7 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
}
|
}
|
||||||
|
|
||||||
CameraEntity cent = replayHandler.getCameraEntity();
|
CameraEntity cent = replayHandler.getCameraEntity();
|
||||||
cent.setCameraPosition(ppl.getX(), ppl.getY(), ppl.getZ());
|
cent.setCameraPosition(ppl.func_148932_c(), ppl.func_148928_d(), ppl.func_148933_e());
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}.call();
|
}.call();
|
||||||
@@ -459,7 +459,7 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
|
|
||||||
if(p instanceof S2BPacketChangeGameState) {
|
if(p instanceof S2BPacketChangeGameState) {
|
||||||
S2BPacketChangeGameState pg = (S2BPacketChangeGameState)p;
|
S2BPacketChangeGameState pg = (S2BPacketChangeGameState)p;
|
||||||
int reason = pg.getGameState();
|
int reason = pg.func_149138_c();
|
||||||
|
|
||||||
// only allow the following packets:
|
// only allow the following packets:
|
||||||
// 1 - End raining
|
// 1 - End raining
|
||||||
@@ -695,7 +695,7 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
|
|
||||||
if(p instanceof S0EPacketSpawnObject) {
|
if(p instanceof S0EPacketSpawnObject) {
|
||||||
S0EPacketSpawnObject pso = (S0EPacketSpawnObject)p;
|
S0EPacketSpawnObject pso = (S0EPacketSpawnObject)p;
|
||||||
int type = pso.getType();
|
int type = pso.func_148993_l();
|
||||||
if(type == 76) { // Firework rocket
|
if(type == 76) { // Firework rocket
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
@@ -789,28 +789,28 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
private void convertLegacyEntityIds(Packet packet) {
|
private void convertLegacyEntityIds(Packet packet) {
|
||||||
if (packet instanceof S0CPacketSpawnPlayer) {
|
if (packet instanceof S0CPacketSpawnPlayer) {
|
||||||
S0CPacketSpawnPlayer p = (S0CPacketSpawnPlayer) packet;
|
S0CPacketSpawnPlayer p = (S0CPacketSpawnPlayer) packet;
|
||||||
if (p.entityId == LEGACY_ENTITY_ID) {
|
if (p.field_148957_a == LEGACY_ENTITY_ID) {
|
||||||
p.entityId = actualID;
|
p.field_148957_a = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S18PacketEntityTeleport) {
|
} else if (packet instanceof S18PacketEntityTeleport) {
|
||||||
S18PacketEntityTeleport p = (S18PacketEntityTeleport) packet;
|
S18PacketEntityTeleport p = (S18PacketEntityTeleport) packet;
|
||||||
if (p.entityId == LEGACY_ENTITY_ID) {
|
if (p.field_149458_a == LEGACY_ENTITY_ID) {
|
||||||
p.entityId = actualID;
|
p.field_149458_a = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S14PacketEntity.S17PacketEntityLookMove) {
|
} else if (packet instanceof S14PacketEntity.S17PacketEntityLookMove) {
|
||||||
S14PacketEntity.S17PacketEntityLookMove p = (S14PacketEntity.S17PacketEntityLookMove) packet;
|
S14PacketEntity.S17PacketEntityLookMove p = (S14PacketEntity.S17PacketEntityLookMove) packet;
|
||||||
if (p.entityId == LEGACY_ENTITY_ID) {
|
if (p.field_149074_a == LEGACY_ENTITY_ID) {
|
||||||
p.entityId = actualID;
|
p.field_149074_a = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S19PacketEntityHeadLook) {
|
} else if (packet instanceof S19PacketEntityHeadLook) {
|
||||||
S19PacketEntityHeadLook p = (S19PacketEntityHeadLook) packet;
|
S19PacketEntityHeadLook p = (S19PacketEntityHeadLook) packet;
|
||||||
if (p.entityId == LEGACY_ENTITY_ID) {
|
if (p.field_149384_a == LEGACY_ENTITY_ID) {
|
||||||
p.entityId = actualID;
|
p.field_149384_a = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S12PacketEntityVelocity) {
|
} else if (packet instanceof S12PacketEntityVelocity) {
|
||||||
S12PacketEntityVelocity p = (S12PacketEntityVelocity) packet;
|
S12PacketEntityVelocity p = (S12PacketEntityVelocity) packet;
|
||||||
if (p.entityID == LEGACY_ENTITY_ID) {
|
if (p.field_149417_a == LEGACY_ENTITY_ID) {
|
||||||
p.entityID = actualID;
|
p.field_149417_a = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S0BPacketAnimation) {
|
} else if (packet instanceof S0BPacketAnimation) {
|
||||||
S0BPacketAnimation p = (S0BPacketAnimation) packet;
|
S0BPacketAnimation p = (S0BPacketAnimation) packet;
|
||||||
@@ -819,26 +819,26 @@ public class ReplaySender extends ChannelInboundHandlerAdapter {
|
|||||||
}
|
}
|
||||||
} else if (packet instanceof S04PacketEntityEquipment) {
|
} else if (packet instanceof S04PacketEntityEquipment) {
|
||||||
S04PacketEntityEquipment p = (S04PacketEntityEquipment) packet;
|
S04PacketEntityEquipment p = (S04PacketEntityEquipment) packet;
|
||||||
if (p.entityID == LEGACY_ENTITY_ID) {
|
if (p.field_149394_a == LEGACY_ENTITY_ID) {
|
||||||
p.entityID = actualID;
|
p.field_149394_a = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S1BPacketEntityAttach) {
|
} else if (packet instanceof S1BPacketEntityAttach) {
|
||||||
S1BPacketEntityAttach p = (S1BPacketEntityAttach) packet;
|
S1BPacketEntityAttach p = (S1BPacketEntityAttach) packet;
|
||||||
if (p.entityId == LEGACY_ENTITY_ID) {
|
if (p.field_149408_a == LEGACY_ENTITY_ID) {
|
||||||
p.entityId = actualID;
|
p.field_149408_a = actualID;
|
||||||
}
|
}
|
||||||
if (p.vehicleEntityId == LEGACY_ENTITY_ID) {
|
if (p.field_149406_b == LEGACY_ENTITY_ID) {
|
||||||
p.vehicleEntityId = actualID;
|
p.field_149406_b = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S0DPacketCollectItem) {
|
} else if (packet instanceof S0DPacketCollectItem) {
|
||||||
S0DPacketCollectItem p = (S0DPacketCollectItem) packet;
|
S0DPacketCollectItem p = (S0DPacketCollectItem) packet;
|
||||||
if (p.entityId == LEGACY_ENTITY_ID) {
|
if (p.field_149356_b == LEGACY_ENTITY_ID) {
|
||||||
p.entityId = actualID;
|
p.field_149356_b = actualID;
|
||||||
}
|
}
|
||||||
} else if (packet instanceof S13PacketDestroyEntities) {
|
} else if (packet instanceof S13PacketDestroyEntities) {
|
||||||
S13PacketDestroyEntities p = (S13PacketDestroyEntities) packet;
|
S13PacketDestroyEntities p = (S13PacketDestroyEntities) packet;
|
||||||
if (p.entityIDs.length == 1 && p.entityIDs[0] == LEGACY_ENTITY_ID) {
|
if (p.field_149100_a.length == 1 && p.field_149100_a[0] == LEGACY_ENTITY_ID) {
|
||||||
p.entityIDs[0] = actualID;
|
p.field_149100_a[0] = actualID;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -252,6 +252,15 @@ public class CameraEntity extends EntityPlayerSP {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean isInvisible() {
|
||||||
|
Entity view = mc.getRenderViewEntity();
|
||||||
|
if (view != this) {
|
||||||
|
return view.isInvisible();
|
||||||
|
}
|
||||||
|
return super.isInvisible();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public ResourceLocation getLocationSkin() {
|
public ResourceLocation getLocationSkin() {
|
||||||
Entity view = mc.getRenderViewEntity();
|
Entity view = mc.getRenderViewEntity();
|
||||||
|
|||||||
@@ -16,6 +16,10 @@ import org.lwjgl.input.Keyboard;
|
|||||||
import org.lwjgl.util.ReadablePoint;
|
import org.lwjgl.util.ReadablePoint;
|
||||||
|
|
||||||
public class GuiEditMarkerPopup extends AbstractGuiPopup<GuiEditMarkerPopup> implements Typeable {
|
public class GuiEditMarkerPopup extends AbstractGuiPopup<GuiEditMarkerPopup> implements Typeable {
|
||||||
|
private static GuiNumberField newGuiNumberField() {
|
||||||
|
return new GuiNumberField().setSize(150, 20).setValidateOnFocusChange(true);
|
||||||
|
}
|
||||||
|
|
||||||
private final ReplayHandler replayHandler;
|
private final ReplayHandler replayHandler;
|
||||||
private final Marker marker;
|
private final Marker marker;
|
||||||
|
|
||||||
@@ -23,15 +27,15 @@ public class GuiEditMarkerPopup extends AbstractGuiPopup<GuiEditMarkerPopup> imp
|
|||||||
|
|
||||||
public final GuiTextField nameField = new GuiTextField().setSize(150, 20);
|
public final GuiTextField nameField = new GuiTextField().setSize(150, 20);
|
||||||
// TODO: Replace with a min/sec/msec field
|
// TODO: Replace with a min/sec/msec field
|
||||||
public final GuiNumberField timeField = new GuiNumberField().setSize(150, 20).setPrecision(0);
|
public final GuiNumberField timeField = newGuiNumberField().setPrecision(0);
|
||||||
|
|
||||||
public final GuiNumberField xField = new GuiNumberField().setSize(150, 20).setPrecision(10);
|
public final GuiNumberField xField = newGuiNumberField().setPrecision(10);
|
||||||
public final GuiNumberField yField = new GuiNumberField().setSize(150, 20).setPrecision(10);
|
public final GuiNumberField yField = newGuiNumberField().setPrecision(10);
|
||||||
public final GuiNumberField zField = new GuiNumberField().setSize(150, 20).setPrecision(10);
|
public final GuiNumberField zField = newGuiNumberField().setPrecision(10);
|
||||||
|
|
||||||
public final GuiNumberField yawField = new GuiNumberField().setSize(150, 20).setPrecision(5);
|
public final GuiNumberField yawField = newGuiNumberField().setPrecision(5);
|
||||||
public final GuiNumberField pitchField = new GuiNumberField().setSize(150, 20).setPrecision(5);
|
public final GuiNumberField pitchField = newGuiNumberField().setPrecision(5);
|
||||||
public final GuiNumberField rollField = new GuiNumberField().setSize(150, 20).setPrecision(5);
|
public final GuiNumberField rollField = newGuiNumberField().setPrecision(5);
|
||||||
|
|
||||||
public final GuiPanel inputs = GuiPanel.builder()
|
public final GuiPanel inputs = GuiPanel.builder()
|
||||||
.layout(new GridLayout().setColumns(2).setSpacingX(7).setSpacingY(3))
|
.layout(new GridLayout().setColumns(2).setSpacingX(7).setSpacingY(3))
|
||||||
|
|||||||
@@ -12,7 +12,7 @@ import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable;
|
|||||||
|
|
||||||
@Mixin(ArmorStandRenderer.class)
|
@Mixin(ArmorStandRenderer.class)
|
||||||
public abstract class MixinArmorStandRenderer {
|
public abstract class MixinArmorStandRenderer {
|
||||||
@Inject(method = "canRenderName", at = @At("HEAD"), cancellable = true)
|
@Inject(method = "func_177099_b", at = @At("HEAD"), cancellable = true)
|
||||||
private void replayModReplay_canRenderInvisibleName(EntityArmorStand entity, CallbackInfoReturnable<Boolean> ci) {
|
private void replayModReplay_canRenderInvisibleName(EntityArmorStand entity, CallbackInfoReturnable<Boolean> ci) {
|
||||||
EntityPlayer thePlayer = Minecraft.getMinecraft().thePlayer;
|
EntityPlayer thePlayer = Minecraft.getMinecraft().thePlayer;
|
||||||
if (thePlayer instanceof CameraEntity && entity.isInvisible()) {
|
if (thePlayer instanceof CameraEntity && entity.isInvisible()) {
|
||||||
|
|||||||
@@ -10,7 +10,7 @@ import org.spongepowered.asm.mixin.injection.Redirect;
|
|||||||
|
|
||||||
@Mixin(TileEntityEndPortalRenderer.class)
|
@Mixin(TileEntityEndPortalRenderer.class)
|
||||||
public class MixinTileEntityEndPortalRenderer {
|
public class MixinTileEntityEndPortalRenderer {
|
||||||
@Redirect(method = "renderTileEntityAt", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/Minecraft;getSystemTime()J"))
|
@Redirect(method = "func_180544_a", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/Minecraft;getSystemTime()J"))
|
||||||
private long replayModReplay_getEnchantmentTime() {
|
private long replayModReplay_getEnchantmentTime() {
|
||||||
ReplayHandler replayHandler = ReplayModReplay.instance.getReplayHandler();
|
ReplayHandler replayHandler = ReplayModReplay.instance.getReplayHandler();
|
||||||
if (replayHandler != null) {
|
if (replayHandler != null) {
|
||||||
|
|||||||
@@ -0,0 +1,54 @@
|
|||||||
|
package com.replaymod.simplepathing;
|
||||||
|
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.CatmullRomSplineInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.CubicSplineInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.Interpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.LinearInterpolator;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Getter;
|
||||||
|
|
||||||
|
import java.util.function.Supplier;
|
||||||
|
|
||||||
|
@AllArgsConstructor
|
||||||
|
public enum InterpolatorType {
|
||||||
|
DEFAULT("default", null, null),
|
||||||
|
CATMULL_ROM("catmullrom", CatmullRomSplineInterpolator.class, () -> new CatmullRomSplineInterpolator(0.5)),
|
||||||
|
CUBIC("cubic", CubicSplineInterpolator.class, CubicSplineInterpolator::new),
|
||||||
|
LINEAR("linear", LinearInterpolator.class, LinearInterpolator::new);
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private String localizationKey;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private Class<? extends Interpolator> interpolatorClass;
|
||||||
|
|
||||||
|
private Supplier<Interpolator> interpolatorConstructor;
|
||||||
|
|
||||||
|
public String getI18nName() {
|
||||||
|
return String.format("replaymod.gui.editkeyframe.interpolator.%1$s.name", localizationKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getI18nDescription() {
|
||||||
|
return String.format("replaymod.gui.editkeyframe.interpolator.%1$s.desc", localizationKey);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static InterpolatorType fromString(String string) {
|
||||||
|
for (InterpolatorType t : values()) {
|
||||||
|
if (t.getI18nName().equals(string)) return t;
|
||||||
|
}
|
||||||
|
return CATMULL_ROM; //the default
|
||||||
|
}
|
||||||
|
|
||||||
|
public static InterpolatorType fromClass(Class<? extends Interpolator> cls) {
|
||||||
|
for (InterpolatorType type : values()) {
|
||||||
|
if (cls.equals(type.getInterpolatorClass())) {
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return DEFAULT;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Interpolator newInstance() {
|
||||||
|
return interpolatorConstructor.get();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,36 +1,25 @@
|
|||||||
package com.replaymod.simplepathing;
|
package com.replaymod.simplepathing;
|
||||||
|
|
||||||
import com.google.gson.stream.JsonReader;
|
|
||||||
import com.google.gson.stream.JsonWriter;
|
|
||||||
import com.replaymod.core.ReplayMod;
|
import com.replaymod.core.ReplayMod;
|
||||||
import com.replaymod.core.events.SettingsChangedEvent;
|
import com.replaymod.core.events.SettingsChangedEvent;
|
||||||
import com.replaymod.pathing.properties.CameraProperties;
|
|
||||||
import com.replaymod.pathing.properties.SpectatorProperty;
|
|
||||||
import com.replaymod.pathing.properties.TimestampProperty;
|
|
||||||
import com.replaymod.replay.events.ReplayCloseEvent;
|
import com.replaymod.replay.events.ReplayCloseEvent;
|
||||||
import com.replaymod.replay.events.ReplayOpenEvent;
|
import com.replaymod.replay.events.ReplayOpenEvent;
|
||||||
import com.replaymod.replaystudio.pathing.PathingRegistry;
|
|
||||||
import com.replaymod.replaystudio.pathing.impl.TimelineImpl;
|
|
||||||
import com.replaymod.replaystudio.pathing.interpolation.CubicSplineInterpolator;
|
|
||||||
import com.replaymod.replaystudio.pathing.interpolation.Interpolator;
|
|
||||||
import com.replaymod.replaystudio.pathing.interpolation.LinearInterpolator;
|
|
||||||
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
||||||
import com.replaymod.replaystudio.pathing.path.Timeline;
|
import com.replaymod.simplepathing.SPTimeline.SPPath;
|
||||||
import com.replaymod.simplepathing.gui.GuiPathing;
|
import com.replaymod.simplepathing.gui.GuiPathing;
|
||||||
import com.replaymod.simplepathing.preview.PathPreview;
|
import com.replaymod.simplepathing.preview.PathPreview;
|
||||||
|
import lombok.Getter;
|
||||||
import net.minecraftforge.fml.common.FMLCommonHandler;
|
import net.minecraftforge.fml.common.FMLCommonHandler;
|
||||||
import net.minecraftforge.fml.common.Mod;
|
import net.minecraftforge.fml.common.Mod;
|
||||||
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
||||||
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
|
|
||||||
@Mod(modid = ReplayModSimplePathing.MOD_ID,
|
@Mod(modid = ReplayModSimplePathing.MOD_ID,
|
||||||
version = "@MOD_VERSION@",
|
version = "@MOD_VERSION@",
|
||||||
acceptedMinecraftVersions = "@MC_VERSION@",
|
acceptedMinecraftVersions = "@MC_VERSION@",
|
||||||
useMetadata = true)
|
useMetadata = true)
|
||||||
public class ReplayModSimplePathing implements PathingRegistry {
|
public class ReplayModSimplePathing {
|
||||||
public static final String MOD_ID = "replaymod-simplepathing";
|
public static final String MOD_ID = "replaymod-simplepathing";
|
||||||
|
|
||||||
private ReplayMod core;
|
private ReplayMod core;
|
||||||
@@ -54,84 +43,60 @@ public class ReplayModSimplePathing implements PathingRegistry {
|
|||||||
|
|
||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
public void postReplayOpen(ReplayOpenEvent.Post event) {
|
public void postReplayOpen(ReplayOpenEvent.Post event) {
|
||||||
|
currentTimeline = new SPTimeline();
|
||||||
guiPathing = new GuiPathing(core, this, event.getReplayHandler());
|
guiPathing = new GuiPathing(core, this, event.getReplayHandler());
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
public void onReplayClose(ReplayCloseEvent.Post event) {
|
public void onReplayClose(ReplayCloseEvent.Post event) {
|
||||||
|
currentTimeline = null;
|
||||||
guiPathing = null;
|
guiPathing = null;
|
||||||
currentTimeline = createTimeline();
|
selectedPath = null;
|
||||||
currentTimeline.createPath();
|
|
||||||
currentTimeline.createPath();
|
|
||||||
selectedKeyframe = null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@SubscribeEvent
|
@SubscribeEvent
|
||||||
public void onSettingsChanged(SettingsChangedEvent event) {
|
public void onSettingsChanged(SettingsChangedEvent event) {
|
||||||
if (event.getKey() == Setting.LINEAR_INTERPOLATION) {
|
if (event.getKey() == Setting.DEFAULT_INTERPOLATION) {
|
||||||
if (currentTimeline != null && guiPathing != null) {
|
if (currentTimeline != null && guiPathing != null) {
|
||||||
currentTimeline.applyChange(guiPathing.updateInterpolators());
|
updateDefaultInterpolatorType();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private Timeline currentTimeline = createTimeline(); { currentTimeline.createPath(); currentTimeline.createPath(); }
|
private SPTimeline currentTimeline;
|
||||||
private Keyframe selectedKeyframe;
|
|
||||||
|
|
||||||
public Keyframe getSelectedKeyframe() {
|
@Getter
|
||||||
return selectedKeyframe;
|
private SPPath selectedPath;
|
||||||
|
@Getter
|
||||||
|
private long selectedTime;
|
||||||
|
|
||||||
|
public boolean isSelected(Keyframe keyframe) {
|
||||||
|
return selectedPath != null && currentTimeline.getKeyframe(selectedPath, selectedTime) == keyframe;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setSelectedKeyframe(Keyframe selected) {
|
public void setSelected(SPPath path, long time) {
|
||||||
this.selectedKeyframe = selected;
|
selectedPath = path;
|
||||||
|
selectedTime = time;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setCurrentTimeline(Timeline currentTimeline) {
|
public void setCurrentTimeline(SPTimeline newTimeline) {
|
||||||
if (this.currentTimeline != currentTimeline) {
|
selectedPath = null;
|
||||||
selectedKeyframe = null;
|
currentTimeline = newTimeline;
|
||||||
}
|
|
||||||
this.currentTimeline = currentTimeline;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public Timeline getCurrentTimeline() {
|
public void clearCurrentTimeline() {
|
||||||
|
setCurrentTimeline(new SPTimeline());
|
||||||
|
updateDefaultInterpolatorType();
|
||||||
|
}
|
||||||
|
|
||||||
|
public SPTimeline getCurrentTimeline() {
|
||||||
return currentTimeline;
|
return currentTimeline;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
private void updateDefaultInterpolatorType() {
|
||||||
public Timeline createTimeline() {
|
InterpolatorType newDefaultType =
|
||||||
Timeline timeline = new TimelineImpl();
|
InterpolatorType.fromString(core.getSettingsRegistry().get(Setting.DEFAULT_INTERPOLATION));
|
||||||
|
currentTimeline.setDefaultInterpolatorType(newDefaultType);
|
||||||
timeline.registerProperty(TimestampProperty.PROPERTY);
|
|
||||||
timeline.registerProperty(CameraProperties.POSITION);
|
|
||||||
timeline.registerProperty(CameraProperties.ROTATION);
|
|
||||||
timeline.registerProperty(SpectatorProperty.PROPERTY);
|
|
||||||
|
|
||||||
return timeline;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void serializeInterpolator(JsonWriter writer, Interpolator interpolator) throws IOException {
|
|
||||||
if (interpolator instanceof LinearInterpolator) {
|
|
||||||
writer.value("linear");
|
|
||||||
} else if (interpolator instanceof CubicSplineInterpolator) {
|
|
||||||
writer.value("cubic-spline");
|
|
||||||
} else {
|
|
||||||
throw new IOException("Unknown interpolator type: " + interpolator);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public Interpolator deserializeInterpolator(JsonReader reader) throws IOException {
|
|
||||||
String type = reader.nextString();
|
|
||||||
switch (type) {
|
|
||||||
case "linear":
|
|
||||||
return new LinearInterpolator();
|
|
||||||
case "cubic-spline":
|
|
||||||
return new CubicSplineInterpolator();
|
|
||||||
default:
|
|
||||||
throw new IOException("Unknown interpolation type: " + type);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ReplayMod getCore() {
|
public ReplayMod getCore() {
|
||||||
|
|||||||
669
src/main/java/com/replaymod/simplepathing/SPTimeline.java
Normal file
669
src/main/java/com/replaymod/simplepathing/SPTimeline.java
Normal file
@@ -0,0 +1,669 @@
|
|||||||
|
package com.replaymod.simplepathing;
|
||||||
|
|
||||||
|
import com.google.common.base.Preconditions;
|
||||||
|
import com.google.common.collect.Iterables;
|
||||||
|
import com.google.gson.JsonObject;
|
||||||
|
import com.google.gson.JsonParser;
|
||||||
|
import com.google.gson.stream.JsonReader;
|
||||||
|
import com.google.gson.stream.JsonWriter;
|
||||||
|
import com.replaymod.pathing.properties.CameraProperties;
|
||||||
|
import com.replaymod.pathing.properties.SpectatorProperty;
|
||||||
|
import com.replaymod.pathing.properties.TimestampProperty;
|
||||||
|
import com.replaymod.replaystudio.pathing.PathingRegistry;
|
||||||
|
import com.replaymod.replaystudio.pathing.change.AddKeyframe;
|
||||||
|
import com.replaymod.replaystudio.pathing.change.Change;
|
||||||
|
import com.replaymod.replaystudio.pathing.change.CombinedChange;
|
||||||
|
import com.replaymod.replaystudio.pathing.change.SetInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.change.UpdateKeyframeProperties;
|
||||||
|
import com.replaymod.replaystudio.pathing.impl.TimelineImpl;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.CatmullRomSplineInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.CubicSplineInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.Interpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.LinearInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.Path;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.Timeline;
|
||||||
|
import com.replaymod.replaystudio.pathing.property.Property;
|
||||||
|
import com.replaymod.replaystudio.util.EntityPositionTracker;
|
||||||
|
import com.replaymod.replaystudio.util.Location;
|
||||||
|
import com.replaymod.simplepathing.properties.ExplicitInterpolationProperty;
|
||||||
|
import lombok.Getter;
|
||||||
|
import net.minecraft.crash.CrashReport;
|
||||||
|
import net.minecraft.crash.CrashReportCategory;
|
||||||
|
import net.minecraft.util.ReportedException;
|
||||||
|
import org.apache.commons.lang3.ObjectUtils;
|
||||||
|
import org.apache.commons.lang3.Validate;
|
||||||
|
import org.apache.commons.lang3.tuple.Triple;
|
||||||
|
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.PrintWriter;
|
||||||
|
import java.io.StringReader;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.IdentityHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
import java.util.Set;
|
||||||
|
|
||||||
|
import static com.replaymod.replaystudio.pathing.change.RemoveKeyframe.create;
|
||||||
|
import static com.replaymod.simplepathing.ReplayModSimplePathing.LOGGER;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Simplified timeline abstraction used in the SimplePathing module.
|
||||||
|
*/
|
||||||
|
public class SPTimeline implements PathingRegistry {
|
||||||
|
public enum SPPath {
|
||||||
|
TIME,
|
||||||
|
POSITION,
|
||||||
|
}
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private final Timeline timeline;
|
||||||
|
@Getter
|
||||||
|
private final Path timePath;
|
||||||
|
@Getter
|
||||||
|
private final Path positionPath;
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private EntityPositionTracker entityTracker;
|
||||||
|
private InterpolatorType defaultInterpolatorType = InterpolatorType.fromString("invalid string returns default");
|
||||||
|
|
||||||
|
public SPTimeline() {
|
||||||
|
this(createInitialTimeline());
|
||||||
|
}
|
||||||
|
|
||||||
|
public SPTimeline(Timeline timeline) {
|
||||||
|
this.timeline = timeline;
|
||||||
|
this.timePath = timeline.getPaths().get(SPPath.TIME.ordinal());
|
||||||
|
this.positionPath = timeline.getPaths().get(SPPath.POSITION.ordinal());
|
||||||
|
}
|
||||||
|
|
||||||
|
public Path getPath(SPPath path) {
|
||||||
|
switch (path) {
|
||||||
|
case TIME:
|
||||||
|
return getTimePath();
|
||||||
|
case POSITION:
|
||||||
|
return getPositionPath();
|
||||||
|
}
|
||||||
|
throw new IllegalArgumentException("Unknown path " + path);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Keyframe getKeyframe(SPPath path, long keyframe) {
|
||||||
|
return getPath(path).getKeyframe(keyframe);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEntityTracker(EntityPositionTracker entityTracker) {
|
||||||
|
Preconditions.checkState(this.entityTracker == null, "Entity tracker already set");
|
||||||
|
this.entityTracker = entityTracker;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDefaultInterpolatorType(InterpolatorType defaultInterpolatorType) {
|
||||||
|
Validate.isTrue(defaultInterpolatorType != InterpolatorType.DEFAULT, "Must not be DEFAULT");
|
||||||
|
this.defaultInterpolatorType = Validate.notNull(defaultInterpolatorType);
|
||||||
|
|
||||||
|
if (entityTracker != null) {
|
||||||
|
timeline.pushChange(updateInterpolators());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Change setDefaultInterpolator(Interpolator interpolator) {
|
||||||
|
Preconditions.checkState(defaultInterpolatorType != null, "Default interpolator type not set.");
|
||||||
|
Validate.isInstanceOf(defaultInterpolatorType.getInterpolatorClass(), interpolator);
|
||||||
|
|
||||||
|
registerPositionInterpolatorProperties(interpolator);
|
||||||
|
|
||||||
|
Change change = CombinedChange.create(
|
||||||
|
positionPath.getSegments().stream()
|
||||||
|
// Ignore explicitly set segments
|
||||||
|
.filter(s -> !s.getStartKeyframe().getValue(ExplicitInterpolationProperty.PROPERTY).isPresent())
|
||||||
|
// Ignore spectator segments
|
||||||
|
.filter(s -> !isSpectatorSegment(s))
|
||||||
|
// Update interpolator for every remaining segment
|
||||||
|
// This will create a fragmented interpolator which is split by the updateInterpolators call
|
||||||
|
.map(s -> SetInterpolator.create(s, interpolator)).toArray(Change[]::new)
|
||||||
|
);
|
||||||
|
change.apply(timeline);
|
||||||
|
return CombinedChange.createFromApplied(change, updateInterpolators());
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isTimeKeyframe(long time) {
|
||||||
|
return timePath.getKeyframe(time) != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isPositionKeyframe(long time) {
|
||||||
|
return positionPath.getKeyframe(time) != null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isSpectatorKeyframe(long time) {
|
||||||
|
Keyframe keyframe = positionPath.getKeyframe(time);
|
||||||
|
return keyframe != null && keyframe.getValue(SpectatorProperty.PROPERTY).isPresent();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addPositionKeyframe(long time, double posX, double posY, double posZ,
|
||||||
|
float yaw, float pitch, float roll, int spectated) {
|
||||||
|
LOGGER.debug("Adding position keyframe at {} pos {}/{}/{} rot {}/{}/{} entId {}",
|
||||||
|
time, posX, posY, posZ, yaw, pitch, roll, spectated);
|
||||||
|
|
||||||
|
Path path = positionPath;
|
||||||
|
|
||||||
|
Preconditions.checkState(positionPath.getKeyframe(time) == null, "Keyframe already exists");
|
||||||
|
|
||||||
|
Change change = AddKeyframe.create(path, time);
|
||||||
|
change.apply(timeline);
|
||||||
|
Keyframe keyframe = path.getKeyframe(time);
|
||||||
|
|
||||||
|
UpdateKeyframeProperties.Builder builder = UpdateKeyframeProperties.create(path, keyframe);
|
||||||
|
builder.setValue(CameraProperties.POSITION, Triple.of(posX, posY, posZ));
|
||||||
|
builder.setValue(CameraProperties.ROTATION, Triple.of(yaw, pitch, roll));
|
||||||
|
if (spectated != -1) {
|
||||||
|
builder.setValue(SpectatorProperty.PROPERTY, spectated);
|
||||||
|
}
|
||||||
|
UpdateKeyframeProperties updateChange = builder.done();
|
||||||
|
updateChange.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, updateChange);
|
||||||
|
|
||||||
|
// If this new keyframe formed the first segment of the path
|
||||||
|
if (path.getSegments().size() == 1) {
|
||||||
|
// then create an initial interpolator of default type
|
||||||
|
PathSegment segment = path.getSegments().iterator().next();
|
||||||
|
Interpolator interpolator = createDefaultInterpolator();
|
||||||
|
SetInterpolator setInterpolator = SetInterpolator.create(segment, interpolator);
|
||||||
|
setInterpolator.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, setInterpolator);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Update interpolators for spectator keyframes
|
||||||
|
// while this is overkill, it is far simpler than updating differently for every possible case
|
||||||
|
change = CombinedChange.createFromApplied(change, updateInterpolators());
|
||||||
|
|
||||||
|
Change specPosUpdate = updateSpectatorPositions();
|
||||||
|
specPosUpdate.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, specPosUpdate);
|
||||||
|
|
||||||
|
timeline.pushChange(change);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Change updatePositionKeyframe(long time, double posX, double posY, double posZ,
|
||||||
|
float yaw, float pitch, float roll) {
|
||||||
|
LOGGER.debug("Updating position keyframe at {} to pos {}/{}/{} rot {}/{}/{}",
|
||||||
|
time, posX, posY, posZ, yaw, pitch, roll);
|
||||||
|
|
||||||
|
Keyframe keyframe = positionPath.getKeyframe(time);
|
||||||
|
|
||||||
|
Preconditions.checkState(keyframe != null, "Keyframe does not exists");
|
||||||
|
Preconditions.checkState(!keyframe.getValue(SpectatorProperty.PROPERTY).isPresent(), "Cannot update spectator keyframe");
|
||||||
|
|
||||||
|
Change change = UpdateKeyframeProperties.create(positionPath, keyframe)
|
||||||
|
.setValue(CameraProperties.POSITION, Triple.of(posX, posY, posZ))
|
||||||
|
.setValue(CameraProperties.ROTATION, Triple.of(yaw, pitch, roll))
|
||||||
|
.done();
|
||||||
|
change.apply(timeline);
|
||||||
|
return change;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removePositionKeyframe(long time) {
|
||||||
|
LOGGER.debug("Removing position keyframe at {}", time);
|
||||||
|
|
||||||
|
Path path = positionPath;
|
||||||
|
Keyframe keyframe = path.getKeyframe(time);
|
||||||
|
|
||||||
|
Preconditions.checkState(keyframe != null, "No keyframe at that time");
|
||||||
|
|
||||||
|
Change change = create(path, keyframe);
|
||||||
|
change.apply(timeline);
|
||||||
|
|
||||||
|
// Update interpolators for spectator keyframes
|
||||||
|
// while this is overkill, it is far simpler than updating differently for every possible case
|
||||||
|
change = CombinedChange.createFromApplied(change, updateInterpolators());
|
||||||
|
|
||||||
|
Change specPosUpdate = updateSpectatorPositions();
|
||||||
|
specPosUpdate.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, specPosUpdate);
|
||||||
|
|
||||||
|
timeline.pushChange(change);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addTimeKeyframe(long time, int replayTime) {
|
||||||
|
LOGGER.debug("Adding time keyframe at {} time {}", time, replayTime);
|
||||||
|
|
||||||
|
Path path = timePath;
|
||||||
|
|
||||||
|
Preconditions.checkState(path.getKeyframe(time) == null, "Keyframe already exists");
|
||||||
|
|
||||||
|
Change change = AddKeyframe.create(path, time);
|
||||||
|
change.apply(timeline);
|
||||||
|
Keyframe keyframe = path.getKeyframe(time);
|
||||||
|
|
||||||
|
UpdateKeyframeProperties updateChange = UpdateKeyframeProperties.create(path, keyframe)
|
||||||
|
.setValue(TimestampProperty.PROPERTY, replayTime)
|
||||||
|
.done();
|
||||||
|
updateChange.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, updateChange);
|
||||||
|
|
||||||
|
// If this new keyframe formed the first segment of the path
|
||||||
|
if (path.getSegments().size() == 1) {
|
||||||
|
// then create an initial interpolator
|
||||||
|
PathSegment segment = path.getSegments().iterator().next();
|
||||||
|
Interpolator interpolator = new LinearInterpolator();
|
||||||
|
interpolator.registerProperty(TimestampProperty.PROPERTY);
|
||||||
|
SetInterpolator setInterpolator = SetInterpolator.create(segment, interpolator);
|
||||||
|
setInterpolator.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, setInterpolator);
|
||||||
|
}
|
||||||
|
|
||||||
|
Change specPosUpdate = updateSpectatorPositions();
|
||||||
|
specPosUpdate.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, specPosUpdate);
|
||||||
|
|
||||||
|
timeline.pushChange(change);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Change updateTimeKeyframe(long time, int replayTime) {
|
||||||
|
LOGGER.debug("Updating time keyframe at {} to time {}", time, replayTime);
|
||||||
|
|
||||||
|
Keyframe keyframe = timePath.getKeyframe(time);
|
||||||
|
|
||||||
|
Preconditions.checkState(keyframe != null, "Keyframe does not exists");
|
||||||
|
|
||||||
|
Change change = UpdateKeyframeProperties.create(timePath, keyframe)
|
||||||
|
.setValue(TimestampProperty.PROPERTY, replayTime)
|
||||||
|
.done();
|
||||||
|
change.apply(timeline);
|
||||||
|
return change;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void removeTimeKeyframe(long time) {
|
||||||
|
LOGGER.debug("Removing time keyframe at {}", time);
|
||||||
|
|
||||||
|
Path path = timePath;
|
||||||
|
Keyframe keyframe = path.getKeyframe(time);
|
||||||
|
|
||||||
|
Preconditions.checkState(keyframe != null, "No keyframe at that time");
|
||||||
|
|
||||||
|
Change change = create(path, keyframe);
|
||||||
|
change.apply(timeline);
|
||||||
|
|
||||||
|
Change specPosUpdate = updateSpectatorPositions();
|
||||||
|
specPosUpdate.apply(timeline);
|
||||||
|
change = CombinedChange.createFromApplied(change, specPosUpdate);
|
||||||
|
|
||||||
|
timeline.pushChange(change);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Change setInterpolatorToDefault(long time) {
|
||||||
|
LOGGER.debug("Setting interpolator of position keyframe at {} to the default", time);
|
||||||
|
|
||||||
|
Keyframe keyframe = positionPath.getKeyframe(time);
|
||||||
|
|
||||||
|
Preconditions.checkState(keyframe != null, "Keyframe does not exists");
|
||||||
|
|
||||||
|
Change change = UpdateKeyframeProperties.create(positionPath, keyframe)
|
||||||
|
.removeProperty(ExplicitInterpolationProperty.PROPERTY)
|
||||||
|
.done();
|
||||||
|
change.apply(timeline);
|
||||||
|
return CombinedChange.createFromApplied(change, updateInterpolators());
|
||||||
|
}
|
||||||
|
|
||||||
|
public Change setInterpolator(long time, Interpolator interpolator) {
|
||||||
|
LOGGER.debug("Setting interpolator of position keyframe at {} to {}", time, interpolator);
|
||||||
|
|
||||||
|
Keyframe keyframe = positionPath.getKeyframe(time);
|
||||||
|
Preconditions.checkState(keyframe != null, "Keyframe does not exists");
|
||||||
|
PathSegment segment = positionPath.getSegments().stream().filter(s -> s.getStartKeyframe() == keyframe)
|
||||||
|
.findFirst().orElseThrow(() -> new IllegalStateException("Keyframe has no following segment."));
|
||||||
|
|
||||||
|
registerPositionInterpolatorProperties(interpolator);
|
||||||
|
|
||||||
|
Change change = CombinedChange.create(
|
||||||
|
UpdateKeyframeProperties.create(positionPath, keyframe)
|
||||||
|
.setValue(ExplicitInterpolationProperty.PROPERTY, ObjectUtils.NULL)
|
||||||
|
.done(),
|
||||||
|
SetInterpolator.create(segment, interpolator)
|
||||||
|
);
|
||||||
|
change.apply(timeline);
|
||||||
|
return CombinedChange.createFromApplied(change, updateInterpolators());
|
||||||
|
}
|
||||||
|
|
||||||
|
public Change moveKeyframe(SPPath spPath, long oldTime, long newTime) {
|
||||||
|
LOGGER.debug("Moving keyframe on {} from {} to {}", spPath, oldTime, newTime);
|
||||||
|
Path path = getPath(spPath);
|
||||||
|
Keyframe keyframe = path.getKeyframe(oldTime);
|
||||||
|
|
||||||
|
Preconditions.checkState(keyframe != null, "No keyframe at specified time");
|
||||||
|
|
||||||
|
// Interpolator of the first segment might be required later if it is the only one
|
||||||
|
Optional<Interpolator> firstInterpolator =
|
||||||
|
path.getSegments().stream().findFirst().map(PathSegment::getInterpolator);
|
||||||
|
|
||||||
|
// The interpolator of the previous segment
|
||||||
|
Optional<Interpolator> interpolatorBefore =
|
||||||
|
path.getSegments().stream().filter(s -> s.getEndKeyframe() == keyframe).findFirst().map(PathSegment::getInterpolator);
|
||||||
|
|
||||||
|
// The interpolator of the following segment
|
||||||
|
Optional<Interpolator> interpolatorAfter =
|
||||||
|
path.getSegments().stream().filter(s -> s.getStartKeyframe() == keyframe).findFirst().map(PathSegment::getInterpolator);
|
||||||
|
|
||||||
|
// First remove the old keyframe
|
||||||
|
Change removeChange = create(path, keyframe);
|
||||||
|
removeChange.apply(timeline);
|
||||||
|
|
||||||
|
// and add a new one at the correct time
|
||||||
|
Change addChange = AddKeyframe.create(path, newTime);
|
||||||
|
addChange.apply(timeline);
|
||||||
|
|
||||||
|
// Then copy over all properties
|
||||||
|
UpdateKeyframeProperties.Builder builder = UpdateKeyframeProperties.create(path, path.getKeyframe(newTime));
|
||||||
|
for (Property property : keyframe.getProperties()) {
|
||||||
|
copyProperty(property, keyframe, builder);
|
||||||
|
}
|
||||||
|
Change propertyChange = builder.done();
|
||||||
|
propertyChange.apply(timeline);
|
||||||
|
|
||||||
|
|
||||||
|
Change restoreInterpolatorChange;
|
||||||
|
Keyframe newKf = path.getKeyframe(newTime);
|
||||||
|
if (Iterables.getLast(path.getKeyframes()) != newKf) { // Unless this is the last keyframe
|
||||||
|
// the interpolator of the following segment has been lost and needs to be restored
|
||||||
|
restoreInterpolatorChange = interpolatorAfter.<Change>flatMap(interpolator ->
|
||||||
|
path.getSegments().stream().filter(s -> s.getStartKeyframe() == newKf).findFirst().map(segment ->
|
||||||
|
SetInterpolator.create(segment, interpolator)
|
||||||
|
)
|
||||||
|
).orElseGet(CombinedChange::create);
|
||||||
|
} else { // If it is the last keyframe however,
|
||||||
|
// the interpolator of the previous segment has been lost and needs to be restored
|
||||||
|
restoreInterpolatorChange = interpolatorBefore.<Change>flatMap(interpolator ->
|
||||||
|
path.getSegments().stream().filter(s -> s.getEndKeyframe() == newKf).findFirst().map(segment ->
|
||||||
|
SetInterpolator.create(segment, interpolator)
|
||||||
|
)
|
||||||
|
).orElseGet(CombinedChange::create);
|
||||||
|
}
|
||||||
|
restoreInterpolatorChange.apply(timeline);
|
||||||
|
|
||||||
|
// Finally update the interpolators
|
||||||
|
Change interpolatorUpdateChange;
|
||||||
|
if (spPath == SPPath.POSITION) {
|
||||||
|
// Position / Spectator keyframes need special handling
|
||||||
|
interpolatorUpdateChange = updateInterpolators();
|
||||||
|
} else {
|
||||||
|
// Time keyframes only need updating when only one segment of them exists
|
||||||
|
if (path.getSegments().size() == 1) {
|
||||||
|
assert firstInterpolator.isPresent() : "One segment should have existed before as well";
|
||||||
|
interpolatorUpdateChange = SetInterpolator.create(path.getSegments().iterator().next(), firstInterpolator.get());
|
||||||
|
} else {
|
||||||
|
interpolatorUpdateChange = CombinedChange.create(); // Noop change
|
||||||
|
}
|
||||||
|
interpolatorUpdateChange.apply(timeline);
|
||||||
|
}
|
||||||
|
|
||||||
|
// and update spectator positions
|
||||||
|
Change spectatorChange = updateSpectatorPositions();
|
||||||
|
spectatorChange.apply(timeline);
|
||||||
|
|
||||||
|
return CombinedChange.createFromApplied(removeChange, addChange, propertyChange,
|
||||||
|
restoreInterpolatorChange, interpolatorUpdateChange, spectatorChange);
|
||||||
|
}
|
||||||
|
|
||||||
|
// Helper method because generics cannot be defined on blocks
|
||||||
|
private <T> void copyProperty(Property<T> property, Keyframe from, UpdateKeyframeProperties.Builder to) {
|
||||||
|
from.getValue(property).ifPresent(value -> to.setValue(property, value));
|
||||||
|
}
|
||||||
|
|
||||||
|
private Change updateInterpolators() {
|
||||||
|
Collection<PathSegment> pathSegments = positionPath.getSegments();
|
||||||
|
// Contains updated pathsegment-interpolator mappings, may be changed multiple times over the course of this method
|
||||||
|
Map<PathSegment, Interpolator> updates = new HashMap<>();
|
||||||
|
|
||||||
|
// First, setup spectator interpolators
|
||||||
|
Interpolator interpolator = null;
|
||||||
|
// Iterate through all segments
|
||||||
|
for (PathSegment segment : pathSegments) {
|
||||||
|
if (isSpectatorSegment(segment)) {
|
||||||
|
// If the last segment was a spectator segment, then use its interpolator for this segment as well
|
||||||
|
if (interpolator == null) {
|
||||||
|
// otherwise create a new interpolator
|
||||||
|
interpolator = new LinearInterpolator();
|
||||||
|
interpolator.registerProperty(SpectatorProperty.PROPERTY);
|
||||||
|
}
|
||||||
|
// Now that we have an interpolator, set it for the current segment
|
||||||
|
updates.put(segment, interpolator);
|
||||||
|
} else {
|
||||||
|
// Not a spectator segment, make sure we don't re-use the last interpolator (it would not be continuous)
|
||||||
|
interpolator = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Then, if required, replace old default interpolators with new ones
|
||||||
|
pathSegments.stream()
|
||||||
|
// Ignore explicitly set segments
|
||||||
|
.filter(s -> !s.getStartKeyframe().getValue(ExplicitInterpolationProperty.PROPERTY).isPresent())
|
||||||
|
// Ignore spectator segments
|
||||||
|
.filter(s -> !isSpectatorSegment(s))
|
||||||
|
// Ignore already correct segments, should ignore all if default hasn't changed
|
||||||
|
.filter(s -> !s.getInterpolator().getClass().equals(defaultInterpolatorType.getInterpolatorClass()))
|
||||||
|
// Finally, set the interpolators
|
||||||
|
// This will create one interpolator per segment, they will be merged later
|
||||||
|
.forEach(segment -> updates.put(segment, createDefaultInterpolator()));
|
||||||
|
|
||||||
|
// All interpolators should now be set appropriately but may still be fragmented.
|
||||||
|
// Cleaning that up is a two step process
|
||||||
|
|
||||||
|
// Firstly, all interpolators that are not continuous need to be split up
|
||||||
|
Interpolator lastInterpolator = null;
|
||||||
|
Set<Interpolator> used = Collections.newSetFromMap(new IdentityHashMap<>());
|
||||||
|
for (PathSegment segment : pathSegments) {
|
||||||
|
if (isSpectatorSegment(segment)) {
|
||||||
|
lastInterpolator = null;
|
||||||
|
continue; // Chain broken by spectator segment
|
||||||
|
}
|
||||||
|
|
||||||
|
Interpolator currentInterpolator = updates.getOrDefault(segment, segment.getInterpolator());
|
||||||
|
if (lastInterpolator == currentInterpolator) {
|
||||||
|
continue; // All fine, interpolator is still continuous
|
||||||
|
}
|
||||||
|
|
||||||
|
// New interpolator, make sure it hasn't been used before
|
||||||
|
if (!used.add(interpolator)) {
|
||||||
|
// It has been used before, we need to clone it and use the clone instead
|
||||||
|
// This will create a new interpolator for each segment which will be merged later
|
||||||
|
currentInterpolator = cloneInterpolator(currentInterpolator);
|
||||||
|
updates.put(segment, currentInterpolator);
|
||||||
|
}
|
||||||
|
lastInterpolator = currentInterpolator;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Secondly, all neighbouring interpolators that are equal need to be merged
|
||||||
|
lastInterpolator = null;
|
||||||
|
String lastInterpolatorSerialized = null;
|
||||||
|
for (PathSegment segment : pathSegments) {
|
||||||
|
if (isSpectatorSegment(segment)) {
|
||||||
|
lastInterpolator = null;
|
||||||
|
lastInterpolatorSerialized = null;
|
||||||
|
continue; // Spectator segments are continuous by construction
|
||||||
|
}
|
||||||
|
Interpolator currentInterpolator = updates.getOrDefault(segment, segment.getInterpolator());
|
||||||
|
String serialized = serializeInterpolator(currentInterpolator);
|
||||||
|
if (lastInterpolator != currentInterpolator && serialized.equals(lastInterpolatorSerialized)) {
|
||||||
|
// This interpolator is equal to the last one but not the same, needs merging
|
||||||
|
updates.put(segment, lastInterpolator);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
// New interpolator, not related to the previous one, merged by definition
|
||||||
|
lastInterpolator = currentInterpolator;
|
||||||
|
lastInterpolatorSerialized = serialized;
|
||||||
|
}
|
||||||
|
|
||||||
|
Change change = CombinedChange.create(updates.entrySet().stream()
|
||||||
|
.map(e -> SetInterpolator.create(e.getKey(), e.getValue())).toArray(Change[]::new));
|
||||||
|
change.apply(timeline);
|
||||||
|
return change;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isSpectatorSegment(PathSegment segment) {
|
||||||
|
return segment.getStartKeyframe().getValue(SpectatorProperty.PROPERTY).isPresent()
|
||||||
|
&& segment.getEndKeyframe().getValue(SpectatorProperty.PROPERTY).isPresent();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Change updateSpectatorPositions() {
|
||||||
|
List<Change> changes = new ArrayList<>();
|
||||||
|
timePath.updateAll();
|
||||||
|
for (Keyframe keyframe : positionPath.getKeyframes()) {
|
||||||
|
Optional<Integer> spectator = keyframe.getValue(SpectatorProperty.PROPERTY);
|
||||||
|
if (spectator.isPresent()) {
|
||||||
|
Optional<Integer> time = timePath.getValue(TimestampProperty.PROPERTY, keyframe.getTime());
|
||||||
|
if (!time.isPresent()) {
|
||||||
|
continue; // No time keyframes set at this video time, cannot determine replay time
|
||||||
|
}
|
||||||
|
Location expected = entityTracker.getEntityPositionAtTimestamp(spectator.get(), time.get());
|
||||||
|
if (expected == null) {
|
||||||
|
continue; // We don't have any data on this entity for some reason
|
||||||
|
}
|
||||||
|
Triple<Double, Double, Double> pos = keyframe.getValue(CameraProperties.POSITION).orElse(Triple.of(0D, 0D, 0D));
|
||||||
|
Triple<Float, Float, Float> rot = keyframe.getValue(CameraProperties.ROTATION).orElse(Triple.of(0F, 0F, 0F));
|
||||||
|
Location actual = new Location(pos.getLeft(), pos.getMiddle(), pos.getRight(), rot.getLeft(), rot.getRight());
|
||||||
|
if (!expected.equals(actual)) {
|
||||||
|
changes.add(UpdateKeyframeProperties.create(positionPath, keyframe)
|
||||||
|
.setValue(CameraProperties.POSITION, Triple.of(expected.getX(), expected.getY(), expected.getZ()))
|
||||||
|
.setValue(CameraProperties.ROTATION, Triple.of(expected.getYaw(), expected.getPitch(), 0f)).done()
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return CombinedChange.create(changes.toArray(new Change[changes.size()]));
|
||||||
|
}
|
||||||
|
|
||||||
|
private Interpolator createDefaultInterpolator() {
|
||||||
|
return registerPositionInterpolatorProperties(defaultInterpolatorType.newInstance());
|
||||||
|
}
|
||||||
|
|
||||||
|
private Interpolator registerPositionInterpolatorProperties(Interpolator interpolator) {
|
||||||
|
interpolator.registerProperty(CameraProperties.POSITION);
|
||||||
|
interpolator.registerProperty(CameraProperties.ROTATION);
|
||||||
|
return interpolator;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Timeline createTimeline() {
|
||||||
|
return createTimelineStatic();
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Timeline createInitialTimeline() {
|
||||||
|
Timeline timeline = createTimelineStatic();
|
||||||
|
timeline.createPath();
|
||||||
|
timeline.createPath();
|
||||||
|
return timeline;
|
||||||
|
}
|
||||||
|
|
||||||
|
private static Timeline createTimelineStatic() {
|
||||||
|
Timeline timeline = new TimelineImpl();
|
||||||
|
|
||||||
|
timeline.registerProperty(TimestampProperty.PROPERTY);
|
||||||
|
timeline.registerProperty(CameraProperties.POSITION);
|
||||||
|
timeline.registerProperty(CameraProperties.ROTATION);
|
||||||
|
timeline.registerProperty(SpectatorProperty.PROPERTY);
|
||||||
|
timeline.registerProperty(ExplicitInterpolationProperty.PROPERTY);
|
||||||
|
|
||||||
|
return timeline;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void serializeInterpolator(JsonWriter writer, Interpolator interpolator) throws IOException {
|
||||||
|
if (interpolator instanceof LinearInterpolator) {
|
||||||
|
writer.value("linear");
|
||||||
|
} else if (interpolator instanceof CubicSplineInterpolator) {
|
||||||
|
writer.value("cubic-spline");
|
||||||
|
} else if (interpolator instanceof CatmullRomSplineInterpolator) {
|
||||||
|
writer.beginObject();
|
||||||
|
writer.name("type").value("catmull-rom-spline");
|
||||||
|
writer.name("alpha").value(((CatmullRomSplineInterpolator) interpolator).getAlpha());
|
||||||
|
writer.endObject();
|
||||||
|
} else {
|
||||||
|
throw new IOException("Unknown interpolator type: " + interpolator);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Interpolator deserializeInterpolator(JsonReader reader) throws IOException {
|
||||||
|
String type;
|
||||||
|
JsonObject args;
|
||||||
|
switch (reader.peek()) {
|
||||||
|
case STRING:
|
||||||
|
type = reader.nextString();
|
||||||
|
args = null;
|
||||||
|
break;
|
||||||
|
case BEGIN_OBJECT:
|
||||||
|
args = new JsonParser().parse(reader).getAsJsonObject();
|
||||||
|
type = args.get("type").getAsString();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
throw new IOException("Unexpected token: " + reader.peek());
|
||||||
|
}
|
||||||
|
switch (type) {
|
||||||
|
case "linear":
|
||||||
|
return new LinearInterpolator();
|
||||||
|
case "cubic-spline":
|
||||||
|
return new CubicSplineInterpolator();
|
||||||
|
case "catmull-rom-spline":
|
||||||
|
if (args == null || !args.has("alpha")) {
|
||||||
|
throw new IOException("Missing alpha value for catmull-rom-spline.");
|
||||||
|
}
|
||||||
|
return new CatmullRomSplineInterpolator(args.get("alpha").getAsDouble());
|
||||||
|
default:
|
||||||
|
throw new IOException("Unknown interpolation type: " + type);
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Clones an interpolator by de- and re-serializing it.
|
||||||
|
* @param interpolator The interpolator to clone
|
||||||
|
* @return The cloned interpolator
|
||||||
|
*/
|
||||||
|
private Interpolator cloneInterpolator(Interpolator interpolator) {
|
||||||
|
Interpolator cloned = deserializeInterpolator(serializeInterpolator(interpolator));
|
||||||
|
interpolator.getKeyframeProperties().forEach(cloned::registerProperty);
|
||||||
|
return cloned;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Serializes the specific interpolator to String.
|
||||||
|
* Does <b>not</b> serialize the registered keyframe properties.
|
||||||
|
* @param interpolator The interpolator to serialize.
|
||||||
|
* @return The serialized interpolator
|
||||||
|
*/
|
||||||
|
private String serializeInterpolator(Interpolator interpolator) {
|
||||||
|
ByteArrayOutputStream baos = new ByteArrayOutputStream();
|
||||||
|
|
||||||
|
JsonWriter jsonWriter = new JsonWriter(new PrintWriter(baos));
|
||||||
|
try {
|
||||||
|
jsonWriter.beginArray();
|
||||||
|
serializeInterpolator(jsonWriter, interpolator);
|
||||||
|
jsonWriter.endArray();
|
||||||
|
jsonWriter.flush();
|
||||||
|
} catch (IOException e) {
|
||||||
|
CrashReport crash = CrashReport.makeCrashReport(e, "Serializing interpolator");
|
||||||
|
CrashReportCategory category = crash.makeCategory("Serializing interpolator");
|
||||||
|
category.addCrashSectionCallable("Interpolator", interpolator::toString);
|
||||||
|
throw new ReportedException(crash);
|
||||||
|
}
|
||||||
|
|
||||||
|
return baos.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private Interpolator deserializeInterpolator(String json) {
|
||||||
|
JsonReader jsonReader = new JsonReader(new StringReader(json));
|
||||||
|
try {
|
||||||
|
jsonReader.beginArray();
|
||||||
|
return deserializeInterpolator(jsonReader);
|
||||||
|
} catch (IOException e) {
|
||||||
|
CrashReport crash = CrashReport.makeCrashReport(e, "De-serializing interpolator");
|
||||||
|
CrashReportCategory category = crash.makeCategory("De-serializing interpolator");
|
||||||
|
category.addCrashSection("Interpolator", json);
|
||||||
|
throw new ReportedException(crash);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,9 +2,25 @@ package com.replaymod.simplepathing;
|
|||||||
|
|
||||||
import com.replaymod.core.SettingsRegistry;
|
import com.replaymod.core.SettingsRegistry;
|
||||||
|
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
public final class Setting<T> extends SettingsRegistry.SettingKeys<T> {
|
public final class Setting<T> extends SettingsRegistry.SettingKeys<T> {
|
||||||
public static final Setting<Boolean> PATH_PREVIEW = make("pathpreview", "pathpreview", true);
|
public static final Setting<Boolean> PATH_PREVIEW = make("pathpreview", "pathpreview", true);
|
||||||
public static final Setting<Boolean> LINEAR_INTERPOLATION = make("linear_interpolation", "linearinterpolation", false);
|
public static final SettingsRegistry.MultipleChoiceSettingKeys<String> DEFAULT_INTERPOLATION;
|
||||||
|
|
||||||
|
static {
|
||||||
|
String format = "replaymod.gui.editkeyframe.interpolator.%s.name";
|
||||||
|
DEFAULT_INTERPOLATION = new SettingsRegistry.MultipleChoiceSettingKeys<>(
|
||||||
|
"simplepathing", "interpolator", "replaymod.gui.settings.interpolator",
|
||||||
|
String.format(format, InterpolatorType.fromString("invalid returns default").getLocalizationKey())
|
||||||
|
);
|
||||||
|
DEFAULT_INTERPOLATION.setChoices(
|
||||||
|
Arrays.stream(InterpolatorType.values()).filter(i -> i != InterpolatorType.DEFAULT)
|
||||||
|
.map(i -> String.format(format, i.getLocalizationKey()))
|
||||||
|
.collect(Collectors.toList())
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
private static <T> Setting<T> make(String key, String displayName, T defaultValue) {
|
private static <T> Setting<T> make(String key, String displayName, T defaultValue) {
|
||||||
return new Setting<>(key, displayName, defaultValue);
|
return new Setting<>(key, displayName, defaultValue);
|
||||||
|
|||||||
@@ -5,14 +5,27 @@ import com.replaymod.pathing.properties.TimestampProperty;
|
|||||||
import com.replaymod.replay.ReplayModReplay;
|
import com.replaymod.replay.ReplayModReplay;
|
||||||
import com.replaymod.replaystudio.pathing.change.Change;
|
import com.replaymod.replaystudio.pathing.change.Change;
|
||||||
import com.replaymod.replaystudio.pathing.change.CombinedChange;
|
import com.replaymod.replaystudio.pathing.change.CombinedChange;
|
||||||
import com.replaymod.replaystudio.pathing.change.UpdateKeyframeProperties;
|
import com.replaymod.replaystudio.pathing.interpolation.CatmullRomSplineInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.CubicSplineInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.Interpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.LinearInterpolator;
|
||||||
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
||||||
import com.replaymod.replaystudio.pathing.path.Path;
|
import com.replaymod.replaystudio.pathing.path.Path;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
||||||
|
import com.replaymod.simplepathing.InterpolatorType;
|
||||||
|
import com.replaymod.simplepathing.SPTimeline;
|
||||||
|
import com.replaymod.simplepathing.SPTimeline.SPPath;
|
||||||
|
import com.replaymod.simplepathing.Setting;
|
||||||
|
import com.replaymod.simplepathing.properties.ExplicitInterpolationProperty;
|
||||||
|
import de.johni0702.minecraft.gui.container.AbstractGuiContainer;
|
||||||
import de.johni0702.minecraft.gui.container.GuiPanel;
|
import de.johni0702.minecraft.gui.container.GuiPanel;
|
||||||
import de.johni0702.minecraft.gui.element.GuiButton;
|
import de.johni0702.minecraft.gui.element.GuiButton;
|
||||||
import de.johni0702.minecraft.gui.element.GuiLabel;
|
import de.johni0702.minecraft.gui.element.GuiLabel;
|
||||||
import de.johni0702.minecraft.gui.element.GuiNumberField;
|
import de.johni0702.minecraft.gui.element.GuiNumberField;
|
||||||
|
import de.johni0702.minecraft.gui.element.GuiTooltip;
|
||||||
|
import de.johni0702.minecraft.gui.element.IGuiClickable;
|
||||||
import de.johni0702.minecraft.gui.element.IGuiLabel;
|
import de.johni0702.minecraft.gui.element.IGuiLabel;
|
||||||
|
import de.johni0702.minecraft.gui.element.advanced.GuiDropdownMenu;
|
||||||
import de.johni0702.minecraft.gui.function.Typeable;
|
import de.johni0702.minecraft.gui.function.Typeable;
|
||||||
import de.johni0702.minecraft.gui.layout.GridLayout;
|
import de.johni0702.minecraft.gui.layout.GridLayout;
|
||||||
import de.johni0702.minecraft.gui.layout.HorizontalLayout;
|
import de.johni0702.minecraft.gui.layout.HorizontalLayout;
|
||||||
@@ -20,10 +33,16 @@ import de.johni0702.minecraft.gui.layout.VerticalLayout;
|
|||||||
import de.johni0702.minecraft.gui.popup.AbstractGuiPopup;
|
import de.johni0702.minecraft.gui.popup.AbstractGuiPopup;
|
||||||
import de.johni0702.minecraft.gui.utils.Colors;
|
import de.johni0702.minecraft.gui.utils.Colors;
|
||||||
import de.johni0702.minecraft.gui.utils.Consumer;
|
import de.johni0702.minecraft.gui.utils.Consumer;
|
||||||
import org.apache.commons.lang3.tuple.Triple;
|
import lombok.Getter;
|
||||||
|
import net.minecraft.client.resources.I18n;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.lwjgl.input.Keyboard;
|
import org.lwjgl.input.Keyboard;
|
||||||
import org.lwjgl.util.ReadablePoint;
|
import org.lwjgl.util.ReadablePoint;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
|
||||||
import static de.johni0702.minecraft.gui.utils.Utils.link;
|
import static de.johni0702.minecraft.gui.utils.Utils.link;
|
||||||
|
|
||||||
public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends AbstractGuiPopup<T> implements Typeable {
|
public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends AbstractGuiPopup<T> implements Typeable {
|
||||||
@@ -31,6 +50,11 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
return new GuiNumberField().setPrecision(0).setValidateOnFocusChange(true);
|
return new GuiNumberField().setPrecision(0).setValidateOnFocusChange(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
protected static final Logger logger = LogManager.getLogger();
|
||||||
|
|
||||||
|
protected final GuiPathing guiPathing;
|
||||||
|
|
||||||
|
protected final long time;
|
||||||
protected final Keyframe keyframe;
|
protected final Keyframe keyframe;
|
||||||
protected final Path path;
|
protected final Path path;
|
||||||
|
|
||||||
@@ -66,12 +90,13 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
.addElements(new VerticalLayout.Data(0.5, false), title, inputs, timePanel, buttons);
|
.addElements(new VerticalLayout.Data(0.5, false), title, inputs, timePanel, buttons);
|
||||||
}
|
}
|
||||||
|
|
||||||
public GuiEditKeyframe(GuiPathing gui, Path path, Keyframe keyframe, String type) {
|
public GuiEditKeyframe(GuiPathing gui, SPPath path, long time, String type) {
|
||||||
super(ReplayModReplay.instance.getReplayHandler().getOverlay());
|
super(ReplayModReplay.instance.getReplayHandler().getOverlay());
|
||||||
this.keyframe = keyframe;
|
this.guiPathing = gui;
|
||||||
this.path = path;
|
this.time = time;
|
||||||
|
this.path = gui.getMod().getCurrentTimeline().getPath(path);
|
||||||
|
this.keyframe = this.path.getKeyframe(time);
|
||||||
|
|
||||||
long time = keyframe.getTime();
|
|
||||||
Consumer<String> updateSaveButtonState = s -> saveButton.setEnabled(canSave());
|
Consumer<String> updateSaveButtonState = s -> saveButton.setEnabled(canSave());
|
||||||
timeMinField.setValue(time / 1000 / 60).onTextChanged(updateSaveButtonState);
|
timeMinField.setValue(time / 1000 / 60).onTextChanged(updateSaveButtonState);
|
||||||
timeSecField.setValue(time / 1000 % 60).onTextChanged(updateSaveButtonState);
|
timeSecField.setValue(time / 1000 % 60).onTextChanged(updateSaveButtonState);
|
||||||
@@ -81,10 +106,11 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
saveButton.onClick(() -> {
|
saveButton.onClick(() -> {
|
||||||
Change change = save();
|
Change change = save();
|
||||||
long newTime = (timeMinField.getInteger() * 60 + timeSecField.getInteger()) * 1000 + timeMSecField.getInteger();
|
long newTime = (timeMinField.getInteger() * 60 + timeSecField.getInteger()) * 1000 + timeMSecField.getInteger();
|
||||||
if (newTime != keyframe.getTime()) {
|
if (newTime != time) {
|
||||||
change = CombinedChange.createFromApplied(change, gui.moveKeyframe(path, keyframe, newTime));
|
change = CombinedChange.createFromApplied(change,
|
||||||
|
gui.getMod().getCurrentTimeline().moveKeyframe(path, time, newTime));
|
||||||
}
|
}
|
||||||
path.getTimeline().pushChange(change);
|
gui.getMod().getCurrentTimeline().getTimeline().pushChange(change);
|
||||||
close();
|
close();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -114,7 +140,7 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
protected abstract Change save();
|
protected abstract Change save();
|
||||||
|
|
||||||
public static class Spectator extends GuiEditKeyframe<Spectator> {
|
public static class Spectator extends GuiEditKeyframe<Spectator> {
|
||||||
public Spectator(GuiPathing gui, Path path, Keyframe keyframe) {
|
public Spectator(GuiPathing gui, SPPath path, long keyframe) {
|
||||||
super(gui, path, keyframe, "spec");
|
super(gui, path, keyframe, "spec");
|
||||||
|
|
||||||
link(timeMinField, timeSecField, timeMSecField);
|
link(timeMinField, timeSecField, timeMSecField);
|
||||||
@@ -147,10 +173,10 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
timestampMSecField, new GuiLabel().setI18nText("replaymod.gui.milliseconds"));
|
timestampMSecField, new GuiLabel().setI18nText("replaymod.gui.milliseconds"));
|
||||||
}
|
}
|
||||||
|
|
||||||
public Time(GuiPathing gui, Path path, Keyframe keyframe) {
|
public Time(GuiPathing gui, SPPath path, long keyframe) {
|
||||||
super(gui, path, keyframe, "time");
|
super(gui, path, keyframe, "time");
|
||||||
|
|
||||||
keyframe.getValue(TimestampProperty.PROPERTY).ifPresent(time -> {
|
this.keyframe.getValue(TimestampProperty.PROPERTY).ifPresent(time -> {
|
||||||
timestampMinField.setValue(time / 1000 / 60);
|
timestampMinField.setValue(time / 1000 / 60);
|
||||||
timestampSecField.setValue(time / 1000 % 60);
|
timestampSecField.setValue(time / 1000 % 60);
|
||||||
timestampMSecField.setValue(time % 1000);
|
timestampMSecField.setValue(time % 1000);
|
||||||
@@ -165,11 +191,7 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
protected Change save() {
|
protected Change save() {
|
||||||
int time = (timestampMinField.getInteger() * 60 + timestampSecField.getInteger()) * 1000
|
int time = (timestampMinField.getInteger() * 60 + timestampSecField.getInteger()) * 1000
|
||||||
+ timestampMSecField.getInteger();
|
+ timestampMSecField.getInteger();
|
||||||
Change change = UpdateKeyframeProperties.create(path, keyframe)
|
return guiPathing.getMod().getCurrentTimeline().updateTimeKeyframe(keyframe.getTime(), time);
|
||||||
.setValue(TimestampProperty.PROPERTY, time)
|
|
||||||
.done();
|
|
||||||
change.apply(path.getTimeline());
|
|
||||||
return change;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -187,8 +209,11 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
public final GuiNumberField pitchField = newGuiNumberField().setSize(60, 20).setPrecision(5);
|
public final GuiNumberField pitchField = newGuiNumberField().setSize(60, 20).setPrecision(5);
|
||||||
public final GuiNumberField rollField = newGuiNumberField().setSize(60, 20).setPrecision(5);
|
public final GuiNumberField rollField = newGuiNumberField().setSize(60, 20).setPrecision(5);
|
||||||
|
|
||||||
|
public final InterpolationPanel interpolationPanel = new InterpolationPanel();
|
||||||
|
|
||||||
{
|
{
|
||||||
inputs.setLayout(new GridLayout().setCellsEqualSize(false).setColumns(4).setSpacingX(3).setSpacingY(5))
|
GuiPanel positionInputs = new GuiPanel()
|
||||||
|
.setLayout(new GridLayout().setCellsEqualSize(false).setColumns(4).setSpacingX(3).setSpacingY(5))
|
||||||
.addElements(new GridLayout.Data(1, 0.5),
|
.addElements(new GridLayout.Data(1, 0.5),
|
||||||
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.xpos"), xField,
|
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.xpos"), xField,
|
||||||
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.camyaw"), yawField,
|
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.camyaw"), yawField,
|
||||||
@@ -196,17 +221,20 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.campitch"), pitchField,
|
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.campitch"), pitchField,
|
||||||
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.zpos"), zField,
|
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.zpos"), zField,
|
||||||
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.camroll"), rollField);
|
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.camroll"), rollField);
|
||||||
|
|
||||||
|
inputs.setLayout(new VerticalLayout().setSpacing(10)).addElements(new VerticalLayout.Data(0.5, false),
|
||||||
|
positionInputs, interpolationPanel);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Position(GuiPathing gui, Path path, Keyframe keyframe) {
|
public Position(GuiPathing gui, SPPath path, long keyframe) {
|
||||||
super(gui, path, keyframe, "pos");
|
super(gui, path, keyframe, "pos");
|
||||||
|
|
||||||
keyframe.getValue(CameraProperties.POSITION).ifPresent(pos -> {
|
this.keyframe.getValue(CameraProperties.POSITION).ifPresent(pos -> {
|
||||||
xField.setValue(pos.getLeft());
|
xField.setValue(pos.getLeft());
|
||||||
yField.setValue(pos.getMiddle());
|
yField.setValue(pos.getMiddle());
|
||||||
zField.setValue(pos.getRight());
|
zField.setValue(pos.getRight());
|
||||||
});
|
});
|
||||||
keyframe.getValue(CameraProperties.ROTATION).ifPresent(rot -> {
|
this.keyframe.getValue(CameraProperties.ROTATION).ifPresent(rot -> {
|
||||||
yawField.setValue(rot.getLeft());
|
yawField.setValue(rot.getLeft());
|
||||||
pitchField.setValue(rot.getMiddle());
|
pitchField.setValue(rot.getMiddle());
|
||||||
rollField.setValue(rot.getRight());
|
rollField.setValue(rot.getRight());
|
||||||
@@ -219,17 +247,176 @@ public abstract class GuiEditKeyframe<T extends GuiEditKeyframe<T>> extends Abst
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Change save() {
|
protected Change save() {
|
||||||
Change change = UpdateKeyframeProperties.create(path, keyframe)
|
SPTimeline timeline = guiPathing.getMod().getCurrentTimeline();
|
||||||
.setValue(CameraProperties.POSITION, Triple.of(xField.getDouble(), yField.getDouble(), zField.getDouble()))
|
Change positionChange = timeline.updatePositionKeyframe(time,
|
||||||
.setValue(CameraProperties.ROTATION, Triple.of(yawField.getFloat(), pitchField.getFloat(), rollField.getFloat()))
|
xField.getDouble(), yField.getDouble(), zField.getDouble(),
|
||||||
.done();
|
yawField.getFloat(), pitchField.getFloat(), rollField.getFloat()
|
||||||
change.apply(path.getTimeline());
|
);
|
||||||
return change;
|
Interpolator interpolator = interpolationPanel.getSettingsPanel().createInterpolator();
|
||||||
|
if (interpolationPanel.getInterpolatorType() == InterpolatorType.DEFAULT) {
|
||||||
|
return CombinedChange.createFromApplied(positionChange, timeline.setInterpolatorToDefault(time),
|
||||||
|
timeline.setDefaultInterpolator(interpolator));
|
||||||
|
} else {
|
||||||
|
return CombinedChange.createFromApplied(positionChange, timeline.setInterpolator(time, interpolator));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Position getThis() {
|
protected Position getThis() {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public class InterpolationPanel extends AbstractGuiContainer<InterpolationPanel> {
|
||||||
|
|
||||||
|
@Getter
|
||||||
|
private SettingsPanel settingsPanel;
|
||||||
|
|
||||||
|
private GuiDropdownMenu<InterpolatorType> dropdown;
|
||||||
|
|
||||||
|
public InterpolationPanel() {
|
||||||
|
setLayout(new VerticalLayout());
|
||||||
|
|
||||||
|
dropdown = new GuiDropdownMenu<InterpolatorType>()
|
||||||
|
.setToString(s -> I18n.format(s.getI18nName()))
|
||||||
|
.setValues(InterpolatorType.values()).setHeight(20)
|
||||||
|
.onSelection(i -> setSettingsPanel(dropdown.getSelectedValue()));
|
||||||
|
|
||||||
|
// set hover tooltips
|
||||||
|
for (Map.Entry<InterpolatorType, IGuiClickable> e : dropdown.getDropdownEntries().entrySet()) {
|
||||||
|
e.getValue().setTooltip(new GuiTooltip().setI18nText(e.getKey().getI18nDescription()));
|
||||||
|
}
|
||||||
|
|
||||||
|
GuiPanel dropdownPanel = new GuiPanel()
|
||||||
|
.setLayout(new GridLayout().setCellsEqualSize(false).setColumns(2).setSpacingX(3).setSpacingY(5))
|
||||||
|
.addElements(new GridLayout.Data(1, 0.5),
|
||||||
|
new GuiLabel().setI18nText("replaymod.gui.editkeyframe.interpolator"), dropdown);
|
||||||
|
|
||||||
|
|
||||||
|
addElements(new VerticalLayout.Data(0.5, false), dropdownPanel);
|
||||||
|
|
||||||
|
Optional<PathSegment> segment = path.getSegments().stream()
|
||||||
|
.filter(s -> s.getStartKeyframe() == keyframe).findFirst();
|
||||||
|
if (segment.isPresent()) {
|
||||||
|
Interpolator interpolator = segment.get().getInterpolator();
|
||||||
|
InterpolatorType type = InterpolatorType.fromClass(interpolator.getClass());
|
||||||
|
if (keyframe.getValue(ExplicitInterpolationProperty.PROPERTY).isPresent()) {
|
||||||
|
dropdown.setSelected(type); // trigger the callback once to display settings panel
|
||||||
|
} else {
|
||||||
|
setSettingsPanel(InterpolatorType.DEFAULT);
|
||||||
|
}
|
||||||
|
if (getInterpolatorTypeNoDefault(type).getInterpolatorClass().isInstance(interpolator)) {
|
||||||
|
//noinspection unchecked
|
||||||
|
settingsPanel.loadSettings(interpolator);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// Disable dropdown if this is the last keyframe
|
||||||
|
dropdown.setDisabled();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSettingsPanel(InterpolatorType type) {
|
||||||
|
removeElement(this.settingsPanel);
|
||||||
|
|
||||||
|
switch (getInterpolatorTypeNoDefault(type)) {
|
||||||
|
case CATMULL_ROM:
|
||||||
|
settingsPanel = new CatmullRomSettingsPanel();
|
||||||
|
break;
|
||||||
|
case CUBIC:
|
||||||
|
settingsPanel = new CubicSettingsPanel();
|
||||||
|
break;
|
||||||
|
case LINEAR:
|
||||||
|
settingsPanel = new LinearSettingsPanel();
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
addElements(new GridLayout.Data(0.5, 0.5), settingsPanel);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected InterpolatorType getInterpolatorTypeNoDefault(InterpolatorType interpolatorType) {
|
||||||
|
if (interpolatorType == InterpolatorType.DEFAULT || interpolatorType == null) {
|
||||||
|
InterpolatorType defaultType = InterpolatorType.fromString(
|
||||||
|
guiPathing.getMod().getCore().getSettingsRegistry().get(Setting.DEFAULT_INTERPOLATION));
|
||||||
|
return defaultType;
|
||||||
|
}
|
||||||
|
return interpolatorType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public InterpolatorType getInterpolatorType() {
|
||||||
|
return dropdown.getSelectedValue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected InterpolationPanel getThis() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public abstract class SettingsPanel<I extends Interpolator, T extends SettingsPanel<I, T>> extends AbstractGuiContainer<T> {
|
||||||
|
|
||||||
|
public abstract void loadSettings(I interpolator);
|
||||||
|
|
||||||
|
public abstract I createInterpolator();
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CatmullRomSettingsPanel extends SettingsPanel<CatmullRomSplineInterpolator, CatmullRomSettingsPanel> {
|
||||||
|
public final GuiLabel alphaLabel = new GuiLabel().setColor(Colors.BLACK)
|
||||||
|
.setI18nText("replaymod.gui.editkeyframe.interpolator.catmullrom.alpha");
|
||||||
|
public final GuiNumberField alphaField = new GuiNumberField().setSize(100, 20).setPrecision(5)
|
||||||
|
.setMinValue(0).setValidateOnFocusChange(true);
|
||||||
|
|
||||||
|
{
|
||||||
|
setLayout(new HorizontalLayout(HorizontalLayout.Alignment.CENTER));
|
||||||
|
addElements(new HorizontalLayout.Data(0.5), alphaLabel, alphaField);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void loadSettings(CatmullRomSplineInterpolator interpolator) {
|
||||||
|
alphaField.setValue(interpolator.getAlpha());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CatmullRomSplineInterpolator createInterpolator() {
|
||||||
|
return new CatmullRomSplineInterpolator(alphaField.getDouble());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CatmullRomSettingsPanel getThis() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class CubicSettingsPanel extends SettingsPanel<CubicSplineInterpolator, CubicSettingsPanel> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void loadSettings(CubicSplineInterpolator interpolator) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CubicSplineInterpolator createInterpolator() {
|
||||||
|
return new CubicSplineInterpolator();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected CubicSettingsPanel getThis() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public class LinearSettingsPanel extends SettingsPanel<LinearInterpolator, LinearSettingsPanel> {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void loadSettings(LinearInterpolator interpolator) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public LinearInterpolator createInterpolator() {
|
||||||
|
return new LinearInterpolator();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected LinearSettingsPanel getThis() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
package com.replaymod.simplepathing.gui;
|
package com.replaymod.simplepathing.gui;
|
||||||
|
|
||||||
import com.google.common.base.Function;
|
|
||||||
import com.google.common.collect.Iterables;
|
|
||||||
import com.replaymod.core.ReplayMod;
|
import com.replaymod.core.ReplayMod;
|
||||||
import com.replaymod.pathing.properties.CameraProperties;
|
import com.replaymod.pathing.properties.CameraProperties;
|
||||||
import com.replaymod.pathing.properties.SpectatorProperty;
|
import com.replaymod.pathing.properties.SpectatorProperty;
|
||||||
@@ -11,9 +9,10 @@ import com.replaymod.replaystudio.pathing.change.Change;
|
|||||||
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
||||||
import com.replaymod.replaystudio.pathing.path.Path;
|
import com.replaymod.replaystudio.pathing.path.Path;
|
||||||
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
||||||
import com.replaymod.replaystudio.pathing.path.Timeline;
|
|
||||||
import com.replaymod.replaystudio.pathing.property.Property;
|
import com.replaymod.replaystudio.pathing.property.Property;
|
||||||
import com.replaymod.simplepathing.ReplayModSimplePathing;
|
import com.replaymod.simplepathing.ReplayModSimplePathing;
|
||||||
|
import com.replaymod.simplepathing.SPTimeline;
|
||||||
|
import com.replaymod.simplepathing.SPTimeline.SPPath;
|
||||||
import de.johni0702.minecraft.gui.GuiRenderer;
|
import de.johni0702.minecraft.gui.GuiRenderer;
|
||||||
import de.johni0702.minecraft.gui.element.advanced.AbstractGuiTimeline;
|
import de.johni0702.minecraft.gui.element.advanced.AbstractGuiTimeline;
|
||||||
import de.johni0702.minecraft.gui.function.Draggable;
|
import de.johni0702.minecraft.gui.function.Draggable;
|
||||||
@@ -23,7 +22,6 @@ import org.lwjgl.util.Point;
|
|||||||
import org.lwjgl.util.ReadableDimension;
|
import org.lwjgl.util.ReadableDimension;
|
||||||
import org.lwjgl.util.ReadablePoint;
|
import org.lwjgl.util.ReadablePoint;
|
||||||
|
|
||||||
import javax.annotation.Nullable;
|
|
||||||
import java.util.Comparator;
|
import java.util.Comparator;
|
||||||
import java.util.Optional;
|
import java.util.Optional;
|
||||||
|
|
||||||
@@ -37,14 +35,14 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
private final GuiPathing gui;
|
private final GuiPathing gui;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The keyframe that was last clicked on using the left mouse button.
|
* The keyframe (time on timeline) that was last clicked on using the left mouse button.
|
||||||
*/
|
*/
|
||||||
private Keyframe lastClickedKeyframe;
|
private long lastClickedKeyframe;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Id of the path of {@link #lastClickedKeyframe}.
|
* Path of {@link #lastClickedKeyframe}.
|
||||||
*/
|
*/
|
||||||
private int lastClickedPath;
|
private SPPath lastClickedPath;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The time at which {@link #lastClickedKeyframe} was updated.
|
* The time at which {@link #lastClickedKeyframe} was updated.
|
||||||
@@ -89,18 +87,13 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
|
|
||||||
renderer.bindTexture(ReplayMod.TEXTURE);
|
renderer.bindTexture(ReplayMod.TEXTURE);
|
||||||
|
|
||||||
for (Keyframe keyframe : Iterables.concat(Iterables.transform(mod.getCurrentTimeline().getPaths(), new Function<Path, Iterable<Keyframe>>() {
|
SPTimeline timeline = mod.getCurrentTimeline();
|
||||||
@Nullable
|
|
||||||
@Override
|
timeline.getTimeline().getPaths().stream().flatMap(path -> path.getKeyframes().stream()).forEach(keyframe -> {
|
||||||
public Iterable<Keyframe> apply(@Nullable Path input) {
|
|
||||||
assert input != null;
|
|
||||||
return input.getKeyframes();
|
|
||||||
}
|
|
||||||
}))) {
|
|
||||||
if (keyframe.getTime() >= startTime && keyframe.getTime() <= endTime) {
|
if (keyframe.getTime() >= startTime && keyframe.getTime() <= endTime) {
|
||||||
double relativeTime = keyframe.getTime() - startTime;
|
double relativeTime = keyframe.getTime() - startTime;
|
||||||
int positonX = BORDER_LEFT + (int) (relativeTime / visibleTime * visibleWidth) - KEYFRAME_SIZE / 2;
|
int positonX = BORDER_LEFT + (int) (relativeTime / visibleTime * visibleWidth) - KEYFRAME_SIZE / 2;
|
||||||
int u = KEYFRAME_TEXTURE_X + (mod.getSelectedKeyframe() == keyframe ? KEYFRAME_SIZE : 0);
|
int u = KEYFRAME_TEXTURE_X + (mod.isSelected(keyframe) ? KEYFRAME_SIZE : 0);
|
||||||
int v = KEYFRAME_TEXTURE_Y;
|
int v = KEYFRAME_TEXTURE_Y;
|
||||||
if (keyframe.getValue(CameraProperties.POSITION).isPresent()) {
|
if (keyframe.getValue(CameraProperties.POSITION).isPresent()) {
|
||||||
if (keyframe.getValue(SpectatorProperty.PROPERTY).isPresent()) {
|
if (keyframe.getValue(SpectatorProperty.PROPERTY).isPresent()) {
|
||||||
@@ -113,10 +106,10 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
renderer.drawTexturedRect(positonX, BORDER_TOP + KEYFRAME_SIZE, u, v, KEYFRAME_SIZE, KEYFRAME_SIZE);
|
renderer.drawTexturedRect(positonX, BORDER_TOP + KEYFRAME_SIZE, u, v, KEYFRAME_SIZE, KEYFRAME_SIZE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
});
|
||||||
|
|
||||||
// Draw colored quads on spectator path segments
|
// Draw colored quads on spectator path segments
|
||||||
for (PathSegment segment : mod.getCurrentTimeline().getPaths().get(GuiPathing.POSITION_PATH).getSegments()) {
|
for (PathSegment segment : timeline.getPositionPath().getSegments()) {
|
||||||
if (segment.getInterpolator() == null
|
if (segment.getInterpolator() == null
|
||||||
|| !segment.getInterpolator().getKeyframeProperties().contains(SpectatorProperty.PROPERTY)) {
|
|| !segment.getInterpolator().getKeyframeProperties().contains(SpectatorProperty.PROPERTY)) {
|
||||||
continue; // Not a spectator segment
|
continue; // Not a spectator segment
|
||||||
@@ -125,7 +118,7 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Draw red quads on time path segments that would require time going backwards
|
// Draw red quads on time path segments that would require time going backwards
|
||||||
for (PathSegment segment : mod.getCurrentTimeline().getPaths().get(GuiPathing.TIME_PATH).getSegments()) {
|
for (PathSegment segment : timeline.getTimePath().getSegments()) {
|
||||||
long startTimestamp = segment.getStartKeyframe().getValue(TimestampProperty.PROPERTY).orElseThrow(IllegalStateException::new);
|
long startTimestamp = segment.getStartKeyframe().getValue(TimestampProperty.PROPERTY).orElseThrow(IllegalStateException::new);
|
||||||
long endTimestamp = segment.getEndKeyframe().getValue(TimestampProperty.PROPERTY).orElseThrow(IllegalStateException::new);
|
long endTimestamp = segment.getEndKeyframe().getValue(TimestampProperty.PROPERTY).orElseThrow(IllegalStateException::new);
|
||||||
if (endTimestamp >= startTimestamp) {
|
if (endTimestamp >= startTimestamp) {
|
||||||
@@ -162,29 +155,28 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
* @param position The raw position
|
* @param position The raw position
|
||||||
* @return Pair of path id and keyframe or null when no keyframe was clicked
|
* @return Pair of path id and keyframe or null when no keyframe was clicked
|
||||||
*/
|
*/
|
||||||
private Pair<Integer, Keyframe> getKeyframe(ReadablePoint position) {
|
private Pair<SPPath, Long> getKeyframe(ReadablePoint position) {
|
||||||
int time = getTimeAt(position.getX(), position.getY());
|
int time = getTimeAt(position.getX(), position.getY());
|
||||||
if (time != -1) {
|
if (time != -1) {
|
||||||
Point mouse = new Point(position);
|
Point mouse = new Point(position);
|
||||||
getContainer().convertFor(this, mouse);
|
getContainer().convertFor(this, mouse);
|
||||||
int mouseY = mouse.getY();
|
int mouseY = mouse.getY();
|
||||||
if (mouseY > BORDER_TOP && mouseY < BORDER_TOP + 2 * KEYFRAME_SIZE) {
|
if (mouseY > BORDER_TOP && mouseY < BORDER_TOP + 2 * KEYFRAME_SIZE) {
|
||||||
Timeline timeline = gui.getMod().getCurrentTimeline();
|
SPPath path;
|
||||||
int path;
|
|
||||||
if (mouseY <= BORDER_TOP + KEYFRAME_SIZE) {
|
if (mouseY <= BORDER_TOP + KEYFRAME_SIZE) {
|
||||||
// Position keyframe
|
// Position keyframe
|
||||||
path = GuiPathing.POSITION_PATH;
|
path = SPPath.POSITION;
|
||||||
} else {
|
} else {
|
||||||
// Time keyframe
|
// Time keyframe
|
||||||
path = GuiPathing.TIME_PATH;
|
path = SPPath.TIME;
|
||||||
}
|
}
|
||||||
int visibleTime = (int) (getZoom() * getLength());
|
int visibleTime = (int) (getZoom() * getLength());
|
||||||
int tolerance = visibleTime * KEYFRAME_SIZE / (size.getWidth() - BORDER_LEFT - BORDER_RIGHT) / 2;
|
int tolerance = visibleTime * KEYFRAME_SIZE / (getLastSize().getWidth() - BORDER_LEFT - BORDER_RIGHT) / 2;
|
||||||
Optional<Keyframe> keyframe = timeline.getPaths().get(path).getKeyframes().stream()
|
Optional<Keyframe> keyframe = gui.getMod().getCurrentTimeline().getPath(path).getKeyframes().stream()
|
||||||
.filter(k -> Math.abs(k.getTime() - time) <= tolerance)
|
.filter(k -> Math.abs(k.getTime() - time) <= tolerance)
|
||||||
.sorted(Comparator.comparing(k -> Math.abs(k.getTime() - time)))
|
.sorted(Comparator.comparing(k -> Math.abs(k.getTime() - time)))
|
||||||
.findFirst();
|
.findFirst();
|
||||||
return Pair.of(path, keyframe.orElse(null));
|
return Pair.of(path, keyframe.map(Keyframe::getTime).orElse(null));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return Pair.of(null, null);
|
return Pair.of(null, null);
|
||||||
@@ -193,30 +185,31 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
@Override
|
@Override
|
||||||
public boolean mouseClick(ReadablePoint position, int button) {
|
public boolean mouseClick(ReadablePoint position, int button) {
|
||||||
int time = getTimeAt(position.getX(), position.getY());
|
int time = getTimeAt(position.getX(), position.getY());
|
||||||
Pair<Integer, Keyframe> pathKeyframePair = getKeyframe(position);
|
Pair<SPPath, Long> pathKeyframePair = getKeyframe(position);
|
||||||
if (pathKeyframePair.getRight() != null) {
|
if (pathKeyframePair.getRight() != null) {
|
||||||
|
SPPath path = pathKeyframePair.getLeft();
|
||||||
// Clicked on keyframe
|
// Clicked on keyframe
|
||||||
Keyframe keyframe = pathKeyframePair.getRight();
|
long keyframeTime = pathKeyframePair.getRight();
|
||||||
if (button == 0) { // Left click
|
if (button == 0) { // Left click
|
||||||
long now = Minecraft.getSystemTime();
|
long now = Minecraft.getSystemTime();
|
||||||
if (lastClickedKeyframe == keyframe) {
|
if (lastClickedKeyframe == keyframeTime) {
|
||||||
// Clicked the same keyframe again, potentially a double click
|
// Clicked the same keyframe again, potentially a double click
|
||||||
if (now - lastClickedTime < DOUBLE_CLICK_INTERVAL) {
|
if (now - lastClickedTime < DOUBLE_CLICK_INTERVAL) {
|
||||||
// Yup, double click, open the edit keyframe gui
|
// Yup, double click, open the edit keyframe gui
|
||||||
Path path = gui.getMod().getCurrentTimeline().getPaths().get(pathKeyframePair.getLeft());
|
gui.openEditKeyframePopup(path, keyframeTime);
|
||||||
gui.openEditKeyframePopup(path, keyframe);
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Not a double click, just update the click time and selection
|
// Not a double click, just update the click time and selection
|
||||||
lastClickedTime = now;
|
lastClickedTime = now;
|
||||||
lastClickedKeyframe = keyframe;
|
lastClickedKeyframe = keyframeTime;
|
||||||
lastClickedPath = pathKeyframePair.getLeft();
|
lastClickedPath = path;
|
||||||
gui.getMod().setSelectedKeyframe(lastClickedKeyframe);
|
gui.getMod().setSelected(lastClickedPath, lastClickedKeyframe);
|
||||||
// We might be dragging
|
// We might be dragging
|
||||||
draggingStartX = position.getX();
|
draggingStartX = position.getX();
|
||||||
dragging = true;
|
dragging = true;
|
||||||
} else if (button == 1) { // Right click
|
} else if (button == 1) { // Right click
|
||||||
|
Keyframe keyframe = gui.getMod().getCurrentTimeline().getKeyframe(path, keyframeTime);
|
||||||
for (Property property : keyframe.getProperties()) {
|
for (Property property : keyframe.getProperties()) {
|
||||||
applyPropertyToGame(property, keyframe);
|
applyPropertyToGame(property, keyframe);
|
||||||
}
|
}
|
||||||
@@ -226,12 +219,11 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
// Clicked on timeline but not on any keyframe
|
// Clicked on timeline but not on any keyframe
|
||||||
if (button == 0) { // Left click
|
if (button == 0) { // Left click
|
||||||
setCursorPosition(time);
|
setCursorPosition(time);
|
||||||
gui.getMod().setSelectedKeyframe(null);
|
gui.getMod().setSelected(null, 0);
|
||||||
} else if (button == 1) { // Right click
|
} else if (button == 1) { // Right click
|
||||||
if (pathKeyframePair.getLeft() != null) {
|
if (pathKeyframePair.getLeft() != null) {
|
||||||
// Apply the value of the clicked path at the clicked position
|
// Apply the value of the clicked path at the clicked position
|
||||||
Timeline timeline = gui.getMod().getCurrentTimeline();
|
Path path = gui.getMod().getCurrentTimeline().getPath(pathKeyframePair.getLeft());
|
||||||
Path path = timeline.getPaths().get(pathKeyframePair.getLeft());
|
|
||||||
path.getKeyframes().stream().flatMap(k -> k.getProperties().stream()).distinct().forEach(
|
path.getKeyframes().stream().flatMap(k -> k.getProperties().stream()).distinct().forEach(
|
||||||
p -> applyPropertyToGame(p, path, time));
|
p -> applyPropertyToGame(p, path, time));
|
||||||
}
|
}
|
||||||
@@ -280,12 +272,13 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (actuallyDragging) {
|
if (actuallyDragging) {
|
||||||
|
if (!gui.ensureEntityTracker(() -> mouseDrag(position, button, timeSinceLastCall))) return true;
|
||||||
// Threshold passed
|
// Threshold passed
|
||||||
Path path = gui.getMod().getCurrentTimeline().getPaths().get(lastClickedPath);
|
SPTimeline timeline = gui.getMod().getCurrentTimeline();
|
||||||
Point mouse = new Point(position);
|
Point mouse = new Point(position);
|
||||||
getContainer().convertFor(this, mouse);
|
getContainer().convertFor(this, mouse);
|
||||||
int mouseX = mouse.getX();
|
int mouseX = mouse.getX();
|
||||||
int width = size.getWidth();
|
int width = getLastSize().getWidth();
|
||||||
int bodyWidth = width - BORDER_LEFT - BORDER_RIGHT;
|
int bodyWidth = width - BORDER_LEFT - BORDER_RIGHT;
|
||||||
double segmentLength = getLength() * getZoom();
|
double segmentLength = getLength() * getZoom();
|
||||||
double segmentTime = segmentLength * (mouseX - BORDER_LEFT) / bodyWidth;
|
double segmentTime = segmentLength * (mouseX - BORDER_LEFT) / bodyWidth;
|
||||||
@@ -295,24 +288,21 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
}
|
}
|
||||||
|
|
||||||
// If there already is a keyframe at the target time, then increase the time by one until there is none
|
// If there already is a keyframe at the target time, then increase the time by one until there is none
|
||||||
while (path.getKeyframe(newTime) != null) {
|
while (timeline.getKeyframe(lastClickedPath, newTime) != null) {
|
||||||
newTime++;
|
newTime++;
|
||||||
}
|
}
|
||||||
|
|
||||||
// First undo any previous changes
|
// First undo any previous changes
|
||||||
if (draggingChange != null) {
|
if (draggingChange != null) {
|
||||||
draggingChange.undo(gui.getMod().getCurrentTimeline());
|
draggingChange.undo(timeline.getTimeline());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Move keyframe to new position and
|
// Move keyframe to new position and
|
||||||
// store change for later undoing / pushing to history
|
// store change for later undoing / pushing to history
|
||||||
draggingChange = gui.moveKeyframe(path, lastClickedKeyframe, newTime);
|
draggingChange = timeline.moveKeyframe(lastClickedPath, lastClickedKeyframe, newTime);
|
||||||
|
|
||||||
// Selected keyframe has been replaced
|
// Selected keyframe has been replaced
|
||||||
gui.getMod().setSelectedKeyframe(path.getKeyframe(newTime));
|
gui.getMod().setSelected(lastClickedPath, newTime);
|
||||||
|
|
||||||
// Path has been changed
|
|
||||||
path.updateAll();
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
@@ -321,7 +311,7 @@ public class GuiKeyframeTimeline extends AbstractGuiTimeline<GuiKeyframeTimeline
|
|||||||
public boolean mouseRelease(ReadablePoint position, int button) {
|
public boolean mouseRelease(ReadablePoint position, int button) {
|
||||||
if (dragging) {
|
if (dragging) {
|
||||||
if (actuallyDragging) {
|
if (actuallyDragging) {
|
||||||
gui.getMod().getCurrentTimeline().pushChange(draggingChange);
|
gui.getMod().getCurrentTimeline().getTimeline().pushChange(draggingChange);
|
||||||
draggingChange = null;
|
draggingChange = null;
|
||||||
actuallyDragging = false;
|
actuallyDragging = false;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -14,25 +14,26 @@ import com.replaymod.render.gui.GuiRenderSettings;
|
|||||||
import com.replaymod.replay.ReplayHandler;
|
import com.replaymod.replay.ReplayHandler;
|
||||||
import com.replaymod.replay.camera.CameraEntity;
|
import com.replaymod.replay.camera.CameraEntity;
|
||||||
import com.replaymod.replay.gui.overlay.GuiReplayOverlay;
|
import com.replaymod.replay.gui.overlay.GuiReplayOverlay;
|
||||||
import com.replaymod.replaystudio.pathing.change.*;
|
|
||||||
import com.replaymod.replaystudio.pathing.interpolation.CubicSplineInterpolator;
|
|
||||||
import com.replaymod.replaystudio.pathing.interpolation.Interpolator;
|
|
||||||
import com.replaymod.replaystudio.pathing.interpolation.LinearInterpolator;
|
|
||||||
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
||||||
import com.replaymod.replaystudio.pathing.path.Path;
|
import com.replaymod.replaystudio.pathing.path.Path;
|
||||||
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
|
||||||
import com.replaymod.replaystudio.pathing.path.Timeline;
|
import com.replaymod.replaystudio.pathing.path.Timeline;
|
||||||
import com.replaymod.replaystudio.pathing.property.Property;
|
|
||||||
import com.replaymod.replaystudio.pathing.serialize.TimelineSerialization;
|
import com.replaymod.replaystudio.pathing.serialize.TimelineSerialization;
|
||||||
import com.replaymod.replaystudio.util.EntityPositionTracker;
|
import com.replaymod.replaystudio.util.EntityPositionTracker;
|
||||||
import com.replaymod.replaystudio.util.Location;
|
|
||||||
import com.replaymod.simplepathing.ReplayModSimplePathing;
|
import com.replaymod.simplepathing.ReplayModSimplePathing;
|
||||||
import com.replaymod.simplepathing.Setting;
|
import com.replaymod.simplepathing.SPTimeline;
|
||||||
|
import com.replaymod.simplepathing.SPTimeline.SPPath;
|
||||||
import de.johni0702.minecraft.gui.GuiRenderer;
|
import de.johni0702.minecraft.gui.GuiRenderer;
|
||||||
import de.johni0702.minecraft.gui.RenderInfo;
|
import de.johni0702.minecraft.gui.RenderInfo;
|
||||||
import de.johni0702.minecraft.gui.container.GuiContainer;
|
import de.johni0702.minecraft.gui.container.GuiContainer;
|
||||||
import de.johni0702.minecraft.gui.container.GuiPanel;
|
import de.johni0702.minecraft.gui.container.GuiPanel;
|
||||||
import de.johni0702.minecraft.gui.element.*;
|
import de.johni0702.minecraft.gui.element.AbstractGuiClickable;
|
||||||
|
import de.johni0702.minecraft.gui.element.AbstractGuiElement;
|
||||||
|
import de.johni0702.minecraft.gui.element.GuiElement;
|
||||||
|
import de.johni0702.minecraft.gui.element.GuiHorizontalScrollbar;
|
||||||
|
import de.johni0702.minecraft.gui.element.GuiLabel;
|
||||||
|
import de.johni0702.minecraft.gui.element.GuiTexturedButton;
|
||||||
|
import de.johni0702.minecraft.gui.element.GuiTooltip;
|
||||||
|
import de.johni0702.minecraft.gui.element.IGuiClickable;
|
||||||
import de.johni0702.minecraft.gui.element.advanced.GuiProgressBar;
|
import de.johni0702.minecraft.gui.element.advanced.GuiProgressBar;
|
||||||
import de.johni0702.minecraft.gui.element.advanced.GuiTimelineTime;
|
import de.johni0702.minecraft.gui.element.advanced.GuiTimelineTime;
|
||||||
import de.johni0702.minecraft.gui.layout.CustomLayout;
|
import de.johni0702.minecraft.gui.layout.CustomLayout;
|
||||||
@@ -43,9 +44,7 @@ import de.johni0702.minecraft.gui.popup.GuiInfoPopup;
|
|||||||
import de.johni0702.minecraft.gui.popup.GuiYesNoPopup;
|
import de.johni0702.minecraft.gui.popup.GuiYesNoPopup;
|
||||||
import de.johni0702.minecraft.gui.utils.Colors;
|
import de.johni0702.minecraft.gui.utils.Colors;
|
||||||
import net.minecraft.crash.CrashReport;
|
import net.minecraft.crash.CrashReport;
|
||||||
import net.minecraft.entity.Entity;
|
|
||||||
import net.minecraftforge.fml.common.Loader;
|
import net.minecraftforge.fml.common.Loader;
|
||||||
import org.apache.commons.lang3.tuple.Triple;
|
|
||||||
import org.apache.logging.log4j.LogManager;
|
import org.apache.logging.log4j.LogManager;
|
||||||
import org.apache.logging.log4j.Logger;
|
import org.apache.logging.log4j.Logger;
|
||||||
import org.lwjgl.input.Keyboard;
|
import org.lwjgl.input.Keyboard;
|
||||||
@@ -57,10 +56,7 @@ import org.lwjgl.util.WritablePoint;
|
|||||||
import javax.annotation.Nonnull;
|
import javax.annotation.Nonnull;
|
||||||
import javax.annotation.Nullable;
|
import javax.annotation.Nullable;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
|
||||||
import java.util.Optional;
|
|
||||||
import java.util.function.Consumer;
|
import java.util.function.Consumer;
|
||||||
|
|
||||||
import static com.replaymod.core.utils.Utils.error;
|
import static com.replaymod.core.utils.Utils.error;
|
||||||
@@ -71,9 +67,6 @@ import static com.replaymod.simplepathing.ReplayModSimplePathing.LOGGER;
|
|||||||
* Gui plug-in to the GuiReplayOverlay for simple pathing.
|
* Gui plug-in to the GuiReplayOverlay for simple pathing.
|
||||||
*/
|
*/
|
||||||
public class GuiPathing {
|
public class GuiPathing {
|
||||||
public static final int TIME_PATH = 0;
|
|
||||||
public static final int POSITION_PATH = 1;
|
|
||||||
|
|
||||||
private static final Logger logger = LogManager.getLogger();
|
private static final Logger logger = LogManager.getLogger();
|
||||||
|
|
||||||
public final GuiTexturedButton playPauseButton = new GuiTexturedButton() {
|
public final GuiTexturedButton playPauseButton = new GuiTexturedButton() {
|
||||||
@@ -99,10 +92,11 @@ public class GuiPathing {
|
|||||||
if (!preparePathsForPlayback()) return;
|
if (!preparePathsForPlayback()) return;
|
||||||
|
|
||||||
// Clone the timeline passed to the settings gui as it may be stored for later rendering in a queue
|
// Clone the timeline passed to the settings gui as it may be stored for later rendering in a queue
|
||||||
Timeline timeline = mod.getCurrentTimeline();
|
SPTimeline spTimeline = mod.getCurrentTimeline();
|
||||||
|
Timeline timeline;
|
||||||
try {
|
try {
|
||||||
TimelineSerialization serialization = new TimelineSerialization(mod, null);
|
TimelineSerialization serialization = new TimelineSerialization(spTimeline, null);
|
||||||
String serialized = serialization.serialize(Collections.singletonMap("", timeline));
|
String serialized = serialization.serialize(Collections.singletonMap("", spTimeline.getTimeline()));
|
||||||
timeline = serialization.deserialize(serialized).get("");
|
timeline = serialization.deserialize(serialized).get("");
|
||||||
} catch (Throwable t) {
|
} catch (Throwable t) {
|
||||||
error(LOGGER, replayHandler.getOverlay(), CrashReport.makeCrashReport(t, "Cloning timeline"), () -> {});
|
error(LOGGER, replayHandler.getOverlay(), CrashReport.makeCrashReport(t, "Cloning timeline"), () -> {});
|
||||||
@@ -296,27 +290,28 @@ public class GuiPathing {
|
|||||||
if (player.isActive()) {
|
if (player.isActive()) {
|
||||||
player.getFuture().cancel(false);
|
player.getFuture().cancel(false);
|
||||||
} else {
|
} else {
|
||||||
Timeline timeline = mod.getCurrentTimeline();
|
Path timePath = mod.getCurrentTimeline().getTimePath();
|
||||||
Path timePath = timeline.getPaths().get(TIME_PATH);
|
|
||||||
|
|
||||||
if (!preparePathsForPlayback()) return;
|
if (!preparePathsForPlayback()) return;
|
||||||
|
|
||||||
timePath.setActive(!Keyboard.isKeyDown(Keyboard.KEY_LSHIFT));
|
timePath.setActive(!Keyboard.isKeyDown(Keyboard.KEY_LSHIFT));
|
||||||
// Start from cursor time unless the control key is pressed (then start from beginning)
|
// Start from cursor time unless the control key is pressed (then start from beginning)
|
||||||
int startTime = Keyboard.isKeyDown(Keyboard.KEY_LCONTROL)? 0 : GuiPathing.this.timeline.getCursorPosition();
|
int startTime = Keyboard.isKeyDown(Keyboard.KEY_LCONTROL)? 0 : GuiPathing.this.timeline.getCursorPosition();
|
||||||
ListenableFuture<Void> future = player.start(timeline, startTime);
|
ListenableFuture<Void> future = player.start(mod.getCurrentTimeline().getTimeline(), startTime);
|
||||||
overlay.setCloseable(false);
|
overlay.setCloseable(false);
|
||||||
overlay.setMouseVisible(true);
|
overlay.setMouseVisible(true);
|
||||||
Futures.addCallback(future, new FutureCallback<Void>() {
|
Futures.addCallback(future, new FutureCallback<Void>() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(@Nullable Void result) {
|
public void onSuccess(@Nullable Void result) {
|
||||||
overlay.setCloseable(true);
|
overlay.setCloseable(true);
|
||||||
|
timePath.setActive(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onFailure(Throwable t) {
|
public void onFailure(Throwable t) {
|
||||||
t.printStackTrace();
|
t.printStackTrace();
|
||||||
overlay.setCloseable(true);
|
overlay.setCloseable(true);
|
||||||
|
timePath.setActive(true);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -326,26 +321,28 @@ public class GuiPathing {
|
|||||||
positionKeyframeButton.setTexturePosH(new ReadablePoint() {
|
positionKeyframeButton.setTexturePosH(new ReadablePoint() {
|
||||||
@Override
|
@Override
|
||||||
public int getX() {
|
public int getX() {
|
||||||
Keyframe keyframe = mod.getSelectedKeyframe();
|
SPPath keyframePath = mod.getSelectedPath();
|
||||||
if (keyframe == null || !keyframe.getValue(CameraProperties.POSITION).isPresent()) {
|
long keyframeTime = mod.getSelectedTime();
|
||||||
|
if (keyframePath != SPPath.POSITION) {
|
||||||
// No keyframe or wrong path
|
// No keyframe or wrong path
|
||||||
keyframe = mod.getCurrentTimeline().getPaths().get(POSITION_PATH).getKeyframe(timeline.getCursorPosition());
|
keyframeTime = timeline.getCursorPosition();
|
||||||
|
keyframePath = mod.getCurrentTimeline().isPositionKeyframe(keyframeTime) ? SPPath.POSITION : null;
|
||||||
}
|
}
|
||||||
if (keyframe == null) {
|
if (keyframePath != SPPath.POSITION) {
|
||||||
return replayHandler.isCameraView() ? 0 : 40;
|
return replayHandler.isCameraView() ? 0 : 40;
|
||||||
} else {
|
} else {
|
||||||
return keyframe.getValue(SpectatorProperty.PROPERTY).isPresent() ? 40 : 0;
|
return mod.getCurrentTimeline().isSpectatorKeyframe(keyframeTime) ? 40 : 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getY() {
|
public int getY() {
|
||||||
Keyframe keyframe = mod.getSelectedKeyframe();
|
SPPath keyframePath = mod.getSelectedPath();
|
||||||
if (keyframe == null || !keyframe.getValue(CameraProperties.POSITION).isPresent()) {
|
if (keyframePath != SPPath.POSITION) {
|
||||||
// No keyframe selected but there might be one at exactly the position of the cursor
|
// No keyframe selected but there might be one at exactly the position of the cursor
|
||||||
keyframe = mod.getCurrentTimeline().getPaths().get(POSITION_PATH).getKeyframe(timeline.getCursorPosition());
|
keyframePath = mod.getCurrentTimeline().isPositionKeyframe(timeline.getCursorPosition()) ? SPPath.POSITION : null;
|
||||||
}
|
}
|
||||||
return keyframe != null && keyframe.getValue(CameraProperties.POSITION).isPresent() ? 60 : 40;
|
return keyframePath == SPPath.POSITION ? 60 : 40;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -355,7 +352,7 @@ public class GuiPathing {
|
|||||||
}).onClick(new Runnable() {
|
}).onClick(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
updateKeyframe(false);
|
updateKeyframe(SPPath.POSITION);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -367,12 +364,12 @@ public class GuiPathing {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getY() {
|
public int getY() {
|
||||||
Keyframe keyframe = mod.getSelectedKeyframe();
|
SPPath keyframePath = mod.getSelectedPath();
|
||||||
if (keyframe == null || !keyframe.getValue(TimestampProperty.PROPERTY).isPresent()) {
|
if (keyframePath != SPPath.TIME) {
|
||||||
// No keyframe selected but there might be one at exactly the position of the cursor
|
// No keyframe selected but there might be one at exactly the position of the cursor
|
||||||
keyframe = mod.getCurrentTimeline().getPaths().get(TIME_PATH).getKeyframe(timeline.getCursorPosition());
|
keyframePath = mod.getCurrentTimeline().isTimeKeyframe(timeline.getCursorPosition()) ? SPPath.TIME : null;
|
||||||
}
|
}
|
||||||
return keyframe != null && keyframe.getValue(TimestampProperty.PROPERTY).isPresent() ? 100 : 80;
|
return keyframePath == SPPath.TIME ? 100 : 80;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -382,7 +379,7 @@ public class GuiPathing {
|
|||||||
}).onClick(new Runnable() {
|
}).onClick(new Runnable() {
|
||||||
@Override
|
@Override
|
||||||
public void run() {
|
public void run() {
|
||||||
updateKeyframe(true);
|
updateKeyframe(SPPath.TIME);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -404,12 +401,12 @@ public class GuiPathing {
|
|||||||
}
|
}
|
||||||
try {
|
try {
|
||||||
GuiKeyframeRepository gui = new GuiKeyframeRepository(
|
GuiKeyframeRepository gui = new GuiKeyframeRepository(
|
||||||
mod, replayHandler.getReplayFile(), mod.getCurrentTimeline());
|
mod.getCurrentTimeline(), replayHandler.getReplayFile(), mod.getCurrentTimeline().getTimeline());
|
||||||
Futures.addCallback(gui.getFuture(), new FutureCallback<Timeline>() {
|
Futures.addCallback(gui.getFuture(), new FutureCallback<Timeline>() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(Timeline result) {
|
public void onSuccess(Timeline result) {
|
||||||
if (result != null) {
|
if (result != null) {
|
||||||
mod.setCurrentTimeline(result);
|
mod.setCurrentTimeline(new SPTimeline(result));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -435,10 +432,10 @@ public class GuiPathing {
|
|||||||
@Override
|
@Override
|
||||||
public void onSuccess(Boolean delete) {
|
public void onSuccess(Boolean delete) {
|
||||||
if (delete) {
|
if (delete) {
|
||||||
Timeline timeline = mod.createTimeline();
|
mod.clearCurrentTimeline();
|
||||||
timeline.createPath();
|
if (entityTracker != null) {
|
||||||
timeline.createPath();
|
mod.getCurrentTimeline().setEntityTracker(entityTracker);
|
||||||
mod.setCurrentTimeline(timeline);
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -455,7 +452,7 @@ public class GuiPathing {
|
|||||||
// Position of the cursor
|
// Position of the cursor
|
||||||
int cursor = timeline.getCursorPosition();
|
int cursor = timeline.getCursorPosition();
|
||||||
// Get the last time keyframe before the cursor
|
// Get the last time keyframe before the cursor
|
||||||
mod.getCurrentTimeline().getPaths().get(TIME_PATH).getKeyframes().stream()
|
mod.getCurrentTimeline().getTimePath().getKeyframes().stream()
|
||||||
.filter(it -> it.getTime() <= cursor).reduce((__, last) -> last).ifPresent(keyframe -> {
|
.filter(it -> it.getTime() <= cursor).reduce((__, last) -> last).ifPresent(keyframe -> {
|
||||||
// Cursor position at the keyframe
|
// Cursor position at the keyframe
|
||||||
int keyframeCursor = (int) keyframe.getTime();
|
int keyframeCursor = (int) keyframe.getTime();
|
||||||
@@ -471,7 +468,7 @@ public class GuiPathing {
|
|||||||
// Move cursor to new position
|
// Move cursor to new position
|
||||||
timeline.setCursorPosition(keyframeCursor + cursorPassed);
|
timeline.setCursorPosition(keyframeCursor + cursorPassed);
|
||||||
// Deselect keyframe to allow the user to add a new one right away
|
// Deselect keyframe to allow the user to add a new one right away
|
||||||
mod.setSelectedKeyframe(null);
|
mod.setSelected(null, 0);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -479,8 +476,8 @@ public class GuiPathing {
|
|||||||
if (!overlay.isVisible()) {
|
if (!overlay.isVisible()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (mod.getSelectedKeyframe() != null) {
|
if (mod.getSelectedPath() != null) {
|
||||||
updateKeyframe(mod.getSelectedKeyframe().getValue(TimestampProperty.PROPERTY).isPresent());
|
updateKeyframe(mod.getSelectedPath());
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -511,13 +508,12 @@ public class GuiPathing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private boolean preparePathsForPlayback() {
|
private boolean preparePathsForPlayback() {
|
||||||
Timeline timeline = mod.getCurrentTimeline();
|
SPTimeline timeline = mod.getCurrentTimeline();
|
||||||
timeline.getPaths().get(TIME_PATH).updateAll();
|
timeline.getTimeline().getPaths().forEach(Path::updateAll);
|
||||||
timeline.getPaths().get(POSITION_PATH).updateAll();
|
|
||||||
|
|
||||||
// Make sure time keyframes's values are monotonically increasing
|
// Make sure time keyframes's values are monotonically increasing
|
||||||
int lastTime = 0;
|
int lastTime = 0;
|
||||||
for (Keyframe keyframe : timeline.getPaths().get(TIME_PATH).getKeyframes()) {
|
for (Keyframe keyframe : timeline.getTimePath().getKeyframes()) {
|
||||||
int time = keyframe.getValue(TimestampProperty.PROPERTY).orElseThrow(IllegalStateException::new);
|
int time = keyframe.getValue(TimestampProperty.PROPERTY).orElseThrow(IllegalStateException::new);
|
||||||
if (time < lastTime) {
|
if (time < lastTime) {
|
||||||
// We are going backwards in time
|
// We are going backwards in time
|
||||||
@@ -531,8 +527,8 @@ public class GuiPathing {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Make sure there are at least two position- and two time-keyframes
|
// Make sure there are at least two position- and two time-keyframes
|
||||||
if (timeline.getPaths().get(POSITION_PATH).getSegments().isEmpty()
|
if (timeline.getPositionPath().getSegments().isEmpty()
|
||||||
|| timeline.getPaths().get(TIME_PATH).getSegments().isEmpty()) {
|
|| timeline.getTimePath().getSegments().isEmpty()) {
|
||||||
GuiInfoPopup.open(replayHandler.getOverlay(), "replaymod.chat.morekeyframes");
|
GuiInfoPopup.open(replayHandler.getOverlay(), "replaymod.chat.morekeyframes");
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@@ -544,19 +540,19 @@ public class GuiPathing {
|
|||||||
scrollbar.setZoom(scrollbar.getZoom() * factor);
|
scrollbar.setZoom(scrollbar.getZoom() * factor);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public boolean ensureEntityTracker(Runnable withDelayedTracker) {
|
||||||
* Called when either one of the property buttons is pressed.
|
|
||||||
* @param isTime {@code true} for the time property button, {@code false} for the place property button
|
|
||||||
*/
|
|
||||||
private void updateKeyframe(final boolean isTime) {
|
|
||||||
if (entityTracker == null) {
|
if (entityTracker == null) {
|
||||||
|
LOGGER.debug("Entity tracker not yet loaded, delaying...");
|
||||||
LoadEntityTrackerPopup popup = new LoadEntityTrackerPopup(replayHandler.getOverlay());
|
LoadEntityTrackerPopup popup = new LoadEntityTrackerPopup(replayHandler.getOverlay());
|
||||||
entityTrackerLoadingProgress = p -> popup.progressBar.setProgress(p.floatValue());
|
entityTrackerLoadingProgress = p -> popup.progressBar.setProgress(p.floatValue());
|
||||||
Futures.addCallback(entityTrackerFuture, new FutureCallback<Void>() {
|
Futures.addCallback(entityTrackerFuture, new FutureCallback<Void>() {
|
||||||
@Override
|
@Override
|
||||||
public void onSuccess(@Nullable Void result) {
|
public void onSuccess(@Nullable Void result) {
|
||||||
popup.close();
|
popup.close();
|
||||||
updateKeyframe(isTime);
|
if (mod.getCurrentTimeline().getEntityTracker() == null) {
|
||||||
|
mod.getCurrentTimeline().setEntityTracker(entityTracker);
|
||||||
|
}
|
||||||
|
withDelayedTracker.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -564,184 +560,63 @@ public class GuiPathing {
|
|||||||
popup.close();
|
popup.close();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
if (mod.getCurrentTimeline().getEntityTracker() == null) {
|
||||||
|
mod.getCurrentTimeline().setEntityTracker(entityTracker);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Called when either one of the property buttons is pressed.
|
||||||
|
* @param path {@code TIME} for the time property button, {@code POSITION} for the place property button
|
||||||
|
*/
|
||||||
|
private void updateKeyframe(SPPath path) {
|
||||||
|
LOGGER.debug("Updating keyframe on path {}" + path);
|
||||||
|
if (!ensureEntityTracker(() -> updateKeyframe(path))) return;
|
||||||
|
|
||||||
int time = timeline.getCursorPosition();
|
int time = timeline.getCursorPosition();
|
||||||
Timeline timeline = mod.getCurrentTimeline();
|
SPTimeline timeline = mod.getCurrentTimeline();
|
||||||
Path path = timeline.getPaths().get(isTime ? TIME_PATH : POSITION_PATH);
|
|
||||||
|
|
||||||
Keyframe keyframe = mod.getSelectedKeyframe();
|
switch (path) {
|
||||||
if (keyframe != null && keyframe.getValue(TimestampProperty.PROPERTY).isPresent() ^ isTime) {
|
case TIME:
|
||||||
// Keyframe is on the wrong timeline
|
if (mod.getSelectedPath() == path) {
|
||||||
keyframe = null;
|
LOGGER.debug("Selected keyframe is time keyframe -> removing keyframe");
|
||||||
}
|
timeline.removeTimeKeyframe(mod.getSelectedTime());
|
||||||
if (keyframe == null) {
|
mod.setSelected(null, 0);
|
||||||
// No keyframe selected but there may still be one at this exact time
|
} else if (timeline.isTimeKeyframe(time)) {
|
||||||
keyframe = path.getKeyframe(time);
|
LOGGER.debug("Keyframe at cursor position is time keyframe -> removing keyframe");
|
||||||
}
|
timeline.removeTimeKeyframe(time);
|
||||||
Change change;
|
mod.setSelected(null, 0);
|
||||||
if (keyframe == null) {
|
} else {
|
||||||
change = AddKeyframe.create(path, time);
|
LOGGER.debug("No time keyframe found -> adding new keyframe");
|
||||||
change.apply(timeline);
|
timeline.addTimeKeyframe(time, replayHandler.getReplaySender().currentTimeStamp());
|
||||||
keyframe = path.getKeyframe(time);
|
mod.setSelected(path, time);
|
||||||
} else {
|
|
||||||
change = RemoveKeyframe.create(path, keyframe);
|
|
||||||
change.apply(timeline);
|
|
||||||
keyframe = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (keyframe != null) {
|
|
||||||
UpdateKeyframeProperties.Builder builder = UpdateKeyframeProperties.create(path, keyframe);
|
|
||||||
if (isTime) {
|
|
||||||
builder.setValue(TimestampProperty.PROPERTY, replayHandler.getReplaySender().currentTimeStamp());
|
|
||||||
} else {
|
|
||||||
CameraEntity camera = replayHandler.getCameraEntity();
|
|
||||||
builder.setValue(CameraProperties.POSITION, Triple.of(camera.posX, camera.posY, camera.posZ));
|
|
||||||
builder.setValue(CameraProperties.ROTATION, Triple.of(camera.rotationYaw, camera.rotationPitch, camera.roll));
|
|
||||||
if (!replayHandler.isCameraView()) {
|
|
||||||
Entity spectated = replayHandler.getOverlay().getMinecraft().getRenderViewEntity();
|
|
||||||
builder.setValue(SpectatorProperty.PROPERTY, spectated.getEntityId());
|
|
||||||
}
|
}
|
||||||
}
|
break;
|
||||||
UpdateKeyframeProperties updateChange = builder.done();
|
case POSITION:
|
||||||
updateChange.apply(timeline);
|
if (mod.getSelectedPath() == path) {
|
||||||
change = CombinedChange.createFromApplied(change, updateChange);
|
LOGGER.debug("Selected keyframe is position keyframe -> removing keyframe");
|
||||||
|
timeline.removePositionKeyframe(mod.getSelectedTime());
|
||||||
// If this new keyframe formed the first segment of the time path
|
mod.setSelected(null, 0);
|
||||||
if (isTime && path.getSegments().size() == 1) {
|
} else if (timeline.isPositionKeyframe(time)) {
|
||||||
PathSegment segment = path.getSegments().iterator().next();
|
LOGGER.debug("Keyframe at cursor position is position keyframe -> removing keyframe");
|
||||||
Interpolator interpolator = new LinearInterpolator();
|
timeline.removePositionKeyframe(time);
|
||||||
interpolator.registerProperty(TimestampProperty.PROPERTY);
|
mod.setSelected(null, 0);
|
||||||
SetInterpolator setInterpolator = SetInterpolator.create(segment, interpolator);
|
} else {
|
||||||
setInterpolator.apply(timeline);
|
LOGGER.debug("No position keyframe found -> adding new keyframe");
|
||||||
change = CombinedChange.createFromApplied(change, setInterpolator);
|
CameraEntity camera = replayHandler.getCameraEntity();
|
||||||
}
|
int spectatedId = -1;
|
||||||
}
|
if (!replayHandler.isCameraView()) {
|
||||||
|
spectatedId = replayHandler.getOverlay().getMinecraft().getRenderViewEntity().getEntityId();
|
||||||
// Update interpolators for spectator keyframes
|
}
|
||||||
// while this is overkill, it is far simpler than updating differently for every possible case
|
timeline.addPositionKeyframe(time, camera.posX, camera.posY, camera.posZ,
|
||||||
if (!isTime) {
|
camera.rotationYaw, camera.rotationPitch, camera.roll, spectatedId);
|
||||||
Change interpolators = updateInterpolators();
|
mod.setSelected(path, time);
|
||||||
interpolators.apply(timeline);
|
|
||||||
change = CombinedChange.createFromApplied(change, interpolators);
|
|
||||||
}
|
|
||||||
|
|
||||||
Change specPosUpdate = updateSpectatorPositions();
|
|
||||||
specPosUpdate.apply(timeline);
|
|
||||||
change = CombinedChange.createFromApplied(change, specPosUpdate);
|
|
||||||
|
|
||||||
timeline.pushChange(change);
|
|
||||||
|
|
||||||
mod.setSelectedKeyframe(keyframe);
|
|
||||||
}
|
|
||||||
|
|
||||||
public Change updateInterpolators() {
|
|
||||||
boolean linearInterpolation = mod.getCore().getSettingsRegistry().get(Setting.LINEAR_INTERPOLATION);
|
|
||||||
List<Change> changes = new ArrayList<>();
|
|
||||||
Interpolator interpolator = null;
|
|
||||||
boolean isSpectatorInterpolator = false;
|
|
||||||
for (PathSegment segment : mod.getCurrentTimeline().getPaths().get(POSITION_PATH).getSegments()) {
|
|
||||||
if (segment.getStartKeyframe().getValue(SpectatorProperty.PROPERTY).isPresent()
|
|
||||||
&& segment.getEndKeyframe().getValue(SpectatorProperty.PROPERTY).isPresent()) {
|
|
||||||
// Spectator segment
|
|
||||||
if (!isSpectatorInterpolator) {
|
|
||||||
isSpectatorInterpolator = true;
|
|
||||||
interpolator = new LinearInterpolator();
|
|
||||||
interpolator.registerProperty(SpectatorProperty.PROPERTY);
|
|
||||||
}
|
}
|
||||||
changes.add(SetInterpolator.create(segment, interpolator));
|
break;
|
||||||
} else {
|
|
||||||
// Normal segment
|
|
||||||
if (isSpectatorInterpolator || interpolator == null) {
|
|
||||||
isSpectatorInterpolator = false;
|
|
||||||
interpolator = linearInterpolation ? new LinearInterpolator() : new CubicSplineInterpolator();
|
|
||||||
interpolator.registerProperty(CameraProperties.POSITION);
|
|
||||||
interpolator.registerProperty(CameraProperties.ROTATION);
|
|
||||||
}
|
|
||||||
changes.add(SetInterpolator.create(segment, interpolator));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return CombinedChange.create(changes.toArray(new Change[changes.size()]));
|
|
||||||
}
|
|
||||||
|
|
||||||
public Change updateSpectatorPositions() {
|
|
||||||
List<Change> changes = new ArrayList<>();
|
|
||||||
Path positionPath = mod.getCurrentTimeline().getPaths().get(POSITION_PATH);
|
|
||||||
Path timePath = mod.getCurrentTimeline().getPaths().get(TIME_PATH);
|
|
||||||
timePath.updateAll();
|
|
||||||
for (Keyframe keyframe : positionPath.getKeyframes()) {
|
|
||||||
Optional<Integer> spectator = keyframe.getValue(SpectatorProperty.PROPERTY);
|
|
||||||
if (spectator.isPresent()) {
|
|
||||||
Optional<Integer> time = timePath.getValue(TimestampProperty.PROPERTY, keyframe.getTime());
|
|
||||||
if (!time.isPresent()) {
|
|
||||||
continue; // No time keyframes set at this video time, cannot determine replay time
|
|
||||||
}
|
|
||||||
Location expected = entityTracker.getEntityPositionAtTimestamp(spectator.get(), time.get());
|
|
||||||
if (expected == null) {
|
|
||||||
continue; // We don't have any data on this entity for some reason
|
|
||||||
}
|
|
||||||
Triple<Double, Double, Double> pos = keyframe.getValue(CameraProperties.POSITION).orElse(Triple.of(0D, 0D, 0D));
|
|
||||||
Triple<Float, Float, Float> rot = keyframe.getValue(CameraProperties.ROTATION).orElse(Triple.of(0F, 0F, 0F));
|
|
||||||
Location actual = new Location(pos.getLeft(), pos.getMiddle(), pos.getRight(), rot.getLeft(), rot.getRight());
|
|
||||||
if (!expected.equals(actual)) {
|
|
||||||
changes.add(UpdateKeyframeProperties.create(positionPath, keyframe)
|
|
||||||
.setValue(CameraProperties.POSITION, Triple.of(expected.getX(), expected.getY(), expected.getZ()))
|
|
||||||
.setValue(CameraProperties.ROTATION, Triple.of(expected.getYaw(), expected.getPitch(), 0f)).done()
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return CombinedChange.create(changes.toArray(new Change[changes.size()]));
|
|
||||||
}
|
|
||||||
|
|
||||||
public Change moveKeyframe(Path path, Keyframe keyframe, long newTime) {
|
|
||||||
Timeline timeline = mod.getCurrentTimeline();
|
|
||||||
// Interpolator might be required later (only if path is the time path)
|
|
||||||
Optional<Interpolator> interpolator =
|
|
||||||
path.getSegments().stream().findFirst().map(PathSegment::getInterpolator);
|
|
||||||
|
|
||||||
// First remove the old keyframe
|
|
||||||
Change removeChange = RemoveKeyframe.create(path, keyframe);
|
|
||||||
removeChange.apply(timeline);
|
|
||||||
|
|
||||||
// and add a new one at the correct time
|
|
||||||
Change addChange = AddKeyframe.create(path, newTime);
|
|
||||||
addChange.apply(timeline);
|
|
||||||
path.getKeyframe(newTime);
|
|
||||||
|
|
||||||
// Then copy over all properties
|
|
||||||
UpdateKeyframeProperties.Builder builder = UpdateKeyframeProperties.create(path, path.getKeyframe(newTime));
|
|
||||||
for (Property property : keyframe.getProperties()) {
|
|
||||||
copyProperty(property, keyframe, builder);
|
|
||||||
}
|
|
||||||
Change propertyChange = builder.done();
|
|
||||||
propertyChange.apply(timeline);
|
|
||||||
|
|
||||||
// Finally set the interpolators
|
|
||||||
Change interpolatorChange;
|
|
||||||
if (path.getTimeline().getPaths().indexOf(path) == GuiPathing.POSITION_PATH) {
|
|
||||||
// Position / Spectator keyframes need special handling
|
|
||||||
interpolatorChange = updateInterpolators();
|
|
||||||
} else {
|
|
||||||
// Time keyframes only need updating when only one segment of them exists
|
|
||||||
if (path.getSegments().size() == 1) {
|
|
||||||
interpolatorChange = SetInterpolator.create(path.getSegments().iterator().next(), interpolator.get());
|
|
||||||
} else {
|
|
||||||
interpolatorChange = CombinedChange.create(); // Noop change
|
|
||||||
}
|
|
||||||
}
|
|
||||||
interpolatorChange.apply(timeline);
|
|
||||||
// and update spectator positions
|
|
||||||
Change spectatorChange = updateSpectatorPositions();
|
|
||||||
spectatorChange.apply(timeline);
|
|
||||||
|
|
||||||
return CombinedChange.createFromApplied(removeChange, addChange, propertyChange, interpolatorChange, spectatorChange);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Helper method because generics cannot be defined on blocks
|
|
||||||
private <T> void copyProperty(Property<T> property, Keyframe from, UpdateKeyframeProperties.Builder to) {
|
|
||||||
from.getValue(property).ifPresent(value -> to.setValue(property, value));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public ReplayModSimplePathing getMod() {
|
public ReplayModSimplePathing getMod() {
|
||||||
@@ -752,13 +627,15 @@ public class GuiPathing {
|
|||||||
return entityTracker;
|
return entityTracker;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void openEditKeyframePopup(Path path, Keyframe keyframe) {
|
public void openEditKeyframePopup(SPPath path, long time) {
|
||||||
|
if (!ensureEntityTracker(() -> openEditKeyframePopup(path, time))) return;
|
||||||
|
Keyframe keyframe = mod.getCurrentTimeline().getKeyframe(path, time);
|
||||||
if (keyframe.getProperties().contains(SpectatorProperty.PROPERTY)) {
|
if (keyframe.getProperties().contains(SpectatorProperty.PROPERTY)) {
|
||||||
new GuiEditKeyframe.Spectator(this, path, keyframe).open();
|
new GuiEditKeyframe.Spectator(this, path, keyframe.getTime()).open();
|
||||||
} else if (keyframe.getProperties().contains(CameraProperties.POSITION)) {
|
} else if (keyframe.getProperties().contains(CameraProperties.POSITION)) {
|
||||||
new GuiEditKeyframe.Position(this, path, keyframe).open();
|
new GuiEditKeyframe.Position(this, path, keyframe.getTime()).open();
|
||||||
} else {
|
} else {
|
||||||
new GuiEditKeyframe.Time(this, path, keyframe).open();
|
new GuiEditKeyframe.Time(this, path, keyframe.getTime()).open();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,16 +9,15 @@ import com.replaymod.replaystudio.pathing.interpolation.Interpolator;
|
|||||||
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
||||||
import com.replaymod.replaystudio.pathing.path.Path;
|
import com.replaymod.replaystudio.pathing.path.Path;
|
||||||
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
||||||
import com.replaymod.replaystudio.pathing.path.Timeline;
|
|
||||||
import com.replaymod.replaystudio.util.EntityPositionTracker;
|
import com.replaymod.replaystudio.util.EntityPositionTracker;
|
||||||
import com.replaymod.replaystudio.util.Location;
|
import com.replaymod.replaystudio.util.Location;
|
||||||
import com.replaymod.simplepathing.ReplayModSimplePathing;
|
import com.replaymod.simplepathing.ReplayModSimplePathing;
|
||||||
|
import com.replaymod.simplepathing.SPTimeline;
|
||||||
import com.replaymod.simplepathing.gui.GuiPathing;
|
import com.replaymod.simplepathing.gui.GuiPathing;
|
||||||
import net.minecraft.client.Minecraft;
|
import net.minecraft.client.Minecraft;
|
||||||
import net.minecraft.client.renderer.GlStateManager;
|
import net.minecraft.client.renderer.GlStateManager;
|
||||||
import net.minecraft.client.renderer.Tessellator;
|
import net.minecraft.client.renderer.Tessellator;
|
||||||
import net.minecraft.client.renderer.WorldRenderer;
|
import net.minecraft.client.renderer.WorldRenderer;
|
||||||
import net.minecraft.client.renderer.vertex.DefaultVertexFormats;
|
|
||||||
import net.minecraft.entity.Entity;
|
import net.minecraft.entity.Entity;
|
||||||
import net.minecraft.util.ResourceLocation;
|
import net.minecraft.util.ResourceLocation;
|
||||||
import net.minecraftforge.client.event.RenderWorldLastEvent;
|
import net.minecraftforge.client.event.RenderWorldLastEvent;
|
||||||
@@ -68,11 +67,11 @@ public class PathPreviewRenderer {
|
|||||||
if (guiPathing == null) return;
|
if (guiPathing == null) return;
|
||||||
EntityPositionTracker entityTracker = guiPathing.getEntityTracker();
|
EntityPositionTracker entityTracker = guiPathing.getEntityTracker();
|
||||||
|
|
||||||
Timeline timeline = mod.getCurrentTimeline();
|
SPTimeline timeline = mod.getCurrentTimeline();
|
||||||
if (timeline == null) return;
|
if (timeline == null) return;
|
||||||
Path path = timeline.getPaths().get(GuiPathing.POSITION_PATH);
|
Path path = timeline.getPositionPath();
|
||||||
if (path.getKeyframes().isEmpty()) return;
|
if (path.getKeyframes().isEmpty()) return;
|
||||||
Path timePath = timeline.getPaths().get(GuiPathing.TIME_PATH);
|
Path timePath = timeline.getTimePath();
|
||||||
|
|
||||||
path.update();
|
path.update();
|
||||||
|
|
||||||
@@ -97,8 +96,8 @@ public class PathPreviewRenderer {
|
|||||||
if (spectator && entityTracker == null) {
|
if (spectator && entityTracker == null) {
|
||||||
continue; // Cannot render spectator positions when entity tracker is not yet loaded
|
continue; // Cannot render spectator positions when entity tracker is not yet loaded
|
||||||
}
|
}
|
||||||
// Spectator segments have 20 lines per second whereas normal segments have a fixed 100
|
// Spectator segments have 20 lines per second (at least 10) whereas normal segments have a fixed 100
|
||||||
long steps = spectator ? diff / 50 : 100;
|
long steps = spectator ? Math.max(diff / 50, 10) : 100;
|
||||||
Triple<Double, Double, Double> prevPos = null;
|
Triple<Double, Double, Double> prevPos = null;
|
||||||
for (int i = 0; i <= steps; i++) {
|
for (int i = 0; i <= steps; i++) {
|
||||||
long time = start.getTime() + diff * i / steps;
|
long time = start.getTime() + diff * i / steps;
|
||||||
@@ -204,35 +203,26 @@ public class PathPreviewRenderer {
|
|||||||
if (distanceSquared(view, pos2) > renderDistanceSquared) return;
|
if (distanceSquared(view, pos2) > renderDistanceSquared) return;
|
||||||
|
|
||||||
Tessellator tessellator = Tessellator.getInstance();
|
Tessellator tessellator = Tessellator.getInstance();
|
||||||
WorldRenderer vertexBuffer = tessellator.getWorldRenderer();
|
WorldRenderer renderer = tessellator.getWorldRenderer();
|
||||||
vertexBuffer.setTranslation(-view.getLeft(), -view.getMiddle(), -view.getRight());
|
renderer.setTranslation(-view.getLeft(), -view.getMiddle(), -view.getRight());
|
||||||
|
|
||||||
vertexBuffer.begin(GL11.GL_LINES, DefaultVertexFormats.POSITION_COLOR);
|
renderer.startDrawing(GL11.GL_LINES);
|
||||||
|
renderer.setColorRGBA_I(color, 255);
|
||||||
|
|
||||||
vertexBuffer.pos(pos1.getLeft(), pos1.getMiddle(), pos1.getRight()).color(
|
renderer.addVertex(pos1.getLeft(), pos1.getMiddle(), pos1.getRight());
|
||||||
color >> 16 & 0xff,
|
renderer.addVertex(pos2.getLeft(), pos2.getMiddle(), pos2.getRight());
|
||||||
color >> 8 & 0xff,
|
|
||||||
color & 0xff,
|
|
||||||
255
|
|
||||||
).endVertex();
|
|
||||||
vertexBuffer.pos(pos2.getLeft(), pos2.getMiddle(), pos2.getRight()).color(
|
|
||||||
color >> 16 & 0xff,
|
|
||||||
color >> 8 & 0xff,
|
|
||||||
color & 0xff,
|
|
||||||
255
|
|
||||||
).endVertex();
|
|
||||||
|
|
||||||
GL11.glLineWidth(3);
|
GL11.glLineWidth(3);
|
||||||
tessellator.draw();
|
tessellator.draw();
|
||||||
vertexBuffer.setTranslation(0, 0, 0);
|
renderer.setTranslation(0, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void drawPoint(Triple<Double, Double, Double> view,
|
private void drawPoint(Triple<Double, Double, Double> view,
|
||||||
Triple<Double, Double, Double> pos,
|
Triple<Double, Double, Double> pos,
|
||||||
Keyframe keyframe) {
|
Keyframe keyframe) {
|
||||||
Tessellator tessellator = Tessellator.getInstance();
|
Tessellator tessellator = Tessellator.getInstance();
|
||||||
WorldRenderer vertexBuffer = tessellator.getWorldRenderer();
|
WorldRenderer renderer = tessellator.getWorldRenderer();
|
||||||
vertexBuffer.setTranslation(0, 0, 0);
|
renderer.setTranslation(0, 0, 0);
|
||||||
|
|
||||||
mc.renderEngine.bindTexture(TEXTURE);
|
mc.renderEngine.bindTexture(TEXTURE);
|
||||||
|
|
||||||
@@ -240,7 +230,7 @@ public class PathPreviewRenderer {
|
|||||||
float posY = 0f;
|
float posY = 0f;
|
||||||
float size = 10f / ReplayMod.TEXTURE_SIZE;
|
float size = 10f / ReplayMod.TEXTURE_SIZE;
|
||||||
|
|
||||||
if (keyframe == mod.getSelectedKeyframe()) {
|
if (mod.isSelected(keyframe)) {
|
||||||
posY += size;
|
posY += size;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -253,12 +243,12 @@ public class PathPreviewRenderer {
|
|||||||
float maxX = 0.5f;
|
float maxX = 0.5f;
|
||||||
float maxY = 0.5f;
|
float maxY = 0.5f;
|
||||||
|
|
||||||
vertexBuffer.begin(GL11.GL_QUADS, DefaultVertexFormats.POSITION_TEX);
|
renderer.startDrawingQuads();
|
||||||
|
|
||||||
vertexBuffer.pos(minX, minY, 0).tex(posX + size, posY + size).endVertex();
|
renderer.addVertexWithUV(minX, minY, 0, posX + size, posY + size);
|
||||||
vertexBuffer.pos(minX, maxY, 0).tex(posX + size, posY).endVertex();
|
renderer.addVertexWithUV(minX, maxY, 0, posX + size, posY);
|
||||||
vertexBuffer.pos(maxX, maxY, 0).tex(posX, posY).endVertex();
|
renderer.addVertexWithUV(maxX, maxY, 0, posX, posY);
|
||||||
vertexBuffer.pos(maxX, minY, 0).tex(posX, posY + size).endVertex();
|
renderer.addVertexWithUV(maxX, minY, 0, posX, posY + size);
|
||||||
|
|
||||||
GL11.glPushMatrix();
|
GL11.glPushMatrix();
|
||||||
|
|
||||||
@@ -280,8 +270,8 @@ public class PathPreviewRenderer {
|
|||||||
Triple<Double, Double, Double> pos,
|
Triple<Double, Double, Double> pos,
|
||||||
Triple<Float, Float, Float> rot) {
|
Triple<Float, Float, Float> rot) {
|
||||||
Tessellator tessellator = Tessellator.getInstance();
|
Tessellator tessellator = Tessellator.getInstance();
|
||||||
WorldRenderer vertexBuffer = tessellator.getWorldRenderer();
|
WorldRenderer renderer = tessellator.getWorldRenderer();
|
||||||
vertexBuffer.setTranslation(0, 0, 0);
|
renderer.setTranslation(0, 0, 0);
|
||||||
|
|
||||||
mc.renderEngine.bindTexture(CAMERA_HEAD);
|
mc.renderEngine.bindTexture(CAMERA_HEAD);
|
||||||
|
|
||||||
@@ -299,10 +289,12 @@ public class PathPreviewRenderer {
|
|||||||
|
|
||||||
//draw the position line
|
//draw the position line
|
||||||
GL11.glDisable(GL11.GL_TEXTURE_2D);
|
GL11.glDisable(GL11.GL_TEXTURE_2D);
|
||||||
vertexBuffer.begin(GL11.GL_LINES, DefaultVertexFormats.POSITION_COLOR);
|
renderer.startDrawing(GL11.GL_LINES);
|
||||||
|
|
||||||
vertexBuffer.pos(0, 0, 0).color(0, 255, 0, 170).endVertex();
|
renderer.setColorRGBA_I(0x00ff00, 170);
|
||||||
vertexBuffer.pos(0, 0, 2).color(0, 255, 0, 170).endVertex();
|
|
||||||
|
renderer.addVertex(0, 0, 0);
|
||||||
|
renderer.addVertex(0, 0, 2);
|
||||||
|
|
||||||
tessellator.draw();
|
tessellator.draw();
|
||||||
|
|
||||||
@@ -313,43 +305,45 @@ public class PathPreviewRenderer {
|
|||||||
|
|
||||||
double r = -cubeSize/2;
|
double r = -cubeSize/2;
|
||||||
|
|
||||||
vertexBuffer.begin(GL11.GL_QUADS, DefaultVertexFormats.POSITION_TEX_COLOR);
|
renderer.startDrawingQuads();
|
||||||
|
|
||||||
|
renderer.setColorRGBA_I(0xffffff, 200);
|
||||||
|
|
||||||
//back
|
//back
|
||||||
vertexBuffer.pos(r, r + cubeSize, r).tex(3 * 8 / 64f, 8 / 64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r + cubeSize, r, 3 * 8 / 64f, 8 / 64f);
|
||||||
vertexBuffer.pos(r + cubeSize, r + cubeSize, r).tex(4*8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r + cubeSize, r, 4*8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r + cubeSize, r, r).tex(4*8/64f, 2*8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r, r, 4*8/64f, 2*8/64f);
|
||||||
vertexBuffer.pos(r, r, r).tex(3*8/64f, 2*8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r, r, 3*8/64f, 2*8/64f);
|
||||||
|
|
||||||
//front
|
//front
|
||||||
vertexBuffer.pos(r + cubeSize, r, r + cubeSize).tex(2 * 8 / 64f, 2*8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r, r + cubeSize, 2 * 8 / 64f, 2*8/64f);
|
||||||
vertexBuffer.pos(r + cubeSize, r + cubeSize, r + cubeSize).tex(2 * 8 / 64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r + cubeSize, r + cubeSize, 2 * 8 / 64f, 8/64f);
|
||||||
vertexBuffer.pos(r, r + cubeSize, r + cubeSize).tex(8 / 64f, 8 / 64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r + cubeSize, r + cubeSize, 8 / 64f, 8 / 64f);
|
||||||
vertexBuffer.pos(r, r, r + cubeSize).tex(8 / 64f, 2*8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r, r + cubeSize, 8 / 64f, 2*8/64f);
|
||||||
|
|
||||||
//left
|
//left
|
||||||
vertexBuffer.pos(r + cubeSize, r + cubeSize, r).tex(0, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r + cubeSize, r, 0, 8/64f);
|
||||||
vertexBuffer.pos(r + cubeSize, r + cubeSize, r + cubeSize).tex(8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r + cubeSize, r + cubeSize, 8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r + cubeSize, r, r + cubeSize).tex(8/64f, 2*8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r, r + cubeSize, 8/64f, 2*8/64f);
|
||||||
vertexBuffer.pos(r+cubeSize, r, r).tex(0, 2*8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r+cubeSize, r, r, 0, 2*8/64f);
|
||||||
|
|
||||||
//right
|
//right
|
||||||
vertexBuffer.pos(r, r + cubeSize, r + cubeSize).tex(2*8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r + cubeSize, r + cubeSize, 2*8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r, r + cubeSize, r).tex(3*8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r + cubeSize, r, 3*8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r, r, r).tex(3*8/64f, 2*8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r, r, 3*8/64f, 2*8/64f);
|
||||||
vertexBuffer.pos(r, r, r + cubeSize).tex(2 * 8 / 64f, 2 * 8 / 64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r, r + cubeSize, 2 * 8 / 64f, 2 * 8 / 64f);
|
||||||
|
|
||||||
//bottom
|
//bottom
|
||||||
vertexBuffer.pos(r + cubeSize, r, r).tex(3*8/64f, 0).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r, r, 3*8/64f, 0);
|
||||||
vertexBuffer.pos(r + cubeSize, r, r + cubeSize).tex(3*8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r, r + cubeSize, 3*8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r, r, r + cubeSize).tex(2*8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r, r + cubeSize, 2*8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r, r, r).tex(2 * 8 / 64f, 0).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r, r, 2 * 8 / 64f, 0);
|
||||||
|
|
||||||
//top
|
//top
|
||||||
vertexBuffer.pos(r, r + cubeSize, r).tex(8/64f, 0).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r + cubeSize, r, 8/64f, 0);
|
||||||
vertexBuffer.pos(r, r + cubeSize, r + cubeSize).tex(8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r, r + cubeSize, r + cubeSize, 8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r + cubeSize, r + cubeSize, r + cubeSize).tex(2*8/64f, 8/64f).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r + cubeSize, r + cubeSize, 2*8/64f, 8/64f);
|
||||||
vertexBuffer.pos(r + cubeSize, r + cubeSize, r).tex(2 * 8 / 64f, 0).color(255, 255, 255, 200).endVertex();
|
renderer.addVertexWithUV(r + cubeSize, r + cubeSize, r, 2 * 8 / 64f, 0);
|
||||||
|
|
||||||
tessellator.draw();
|
tessellator.draw();
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,44 @@
|
|||||||
|
package com.replaymod.simplepathing.properties;
|
||||||
|
|
||||||
|
import com.google.gson.stream.JsonReader;
|
||||||
|
import com.google.gson.stream.JsonWriter;
|
||||||
|
import com.replaymod.replaystudio.pathing.property.AbstractProperty;
|
||||||
|
import com.replaymod.replaystudio.pathing.property.PropertyPart;
|
||||||
|
import lombok.NonNull;
|
||||||
|
import org.apache.commons.lang3.ObjectUtils;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.Collections;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Property indicating that the next path segment's interpolator is fixed
|
||||||
|
*/
|
||||||
|
public class ExplicitInterpolationProperty extends AbstractProperty<Object> {
|
||||||
|
public static final ExplicitInterpolationProperty PROPERTY = new ExplicitInterpolationProperty();
|
||||||
|
|
||||||
|
private ExplicitInterpolationProperty() {
|
||||||
|
super("interpolationFixed", "<internal>", null, new Object());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Collection<PropertyPart<Object>> getParts() {
|
||||||
|
return Collections.emptyList();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void applyToGame(Object value, @NonNull Object replayHandler) {
|
||||||
|
// dummy property, do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void toJson(JsonWriter writer, Object value) throws IOException {
|
||||||
|
writer.nullValue();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object fromJson(JsonReader reader) throws IOException {
|
||||||
|
reader.nextNull();
|
||||||
|
return ObjectUtils.NULL;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -292,6 +292,7 @@ replaymod.gui.settings.title=Replay Mod Settings
|
|||||||
|
|
||||||
replaymod.gui.settings.interpolation.linear=Linear
|
replaymod.gui.settings.interpolation.linear=Linear
|
||||||
replaymod.gui.settings.interpolation.cubic=Cubic
|
replaymod.gui.settings.interpolation.cubic=Cubic
|
||||||
|
replaymod.gui.settings.interpolation.catmullrom=Catmull Rom
|
||||||
|
|
||||||
replaymod.gui.settings.bitrate=Video Bitrate
|
replaymod.gui.settings.bitrate=Video Bitrate
|
||||||
replaymod.gui.settings.framerate=Video Framerate
|
replaymod.gui.settings.framerate=Video Framerate
|
||||||
@@ -309,6 +310,7 @@ replaymod.gui.settings.keyframecleancallback=Clear Confirmation
|
|||||||
replaymod.gui.settings.renderinvisible=Render invisible Entities
|
replaymod.gui.settings.renderinvisible=Render invisible Entities
|
||||||
replaymod.gui.settings.camera=Camera
|
replaymod.gui.settings.camera=Camera
|
||||||
replaymod.gui.settings.showchat=Show Chat
|
replaymod.gui.settings.showchat=Show Chat
|
||||||
|
replaymod.gui.settings.interpolator=Default Interpolator
|
||||||
|
|
||||||
replaymod.gui.settings.warning.linea=WARNING: Recording settings will be
|
replaymod.gui.settings.warning.linea=WARNING: Recording settings will be
|
||||||
replaymod.gui.settings.warning.lineb=applied the next time you join a world.
|
replaymod.gui.settings.warning.lineb=applied the next time you join a world.
|
||||||
@@ -372,6 +374,17 @@ replaymod.gui.editkeyframe.spec.method.shoulder.pitch=Pitch Offset
|
|||||||
replaymod.gui.editkeyframe.spec.method.shoulder.yaw=Rotation Angle
|
replaymod.gui.editkeyframe.spec.method.shoulder.yaw=Rotation Angle
|
||||||
replaymod.gui.editkeyframe.spec.method.shoulder.smoothness=Path Smoothness
|
replaymod.gui.editkeyframe.spec.method.shoulder.smoothness=Path Smoothness
|
||||||
|
|
||||||
|
replaymod.gui.editkeyframe.interpolator=Interpolator
|
||||||
|
replaymod.gui.editkeyframe.interpolator.default.name=Default Interpolator
|
||||||
|
replaymod.gui.editkeyframe.interpolator.default.desc=Uses the default interpolator defined in the Replay Mod Settings.
|
||||||
|
replaymod.gui.editkeyframe.interpolator.catmullrom.name=Catmull Rom Spline Interpolator
|
||||||
|
replaymod.gui.editkeyframe.interpolator.catmullrom.desc=Calculates a catmull rom spline with customizable alpha value for precise tightness and smoothness of the camera path.
|
||||||
|
replaymod.gui.editkeyframe.interpolator.catmullrom.alpha=Alpha:
|
||||||
|
replaymod.gui.editkeyframe.interpolator.cubic.name=Cubic Spline Interpolator
|
||||||
|
replaymod.gui.editkeyframe.interpolator.cubic.desc=Calculates a cubic equation matrix for all points for a smooth camera path.
|
||||||
|
replaymod.gui.editkeyframe.interpolator.linear.name=Linear Interpolator
|
||||||
|
replaymod.gui.editkeyframe.interpolator.linear.desc=Draws straight lines between the keyframes.
|
||||||
|
|
||||||
#Render Settings GUI
|
#Render Settings GUI
|
||||||
replaymod.gui.rendersettings.title=Rendering Options
|
replaymod.gui.rendersettings.title=Rendering Options
|
||||||
replaymod.gui.rendersettings.renderer=Rendering Method
|
replaymod.gui.rendersettings.renderer=Rendering Method
|
||||||
|
|||||||
20
src/main/resources/dst_root_ca_x3.pem
Normal file
20
src/main/resources/dst_root_ca_x3.pem
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
-----BEGIN CERTIFICATE-----
|
||||||
|
MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/
|
||||||
|
MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT
|
||||||
|
DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow
|
||||||
|
PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD
|
||||||
|
Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
|
||||||
|
AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O
|
||||||
|
rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq
|
||||||
|
OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b
|
||||||
|
xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw
|
||||||
|
7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD
|
||||||
|
aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV
|
||||||
|
HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG
|
||||||
|
SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69
|
||||||
|
ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr
|
||||||
|
AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz
|
||||||
|
R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5
|
||||||
|
JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo
|
||||||
|
Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ
|
||||||
|
-----END CERTIFICATE-----
|
||||||
626
src/test/java/com/replaymod/simplepathing/SPTimelineTest.java
Normal file
626
src/test/java/com/replaymod/simplepathing/SPTimelineTest.java
Normal file
@@ -0,0 +1,626 @@
|
|||||||
|
package com.replaymod.simplepathing;
|
||||||
|
|
||||||
|
import com.google.common.collect.Iterables;
|
||||||
|
import com.replaymod.pathing.properties.CameraProperties;
|
||||||
|
import com.replaymod.pathing.properties.SpectatorProperty;
|
||||||
|
import com.replaymod.pathing.properties.TimestampProperty;
|
||||||
|
import com.replaymod.replaystudio.pathing.change.Change;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.CatmullRomSplineInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.Interpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.interpolation.LinearInterpolator;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.Keyframe;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.Path;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.PathSegment;
|
||||||
|
import com.replaymod.replaystudio.pathing.path.Timeline;
|
||||||
|
import com.replaymod.replaystudio.util.EntityPositionTracker;
|
||||||
|
import com.replaymod.replaystudio.util.Location;
|
||||||
|
import com.replaymod.simplepathing.SPTimeline.SPPath;
|
||||||
|
import org.apache.commons.lang3.tuple.Triple;
|
||||||
|
import org.apache.logging.log4j.LogManager;
|
||||||
|
import org.junit.Before;
|
||||||
|
import org.junit.BeforeClass;
|
||||||
|
import org.junit.Test;
|
||||||
|
|
||||||
|
import java.util.Collections;
|
||||||
|
import java.util.Comparator;
|
||||||
|
import java.util.IdentityHashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
import java.util.Optional;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
|
import static org.junit.Assert.assertEquals;
|
||||||
|
import static org.junit.Assert.assertFalse;
|
||||||
|
import static org.junit.Assert.assertNotNull;
|
||||||
|
import static org.junit.Assert.assertNull;
|
||||||
|
import static org.junit.Assert.assertSame;
|
||||||
|
import static org.junit.Assert.assertTrue;
|
||||||
|
|
||||||
|
public class SPTimelineTest {
|
||||||
|
private SPTimeline impl;
|
||||||
|
private Timeline timeline;
|
||||||
|
|
||||||
|
@BeforeClass
|
||||||
|
public static void setupLogger() {
|
||||||
|
ReplayModSimplePathing.LOGGER = LogManager.getLogger();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Before
|
||||||
|
public void setup() {
|
||||||
|
impl = new SPTimeline();
|
||||||
|
impl.setDefaultInterpolatorType(InterpolatorType.CUBIC);
|
||||||
|
impl.setEntityTracker(new EntityPositionTrackerMock());
|
||||||
|
timeline = impl.getTimeline();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetPath() {
|
||||||
|
assertSame(impl.getTimeline().getPaths().get(0), impl.getTimePath());
|
||||||
|
assertSame(impl.getTimeline().getPaths().get(0), impl.getPath(SPPath.TIME));
|
||||||
|
assertSame(impl.getTimeline().getPaths().get(1), impl.getPositionPath());
|
||||||
|
assertSame(impl.getTimeline().getPaths().get(1), impl.getPath(SPPath.POSITION));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testGetKeyframe() {
|
||||||
|
assertSame(timeline.getPaths().get(0).insert(123), impl.getKeyframe(SPPath.TIME, 123));
|
||||||
|
assertSame(timeline.getPaths().get(1).insert(456), impl.getKeyframe(SPPath.POSITION, 456));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testIsTimeKeyframe() {
|
||||||
|
impl.getTimePath().insert(123);
|
||||||
|
impl.getPositionPath().insert(456);
|
||||||
|
impl.getPositionPath().insert(42).setValue(SpectatorProperty.PROPERTY, 42);
|
||||||
|
assertTrue(impl.isTimeKeyframe(123));
|
||||||
|
assertFalse(impl.isTimeKeyframe(456));
|
||||||
|
assertFalse(impl.isTimeKeyframe(789));
|
||||||
|
assertFalse(impl.isTimeKeyframe(42));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testIsPositionKeyframe() {
|
||||||
|
impl.getTimePath().insert(123);
|
||||||
|
impl.getPositionPath().insert(456);
|
||||||
|
impl.getPositionPath().insert(42).setValue(SpectatorProperty.PROPERTY, 42);
|
||||||
|
assertFalse(impl.isPositionKeyframe(123));
|
||||||
|
assertTrue(impl.isPositionKeyframe(456));
|
||||||
|
assertFalse(impl.isPositionKeyframe(789));
|
||||||
|
assertTrue(impl.isSpectatorKeyframe(42));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testIsSpectatorKeyframe() {
|
||||||
|
impl.getTimePath().insert(123);
|
||||||
|
impl.getPositionPath().insert(456);
|
||||||
|
impl.getPositionPath().insert(42).setValue(SpectatorProperty.PROPERTY, 42);
|
||||||
|
assertFalse(impl.isSpectatorKeyframe(123));
|
||||||
|
assertFalse(impl.isSpectatorKeyframe(456));
|
||||||
|
assertFalse(impl.isSpectatorKeyframe(789));
|
||||||
|
assertTrue(impl.isSpectatorKeyframe(42));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddPositionKeyframe() {
|
||||||
|
assertNull(timeline.peekUndoStack());
|
||||||
|
impl.addPositionKeyframe(0, 1, 2, 3, 4, 5, 6, -1);
|
||||||
|
assertNotNull(timeline.peekUndoStack());
|
||||||
|
Keyframe keyframe = impl.getKeyframe(SPPath.POSITION, 0);
|
||||||
|
assertNotNull(keyframe);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(1d, 2d, 3d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(4f, 5f, 6f)));
|
||||||
|
assertFalse(keyframe.getValue(SpectatorProperty.PROPERTY).isPresent());
|
||||||
|
timeline.undoLastChange();
|
||||||
|
assertNull(timeline.peekUndoStack());
|
||||||
|
assertNull(impl.getKeyframe(SPPath.POSITION, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddPositionKeyframeSpectator() {
|
||||||
|
assertNull(timeline.peekUndoStack());
|
||||||
|
impl.addPositionKeyframe(0, 1, 2, 3, 4, 5, 6, 7);
|
||||||
|
assertNotNull(timeline.peekUndoStack());
|
||||||
|
Keyframe keyframe = impl.getKeyframe(SPPath.POSITION, 0);
|
||||||
|
assertNotNull(keyframe);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(1d, 2d, 3d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(4f, 5f, 6f)));
|
||||||
|
assertEquals(keyframe.getValue(SpectatorProperty.PROPERTY), Optional.of(7));
|
||||||
|
timeline.undoLastChange();
|
||||||
|
assertNull(timeline.peekUndoStack());
|
||||||
|
assertNull(impl.getKeyframe(SPPath.POSITION, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testPositionKeyframeSpectatorPosition() {
|
||||||
|
Keyframe keyframe;
|
||||||
|
impl.addTimeKeyframe(0, 0);
|
||||||
|
impl.addTimeKeyframe(9, 9);
|
||||||
|
|
||||||
|
impl.addPositionKeyframe(4, 1, 2, 3, 4, 5, 6, 1);
|
||||||
|
keyframe = impl.getKeyframe(SPPath.POSITION, 4);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(1d, 2d, 3d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(4f, 5f, 6f)));
|
||||||
|
|
||||||
|
impl.addPositionKeyframe(6, 1, 2, 3, 4, 5, 6, 42);
|
||||||
|
keyframe = impl.getKeyframe(SPPath.POSITION, 6);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(12d, 0d, 0d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(0f, 0f, 0f)));
|
||||||
|
|
||||||
|
impl.addPositionKeyframe(8, 1, 2, 3, 4, 5, 6, 42);
|
||||||
|
keyframe = impl.getKeyframe(SPPath.POSITION, 8);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(16d, 0d, 0d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(0f, 0f, 0f)));
|
||||||
|
|
||||||
|
impl.addPositionKeyframe(10, 1, 2, 3, 4, 5, 6, 42);
|
||||||
|
keyframe = impl.getKeyframe(SPPath.POSITION, 10);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(1d, 2d, 3d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(4f, 5f, 6f)));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testAddPositionKeyframeDuplicate() {
|
||||||
|
impl.addPositionKeyframe(0, 1, 2, 3, 4, 5, 6, -1);
|
||||||
|
impl.addPositionKeyframe(0, 1, 2, 3, 4, 5, 6, -1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testUpdatePositionKeyframe() {
|
||||||
|
impl.addPositionKeyframe(0, 1, 2, 3, 4, 5, 6, -1);
|
||||||
|
Change change = impl.updatePositionKeyframe(0, 7, 8, 9, 10, 11, 12);
|
||||||
|
assertNotNull(change);
|
||||||
|
Keyframe keyframe = impl.getKeyframe(SPPath.POSITION, 0);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(7d, 8d, 9d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(10f, 11f, 12f)));
|
||||||
|
assertFalse(keyframe.getValue(SpectatorProperty.PROPERTY).isPresent());
|
||||||
|
change.undo(timeline);
|
||||||
|
keyframe = impl.getKeyframe(SPPath.POSITION, 0);
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.POSITION), Optional.of(Triple.of(1d, 2d, 3d)));
|
||||||
|
assertEquals(keyframe.getValue(CameraProperties.ROTATION), Optional.of(Triple.of(4f, 5f, 6f)));
|
||||||
|
assertFalse(keyframe.getValue(SpectatorProperty.PROPERTY).isPresent());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testUpdatePositionKeyframeNoKeyframe() {
|
||||||
|
impl.updatePositionKeyframe(0, 1, 2, 3, 4, 5, 6);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testUpdatePositionKeyframeSpectatorKeyframe() {
|
||||||
|
impl.addPositionKeyframe(0, 1, 2, 3, 4, 5, 6, 7);
|
||||||
|
impl.updatePositionKeyframe(0, 1, 2, 3, 4, 5, 6);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemovePositionKeyframe() {
|
||||||
|
impl.addPositionKeyframe(0, 1, 2, 3, 4, 5, 6, -1);
|
||||||
|
impl.removePositionKeyframe(0);
|
||||||
|
assertNull(impl.getKeyframe(SPPath.POSITION, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testRemovePositionKeyframeNoKeyframe() {
|
||||||
|
impl.removePositionKeyframe(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddTimeKeyframe() {
|
||||||
|
assertNull(timeline.peekUndoStack());
|
||||||
|
impl.addTimeKeyframe(0, 1);
|
||||||
|
assertNotNull(timeline.peekUndoStack());
|
||||||
|
Keyframe keyframe = impl.getKeyframe(SPPath.TIME, 0);
|
||||||
|
assertNotNull(keyframe);
|
||||||
|
assertEquals(keyframe.getValue(TimestampProperty.PROPERTY), Optional.of(1));
|
||||||
|
timeline.undoLastChange();
|
||||||
|
assertNull(timeline.peekUndoStack());
|
||||||
|
assertNull(impl.getKeyframe(SPPath.TIME, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testAddTimeKeyframeDuplicate() {
|
||||||
|
impl.addTimeKeyframe(0, 1);
|
||||||
|
impl.addTimeKeyframe(0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testUpdateTimeKeyframe() {
|
||||||
|
impl.addTimeKeyframe(0, 1);
|
||||||
|
Change change = impl.updateTimeKeyframe(0, 2);
|
||||||
|
assertNotNull(change);
|
||||||
|
assertEquals(impl.getKeyframe(SPPath.TIME, 0).getValue(TimestampProperty.PROPERTY), Optional.of(2));
|
||||||
|
change.undo(timeline);
|
||||||
|
assertEquals(impl.getKeyframe(SPPath.TIME, 0).getValue(TimestampProperty.PROPERTY), Optional.of(1));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testUpdateTimeKeyframeNoKeyframe() {
|
||||||
|
impl.updateTimeKeyframe(0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemoveTimeKeyframe() {
|
||||||
|
impl.addTimeKeyframe(0, 1);
|
||||||
|
impl.removeTimeKeyframe(0);
|
||||||
|
assertNull(impl.getKeyframe(SPPath.TIME, 0));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testRemoveTimeKeyframeNoKeyframe() {
|
||||||
|
impl.removeTimeKeyframe(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks all interpolators to make sure that they are continuous and not fragmented.
|
||||||
|
*/
|
||||||
|
private void assertValidInterpolators(SPPath path, int expectedNumberOfInterpolators) {
|
||||||
|
String str = prettyPrintInterpolators(impl, path);
|
||||||
|
List<Interpolator> interpolators = impl.getPath(path).getSegments().stream().map(PathSegment::getInterpolator)
|
||||||
|
.distinct().collect(Collectors.toList());
|
||||||
|
assertFalse("Not all interpolators set: " + str, interpolators.contains(null));
|
||||||
|
assertEquals("Mismatched interpolator number: " + str, expectedNumberOfInterpolators, interpolators.size());
|
||||||
|
int i = 0;
|
||||||
|
for (Interpolator interpolator : interpolators) {
|
||||||
|
Keyframe lastKeyframe = null;
|
||||||
|
for (PathSegment segment : interpolator.getSegments().stream()
|
||||||
|
.sorted(Comparator.comparing(s -> s.getStartKeyframe().getTime())).collect(Collectors.toList())) {
|
||||||
|
String message = "Fragmentation in interpolator " + i + ": " + str;
|
||||||
|
assertTrue(message, lastKeyframe == null || segment.getStartKeyframe() == lastKeyframe);
|
||||||
|
lastKeyframe = segment.getEndKeyframe();
|
||||||
|
}
|
||||||
|
i++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddPositionKeyframeAppend() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addPosition(1, 1);
|
||||||
|
addPosition(2, 1);
|
||||||
|
addPosition(3, 1);
|
||||||
|
addPosition(4, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddPositionKeyframePrepend() {
|
||||||
|
addPosition(4, 0);
|
||||||
|
addPosition(3, 1);
|
||||||
|
addPosition(2, 1);
|
||||||
|
addPosition(1, 1);
|
||||||
|
addPosition(0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddPositionKeyframeMixed() {
|
||||||
|
addPosition(2, 0);
|
||||||
|
addPosition(4, 1);
|
||||||
|
addPosition(3, 1);
|
||||||
|
addPosition(0, 1);
|
||||||
|
addPosition(1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddPositionSpectatorKeyframe() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addSpectator(1, 1);
|
||||||
|
addSpectator(2, 2);
|
||||||
|
addPosition(4, 3);
|
||||||
|
addPosition(7, 3);
|
||||||
|
addPosition(8, 3);
|
||||||
|
addSpectator(3, 3);
|
||||||
|
addSpectator(5, 3);
|
||||||
|
addSpectator(6, 5);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemovePositionKeyframeFromStart() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addPosition(1, 1);
|
||||||
|
addPosition(2, 1);
|
||||||
|
addPosition(3, 1);
|
||||||
|
removePosition(0, 1);
|
||||||
|
removePosition(1, 1);
|
||||||
|
removePosition(2, 0);
|
||||||
|
removePosition(3, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemovePositionKeyframeFromEnd() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addPosition(1, 1);
|
||||||
|
addPosition(2, 1);
|
||||||
|
addPosition(3, 1);
|
||||||
|
removePosition(3, 1);
|
||||||
|
removePosition(2, 1);
|
||||||
|
removePosition(1, 0);
|
||||||
|
removePosition(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemovePositionKeyframeFromMiddle() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addPosition(1, 1);
|
||||||
|
addPosition(2, 1);
|
||||||
|
addPosition(3, 1);
|
||||||
|
removePosition(1, 1);
|
||||||
|
removePosition(2, 1);
|
||||||
|
removePosition(0, 0);
|
||||||
|
removePosition(3, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemovePositionSpectatorKeyframe() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addPosition(1, 1);
|
||||||
|
addPosition(2, 1);
|
||||||
|
addSpectator(3, 1);
|
||||||
|
addSpectator(4, 2);
|
||||||
|
addSpectator(5, 2);
|
||||||
|
addPosition(6, 3);
|
||||||
|
addPosition(7, 3);
|
||||||
|
addSpectator(8, 3);
|
||||||
|
addSpectator(9, 4);
|
||||||
|
removePosition(4, 4);
|
||||||
|
removePosition(9, 3);
|
||||||
|
removePosition(6, 3);
|
||||||
|
removePosition(7, 2);
|
||||||
|
removePosition(0, 2);
|
||||||
|
removePosition(1, 2);
|
||||||
|
removePosition(3, 2);
|
||||||
|
removePosition(2, 1);
|
||||||
|
removePosition(5, 0);
|
||||||
|
removePosition(8, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddTimeKeyframeAppend() {
|
||||||
|
addTime(0, 0);
|
||||||
|
addTime(1, 1);
|
||||||
|
addTime(2, 1);
|
||||||
|
addTime(3, 1);
|
||||||
|
addTime(4, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddTimeKeyframePrepend() {
|
||||||
|
addTime(4, 0);
|
||||||
|
addTime(3, 1);
|
||||||
|
addTime(2, 1);
|
||||||
|
addTime(1, 1);
|
||||||
|
addTime(0, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testAddTimeKeyframeMixed() {
|
||||||
|
addTime(2, 0);
|
||||||
|
addTime(4, 1);
|
||||||
|
addTime(3, 1);
|
||||||
|
addTime(0, 1);
|
||||||
|
addTime(1, 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemoveTimeKeyframeFromStart() {
|
||||||
|
addTime(0, 0);
|
||||||
|
addTime(1, 1);
|
||||||
|
addTime(2, 1);
|
||||||
|
addTime(3, 1);
|
||||||
|
removeTime(0, 1);
|
||||||
|
removeTime(1, 1);
|
||||||
|
removeTime(2, 0);
|
||||||
|
removeTime(3, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemoveTimeKeyframeFromEnd() {
|
||||||
|
addTime(0, 0);
|
||||||
|
addTime(1, 1);
|
||||||
|
addTime(2, 1);
|
||||||
|
addTime(3, 1);
|
||||||
|
removeTime(3, 1);
|
||||||
|
removeTime(2, 1);
|
||||||
|
removeTime(1, 0);
|
||||||
|
removeTime(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testRemoveTimeKeyframeFromMiddle() {
|
||||||
|
addTime(0, 0);
|
||||||
|
addTime(1, 1);
|
||||||
|
addTime(2, 1);
|
||||||
|
addTime(3, 1);
|
||||||
|
removeTime(1, 1);
|
||||||
|
removeTime(2, 1);
|
||||||
|
removeTime(0, 0);
|
||||||
|
removeTime(3, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSetInterpolator() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addPosition(1, 1);
|
||||||
|
addPosition(2, 1);
|
||||||
|
setInterpolator(1, new LinearInterpolator(), 2);
|
||||||
|
assertIsLinear(1);
|
||||||
|
Interpolator interpolator = Iterables.get(impl.getPositionPath().getSegments(), 1).getInterpolator();
|
||||||
|
assertTrue(interpolator.getKeyframeProperties().contains(CameraProperties.POSITION));
|
||||||
|
assertTrue(interpolator.getKeyframeProperties().contains(CameraProperties.ROTATION));
|
||||||
|
addPosition(3, 3);
|
||||||
|
addPosition(4, 3);
|
||||||
|
addPosition(5, 3);
|
||||||
|
setInterpolator(3, new LinearInterpolator(), 5);
|
||||||
|
assertIsLinear(3);
|
||||||
|
removePosition(2, 3);
|
||||||
|
removePosition(3, 3);
|
||||||
|
removePosition(0, 2);
|
||||||
|
removePosition(1, 1);
|
||||||
|
removePosition(4, 0);
|
||||||
|
removePosition(5, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertIsLinear(int index) {
|
||||||
|
assertTrue("Expected segment " + index + " to have linear interpolator: " + prettyPrintInterpolators(impl, SPPath.POSITION),
|
||||||
|
Iterables.get(impl.getPositionPath().getSegments(), index).getInterpolator() instanceof LinearInterpolator);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testSetInterpolatorNoKeyframe() {
|
||||||
|
addTime(0, 0);
|
||||||
|
impl.setInterpolator(0, new LinearInterpolator());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalStateException.class)
|
||||||
|
public void testSetInterpolatorToDefaultNoKeyframe() {
|
||||||
|
addTime(0, 0);
|
||||||
|
impl.setInterpolatorToDefault(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testMoveKeyframe() {
|
||||||
|
addPosition(1, 0);
|
||||||
|
addPosition(3, 1);
|
||||||
|
addPosition(5, 1);
|
||||||
|
addPosition(7, 1);
|
||||||
|
addSpectator(9, 1);
|
||||||
|
addSpectator(11, 2);
|
||||||
|
addSpectator(13, 2);
|
||||||
|
addPosition(15, 3);
|
||||||
|
addPosition(17, 3);
|
||||||
|
addPosition(19, 3);
|
||||||
|
setInterpolator(3, new LinearInterpolator(), 5);
|
||||||
|
assertIsLinear(1);
|
||||||
|
setInterpolator(5, new LinearInterpolator(), 5);
|
||||||
|
assertIsLinear(2);
|
||||||
|
// [P 1] C0 [P 3] L1 [P 5] L1 [P 7] C2 [S 9] L3 [S 11] L3 [S 13] C4 [P 15] C4 [P 17] C4 [P 19]
|
||||||
|
|
||||||
|
impl.moveKeyframe(SPPath.POSITION, 5, 0);
|
||||||
|
assertValidInterpolators(SPPath.POSITION, 6);
|
||||||
|
assertIsLinear(0);
|
||||||
|
impl.moveKeyframe(SPPath.POSITION, 0, 5);
|
||||||
|
assertValidInterpolators(SPPath.POSITION, 5);
|
||||||
|
assertIsLinear(2);
|
||||||
|
|
||||||
|
impl.moveKeyframe(SPPath.POSITION, 3, 12);
|
||||||
|
assertValidInterpolators(SPPath.POSITION, 7);
|
||||||
|
assertIsLinear(5);
|
||||||
|
impl.moveKeyframe(SPPath.POSITION, 12, 3);
|
||||||
|
assertValidInterpolators(SPPath.POSITION, 5);
|
||||||
|
assertIsLinear(1);
|
||||||
|
|
||||||
|
impl.moveKeyframe(SPPath.POSITION, 7, 14);
|
||||||
|
assertValidInterpolators(SPPath.POSITION, 4);
|
||||||
|
impl.moveKeyframe(SPPath.POSITION, 14, 20);
|
||||||
|
assertValidInterpolators(SPPath.POSITION, 4);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test(expected = IllegalArgumentException.class)
|
||||||
|
public void testSetDefaultInterpolatorDifferentType() {
|
||||||
|
addPosition(0, 0);
|
||||||
|
addPosition(1, 1);
|
||||||
|
impl.setDefaultInterpolator(new CatmullRomSplineInterpolator(42));
|
||||||
|
}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
public void testSetDefaultInterpolatorSameType() {
|
||||||
|
impl.setDefaultInterpolatorType(InterpolatorType.CATMULL_ROM);
|
||||||
|
addPosition(0, 0);
|
||||||
|
addSpectator(1, 1);
|
||||||
|
addSpectator(2, 2);
|
||||||
|
addPosition(3, 3);
|
||||||
|
addPosition(4, 3);
|
||||||
|
impl.setDefaultInterpolator(new CatmullRomSplineInterpolator(42));
|
||||||
|
assertValidInterpolators(SPPath.POSITION, 3);
|
||||||
|
assertIsCatmullRom(0, 42);
|
||||||
|
assertIsCatmullRom(2, 42);
|
||||||
|
assertIsCatmullRom(3, 42);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertIsCatmullRom(int index, double alpha) {
|
||||||
|
String str = prettyPrintInterpolators(impl, SPPath.POSITION);
|
||||||
|
Interpolator interpolator = Iterables.get(impl.getPositionPath().getSegments(), index).getInterpolator();
|
||||||
|
assertTrue("Expected segment " + index + " to be catmull rom interpolator: " + str,
|
||||||
|
interpolator instanceof CatmullRomSplineInterpolator);
|
||||||
|
assertTrue("Expected interpolator of segment segment " + index + " to have alpha " + alpha + ": " + str,
|
||||||
|
((CatmullRomSplineInterpolator) interpolator).getAlpha() == 42);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addPosition(int time, int expectedNumberOfInterpolators) {
|
||||||
|
impl.addPositionKeyframe(time, 1, 2, 3, 4, 5, 6, -1);
|
||||||
|
assertNotNull(impl.getKeyframe(SPPath.POSITION, time));
|
||||||
|
assertValidInterpolators(SPPath.POSITION, expectedNumberOfInterpolators);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addSpectator(int time, int expectedNumberOfInterpolators) {
|
||||||
|
impl.addPositionKeyframe(time, 1, 2, 3, 4, 5, 6, 42);
|
||||||
|
assertNotNull(impl.getKeyframe(SPPath.POSITION, time));
|
||||||
|
assertTrue(impl.isSpectatorKeyframe(time));
|
||||||
|
assertValidInterpolators(SPPath.POSITION, expectedNumberOfInterpolators);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void addTime(int time, int expectedNumberOfInterpolators) {
|
||||||
|
impl.addTimeKeyframe(time, 1);
|
||||||
|
assertNotNull(impl.getKeyframe(SPPath.TIME, time));
|
||||||
|
assertValidInterpolators(SPPath.TIME, expectedNumberOfInterpolators);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void removePosition(int time, int expectedNumberOfInterpolators) {
|
||||||
|
impl.removePositionKeyframe(time);
|
||||||
|
assertNull(impl.getKeyframe(SPPath.POSITION, time));
|
||||||
|
assertValidInterpolators(SPPath.POSITION, expectedNumberOfInterpolators);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void removeTime(int time, int expectedNumberOfInterpolators) {
|
||||||
|
impl.removeTimeKeyframe(time);
|
||||||
|
assertNull(impl.getKeyframe(SPPath.TIME, time));
|
||||||
|
assertValidInterpolators(SPPath.TIME, expectedNumberOfInterpolators);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setInterpolator(int time, Interpolator interpolator, int expectedNumberOfInterpolators) {
|
||||||
|
impl.setInterpolator(time, interpolator);
|
||||||
|
assertValidInterpolators(SPPath.POSITION, expectedNumberOfInterpolators);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void assertPositionState(String expected) {
|
||||||
|
assertEquals(expected, prettyPrintInterpolators(impl, SPPath.POSITION));
|
||||||
|
}
|
||||||
|
|
||||||
|
// Tracks only entity 42 which always is at x=time*2, y,z=0
|
||||||
|
private class EntityPositionTrackerMock extends EntityPositionTracker {
|
||||||
|
public EntityPositionTrackerMock() {
|
||||||
|
super(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Location getEntityPositionAtTimestamp(int entityID, long timestamp) {
|
||||||
|
if (entityID == 42) {
|
||||||
|
return new Location(timestamp * 2, 0 ,0, 0, 0);
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String prettyPrintInterpolators(SPTimeline timeline, SPPath spPath) {
|
||||||
|
return prettyPrintInterpolators(timeline, spPath, Collections.emptyMap());
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String prettyPrintInterpolators(SPTimeline timeline, SPPath spPath, Map<PathSegment, Interpolator> updates) {
|
||||||
|
Map<Interpolator, String> interpolatorIdMap = new IdentityHashMap<>();
|
||||||
|
Path path = timeline.getPath(spPath);
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
for (Keyframe keyframe : path.getKeyframes()) {
|
||||||
|
if (spPath == SPPath.TIME) {
|
||||||
|
sb.append("[T ").append(keyframe.getTime()).append("]");
|
||||||
|
} else if (keyframe.getValue(SpectatorProperty.PROPERTY).isPresent()) {
|
||||||
|
sb.append("[S ").append(keyframe.getTime()).append("]");
|
||||||
|
} else {
|
||||||
|
sb.append("[P ").append(keyframe.getTime()).append("]");
|
||||||
|
}
|
||||||
|
path.getSegments().stream().filter(s -> s.getStartKeyframe() == keyframe).findFirst().ifPresent(segment -> {
|
||||||
|
Interpolator interpolator = updates.getOrDefault(segment, segment.getInterpolator());
|
||||||
|
String id = interpolatorIdMap.computeIfAbsent(interpolator, i ->
|
||||||
|
(i instanceof LinearInterpolator ? "L" : "C") + interpolatorIdMap.size());
|
||||||
|
sb.append(' ').append(id).append(' ');
|
||||||
|
});
|
||||||
|
}
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user