Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-11-02 17:40:09 +01:00
various
use vector.add for compatibility with vs-flattened flush before remember share meta objects across players fix wg compatibility
Dieser Commit ist enthalten in:
Ursprung
f8e1654a4e
Commit
b97b40e413
@ -62,6 +62,7 @@ import java.util.HashMap;
|
|||||||
import java.util.Locale;
|
import java.util.Locale;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.UUID;
|
import java.util.UUID;
|
||||||
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
|
|
||||||
public class BukkitPlayer extends AbstractPlayerActor {
|
public class BukkitPlayer extends AbstractPlayerActor {
|
||||||
|
|
||||||
@ -69,18 +70,31 @@ public class BukkitPlayer extends AbstractPlayerActor {
|
|||||||
private WorldEditPlugin plugin;
|
private WorldEditPlugin plugin;
|
||||||
|
|
||||||
public BukkitPlayer(Player player) {
|
public BukkitPlayer(Player player) {
|
||||||
this(WorldEditPlugin.getInstance(), player);
|
super(getExistingMap(WorldEditPlugin.getInstance(), player));
|
||||||
Fawe.debug("Should not construct BukkitPlayer. Instead use BukkitAdapter.adapt(player)");
|
this.plugin = WorldEditPlugin.getInstance();
|
||||||
|
this.player = player;
|
||||||
}
|
}
|
||||||
|
|
||||||
public BukkitPlayer(WorldEditPlugin plugin, Player player) {
|
public BukkitPlayer(WorldEditPlugin plugin, Player player) {
|
||||||
this.plugin = plugin;
|
this.plugin = plugin;
|
||||||
this.player = player;
|
this.player = player;
|
||||||
|
init();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void init() {
|
||||||
if (Settings.IMP.CLIPBOARD.USE_DISK) {
|
if (Settings.IMP.CLIPBOARD.USE_DISK) {
|
||||||
loadClipboardFromDisk();
|
loadClipboardFromDisk();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static Map<String, Object> getExistingMap(WorldEditPlugin plugin, Player player) {
|
||||||
|
BukkitPlayer cached = plugin.getCachedPlayer(player);
|
||||||
|
if (cached != null) {
|
||||||
|
return cached.getRawMeta();
|
||||||
|
}
|
||||||
|
return new ConcurrentHashMap<>();
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public UUID getUniqueId() {
|
public UUID getUniqueId() {
|
||||||
return player.getUniqueId();
|
return player.getUniqueId();
|
||||||
|
@ -0,0 +1,53 @@
|
|||||||
|
/*
|
||||||
|
* WorldEdit, a Minecraft world manipulation toolkit
|
||||||
|
* Copyright (C) sk89q <http://www.sk89q.com>
|
||||||
|
* Copyright (C) WorldEdit team and contributors
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify it
|
||||||
|
* under the terms of the GNU Lesser 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 Lesser General Public License
|
||||||
|
* for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Lesser General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.sk89q.minecraft.util.commands;
|
||||||
|
|
||||||
|
import org.slf4j.Logger;
|
||||||
|
import org.slf4j.LoggerFactory;
|
||||||
|
|
||||||
|
import java.lang.reflect.Constructor;
|
||||||
|
import java.lang.reflect.InvocationTargetException;
|
||||||
|
|
||||||
|
public class SimpleInjector implements Injector {
|
||||||
|
|
||||||
|
private static final Logger log = LoggerFactory.getLogger(SimpleInjector.class);
|
||||||
|
private Object[] args;
|
||||||
|
private Class<?>[] argClasses;
|
||||||
|
|
||||||
|
public SimpleInjector(Object... args) {
|
||||||
|
this.args = args;
|
||||||
|
argClasses = new Class[args.length];
|
||||||
|
for (int i = 0; i < args.length; ++i) {
|
||||||
|
argClasses[i] = args[i].getClass();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Object getInstance(Class<?> clazz) {
|
||||||
|
try {
|
||||||
|
Constructor<?> ctr = clazz.getConstructor(argClasses);
|
||||||
|
ctr.setAccessible(true);
|
||||||
|
return ctr.newInstance(args);
|
||||||
|
} catch (NoSuchMethodException | IllegalAccessException | InstantiationException | InvocationTargetException e) {
|
||||||
|
log.error("Error initializing commands class " + clazz, e);
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -81,7 +81,15 @@ import org.jetbrains.annotations.NotNull;
|
|||||||
*/
|
*/
|
||||||
public abstract class AbstractPlayerActor implements Actor, Player, Cloneable {
|
public abstract class AbstractPlayerActor implements Actor, Player, Cloneable {
|
||||||
|
|
||||||
private final ConcurrentHashMap<String, Object> meta = new ConcurrentHashMap<>();
|
private final Map<String, Object> meta;
|
||||||
|
|
||||||
|
public AbstractPlayerActor(Map<String, Object> meta) {
|
||||||
|
this.meta = meta;
|
||||||
|
}
|
||||||
|
|
||||||
|
public AbstractPlayerActor() {
|
||||||
|
this(new ConcurrentHashMap<>());
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Map<String, Object> getRawMeta() {
|
public Map<String, Object> getRawMeta() {
|
||||||
|
@ -727,14 +727,13 @@ public final class PlatformCommandManager {
|
|||||||
if (context instanceof MemoizingValueAccess) {
|
if (context instanceof MemoizingValueAccess) {
|
||||||
context = ((MemoizingValueAccess) context).snapshotMemory();
|
context = ((MemoizingValueAccess) context).snapshotMemory();
|
||||||
} else {
|
} else {
|
||||||
System.out.println("Invalid context " + context);
|
|
||||||
}
|
}
|
||||||
Optional<EditSession> editSessionOpt = context.injectedValue(Key.of(EditSession.class));
|
Optional<EditSession> editSessionOpt = context.injectedValue(Key.of(EditSession.class));
|
||||||
|
|
||||||
if (editSessionOpt.isPresent()) {
|
if (editSessionOpt.isPresent()) {
|
||||||
EditSession editSession = editSessionOpt.get();
|
EditSession editSession = editSessionOpt.get();
|
||||||
session.remember(editSession);
|
|
||||||
editSession.flushQueue();
|
editSession.flushQueue();
|
||||||
|
session.remember(editSession);
|
||||||
|
|
||||||
long time = System.currentTimeMillis() - start;
|
long time = System.currentTimeMillis() - start;
|
||||||
if (time > 1000) {
|
if (time > 1000) {
|
||||||
|
@ -779,4 +779,9 @@ public abstract class BlockVector3 {
|
|||||||
return "(" + getX() + ", " + getY() + ", " + getZ() + ")";
|
return "(" + getX() + ", " + getY() + ", " + getZ() + ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//Used by VS fork
|
||||||
|
public BlockVector3 plus(BlockVector3 other) {
|
||||||
|
return add(other);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren