New animal, code cleanup, replace deprecated SPF with QT.
All checks were successful
build / build (21) (push) Successful in 2m31s
All checks were successful
build / build (21) (push) Successful in 2m31s
This commit is contained in:
parent
d7df43bc08
commit
523477deb9
11 changed files with 137 additions and 79 deletions
|
@ -9,7 +9,8 @@
|
|||
You do more damage to mobs (25%). **Your superfoods are glow berries and apples.**
|
||||
4. Dog
|
||||
You get speed 2 when doing damage. **Your superfood are uncooked meats.**
|
||||
|
||||
5. Cow
|
||||
When you hit a mob, there's a 30% chance of slowing them down. Works on players aswell. **Your superfoods are apples, golden apples, and carrots.**
|
||||
## **Chat**
|
||||
Chat while you are a animal is very different. When you speak, your words will become furry-ified and every time you talk you'll have animal sounds come out of you. You can disable this via /chatmodoff, and turn it back on via /chatmodon.
|
||||
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
package ovh.sad.animalrp;
|
||||
|
||||
import eu.pb4.placeholders.api.*;
|
||||
import eu.pb4.placeholders.api.parsers.NodeParser;
|
||||
import eu.pb4.placeholders.api.parsers.TagParser;
|
||||
import eu.pb4.placeholders.api.parsers.TextParserV1;
|
||||
import net.fabricmc.api.ModInitializer;
|
||||
import net.fabricmc.fabric.api.command.v2.CommandRegistrationCallback;
|
||||
import net.fabricmc.fabric.api.entity.event.v1.ServerLivingEntityEvents;
|
||||
|
@ -12,13 +15,10 @@ import net.fabricmc.fabric.api.event.player.UseEntityCallback;
|
|||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.sound.SoundCategory;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Identifier;
|
||||
import ovh.sad.animalrp.animals.Animal;
|
||||
import ovh.sad.animalrp.animals.Cat;
|
||||
import ovh.sad.animalrp.animals.Dog;
|
||||
import ovh.sad.animalrp.animals.Fox;
|
||||
import ovh.sad.animalrp.animals.Bee;
|
||||
import ovh.sad.animalrp.animals.*;
|
||||
import ovh.sad.animalrp.commands.InfoCommand;
|
||||
import ovh.sad.animalrp.commands.InteractionCommand;
|
||||
import ovh.sad.animalrp.commands.NoChatCommand;
|
||||
|
@ -49,7 +49,11 @@ public class AnimalRP implements ModInitializer {
|
|||
|
||||
private static final Map<UUID, Long> lastPetTimes = new ConcurrentHashMap<>();
|
||||
private static final long COOLDOWN_MS = 1000;
|
||||
public static final NodeParser parser = TagParser.DEFAULT;
|
||||
|
||||
public static Text parseText(String text) {
|
||||
return AnimalRP.parser.parseNode(text).toText();
|
||||
}
|
||||
@Override
|
||||
public void onInitialize() {
|
||||
|
||||
|
@ -61,11 +65,12 @@ ZZZzz /,`.-'`' -. ;-;;,_
|
|||
""";
|
||||
LOGGER.info(catAscii);
|
||||
LOGGER.info("furry animal mod for fabric");
|
||||
LOGGER.info("by @fucksophie - est. Sept 2024");
|
||||
LOGGER.info("by @fucksophie - est. Sept 2024, improvements Mar 2025");
|
||||
animals.put("cat", new Cat());
|
||||
animals.put("dog", new Dog());
|
||||
animals.put("fox", new Fox());
|
||||
animals.put("bee", new Bee());
|
||||
animals.put("cow", new Cow());
|
||||
|
||||
HashmapStore.get("users.json").forEach((k, v) -> {
|
||||
users.put(UUID.fromString(k), animals.get(v));
|
||||
|
@ -131,14 +136,14 @@ ZZZzz /,`.-'`' -. ;-;;,_
|
|||
if (lastPetTimes.getOrDefault(attackerId, 0L) + COOLDOWN_MS > currentTime) {
|
||||
return ActionResult.PASS;
|
||||
}
|
||||
|
||||
lastPetTimes.put(attackerId, currentTime);
|
||||
|
||||
|
||||
attackee.sendMessage(TextParserUtils.formatText(
|
||||
attackee.sendMessage(AnimalRP.parseText(
|
||||
String.format("%s petted you! %s",
|
||||
"<light_purple>" + attacker.getName().getString() + "</light_purple>",
|
||||
"<italic><gray>" + attackerAnimal.catchphrase)), false);
|
||||
attacker.sendMessage(TextParserUtils.formatText(
|
||||
attacker.sendMessage(AnimalRP.parseText(
|
||||
String.format("You petted %s! %s",
|
||||
"<light_purple>" + attackee.getName().getString() + "</light_purple>",
|
||||
"<italic><gray>" + attackeeAnimal.catchphrase)), false);
|
||||
|
|
|
@ -26,6 +26,7 @@ import net.minecraft.sound.SoundCategory;
|
|||
import net.minecraft.sound.SoundEvents;
|
||||
import net.minecraft.util.ActionResult;
|
||||
import net.minecraft.util.Identifier;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import ovh.sad.animalrp.AnimalRP;
|
||||
import ovh.sad.animalrp.util.Mood;
|
||||
import ovh.sad.animalrp.util.TextDestroyer;
|
||||
|
@ -37,13 +38,13 @@ public class Bee extends Animal {
|
|||
}
|
||||
|
||||
|
||||
private static Item[] _allFlowers = { Items.ALLIUM, Items.AZURE_BLUET, Items.BLUE_ORCHID,
|
||||
private static final Item[] _allFlowers = { Items.ALLIUM, Items.AZURE_BLUET, Items.BLUE_ORCHID,
|
||||
Items.CORNFLOWER, Items.DANDELION, Items.LILY_OF_THE_VALLEY, Items.OXEYE_DAISY,
|
||||
Items.POPPY, Items.TORCHFLOWER, Items.ORANGE_TULIP, Items.PINK_TULIP, Items.RED_TULIP,
|
||||
Items.WHITE_TULIP };
|
||||
public static List<Item> allFlowers = Arrays.asList(_allFlowers);
|
||||
public static Identifier beeFoodKey = Identifier.of("animalrp", "bee_food");
|
||||
public static HashMap<UUID, Row> inARow = new HashMap<UUID, Row>();
|
||||
public static final List<Item> allFlowers = Arrays.asList(_allFlowers);
|
||||
public static HashMap<UUID, Row> inARow = new HashMap<>();
|
||||
|
||||
TextDestroyer destroyer = new TextDestroyer(new String[] {
|
||||
">_<", "*buzz*",
|
||||
";3", ":3", "εწз", " ≧◠◡◠≦ ", "*stings you*", "*humms*",
|
||||
|
@ -63,7 +64,7 @@ public class Bee extends Animal {
|
|||
|
||||
ArrayList<UUID> sneakers = new ArrayList<UUID>();
|
||||
|
||||
public static Boolean isItemARP(ItemStack is) {
|
||||
public static @NotNull Boolean isItemARP(ItemStack is) {
|
||||
return (allFlowers.contains(is.getItem()) && is.get(DataComponentTypes.FOOD) != null);
|
||||
}
|
||||
|
||||
|
@ -89,12 +90,12 @@ public class Bee extends Animal {
|
|||
return ActionResult.PASS;
|
||||
}
|
||||
|
||||
Boolean incorrect = false;
|
||||
boolean incorrect = false;
|
||||
|
||||
if (animal == null) {
|
||||
incorrect = true;
|
||||
} else {
|
||||
if (animal.name != this.name) {
|
||||
if (!animal.name.equals(this.name)) {
|
||||
incorrect = true;
|
||||
}
|
||||
}
|
||||
|
@ -129,7 +130,7 @@ public class Bee extends Animal {
|
|||
|
||||
// Called from the FoodEating mixin.
|
||||
// Called only if the player is a animal and a bee.
|
||||
public void onEat(ServerPlayerEntity player, ItemStack item) {
|
||||
public void onEat(ServerPlayerEntity player, @NotNull ItemStack item) {
|
||||
if (!allFlowers.contains(item.getItem())) { // not a flower
|
||||
return;
|
||||
}
|
||||
|
@ -163,11 +164,11 @@ public class Bee extends Animal {
|
|||
}
|
||||
|
||||
// Called from the 'Sneaking' mixin.
|
||||
public void onSneak(ServerPlayerEntity player, boolean status) {
|
||||
public void onSneak(@NotNull ServerPlayerEntity player, boolean status) {
|
||||
Animal animal = AnimalRP.users.get(player.getUuid());
|
||||
if (animal == null)
|
||||
return;
|
||||
if (animal.name != this.name)
|
||||
if (!animal.name.equals(this.name))
|
||||
return;
|
||||
|
||||
Block type = player.getWorld().getBlockState(player.getBlockPos().down()).getBlock();
|
||||
|
|
63
src/main/java/ovh/sad/animalrp/animals/Cow.java
Normal file
63
src/main/java/ovh/sad/animalrp/animals/Cow.java
Normal file
|
@ -0,0 +1,63 @@
|
|||
package ovh.sad.animalrp.animals;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
import net.fabricmc.fabric.api.entity.event.v1.ServerLivingEntityEvents;
|
||||
import net.minecraft.entity.effect.StatusEffectInstance;
|
||||
import net.minecraft.entity.effect.StatusEffects;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.sound.SoundEvents;
|
||||
import ovh.sad.animalrp.AnimalRP;
|
||||
import ovh.sad.animalrp.util.Mood;
|
||||
import ovh.sad.animalrp.util.TextDestroyer;
|
||||
|
||||
public class Cow extends Animal {
|
||||
TextDestroyer destroyer = new TextDestroyer(new String[] {
|
||||
"Moo!", "Moooo~",
|
||||
"Moo?", "Mooooo!", "MooMoo"
|
||||
}, new String[][] {
|
||||
{ "you", "moo" },
|
||||
{ "o", "oo" },
|
||||
{ "i", "ii" },
|
||||
{ "a", "aa" },
|
||||
{ "e", "ee" }
|
||||
});
|
||||
Random rand = new Random();
|
||||
|
||||
public Cow() {
|
||||
super("cow", "Moo!", "#a52a2a");
|
||||
this.moodSounds.put(Mood.HAPPY, SoundEvents.ENTITY_COW_AMBIENT);
|
||||
this.moodSounds.put(Mood.CUTE, SoundEvents.ENTITY_COW_STEP);
|
||||
this.moodSounds.put(Mood.SAD, SoundEvents.ENTITY_COW_HURT);
|
||||
this.moodSounds.put(Mood.STRESSED, SoundEvents.ENTITY_COW_HURT);
|
||||
this.moodSounds.put(Mood.ANGRY, SoundEvents.ENTITY_COW_DEATH);
|
||||
|
||||
this.superfoods.add(Items.APPLE);
|
||||
this.superfoods.add(Items.GOLDEN_APPLE);
|
||||
this.superfoods.add(Items.CARROT);
|
||||
|
||||
ServerLivingEntityEvents.AFTER_DAMAGE.register((entity, source, baseDmg, dmg, blocked) -> {
|
||||
if (!(source.getSource() instanceof ServerPlayerEntity damaged)) return;
|
||||
if (entity instanceof PlayerEntity) return;
|
||||
|
||||
Animal animal = AnimalRP.users.get(damaged.getUuid());
|
||||
|
||||
if (animal == null || !animal.name.equals(this.name)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (rand.nextFloat() < 0.3) {
|
||||
entity.removeStatusEffect(StatusEffects.SLOWNESS);
|
||||
entity.addStatusEffect(
|
||||
new StatusEffectInstance(StatusEffects.SLOWNESS, 20, 2, true, true, true));
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
@Override
|
||||
public String chatTransformations(String message) {
|
||||
return this.destroyer.destroy(message);
|
||||
}
|
||||
}
|
|
@ -34,7 +34,7 @@ public class Dog extends Animal {
|
|||
|
||||
if (animal == null)
|
||||
return ActionResult.PASS;
|
||||
if (animal.name != this.name)
|
||||
if (!animal.name.equals(this.name))
|
||||
return ActionResult.PASS;
|
||||
player.removeStatusEffect(StatusEffects.SPEED);
|
||||
player.addStatusEffect(
|
||||
|
|
|
@ -42,19 +42,16 @@ public class Fox extends Animal {
|
|||
this.superfoods.add(Items.GLOW_BERRIES);
|
||||
|
||||
ServerLivingEntityEvents.AFTER_DAMAGE.register((entity, source, baseDmg, dmg, blocked) -> {
|
||||
if(!(source.getSource() instanceof ServerPlayerEntity)) return;
|
||||
if(!(source.getSource() instanceof ServerPlayerEntity damager)) return;
|
||||
if(entity instanceof PlayerEntity) return;
|
||||
|
||||
LivingEntity victim = entity;
|
||||
ServerPlayerEntity damager = (ServerPlayerEntity) source.getSource();
|
||||
|
||||
Animal animal = AnimalRP.users.get(damager.getUuid());
|
||||
|
||||
if (animal == null || !animal.name.equals(this.name)) {
|
||||
return;
|
||||
}
|
||||
|
||||
victim.damage((ServerWorld)victim.getWorld(), victim.getDamageSources().playerAttack(damager), dmg * 0.25F);
|
||||
entity.damage((ServerWorld) entity.getWorld(), entity.getDamageSources().playerAttack(damager), dmg * 0.25F);
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
@ -5,28 +5,29 @@ import java.util.UUID;
|
|||
import com.mojang.brigadier.CommandDispatcher;
|
||||
|
||||
import eu.pb4.placeholders.api.TextParserUtils;
|
||||
import eu.pb4.placeholders.api.parsers.TagParser;
|
||||
import net.minecraft.command.CommandRegistryAccess;
|
||||
import net.minecraft.server.command.CommandManager;
|
||||
import net.minecraft.server.command.ServerCommandSource;
|
||||
import net.minecraft.text.Text;
|
||||
import ovh.sad.animalrp.AnimalRP;
|
||||
import ovh.sad.animalrp.animals.Animal;
|
||||
import ovh.sad.animalrp.util.HashmapStore;
|
||||
|
||||
public class InfoCommand {
|
||||
public void Command(CommandDispatcher<ServerCommandSource> dispatcher, CommandRegistryAccess registryAccess,
|
||||
CommandManager.RegistrationEnvironment environment) {
|
||||
dispatcher.register(CommandManager.literal("rpinfo").executes(context -> {
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("<bold><green>AnimalRPs<reset> is a mod that adds animals to Minecraft."), false);
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("Usage of this mod is very simple."), false);
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("<green>-<reset> To select a animal, use: /tf"), false);
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("<green>-<reset> To turn off animals, use: /tf off"), false);
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("<green>-<reset> Don't want the chat changes? Use: /disableanimalchat."), false);
|
||||
context.getSource().sendFeedback(() -> Text.empty(), false);
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("<green>-<reset> To see what the animals do, visit: https://git.sad.ovh/sophie/animalrpfabric"), false);
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("<green>-<reset> To pet someone, rightclick on them (they must be a animal!)"), false);
|
||||
context.getSource().sendFeedback(() -> Text.empty(), false);
|
||||
context.getSource().sendFeedback(() -> TextParserUtils.formatText("Available animals: <green>" + String.join(", ", AnimalRP.animals.keySet().stream().toList())), false);
|
||||
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("<bold><green>AnimalRPs</*> is a mod that adds animals to Minecraft."), false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("Usage of this mod is very simple."), false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("<green>-</green> To select a animal, use: /tf"), false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("<green>-</green> To turn off animals, use: /tf off"), false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("<green>-</green> Don't want the chat changes? Use: /disableanimalchat."), false);
|
||||
context.getSource().sendFeedback(Text::empty, false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("<green>-</green> To see what the animals do, visit: https://git.sad.ovh/sophie/animalrpfabric"), false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("<green>-</green> To pet someone, rightclick on them (they must be a animal!)"), false);
|
||||
context.getSource().sendFeedback(Text::empty, false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("To see available animals, run /tf"), false);
|
||||
return 0;
|
||||
}));
|
||||
}
|
||||
|
|
|
@ -2,7 +2,6 @@ package ovh.sad.animalrp.commands;
|
|||
|
||||
import com.mojang.brigadier.CommandDispatcher;
|
||||
|
||||
import eu.pb4.placeholders.api.TextParserUtils;
|
||||
import net.minecraft.command.CommandRegistryAccess;
|
||||
import net.minecraft.command.argument.EntityArgumentType;
|
||||
import net.minecraft.entity.Entity;
|
||||
|
@ -10,7 +9,6 @@ import net.minecraft.server.command.CommandManager;
|
|||
import net.minecraft.server.command.ServerCommandSource;
|
||||
import net.minecraft.server.network.ServerPlayerEntity;
|
||||
import net.minecraft.sound.SoundCategory;
|
||||
import net.minecraft.text.Text;
|
||||
import ovh.sad.animalrp.AnimalRP;
|
||||
import ovh.sad.animalrp.animals.Animal;
|
||||
import ovh.sad.animalrp.util.Mood;
|
||||
|
@ -28,7 +26,6 @@ public class InteractionCommand {
|
|||
this.mood = mood;
|
||||
}
|
||||
|
||||
@SuppressWarnings("deprecation")
|
||||
public void Command(CommandDispatcher<ServerCommandSource> dispatcher, CommandRegistryAccess registryAccess,
|
||||
CommandManager.RegistrationEnvironment environment) {
|
||||
dispatcher.register(CommandManager.literal(this.command)
|
||||
|
@ -38,18 +35,17 @@ public class InteractionCommand {
|
|||
|
||||
if (!(sender instanceof ServerPlayerEntity)) {
|
||||
context.getSource().sendFeedback(
|
||||
() -> Text.literal("I'm sorry console.").withColor(8421504), false);
|
||||
() -> AnimalRP.parseText("<red>I'm sorry console."), false);
|
||||
return 0;
|
||||
}
|
||||
|
||||
ServerPlayerEntity player = context.getSource().getPlayer();
|
||||
ServerPlayerEntity player = context.getSource().getPlayerOrThrow();
|
||||
|
||||
Animal aplayer = AnimalRP.users.get(player.getUuid());
|
||||
|
||||
if (aplayer == null) {
|
||||
context.getSource().sendFeedback(
|
||||
() -> Text.literal("Only animals can interact with other animals :(")
|
||||
.withColor(8421504),
|
||||
() -> AnimalRP.parseText("<red>Only animals can interact with other animals :("),
|
||||
false);
|
||||
return 0;
|
||||
}
|
||||
|
@ -58,8 +54,7 @@ public class InteractionCommand {
|
|||
|
||||
if (splayer.getName() == player.getName()) {
|
||||
context.getSource().sendFeedback(
|
||||
() -> Text.literal("You can't " + this.command + " yourself.")
|
||||
.withColor(8421504),
|
||||
() -> AnimalRP.parseText("<red>You can't " + this.command + " yourself."),
|
||||
false);
|
||||
return 0;
|
||||
}
|
||||
|
@ -67,19 +62,18 @@ public class InteractionCommand {
|
|||
|
||||
if (asplayer == null) {
|
||||
context.getSource().sendFeedback(
|
||||
() -> Text.literal(splayer.getName() + " is not an animal! :(")
|
||||
.withColor(8421504),
|
||||
() -> AnimalRP.parseText("<red>"+splayer.getName() + " is not an animal! :("),
|
||||
false);
|
||||
return 0;
|
||||
}
|
||||
|
||||
splayer.sendMessage(TextParserUtils.formatText(
|
||||
splayer.sendMessage(AnimalRP.parseText(
|
||||
String.format(this.toThem,
|
||||
"<light_purple>" + player.getName().getString() + "</light_purple>",
|
||||
"<color "+aplayer.color+">" + player.getName().getString() + "</color>",
|
||||
"<italic><gray>" + aplayer.catchphrase)));
|
||||
player.sendMessage(TextParserUtils.formatText(
|
||||
player.sendMessage(AnimalRP.parseText(
|
||||
String.format(this.toYou,
|
||||
"<light_purple>" + splayer.getName().getString() + "</light_purple>",
|
||||
"<color "+asplayer.color+">" + splayer.getName().getString() + "</color>",
|
||||
"<italic><gray>" + asplayer.catchphrase)));
|
||||
player.getWorld().playSound(splayer, splayer.getBlockPos(),
|
||||
asplayer.moodSounds.get(this.mood), SoundCategory.PLAYERS, 1F,
|
||||
|
|
|
@ -15,19 +15,18 @@ public class NoChatCommand {
|
|||
public void Command(CommandDispatcher<ServerCommandSource> dispatcher, CommandRegistryAccess registryAccess,
|
||||
CommandManager.RegistrationEnvironment environment) {
|
||||
dispatcher.register(CommandManager.literal("disableanimalchat").executes(context -> {
|
||||
UUID userUuid = context.getSource().getEntity().getUuid();
|
||||
UUID userUuid = context.getSource().getEntityOrThrow().getUuid();
|
||||
|
||||
Boolean isDisabled = AnimalRP.noChat.get(context.getSource().getEntity().getUuid());
|
||||
Boolean isDisabled = AnimalRP.noChat.get(context.getSource().getEntityOrThrow().getUuid());
|
||||
if (isDisabled == null)
|
||||
isDisabled = false;
|
||||
if (isDisabled) { //
|
||||
if (isDisabled) {
|
||||
context.getSource().sendFeedback(
|
||||
() -> Text.literal("AnimalRP's chat modifications are now enabled for you.").withColor(65280),
|
||||
() -> AnimalRP.parseText("<green>AnimalRP's chat modifications are now enabled for you."),
|
||||
false);
|
||||
AnimalRP.noChat.remove(userUuid);
|
||||
} else {
|
||||
context.getSource().sendFeedback(() -> Text
|
||||
.literal("AnimalRP's chat modifications are now disabled for you.").withColor(16711680), false);
|
||||
context.getSource().sendFeedback(() -> AnimalRP.parseText("<red>AnimalRP's chat modifications are now disabled for you."), false);
|
||||
AnimalRP.noChat.put(userUuid, true);
|
||||
}
|
||||
HashmapStore.save("nochat.json", AnimalRP.noChat);
|
||||
|
|
|
@ -9,9 +9,6 @@ import net.minecraft.command.CommandRegistryAccess;
|
|||
import net.minecraft.entity.Entity;
|
||||
import net.minecraft.server.command.CommandManager;
|
||||
import net.minecraft.server.command.ServerCommandSource;
|
||||
import net.minecraft.text.MutableText;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.Formatting;
|
||||
import ovh.sad.animalrp.AnimalRP;
|
||||
import ovh.sad.animalrp.animals.Animal;
|
||||
import ovh.sad.animalrp.util.HashmapStore;
|
||||
|
@ -20,9 +17,13 @@ public class TfCommand {
|
|||
public void Command(CommandDispatcher<ServerCommandSource> dispatcher, CommandRegistryAccess registryAccess,
|
||||
CommandManager.RegistrationEnvironment environment) {
|
||||
dispatcher.register(CommandManager.literal("tf")
|
||||
.executes(context -> {
|
||||
classicError(context.getSource(), false);
|
||||
return 1;
|
||||
})
|
||||
.then(CommandManager.argument("animal", StringArgumentType.string())
|
||||
.executes(context -> {
|
||||
final Entity entity = context.getSource().getEntity();
|
||||
final Entity entity = context.getSource().getEntityOrThrow();
|
||||
final String animalString = StringArgumentType.getString(context, "animal");
|
||||
|
||||
Animal animal = AnimalRP.animals.get(animalString);
|
||||
|
@ -30,44 +31,40 @@ public class TfCommand {
|
|||
if (animalString.equals("off")) {
|
||||
if (AnimalRP.users.get(entity.getUuid()) == null) {
|
||||
context.getSource().sendFeedback(
|
||||
() -> Text.literal("You do not have a animal set."), false);
|
||||
() -> AnimalRP.parseText("<red>You do not have a animal set."), false);
|
||||
return 0;
|
||||
}
|
||||
AnimalRP.users.remove(entity.getUuid());
|
||||
context.getSource().sendFeedback(
|
||||
() -> Text.literal("You no longer have a animal set."), false);
|
||||
() -> AnimalRP.parseText("<red>You no longer have a animal set."), false);
|
||||
HashmapStore.save("users.json", AnimalRP.users);
|
||||
return 0;
|
||||
}
|
||||
|
||||
if(animal == null) {
|
||||
classicError(context.getSource());
|
||||
classicError(context.getSource(), true);
|
||||
return 0;
|
||||
}
|
||||
|
||||
AnimalRP.users.put(entity.getUuid(), animal);
|
||||
context.getSource()
|
||||
.sendFeedback(
|
||||
() -> Text.literal("You are now an " + animalString + "! ")
|
||||
.append(Text.literal(animal.catchphrase)
|
||||
.formatted(Formatting.ITALIC).withColor(
|
||||
Integer.parseInt(animal.color.substring(1),
|
||||
16))),
|
||||
() -> AnimalRP.parseText("You are now an " + animalString + "! <italic><color "+animal.color+">"+animal.catchphrase),
|
||||
false);
|
||||
HashmapStore.save("users.json", AnimalRP.users);
|
||||
return 1;
|
||||
})));
|
||||
}
|
||||
|
||||
void classicError(ServerCommandSource source) {
|
||||
MutableText options = Text.literal("Your options are: ");
|
||||
void classicError(ServerCommandSource source, Boolean showInvalidAnimal) {
|
||||
StringBuilder options = new StringBuilder("Your options are: ");
|
||||
|
||||
for (Entry<String, Animal> entry : AnimalRP.animals.entrySet()) {
|
||||
options.append(Text.literal(entry.getKey() + " ")
|
||||
.withColor(Integer.parseInt(entry.getValue().color.substring(1), 16)));
|
||||
options.append(" <color ").append(entry.getValue().color).append(">").append(entry.getKey()).append("</color>");
|
||||
}
|
||||
source.sendFeedback(() -> Text.literal("Invalid animal!").withColor(16711680), false);
|
||||
source.sendFeedback(() -> options, false);
|
||||
source.sendFeedback(() -> Text.literal("Use /tf off to disable the changes."), false);
|
||||
if(showInvalidAnimal) source.sendFeedback(() -> AnimalRP.parseText("<red>Invalid animal!"), false);
|
||||
source.sendFeedback(() -> AnimalRP.parseText(options.toString()), false);
|
||||
source.sendFeedback(() -> AnimalRP.parseText("Use <red>/tf off</red> to disable the changes."), false);
|
||||
|
||||
}
|
||||
}
|
|
@ -30,7 +30,7 @@ public class FoodEating {
|
|||
Animal animal = AnimalRP.users.get(player.getUuid());
|
||||
|
||||
if (animal != null) {
|
||||
if (animal.name == "bee") {
|
||||
if (animal.name.equals("bee")) {
|
||||
((Bee) animal).onEat(player, stack);
|
||||
}
|
||||
if (animal.superfoods.contains(stack.getItem())) {
|
||||
|
|
Loading…
Reference in a new issue