-
-
Notifications
You must be signed in to change notification settings - Fork 374
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/SkriptLang/Skript
- Loading branch information
Showing
15 changed files
with
381 additions
and
76 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
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
108 changes: 108 additions & 0 deletions
108
src/main/java/ch/njol/skript/effects/EffSendBlockChange.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,108 @@ | ||
/** | ||
* This file is part of Skript. | ||
* | ||
* Skript 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. | ||
* | ||
* Skript 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 Skript. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
* | ||
* Copyright 2011-2017 Peter Güttinger and contributors | ||
*/ | ||
package ch.njol.skript.effects; | ||
|
||
import org.bukkit.Location; | ||
import org.bukkit.Material; | ||
import org.bukkit.block.Block; | ||
import org.bukkit.entity.Player; | ||
import org.bukkit.event.Event; | ||
import org.bukkit.inventory.ItemStack; | ||
import org.eclipse.jdt.annotation.Nullable; | ||
|
||
import ch.njol.skript.Skript; | ||
import ch.njol.skript.aliases.ItemType; | ||
import ch.njol.skript.doc.Description; | ||
import ch.njol.skript.doc.Examples; | ||
import ch.njol.skript.doc.Name; | ||
import ch.njol.skript.doc.Since; | ||
import ch.njol.skript.lang.Effect; | ||
import ch.njol.skript.lang.Expression; | ||
import ch.njol.skript.lang.SkriptParser; | ||
import ch.njol.util.Kleenean; | ||
|
||
@Name("Send Block Change") | ||
@Description("Makes a player see a block as something it really isn't") | ||
@Examples("make player see block at player as dirt") | ||
@Since("INSERT VERSION") | ||
public class EffSendBlockChange extends Effect { | ||
|
||
private static final boolean SUPPORTED = | ||
Skript.methodExists( | ||
Player.class, | ||
"sendBlockChange", | ||
Location.class, | ||
Material.class, | ||
byte.class | ||
); | ||
|
||
static { | ||
Skript.registerEffect(EffSendBlockChange.class, | ||
"make %players% see %blocks% as %itemstack%" | ||
); | ||
} | ||
|
||
@SuppressWarnings("null") | ||
private Expression<Player> players; | ||
|
||
@SuppressWarnings("null") | ||
private Expression<Block> blocks; | ||
|
||
@SuppressWarnings("null") | ||
private Expression<ItemStack> as; | ||
|
||
@Override | ||
protected void execute(Event e) { | ||
ItemStack as = this.as.getSingle(e); | ||
if (as == null) | ||
return; | ||
for (Player player : players.getArray(e)) { | ||
for (Block block : blocks.getArray(e)) { | ||
player.sendBlockChange(block.getLocation(), as.getType(), (byte) as.getDurability()); | ||
} | ||
} | ||
} | ||
|
||
@Override | ||
public String toString(@Nullable Event e, boolean debug) { | ||
return String.format( | ||
"make %s see %s as %s", | ||
players.toString(e, debug), | ||
blocks.toString(e, debug), | ||
as.toString(e, debug) | ||
); | ||
} | ||
|
||
@Override | ||
@SuppressWarnings("unchecked") | ||
public boolean init(Expression<?>[] exprs, int matchedPattern, Kleenean isDelayed, SkriptParser.ParseResult parseResult) { | ||
if (!SUPPORTED) { | ||
Skript.error("The send block change effect is not supported on this version. " + | ||
"If Spigot has added a replacement method without magic values " + | ||
"please open an issue at https://github.com/SkriptLang/Skript/issues " + | ||
"and support will be added for it."); | ||
return false; | ||
} | ||
players = (Expression<Player>) exprs[0]; | ||
blocks = (Expression<Block>) exprs[1]; | ||
as = (Expression<ItemStack>) exprs[2]; | ||
return true; | ||
} | ||
} |
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
Oops, something went wrong.