1.0.3
Gestus/pipeline/head This commit looks good Details

This commit is contained in:
TheBrokenRail 2020-08-14 23:31:51 -04:00
parent 419b2c1f21
commit 17687a3056
15 changed files with 129 additions and 119 deletions

View File

@ -1,5 +1,8 @@
# Changelog # Changelog
**1.0.3**
* Remove ``main_arm`` And ``off_arm``
**1.0.2** **1.0.2**
* Add Eating Animation * Add Eating Animation

View File

@ -5,6 +5,7 @@
- In ideal conditions emotes run at 20FPS - In ideal conditions emotes run at 20FPS
- All frames are made up of part rotations separated by spaces - All frames are made up of part rotations separated by spaces
- Parts can only be specified once in a frame - Parts can only be specified once in a frame
- If a line is ``maintain``, it will copy the previous frame
## Part Rotation Format ## Part Rotation Format
``` ```
@ -16,7 +17,4 @@
- ``right_leg`` - ``right_leg``
- ``left_arm`` - ``left_arm``
- ``right_arm`` - ``right_arm``
- ``main_arm`` - ``body``
- ``off_arm``
- ``body``
- ``left_arm``/``right_arm`` is not compatible with ``main_arm``/``off_arm``

View File

@ -10,7 +10,7 @@ org.gradle.jvmargs = -Xmx1G
fabric_loader_version = 0.9.0+build.204 fabric_loader_version = 0.9.0+build.204
# Mod Properties # Mod Properties
mod_version = 1.0.2 mod_version = 1.0.3
maven_group = com.thebrokenrail maven_group = com.thebrokenrail
# Dependencies # Dependencies

View File

