Spaces:
Build error
Build error
File size: 7,650 Bytes
d46f4a3 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 |
package net.minecraft.world.level;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.annotation.Nullable;
import net.minecraft.CrashReport;
import net.minecraft.CrashReportCategory;
import net.minecraft.ReportedException;
import net.minecraft.commands.CommandSource;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.core.HolderLookup;
import net.minecraft.nbt.CompoundTag;
import net.minecraft.network.chat.CommonComponents;
import net.minecraft.network.chat.Component;
import net.minecraft.server.MinecraftServer;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.util.StringUtil;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.level.block.entity.BlockEntity;
import net.minecraft.world.phys.Vec3;
public abstract class BaseCommandBlock implements CommandSource {
private static final SimpleDateFormat TIME_FORMAT = new SimpleDateFormat("HH:mm:ss");
private static final Component DEFAULT_NAME = Component.literal("@");
private long lastExecution = -1L;
private boolean updateLastExecution = true;
private int successCount;
private boolean trackOutput = true;
@Nullable
private Component lastOutput;
private String command = "";
@Nullable
private Component customName;
public int getSuccessCount() {
return this.successCount;
}
public void setSuccessCount(int p_45411_) {
this.successCount = p_45411_;
}
public Component getLastOutput() {
return this.lastOutput == null ? CommonComponents.EMPTY : this.lastOutput;
}
public CompoundTag save(CompoundTag p_45422_, HolderLookup.Provider p_329299_) {
p_45422_.putString("Command", this.command);
p_45422_.putInt("SuccessCount", this.successCount);
if (this.customName != null) {
p_45422_.putString("CustomName", Component.Serializer.toJson(this.customName, p_329299_));
}
p_45422_.putBoolean("TrackOutput", this.trackOutput);
if (this.lastOutput != null && this.trackOutput) {
p_45422_.putString("LastOutput", Component.Serializer.toJson(this.lastOutput, p_329299_));
}
p_45422_.putBoolean("UpdateLastExecution", this.updateLastExecution);
if (this.updateLastExecution && this.lastExecution > 0L) {
p_45422_.putLong("LastExecution", this.lastExecution);
}
return p_45422_;
}
public void load(CompoundTag p_45432_, HolderLookup.Provider p_329410_) {
this.command = p_45432_.getString("Command");
this.successCount = p_45432_.getInt("SuccessCount");
if (p_45432_.contains("CustomName", 8)) {
this.setCustomName(BlockEntity.parseCustomNameSafe(p_45432_.getString("CustomName"), p_329410_));
} else {
this.setCustomName(null);
}
if (p_45432_.contains("TrackOutput", 1)) {
this.trackOutput = p_45432_.getBoolean("TrackOutput");
}
if (p_45432_.contains("LastOutput", 8) && this.trackOutput) {
try {
this.lastOutput = Component.Serializer.fromJson(p_45432_.getString("LastOutput"), p_329410_);
} catch (Throwable throwable) {
this.lastOutput = Component.literal(throwable.getMessage());
}
} else {
this.lastOutput = null;
}
if (p_45432_.contains("UpdateLastExecution")) {
this.updateLastExecution = p_45432_.getBoolean("UpdateLastExecution");
}
if (this.updateLastExecution && p_45432_.contains("LastExecution")) {
this.lastExecution = p_45432_.getLong("LastExecution");
} else {
this.lastExecution = -1L;
}
}
public void setCommand(String p_45420_) {
this.command = p_45420_;
this.successCount = 0;
}
public String getCommand() {
return this.command;
}
public boolean performCommand(Level p_45415_) {
if (p_45415_.isClientSide || p_45415_.getGameTime() == this.lastExecution) {
return false;
} else if ("Searge".equalsIgnoreCase(this.command)) {
this.lastOutput = Component.literal("#itzlipofutzli");
this.successCount = 1;
return true;
} else {
this.successCount = 0;
MinecraftServer minecraftserver = this.getLevel().getServer();
if (minecraftserver.isCommandBlockEnabled() && !StringUtil.isNullOrEmpty(this.command)) {
try {
this.lastOutput = null;
CommandSourceStack commandsourcestack = this.createCommandSourceStack().withCallback((p_45418_, p_45419_) -> {
if (p_45418_) {
this.successCount++;
}
});
minecraftserver.getCommands().performPrefixedCommand(commandsourcestack, this.command);
} catch (Throwable throwable) {
CrashReport crashreport = CrashReport.forThrowable(throwable, "Executing command block");
CrashReportCategory crashreportcategory = crashreport.addCategory("Command to be executed");
crashreportcategory.setDetail("Command", this::getCommand);
crashreportcategory.setDetail("Name", () -> this.getName().getString());
throw new ReportedException(crashreport);
}
}
if (this.updateLastExecution) {
this.lastExecution = p_45415_.getGameTime();
} else {
this.lastExecution = -1L;
}
return true;
}
}
public Component getName() {
return this.customName != null ? this.customName : DEFAULT_NAME;
}
@Nullable
public Component getCustomName() {
return this.customName;
}
public void setCustomName(@Nullable Component p_327944_) {
this.customName = p_327944_;
}
@Override
public void sendSystemMessage(Component p_220330_) {
if (this.trackOutput) {
this.lastOutput = Component.literal("[" + TIME_FORMAT.format(new Date()) + "] ").append(p_220330_);
this.onUpdated();
}
}
public abstract ServerLevel getLevel();
public abstract void onUpdated();
public void setLastOutput(@Nullable Component p_45434_) {
this.lastOutput = p_45434_;
}
public void setTrackOutput(boolean p_45429_) {
this.trackOutput = p_45429_;
}
public boolean isTrackOutput() {
return this.trackOutput;
}
public InteractionResult usedBy(Player p_45413_) {
if (!p_45413_.canUseGameMasterBlocks()) {
return InteractionResult.PASS;
} else {
if (p_45413_.getCommandSenderWorld().isClientSide) {
p_45413_.openMinecartCommandBlock(this);
}
return InteractionResult.SUCCESS;
}
}
public abstract Vec3 getPosition();
public abstract CommandSourceStack createCommandSourceStack();
@Override
public boolean acceptsSuccess() {
return this.getLevel().getGameRules().getBoolean(GameRules.RULE_SENDCOMMANDFEEDBACK) && this.trackOutput;
}
@Override
public boolean acceptsFailure() {
return this.trackOutput;
}
@Override
public boolean shouldInformAdmins() {
return this.getLevel().getGameRules().getBoolean(GameRules.RULE_COMMANDBLOCKOUTPUT);
}
public abstract boolean isValid();
} |