-
-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
118 additions
and
81 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
71 changes: 71 additions & 0 deletions
71
spark-neoforge/src/main/java/me/lucko/spark/neoforge/NeoForgeClientCommandSender.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,71 @@ | ||
/* | ||
* This file is part of spark. | ||
* | ||
* Copyright (c) lucko (Luck) <[email protected]> | ||
* Copyright (c) contributors | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
package me.lucko.spark.neoforge; | ||
|
||
import me.lucko.spark.common.command.sender.AbstractCommandSender; | ||
import net.kyori.adventure.text.Component; | ||
import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer; | ||
import net.minecraft.client.player.LocalPlayer; | ||
import net.minecraft.commands.CommandSourceStack; | ||
import net.minecraft.core.RegistryAccess; | ||
import net.minecraft.network.chat.Component.Serializer; | ||
import net.minecraft.network.chat.MutableComponent; | ||
import net.minecraft.world.entity.Entity; | ||
|
||
import java.util.Objects; | ||
import java.util.UUID; | ||
|
||
public class NeoForgeClientCommandSender extends AbstractCommandSender<CommandSourceStack> { | ||
public NeoForgeClientCommandSender(CommandSourceStack source) { | ||
super(source); | ||
} | ||
|
||
@Override | ||
public String getName() { | ||
return this.delegate.getTextName(); | ||
} | ||
|
||
@Override | ||
public UUID getUniqueId() { | ||
Entity entity = this.delegate.getEntity(); | ||
if (entity instanceof LocalPlayer player) { | ||
return player.getUUID(); | ||
} | ||
return null; | ||
} | ||
|
||
@Override | ||
public void sendMessage(Component message) { | ||
MutableComponent component = Serializer.fromJson(GsonComponentSerializer.gson().serializeToTree(message), RegistryAccess.EMPTY); | ||
Objects.requireNonNull(component, "component"); | ||
super.delegate.sendSystemMessage(component); | ||
} | ||
|
||
@Override | ||
public boolean hasPermission(String permission) { | ||
return true; | ||
} | ||
|
||
@Override | ||
protected Object getObjectForComparison() { | ||
return this.delegate.getEntity(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters