de.adrodoc55.minecraft.mpl.commands.chainlinks.ReferencingCommand Maven / Gradle / Ivy
/*
* Minecraft Programming Language (MPL): A language for easy development of command block
* applications including an IDE.
*
* © Copyright (C) 2016 Adrodoc55
*
* This file is part of MPL.
*
* MPL 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.
*
* MPL 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 MPL. If not, see
* .
*
*
*
* Minecraft Programming Language (MPL): Eine Sprache für die einfache Entwicklung von Commandoblock
* Anwendungen, inklusive einer IDE.
*
* © Copyright (C) 2016 Adrodoc55
*
* Diese Datei ist Teil von MPL.
*
* MPL ist freie Software: Sie können diese unter den Bedingungen der GNU General Public License,
* wie von der Free Software Foundation, Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
* veröffentlichten Version, weiterverbreiten und/oder modifizieren.
*
* MPL wird in der Hoffnung, dass es nützlich sein wird, aber OHNE JEDE GEWÄHRLEISTUNG,
* bereitgestellt; sogar ohne die implizite Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN
* BESTIMMTEN ZWECK. Siehe die GNU General Public License für weitere Details.
*
* Sie sollten eine Kopie der GNU General Public License zusammen mit MPL erhalten haben. Wenn
* nicht, siehe .
*/
package de.adrodoc55.minecraft.mpl.commands.chainlinks;
import de.adrodoc55.minecraft.mpl.ast.chainparts.Modifiable;
import de.adrodoc55.minecraft.mpl.commands.Mode;
import lombok.Getter;
import lombok.Setter;
/**
* @author Adrodoc55
*/
@Getter
@Setter
public class ReferencingCommand extends InternalCommand {
public static final String REF = "${this}";
protected int relative;
public ReferencingCommand() {
super();
}
public ReferencingCommand(String command) {
super(command);
}
public ReferencingCommand(String command, boolean conditional) {
super(command, conditional);
}
public ReferencingCommand(String command, Mode mode, boolean conditional) {
super(command, mode, conditional);
}
public ReferencingCommand(String command, Mode mode, boolean conditional, boolean needsRedstone) {
super(command, mode, conditional, needsRedstone);
}
public ReferencingCommand(String command, int relative) {
this(command);
this.relative = relative;
}
public ReferencingCommand(String command, boolean conditional, int relative) {
this(command, conditional);
this.relative = relative;
}
public ReferencingCommand(String command, Mode mode, boolean conditional, boolean needsRedstone,
int relative) {
this(command, mode, conditional, needsRedstone);
this.relative = relative;
}
public ReferencingCommand(String command, Modifiable modifier, int relative) {
super(command, modifier);
this.relative = relative;
}
@Override
public String getCommand() {
String operator = relative < 0 ? "-" : "+";
int abs = Math.abs(relative);
return command.replace(REF, "${this " + operator + " " + abs + "}");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy