mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-19 10:25:00 +00:00
Implement EditSessionFactory
This commit is contained in:
parent
ae75061492
commit
04c00034cf
28
src/main/java/com/sk89q/worldedit/EditSessionFactory.java
Normal file
28
src/main/java/com/sk89q/worldedit/EditSessionFactory.java
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
package com.sk89q.worldedit;
|
||||||
|
|
||||||
|
import com.sk89q.worldedit.bags.BlockBag;
|
||||||
|
|
||||||
|
public class EditSessionFactory {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct an edit session with a maximum number of blocks.
|
||||||
|
*
|
||||||
|
* @param world
|
||||||
|
* @param maxBlocks
|
||||||
|
*/
|
||||||
|
public EditSession getEditSession(LocalWorld world, int maxBlocks) {
|
||||||
|
return new EditSession(world, maxBlocks);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Construct an edit session with a maximum number of blocks and a block bag.
|
||||||
|
*
|
||||||
|
* @param world
|
||||||
|
* @param maxBlocks
|
||||||
|
* @param blockBag
|
||||||
|
*/
|
||||||
|
public EditSession getEditSession(LocalWorld world, int maxBlocks, BlockBag blockBag) {
|
||||||
|
return new EditSession(world, maxBlocks, blockBag);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -142,8 +142,8 @@ public class LocalSession {
|
|||||||
--historyPointer;
|
--historyPointer;
|
||||||
if (historyPointer >= 0) {
|
if (historyPointer >= 0) {
|
||||||
EditSession editSession = history.get(historyPointer);
|
EditSession editSession = history.get(historyPointer);
|
||||||
EditSession newEditSession =
|
EditSession newEditSession = WorldEdit.getInstance().getEditSessionFactory()
|
||||||
new EditSession(editSession.getWorld(), -1, newBlockBag);
|
.getEditSession(editSession.getWorld(), -1, newBlockBag);
|
||||||
newEditSession.enableQueue();
|
newEditSession.enableQueue();
|
||||||
newEditSession.setFastMode(fastMode);
|
newEditSession.setFastMode(fastMode);
|
||||||
editSession.undo(newEditSession);
|
editSession.undo(newEditSession);
|
||||||
@ -163,8 +163,8 @@ public class LocalSession {
|
|||||||
public EditSession redo(BlockBag newBlockBag) {
|
public EditSession redo(BlockBag newBlockBag) {
|
||||||
if (historyPointer < history.size()) {
|
if (historyPointer < history.size()) {
|
||||||
EditSession editSession = history.get(historyPointer);
|
EditSession editSession = history.get(historyPointer);
|
||||||
EditSession newEditSession =
|
EditSession newEditSession = WorldEdit.getInstance().getEditSessionFactory()
|
||||||
new EditSession(editSession.getWorld(), -1, newBlockBag);
|
.getEditSession(editSession.getWorld(), -1, newBlockBag);
|
||||||
newEditSession.enableQueue();
|
newEditSession.enableQueue();
|
||||||
newEditSession.setFastMode(fastMode);
|
newEditSession.setFastMode(fastMode);
|
||||||
editSession.redo(newEditSession);
|
editSession.redo(newEditSession);
|
||||||
@ -698,8 +698,8 @@ public class LocalSession {
|
|||||||
BlockBag blockBag = getBlockBag(player);
|
BlockBag blockBag = getBlockBag(player);
|
||||||
|
|
||||||
// Create an edit session
|
// Create an edit session
|
||||||
EditSession editSession =
|
EditSession editSession = WorldEdit.getInstance().getEditSessionFactory()
|
||||||
new EditSession(player.isPlayer() ? player.getWorld() : null,
|
.getEditSession(player.isPlayer() ? player.getWorld() : null,
|
||||||
getBlockChangeLimit(), blockBag);
|
getBlockChangeLimit(), blockBag);
|
||||||
editSession.setFastMode(fastMode);
|
editSession.setFastMode(fastMode);
|
||||||
if (mask != null) {
|
if (mask != null) {
|
||||||
|
@ -112,6 +112,11 @@ public class WorldEdit {
|
|||||||
*/
|
*/
|
||||||
public static final Logger logger = Logger.getLogger("Minecraft.WorldEdit");
|
public static final Logger logger = Logger.getLogger("Minecraft.WorldEdit");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Holds the current instance of this class, for static access
|
||||||
|
*/
|
||||||
|
private static WorldEdit instance;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds WorldEdit's version.
|
* Holds WorldEdit's version.
|
||||||
*/
|
*/
|
||||||
@ -131,6 +136,11 @@ public class WorldEdit {
|
|||||||
* List of commands.
|
* List of commands.
|
||||||
*/
|
*/
|
||||||
private final CommandsManager<LocalPlayer> commands;
|
private final CommandsManager<LocalPlayer> commands;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Holds the factory responsible for the creation of edit sessions
|
||||||
|
*/
|
||||||
|
private EditSessionFactory editSessionFactory = new EditSessionFactory();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Stores a list of WorldEdit sessions, keyed by players' names. Sessions
|
* Stores a list of WorldEdit sessions, keyed by players' names. Sessions
|
||||||
@ -155,6 +165,7 @@ public class WorldEdit {
|
|||||||
* @param config
|
* @param config
|
||||||
*/
|
*/
|
||||||
public WorldEdit(ServerInterface server, final LocalConfiguration config) {
|
public WorldEdit(ServerInterface server, final LocalConfiguration config) {
|
||||||
|
instance = this;
|
||||||
this.server = server;
|
this.server = server;
|
||||||
this.config = config;
|
this.config = config;
|
||||||
|
|
||||||
@ -253,6 +264,15 @@ public class WorldEdit {
|
|||||||
server.onCommandRegistration(commands.registerAndReturn(clazz), commands);
|
server.onCommandRegistration(commands.registerAndReturn(clazz), commands);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the current instance of this class
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public static WorldEdit getInstance() {
|
||||||
|
return instance;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the LocalSession for a player name if it exists
|
* Gets the LocalSession for a player name if it exists
|
||||||
*
|
*
|
||||||
@ -1529,6 +1549,28 @@ public class WorldEdit {
|
|||||||
return server;
|
return server;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get the edit session factory
|
||||||
|
*
|
||||||
|
* @return
|
||||||
|
*/
|
||||||
|
public EditSessionFactory getEditSessionFactory() {
|
||||||
|
return this.editSessionFactory;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the edit session factory
|
||||||
|
*
|
||||||
|
* @param factory
|
||||||
|
*/
|
||||||
|
public void setEditSessionFactory(EditSessionFactory factory) {
|
||||||
|
if (factory == null) {
|
||||||
|
throw new IllegalArgumentException("New EditSessionFactory may not be null");
|
||||||
|
}
|
||||||
|
logger.info("Accepted EditSessionFactory of type " + factory.getClass().getName() + " from " + factory.getClass().getPackage().getName());
|
||||||
|
this.editSessionFactory = factory;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Get the version.
|
* Get the version.
|
||||||
*
|
*
|
||||||
|
@ -220,8 +220,8 @@ public class WorldEditPlugin extends JavaPlugin {
|
|||||||
LocalSession session = controller.getSession(wePlayer);
|
LocalSession session = controller.getSession(wePlayer);
|
||||||
BlockBag blockBag = session.getBlockBag(wePlayer);
|
BlockBag blockBag = session.getBlockBag(wePlayer);
|
||||||
|
|
||||||
EditSession editSession =
|
EditSession editSession = controller.getEditSessionFactory()
|
||||||
new EditSession(wePlayer.getWorld(), session.getBlockChangeLimit(), blockBag);
|
.getEditSession(wePlayer.getWorld(), session.getBlockChangeLimit(), blockBag);
|
||||||
editSession.enableQueue();
|
editSession.enableQueue();
|
||||||
|
|
||||||
return editSession;
|
return editSession;
|
||||||
|
@ -60,8 +60,8 @@ public class CraftScriptContext extends CraftScriptEnvironment {
|
|||||||
* @return
|
* @return
|
||||||
*/
|
*/
|
||||||
public EditSession remember() {
|
public EditSession remember() {
|
||||||
EditSession editSession =
|
EditSession editSession = controller.getEditSessionFactory()
|
||||||
new EditSession(player.getWorld(),
|
.getEditSession(player.getWorld(),
|
||||||
session.getBlockChangeLimit(), session.getBlockBag(player));
|
session.getBlockChangeLimit(), session.getBlockBag(player));
|
||||||
editSession.enableQueue();
|
editSession.enableQueue();
|
||||||
editSessions.add(editSession);
|
editSessions.add(editSession);
|
||||||
|
@ -46,7 +46,7 @@ public class BlockReplacer implements DoubleActionBlockTool {
|
|||||||
BlockBag bag = session.getBlockBag(player);
|
BlockBag bag = session.getBlockBag(player);
|
||||||
|
|
||||||
LocalWorld world = clicked.getWorld();
|
LocalWorld world = clicked.getWorld();
|
||||||
EditSession editSession = new EditSession(world, -1, bag);
|
EditSession editSession = WorldEdit.getInstance().getEditSessionFactory().getEditSession(world, -1, bag);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
editSession.setBlock(clicked, targetBlock);
|
editSession.setBlock(clicked, targetBlock);
|
||||||
@ -66,7 +66,8 @@ public class BlockReplacer implements DoubleActionBlockTool {
|
|||||||
LocalSession session, WorldVector clicked) {
|
LocalSession session, WorldVector clicked) {
|
||||||
|
|
||||||
LocalWorld world = clicked.getWorld();
|
LocalWorld world = clicked.getWorld();
|
||||||
targetBlock = (new EditSession(world, -1)).getBlock(clicked);
|
EditSession editSession = WorldEdit.getInstance().getEditSessionFactory().getEditSession(world, -1);
|
||||||
|
targetBlock = (editSession).getBlock(clicked);
|
||||||
BlockType type = BlockType.fromID(targetBlock.getType());
|
BlockType type = BlockType.fromID(targetBlock.getType());
|
||||||
|
|
||||||
if (type != null) {
|
if (type != null) {
|
||||||
|
@ -37,7 +37,8 @@ public class QueryTool implements BlockTool {
|
|||||||
LocalPlayer player, LocalSession session, WorldVector clicked) {
|
LocalPlayer player, LocalSession session, WorldVector clicked) {
|
||||||
|
|
||||||
LocalWorld world = clicked.getWorld();
|
LocalWorld world = clicked.getWorld();
|
||||||
BaseBlock block = (new EditSession(world, 0)).rawGetBlock(clicked);
|
EditSession editSession = WorldEdit.getInstance().getEditSessionFactory().getEditSession(world, 0);
|
||||||
|
BaseBlock block = (editSession).rawGetBlock(clicked);
|
||||||
BlockType type = BlockType.fromID(block.getType());
|
BlockType type = BlockType.fromID(block.getType());
|
||||||
|
|
||||||
player.print("\u00A79@" + clicked + ": " + "\u00A7e"
|
player.print("\u00A79@" + clicked + ": " + "\u00A7e"
|
||||||
|
Loading…
Reference in New Issue
Block a user