Spaces:
Build error
Build error
File size: 20,231 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 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 |
package net.minecraft.commands;
import com.google.common.collect.Lists;
import com.mojang.brigadier.CommandDispatcher;
import com.mojang.brigadier.Message;
import com.mojang.brigadier.context.CommandContext;
import com.mojang.brigadier.exceptions.CommandExceptionType;
import com.mojang.brigadier.exceptions.CommandSyntaxException;
import com.mojang.brigadier.exceptions.SimpleCommandExceptionType;
import com.mojang.brigadier.suggestion.Suggestions;
import com.mojang.brigadier.suggestion.SuggestionsBuilder;
import java.util.Collection;
import java.util.Objects;
import java.util.Set;
import java.util.concurrent.CompletableFuture;
import java.util.function.BinaryOperator;
import java.util.function.Supplier;
import java.util.stream.Stream;
import javax.annotation.Nullable;
import net.minecraft.ChatFormatting;
import net.minecraft.advancements.AdvancementHolder;
import net.minecraft.commands.arguments.EntityAnchorArgument;
import net.minecraft.commands.execution.TraceCallbacks;
import net.minecraft.core.Registry;
import net.minecraft.core.RegistryAccess;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.core.registries.Registries;
import net.minecraft.network.chat.ChatType;
import net.minecraft.network.chat.Component;
import net.minecraft.network.chat.ComponentUtils;
import net.minecraft.network.chat.OutgoingChatMessage;
import net.minecraft.resources.ResourceKey;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.server.MinecraftServer;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.server.level.ServerPlayer;
import net.minecraft.sounds.SoundEvent;
import net.minecraft.util.Mth;
import net.minecraft.util.TaskChainer;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.flag.FeatureFlagSet;
import net.minecraft.world.item.crafting.RecipeHolder;
import net.minecraft.world.level.GameRules;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.dimension.DimensionType;
import net.minecraft.world.phys.Vec2;
import net.minecraft.world.phys.Vec3;
public class CommandSourceStack implements ExecutionCommandSource<CommandSourceStack>, SharedSuggestionProvider {
public static final SimpleCommandExceptionType ERROR_NOT_PLAYER = new SimpleCommandExceptionType(Component.translatable("permissions.requires.player"));
public static final SimpleCommandExceptionType ERROR_NOT_ENTITY = new SimpleCommandExceptionType(Component.translatable("permissions.requires.entity"));
private final CommandSource source;
private final Vec3 worldPosition;
private final ServerLevel level;
private final int permissionLevel;
private final String textName;
private final Component displayName;
private final MinecraftServer server;
private final boolean silent;
@Nullable
private final Entity entity;
private final CommandResultCallback resultCallback;
private final EntityAnchorArgument.Anchor anchor;
private final Vec2 rotation;
private final CommandSigningContext signingContext;
private final TaskChainer chatMessageChainer;
public CommandSourceStack(
CommandSource p_81302_,
Vec3 p_81303_,
Vec2 p_81304_,
ServerLevel p_81305_,
int p_81306_,
String p_81307_,
Component p_81308_,
MinecraftServer p_81309_,
@Nullable Entity p_81310_
) {
this(
p_81302_,
p_81303_,
p_81304_,
p_81305_,
p_81306_,
p_81307_,
p_81308_,
p_81309_,
p_81310_,
false,
CommandResultCallback.EMPTY,
EntityAnchorArgument.Anchor.FEET,
CommandSigningContext.ANONYMOUS,
TaskChainer.immediate(p_81309_)
);
}
protected CommandSourceStack(
CommandSource p_282943_,
Vec3 p_282023_,
Vec2 p_282896_,
ServerLevel p_282659_,
int p_283075_,
String p_282379_,
Component p_282469_,
MinecraftServer p_281590_,
@Nullable Entity p_281515_,
boolean p_282415_,
CommandResultCallback p_310300_,
EntityAnchorArgument.Anchor p_282332_,
CommandSigningContext p_283585_,
TaskChainer p_282376_
) {
this.source = p_282943_;
this.worldPosition = p_282023_;
this.level = p_282659_;
this.silent = p_282415_;
this.entity = p_281515_;
this.permissionLevel = p_283075_;
this.textName = p_282379_;
this.displayName = p_282469_;
this.server = p_281590_;
this.resultCallback = p_310300_;
this.anchor = p_282332_;
this.rotation = p_282896_;
this.signingContext = p_283585_;
this.chatMessageChainer = p_282376_;
}
public CommandSourceStack withSource(CommandSource p_165485_) {
return this.source == p_165485_
? this
: new CommandSourceStack(
p_165485_,
this.worldPosition,
this.rotation,
this.level,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withEntity(Entity p_81330_) {
return this.entity == p_81330_
? this
: new CommandSourceStack(
this.source,
this.worldPosition,
this.rotation,
this.level,
this.permissionLevel,
p_81330_.getName().getString(),
p_81330_.getDisplayName(),
this.server,
p_81330_,
this.silent,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withPosition(Vec3 p_81349_) {
return this.worldPosition.equals(p_81349_)
? this
: new CommandSourceStack(
this.source,
p_81349_,
this.rotation,
this.level,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withRotation(Vec2 p_81347_) {
return this.rotation.equals(p_81347_)
? this
: new CommandSourceStack(
this.source,
this.worldPosition,
p_81347_,
this.level,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withCallback(CommandResultCallback p_310737_) {
return Objects.equals(this.resultCallback, p_310737_)
? this
: new CommandSourceStack(
this.source,
this.worldPosition,
this.rotation,
this.level,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
p_310737_,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withCallback(CommandResultCallback p_311586_, BinaryOperator<CommandResultCallback> p_81338_) {
CommandResultCallback commandresultcallback = p_81338_.apply(this.resultCallback, p_311586_);
return this.withCallback(commandresultcallback);
}
public CommandSourceStack withSuppressedOutput() {
return !this.silent && !this.source.alwaysAccepts()
? new CommandSourceStack(
this.source,
this.worldPosition,
this.rotation,
this.level,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
true,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
)
: this;
}
public CommandSourceStack withPermission(int p_81326_) {
return p_81326_ == this.permissionLevel
? this
: new CommandSourceStack(
this.source,
this.worldPosition,
this.rotation,
this.level,
p_81326_,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withMaximumPermission(int p_81359_) {
return p_81359_ <= this.permissionLevel
? this
: new CommandSourceStack(
this.source,
this.worldPosition,
this.rotation,
this.level,
p_81359_,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withAnchor(EntityAnchorArgument.Anchor p_81351_) {
return p_81351_ == this.anchor
? this
: new CommandSourceStack(
this.source,
this.worldPosition,
this.rotation,
this.level,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
p_81351_,
this.signingContext,
this.chatMessageChainer
);
}
public CommandSourceStack withLevel(ServerLevel p_81328_) {
if (p_81328_ == this.level) {
return this;
} else {
double d0 = DimensionType.getTeleportationScale(this.level.dimensionType(), p_81328_.dimensionType());
Vec3 vec3 = new Vec3(this.worldPosition.x * d0, this.worldPosition.y, this.worldPosition.z * d0);
return new CommandSourceStack(
this.source,
vec3,
this.rotation,
p_81328_,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
this.anchor,
this.signingContext,
this.chatMessageChainer
);
}
}
public CommandSourceStack facing(Entity p_81332_, EntityAnchorArgument.Anchor p_81333_) {
return this.facing(p_81333_.apply(p_81332_));
}
public CommandSourceStack facing(Vec3 p_81365_) {
Vec3 vec3 = this.anchor.apply(this);
double d0 = p_81365_.x - vec3.x;
double d1 = p_81365_.y - vec3.y;
double d2 = p_81365_.z - vec3.z;
double d3 = Math.sqrt(d0 * d0 + d2 * d2);
float f = Mth.wrapDegrees((float)(-(Mth.atan2(d1, d3) * 180.0F / (float)Math.PI)));
float f1 = Mth.wrapDegrees((float)(Mth.atan2(d2, d0) * 180.0F / (float)Math.PI) - 90.0F);
return this.withRotation(new Vec2(f, f1));
}
public CommandSourceStack withSigningContext(CommandSigningContext p_230894_, TaskChainer p_301144_) {
return p_230894_ == this.signingContext && p_301144_ == this.chatMessageChainer
? this
: new CommandSourceStack(
this.source,
this.worldPosition,
this.rotation,
this.level,
this.permissionLevel,
this.textName,
this.displayName,
this.server,
this.entity,
this.silent,
this.resultCallback,
this.anchor,
p_230894_,
p_301144_
);
}
public Component getDisplayName() {
return this.displayName;
}
public String getTextName() {
return this.textName;
}
@Override
public boolean hasPermission(int p_81370_) {
return this.permissionLevel >= p_81370_;
}
public Vec3 getPosition() {
return this.worldPosition;
}
public ServerLevel getLevel() {
return this.level;
}
@Nullable
public Entity getEntity() {
return this.entity;
}
public Entity getEntityOrException() throws CommandSyntaxException {
if (this.entity == null) {
throw ERROR_NOT_ENTITY.create();
} else {
return this.entity;
}
}
public ServerPlayer getPlayerOrException() throws CommandSyntaxException {
Entity entity = this.entity;
if (entity instanceof ServerPlayer) {
return (ServerPlayer)entity;
} else {
throw ERROR_NOT_PLAYER.create();
}
}
@Nullable
public ServerPlayer getPlayer() {
return this.entity instanceof ServerPlayer serverplayer ? serverplayer : null;
}
public boolean isPlayer() {
return this.entity instanceof ServerPlayer;
}
public Vec2 getRotation() {
return this.rotation;
}
public MinecraftServer getServer() {
return this.server;
}
public EntityAnchorArgument.Anchor getAnchor() {
return this.anchor;
}
public CommandSigningContext getSigningContext() {
return this.signingContext;
}
public TaskChainer getChatMessageChainer() {
return this.chatMessageChainer;
}
public boolean shouldFilterMessageTo(ServerPlayer p_243268_) {
ServerPlayer serverplayer = this.getPlayer();
return p_243268_ == serverplayer ? false : serverplayer != null && serverplayer.isTextFilteringEnabled() || p_243268_.isTextFilteringEnabled();
}
public void sendChatMessage(OutgoingChatMessage p_251464_, boolean p_252146_, ChatType.Bound p_250406_) {
if (!this.silent) {
ServerPlayer serverplayer = this.getPlayer();
if (serverplayer != null) {
serverplayer.sendChatMessage(p_251464_, p_252146_, p_250406_);
} else {
this.source.sendSystemMessage(p_250406_.decorate(p_251464_.content()));
}
}
}
public void sendSystemMessage(Component p_243331_) {
if (!this.silent) {
ServerPlayer serverplayer = this.getPlayer();
if (serverplayer != null) {
serverplayer.sendSystemMessage(p_243331_);
} else {
this.source.sendSystemMessage(p_243331_);
}
}
}
public void sendSuccess(Supplier<Component> p_288979_, boolean p_289007_) {
boolean flag = this.source.acceptsSuccess() && !this.silent;
boolean flag1 = p_289007_ && this.source.shouldInformAdmins() && !this.silent;
if (flag || flag1) {
Component component = p_288979_.get();
if (flag) {
this.source.sendSystemMessage(component);
}
if (flag1) {
this.broadcastToAdmins(component);
}
}
}
private void broadcastToAdmins(Component p_81367_) {
Component component = Component.translatable("chat.type.admin", this.getDisplayName(), p_81367_).withStyle(ChatFormatting.GRAY, ChatFormatting.ITALIC);
if (this.server.getGameRules().getBoolean(GameRules.RULE_SENDCOMMANDFEEDBACK)) {
for (ServerPlayer serverplayer : this.server.getPlayerList().getPlayers()) {
if (serverplayer.commandSource() != this.source && this.server.getPlayerList().isOp(serverplayer.getGameProfile())) {
serverplayer.sendSystemMessage(component);
}
}
}
if (this.source != this.server && this.server.getGameRules().getBoolean(GameRules.RULE_LOGADMINCOMMANDS)) {
this.server.sendSystemMessage(component);
}
}
public void sendFailure(Component p_81353_) {
if (this.source.acceptsFailure() && !this.silent) {
this.source.sendSystemMessage(Component.empty().append(p_81353_).withStyle(ChatFormatting.RED));
}
}
@Override
public CommandResultCallback callback() {
return this.resultCallback;
}
@Override
public Collection<String> getOnlinePlayerNames() {
return Lists.newArrayList(this.server.getPlayerNames());
}
@Override
public Collection<String> getAllTeams() {
return this.server.getScoreboard().getTeamNames();
}
@Override
public Stream<ResourceLocation> getAvailableSounds() {
return BuiltInRegistries.SOUND_EVENT.stream().map(SoundEvent::location);
}
@Override
public CompletableFuture<Suggestions> customSuggestion(CommandContext<?> p_212324_) {
return Suggestions.empty();
}
@Override
public CompletableFuture<Suggestions> suggestRegistryElements(
ResourceKey<? extends Registry<?>> p_212330_,
SharedSuggestionProvider.ElementSuggestionType p_212331_,
SuggestionsBuilder p_212332_,
CommandContext<?> p_212333_
) {
if (p_212330_ == Registries.RECIPE) {
return SharedSuggestionProvider.suggestResource(
this.server.getRecipeManager().getRecipes().stream().map(p_358061_ -> p_358061_.id().location()), p_212332_
);
} else if (p_212330_ == Registries.ADVANCEMENT) {
Collection<AdvancementHolder> collection = this.server.getAdvancements().getAllAdvancements();
return SharedSuggestionProvider.suggestResource(collection.stream().map(AdvancementHolder::id), p_212332_);
} else {
return this.registryAccess().lookup(p_212330_).map(p_212328_ -> {
this.suggestRegistryElements((Registry<?>)p_212328_, p_212331_, p_212332_);
return p_212332_.buildFuture();
}).orElseGet(Suggestions::empty);
}
}
@Override
public Set<ResourceKey<Level>> levels() {
return this.server.levelKeys();
}
@Override
public RegistryAccess registryAccess() {
return this.server.registryAccess();
}
@Override
public FeatureFlagSet enabledFeatures() {
return this.level.enabledFeatures();
}
@Override
public CommandDispatcher<CommandSourceStack> dispatcher() {
return this.getServer().getFunctions().getDispatcher();
}
@Override
public void handleError(CommandExceptionType p_311431_, Message p_311914_, boolean p_312997_, @Nullable TraceCallbacks p_310681_) {
if (p_310681_ != null) {
p_310681_.onError(p_311914_.getString());
}
if (!p_312997_) {
this.sendFailure(ComponentUtils.fromMessage(p_311914_));
}
}
@Override
public boolean isSilent() {
return this.silent;
}
} |