@ -11,16 +11,6 @@ import java.util.Map;
public class Emote { public class Emote {
public final EmoteFrame[] frames; public final EmoteFrame[] frames;
private static int getArmMode(EmotePart part) {
if (part == EmotePart.LEFT_ARM || part == EmotePart.RIGHT_ARM) {
return 1;
} else if (part == EmotePart.MAIN_ARM || part == EmotePart.OFF_ARM) {
return 2;
} else {
return 0;
}
}
public Emote(String[] lines) throws EmoteSyntaxException { public Emote(String[] lines) throws EmoteSyntaxException {
List<EmoteFrame> list = new ArrayList<>(); List<EmoteFrame> list = new ArrayList<>();
@ -29,11 +19,13 @@ public class Emote {
for (int lineNum = 0; lineNum < lines.length; lineNum++) { for (int lineNum = 0; lineNum < lines.length; lineNum++) {
String line = lines[lineNum].trim(); String line = lines[lineNum].trim();
if (line.equals("maintain") && list.size() > 0) { if (line.equals("maintain")) {
list.add(list.get(list.size() - 1)); if (list.size() > 0) {
list.add(list.get(list.size() - 1));
} else {
throw new EmoteSyntaxException(lineNum, "No Previous Frame");
}
} else if (!line.startsWith("#")) { } else if (!line.startsWith("#")) {
int armMode = 0;
Map<EmotePart, EulerAngle> map = new HashMap<>(); Map<EmotePart, EulerAngle> map = new HashMap<>();
String[] lineParts = line.split(" "); String[] lineParts = line.split(" ");
@ -55,13 +47,6 @@ public class Emote {
throw new EmoteSyntaxException(lineNum, "Invalid Emote Part: " + linePart); throw new EmoteSyntaxException(lineNum, "Invalid Emote Part: " + linePart);
} else if (map.containsKey(selectedPart)) { } else if (map.containsKey(selectedPart)) {
throw new EmoteSyntaxException(lineNum, "Duplicate Emote Part: " + linePart); throw new EmoteSyntaxException(lineNum, "Duplicate Emote Part: " + linePart);
} else if (armMode == 0) {
armMode = getArmMode(selectedPart);
} else if (armMode > 0) {
int newMode = getArmMode(selectedPart);
if (newMode != 0 && newMode != armMode) {
throw new EmoteSyntaxException(lineNum, "Conflicting Arm Modes");
}
} }
try { try {

View File

@ -6,32 +6,19 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
public class EmoteFrame { public class EmoteFrame {
public final Map<EmotePart, EulerAngle> rightHanded; public final Map<EmotePart, EulerAngle> normal;
public final Map<EmotePart, EulerAngle> leftHanded; public final Map<EmotePart, EulerAngle> mirrored;
public EmoteFrame(Map<EmotePart, EulerAngle> data) { public EmoteFrame(Map<EmotePart, EulerAngle> data) {
rightHanded = resolve(data, false); normal = data;
leftHanded = resolve(data, true); mirrored = mirror(data);
} }
private static Map<EmotePart, EulerAngle> resolve(Map<EmotePart, EulerAngle> data, boolean leftHanded) { private static Map<EmotePart, EulerAngle> mirror(Map<EmotePart, EulerAngle> data) {
Map<EmotePart, EulerAngle> result = new HashMap<>(); Map<EmotePart, EulerAngle> result = new HashMap<>();
for (Map.Entry<EmotePart, EulerAngle> entry : data.entrySet()) { for (Map.Entry<EmotePart, EulerAngle> entry : data.entrySet()) {
if (entry.getKey() == EmotePart.MAIN_ARM) { EmotePart newPart = entry.getKey().mirror();
if (leftHanded) { result.put(newPart, new EulerAngle(entry.getValue().getPitch(), -entry.getValue().getYaw(), -entry.getValue().getRoll()));
result.put(EmotePart.LEFT_ARM, new EulerAngle(entry.getValue().getPitch(), -entry.getValue().getYaw(), -entry.getValue().getRoll()));
} else {
result.put(EmotePart.RIGHT_ARM, entry.getValue());
}
} else if (entry.getKey() == EmotePart.OFF_ARM) {
if (leftHanded) {
result.put(EmotePart.RIGHT_ARM, new EulerAngle(entry.getValue().getPitch(), -entry.getValue().getYaw(), -entry.getValue().getRoll()));
} else {
result.put(EmotePart.LEFT_ARM, entry.getValue());
}
} else {
result.put(entry.getKey(), entry.getValue());
}
} }
return result; return result;
} }

View File

@ -12,7 +12,7 @@ public class EmoteLayer {
private Identifier current; private Identifier current;
private final boolean loop; private final boolean loop;
private boolean leftHanded = false; private boolean mirrored = false;
public EmoteLayer(Identifier start, boolean loop) { public EmoteLayer(Identifier start, boolean loop) {
current = start; current = start;
@ -23,10 +23,10 @@ public class EmoteLayer {
return current; return current;
} }
public void play(Identifier current, boolean leftHanded) { public void play(Identifier current, boolean mirrored) {
if (!Objects.equals(this.current, current) || this.leftHanded != leftHanded) { if (!Objects.equals(this.current, current) || this.mirrored != mirrored) {
this.current = current; this.current = current;
this.leftHanded = leftHanded; this.mirrored = mirrored;
frame = 0; frame = 0;
} }
} }
@ -35,8 +35,8 @@ public class EmoteLayer {
return current != null; return current != null;
} }
public boolean isLeftHanded() { public boolean isMirrored() {
return leftHanded; return mirrored;
} }
public Map<EmotePart, EulerAngle> next() { public Map<EmotePart, EulerAngle> next() {
@ -53,7 +53,7 @@ public class EmoteLayer {
current = null; current = null;
} }
} }
return leftHanded ? result.leftHanded : result.rightHanded; return mirrored ? result.mirrored : result.normal;
} }
} }
frame = 0; frame = 0;

View File

@ -1,13 +1,36 @@
package com.thebrokenrail.gestus.emote; package com.thebrokenrail.gestus.emote;
public enum EmotePart { public enum EmotePart {
MAIN_ARM("main_arm"), RIGHT_ARM("right_arm") {
OFF_ARM("off_arm"), @Override
RIGHT_ARM("right_arm"), public EmotePart mirror() {
LEFT_ARM("left_arm"), return LEFT_ARM;
RIGHT_LEG("right_leg"), }
LEFT_LEG("left_leg"), },
BODY("body"); LEFT_ARM("left_arm") {
@Override
public EmotePart mirror() {
return RIGHT_ARM;
}
},
RIGHT_LEG("right_leg") {
@Override
public EmotePart mirror() {
return LEFT_LEG;
}
},
LEFT_LEG("left_leg") {
@Override
public EmotePart mirror() {
return RIGHT_LEG;
}
},
BODY("body") {
@Override
public EmotePart mirror() {
return BODY;
}
};
private final String name; private final String name;
@ -18,4 +41,6 @@ public enum EmotePart {
public String getName() { public String getName() {
return name; return name;
} }
public abstract EmotePart mirror();
} }

View File

@ -11,6 +11,7 @@ import net.minecraft.entity.EquipmentSlot;
import net.minecraft.entity.damage.DamageSource; import net.minecraft.entity.damage.DamageSource;
import net.minecraft.entity.data.TrackedData; import net.minecraft.entity.data.TrackedData;
import net.minecraft.entity.decoration.ArmorStandEntity; import net.minecraft.entity.decoration.ArmorStandEntity;
import net.minecraft.entity.player.PlayerEntity;
import net.minecraft.item.CrossbowItem; import net.minecraft.item.CrossbowItem;
import net.minecraft.item.DyeableItem; import net.minecraft.item.DyeableItem;
import net.minecraft.item.Item; import net.minecraft.item.Item;
@ -20,6 +21,7 @@ import net.minecraft.nbt.CompoundTag;
import net.minecraft.server.network.ServerPlayerEntity; import net.minecraft.server.network.ServerPlayerEntity;
import net.minecraft.text.LiteralText; import net.minecraft.text.LiteralText;
import net.minecraft.text.Text; import net.minecraft.text.Text;
import net.minecraft.util.ActionResult;
import net.minecraft.util.Arm; import net.minecraft.util.Arm;
import net.minecraft.util.Hand; import net.minecraft.util.Hand;
import net.minecraft.util.Identifier; import net.minecraft.util.Identifier;
@ -264,7 +266,7 @@ public class FakePlayerEntity extends ArmorStandEntity {
private void updateEquipment() { private void updateEquipment() {
for (EquipmentSlot slot : EquipmentSlot.values()) { for (EquipmentSlot slot : EquipmentSlot.values()) {
ItemStack target = getFallbackItem(slot, player.getEquippedStack(slot).copy(), isInvisible()); ItemStack target = getFallbackItem(slot, player.getEquippedStack(slot).copy(), isInvisible()).copy();
if (!getEquippedStack(slot).isItemEqual(target)) { if (!getEquippedStack(slot).isItemEqual(target)) {
equipStack(slot, target); equipStack(slot, target);
} }
@ -299,4 +301,14 @@ public class FakePlayerEntity extends ArmorStandEntity {
public boolean damage(DamageSource source, float amount) { public boolean damage(DamageSource source, float amount) {
return player.damage(source, amount); return player.damage(source, amount);
} }
@Override
public ActionResult interactAt(PlayerEntity player, Vec3d hitPos, Hand hand) {
return ActionResult.PASS;
}
@Override
public ActionResult interact(PlayerEntity player, Hand hand) {
return ActionResult.PASS;
}
} }

View File

@ -1 +1 @@
main_arm 0 -90 0 off_arm 40 -90 0 right_arm 0 -90 0 left_arm 40 -90 0

View File

@ -1,5 +1,5 @@
main_arm -51 -76 0 right_arm -51 -76 0
main_arm -55 -80 0 right_arm -55 -80 0
main_arm -59 -84 0 right_arm -59 -84 0
main_arm -55 -80 0 right_arm -55 -80 0
main_arm -51 -76 0 right_arm -51 -76 0

View File

@ -1,9 +1,9 @@
main_arm 0 0 0 right_arm 0 0 0
main_arm -8.5 -17 0 right_arm -8.5 -17 0
main_arm -17 -34 0 right_arm -17 -34 0
main_arm -25.5 -51 0 right_arm -25.5 -51 0
main_arm -34 -68 0 right_arm -34 -68 0
main_arm -25.5 -51 0 right_arm -25.5 -51 0
main_arm -17 -34 0 right_arm -17 -34 0
main_arm -8.5 -17 0 right_arm -8.5 -17 0
main_arm 0 0 0 right_arm 0 0 0

View File

@ -1 +1 @@
main_arm -42 -90 0 right_arm -42 -90 0

View File

@ -1 +1 @@
main_arm 0 0 0 off_arm 0 0 0 left_leg 0 0 0 right_leg 0 0 0 body 0 0 0 right_arm 0 0 0 left_arm 0 0 0 left_leg 0 0 0 right_leg 0 0 0 body 0 0 0

View File

@ -1 +1 @@
main_arm 0 -180 0 right_arm 0 -180 0

View File

@ -1,40 +1,40 @@
main_arm 0 0 0 right_arm 0 0 0
main_arm 0 0 16 right_arm 0 0 16
main_arm 0 0 32 right_arm 0 0 32
main_arm 0 0 48 right_arm 0 0 48
main_arm 0 0 64 right_arm 0 0 64
main_arm 0 0 80 right_arm 0 0 80
main_arm 0 0 96 right_arm 0 0 96
main_arm 0 0 112 right_arm 0 0 112
main_arm 0 0 128 right_arm 0 0 128
main_arm 0 0 144 right_arm 0 0 144
main_arm 0 0 145 right_arm 0 0 145
main_arm 0 0 140 right_arm 0 0 140
main_arm 0 0 135 right_arm 0 0 135
main_arm 0 0 130 right_arm 0 0 130
main_arm 0 0 125 right_arm 0 0 125
main_arm 0 0 120 right_arm 0 0 120
main_arm 0 0 125 right_arm 0 0 125
main_arm 0 0 130 right_arm 0 0 130
main_arm 0 0 135 right_arm 0 0 135
main_arm 0 0 140 right_arm 0 0 140
main_arm 0 0 145 right_arm 0 0 145
main_arm 0 0 145 right_arm 0 0 145
main_arm 0 0 140 right_arm 0 0 140
main_arm 0 0 135 right_arm 0 0 135
main_arm 0 0 130 right_arm 0 0 130
main_arm 0 0 125 right_arm 0 0 125
main_arm 0 0 120 right_arm 0 0 120
main_arm 0 0 125 right_arm 0 0 125
main_arm 0 0 130 right_arm 0 0 130
main_arm 0 0 135 right_arm 0 0 135
main_arm 0 0 140 right_arm 0 0 140
main_arm 0 0 145 right_arm 0 0 145
main_arm 0 0 112 right_arm 0 0 112
main_arm 0 0 96 right_arm 0 0 96
main_arm 0 0 80 right_arm 0 0 80
main_arm 0 0 64 right_arm 0 0 64
main_arm 0 0 48 right_arm 0 0 48
main_arm 0 0 32 right_arm 0 0 32
main_arm 0 0 16 right_arm 0 0 16
main_arm 0 0 0 right_arm 0 0 0