Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-26 02:50:06 +01:00
Ursprung
fd1ed63703
Commit
ac73478827
@ -155,11 +155,9 @@ public @interface Confirm {
|
|||||||
actor.setMeta("cmdConfirm", wait);
|
actor.setMeta("cmdConfirm", wait);
|
||||||
try {
|
try {
|
||||||
// This is really dumb but also stops the double //confirm requirement...
|
// This is really dumb but also stops the double //confirm requirement...
|
||||||
Field f = MemoizingValueAccess.class.getDeclaredField("memory");
|
Map<Key<?>, Optional<?>> memory = (Map<Key<?>, Optional<?>>) Reflect.memory.get(context);
|
||||||
f.setAccessible(true);
|
memory.put(Key.of(InterruptableCondition.class), Optional.of(wait));
|
||||||
Map<Key<?>, Optional<?>> memory = (Map<Key<?>, Optional<?>>) f.get(context);
|
} catch (IllegalAccessException e) {
|
||||||
memory.put(Key.of(ReentrantLock.class), Optional.of(lock));
|
|
||||||
} catch (NoSuchFieldException | IllegalAccessException e) {
|
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
// Waits till 15 seconds then returns false unless awakened
|
// Waits till 15 seconds then returns false unless awakened
|
||||||
@ -176,21 +174,25 @@ public @interface Confirm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
boolean checkExisting(InjectedValueAccess context) {
|
boolean checkExisting(InjectedValueAccess context) {
|
||||||
Optional<ReentrantLock> lock = context.injectedValue(Key.of(ReentrantLock.class));
|
Optional<InterruptableCondition> lock = context.injectedValue(Key.of(InterruptableCondition.class));
|
||||||
try {
|
|
||||||
// This is really dumb but also stops the double //confirm requirement...
|
|
||||||
Field f = MemoizingValueAccess.class.getDeclaredField("memory");
|
|
||||||
f.setAccessible(true);
|
|
||||||
Map<Key<?>, Optional<?>> memory = (Map<Key<?>, Optional<?>>) f.get(context);
|
|
||||||
} catch (NoSuchFieldException | IllegalAccessException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
if (lock.isPresent()) {
|
|
||||||
// lock if locked will be held by current thread unless something has gone REALLY wrong
|
// lock if locked will be held by current thread unless something has gone REALLY wrong
|
||||||
// in which case this is the least of our worries...
|
// in which case this is the least of our worries...
|
||||||
return true;
|
return lock.isPresent();
|
||||||
}
|
}
|
||||||
return false;
|
}
|
||||||
|
|
||||||
|
class Reflect {
|
||||||
|
static final Field memory;
|
||||||
|
static {
|
||||||
|
Field f;
|
||||||
|
try {
|
||||||
|
f = MemoizingValueAccess.class.getDeclaredField("memory");
|
||||||
|
f.setAccessible(true);
|
||||||
|
} catch (NoSuchFieldException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
f = null;
|
||||||
|
}
|
||||||
|
memory = f;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren