mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-10-20 16:37:39 +00:00

Look, I originally had this split into several commits, but lots of other cleanups got mixed in. I then backported some of the cleanups to 1.12, did other tidy ups there, and eventually the web of merges was unreadable. Yes, this is a horrible mess, but it's still nicer than it was. Anyway, changes: - Flatten everything. For instance, there are now three instances of BlockComputer, two BlockTurtle, ItemPocketComputer. There's also no more BlockPeripheral (thank heavens) - there's separate block classes for each peripheral type. - Remove pretty much all legacy code. As we're breaking world compatibility anyway, we can remove all the code to load worlds from 1.4 days. - The command system is largely rewriten to take advantage of 1.13's new system. It's very fancy! - WidgetTerminal now uses Minecraft's "GUI listener" system. - BREAKING CHANGE: All the codes in keys.lua are different, due to the move to LWJGL 3. Hopefully this won't have too much of an impact. I don't want to map to the old key codes on the Java side, as there always ends up being small but slight inconsistencies. IMO it's better to make a clean break - people should be using keys rather than hard coding the constants anyway. - commands.list now allows fetching sub-commands. The ROM has already been updated to allow fancy usage such as commands.time.set("noon"). - Turtles, modems and cables can be waterlogged.
68 lines
2.5 KiB
Java
68 lines
2.5 KiB
Java
/*
|
|
* This file is part of ComputerCraft - http://www.computercraft.info
|
|
* Copyright Daniel Ratcliffe, 2011-2019. Do not distribute without permission.
|
|
* Send enquiries to dratcliffe@gmail.com
|
|
*/
|
|
|
|
package dan200.computercraft.shared.command;
|
|
|
|
import com.mojang.brigadier.CommandDispatcher;
|
|
import com.mojang.brigadier.arguments.StringArgumentType;
|
|
import dan200.computercraft.ComputerCraft;
|
|
import net.minecraft.client.Minecraft;
|
|
import net.minecraft.command.CommandSource;
|
|
import net.minecraft.util.text.ITextComponent;
|
|
import net.minecraft.util.text.TextComponentString;
|
|
import net.minecraft.util.text.TextComponentTranslation;
|
|
import net.minecraft.util.text.event.ClickEvent;
|
|
import net.minecraft.util.text.event.HoverEvent;
|
|
import net.minecraftforge.api.distmarker.Dist;
|
|
import net.minecraftforge.client.event.ClientChatEvent;
|
|
import net.minecraftforge.eventbus.api.SubscribeEvent;
|
|
import net.minecraftforge.fml.common.Mod;
|
|
|
|
import static net.minecraft.command.Commands.argument;
|
|
import static net.minecraft.command.Commands.literal;
|
|
|
|
@Mod.EventBusSubscriber( modid = ComputerCraft.MOD_ID, value = Dist.CLIENT )
|
|
public final class CommandCopy
|
|
{
|
|
private static final String PREFIX = "/computercraft copy ";
|
|
|
|
private CommandCopy()
|
|
{
|
|
}
|
|
|
|
public static void register( CommandDispatcher<CommandSource> registry )
|
|
{
|
|
registry.register( literal( "computercraft" )
|
|
.then( literal( "copy" ) )
|
|
.then( argument( "message", StringArgumentType.greedyString() ) )
|
|
.executes( context -> {
|
|
Minecraft.getInstance().keyboardListener.setClipboardString( context.getArgument( "message", String.class ) );
|
|
return 1;
|
|
} )
|
|
);
|
|
}
|
|
|
|
@SubscribeEvent
|
|
public static void onClientSendMessage( ClientChatEvent event )
|
|
{
|
|
// Emulate the command on the client side
|
|
if( event.getMessage().startsWith( PREFIX ) )
|
|
{
|
|
Minecraft.getInstance().keyboardListener.setClipboardString( event.getMessage().substring( PREFIX.length() ) );
|
|
event.setCanceled( true );
|
|
}
|
|
}
|
|
|
|
public static ITextComponent createCopyText( String text )
|
|
{
|
|
TextComponentString name = new TextComponentString( text );
|
|
name.getStyle()
|
|
.setClickEvent( new ClickEvent( ClickEvent.Action.RUN_COMMAND, PREFIX + text ) )
|
|
.setHoverEvent( new HoverEvent( HoverEvent.Action.SHOW_TEXT, new TextComponentTranslation( "gui.computercraft.tooltip.copy" ) ) );
|
|
return name;
|
|
}
|
|
}
|