Mirror von
https://github.com/IntellectualSites/FastAsyncWorldEdit.git
synchronisiert 2024-12-24 18:10:08 +01:00
Moved scripting code around.
Dieser Commit ist enthalten in:
Ursprung
12c230d153
Commit
c9f8a8fe13
@ -2177,6 +2177,7 @@ public class WorldEditController {
|
|||||||
engine.put("argv", args);
|
engine.put("argv", args);
|
||||||
engine.put("ctx", context);
|
engine.put("ctx", context);
|
||||||
engine.put("player", player);
|
engine.put("player", player);
|
||||||
|
engine.put("BaseBlock", BaseBlock.class);
|
||||||
|
|
||||||
try {
|
try {
|
||||||
engine.eval(script);
|
engine.eval(script);
|
||||||
|
@ -31,21 +31,13 @@ import com.sk89q.worldedit.UnknownItemException;
|
|||||||
import com.sk89q.worldedit.WorldEditController;
|
import com.sk89q.worldedit.WorldEditController;
|
||||||
import com.sk89q.worldedit.blocks.BaseBlock;
|
import com.sk89q.worldedit.blocks.BaseBlock;
|
||||||
|
|
||||||
public class ScriptContext {
|
public class ScriptContext extends ScriptEnvironment {
|
||||||
private WorldEditController controller;
|
|
||||||
private LocalPlayer player;
|
|
||||||
private LocalConfiguration config;
|
|
||||||
private LocalSession session;
|
|
||||||
private ServerInterface server;
|
|
||||||
private List<EditSession> editSessions = new ArrayList<EditSession>();
|
private List<EditSession> editSessions = new ArrayList<EditSession>();
|
||||||
|
|
||||||
public ScriptContext(WorldEditController controller, ServerInterface server,
|
public ScriptContext(WorldEditController controller,
|
||||||
LocalConfiguration config, LocalSession session, LocalPlayer player) {
|
ServerInterface server, LocalConfiguration config,
|
||||||
this.controller = controller;
|
LocalSession session, LocalPlayer player) {
|
||||||
this.player = player;
|
super(controller, server, config, session, player);
|
||||||
this.config = config;
|
|
||||||
this.server = server;
|
|
||||||
this.session = session;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public EditSession startEditSession() {
|
public EditSession startEditSession() {
|
||||||
|
43
src/com/sk89q/worldedit/scripting/ScriptEnvironment.java
Normale Datei
43
src/com/sk89q/worldedit/scripting/ScriptEnvironment.java
Normale Datei
@ -0,0 +1,43 @@
|
|||||||
|
// $Id$
|
||||||
|
/*
|
||||||
|
* WorldEdit
|
||||||
|
* Copyright (C) 2010 sk89q <http://www.sk89q.com>
|
||||||
|
*
|
||||||
|
* This program 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.
|
||||||
|
*
|
||||||
|
* 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 General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU General Public License
|
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
package com.sk89q.worldedit.scripting;
|
||||||
|
|
||||||
|
import com.sk89q.worldedit.LocalConfiguration;
|
||||||
|
import com.sk89q.worldedit.LocalPlayer;
|
||||||
|
import com.sk89q.worldedit.LocalSession;
|
||||||
|
import com.sk89q.worldedit.ServerInterface;
|
||||||
|
import com.sk89q.worldedit.WorldEditController;
|
||||||
|
|
||||||
|
public abstract class ScriptEnvironment {
|
||||||
|
protected WorldEditController controller;
|
||||||
|
protected LocalPlayer player;
|
||||||
|
protected LocalConfiguration config;
|
||||||
|
protected LocalSession session;
|
||||||
|
protected ServerInterface server;
|
||||||
|
|
||||||
|
public ScriptEnvironment(WorldEditController controller, ServerInterface server,
|
||||||
|
LocalConfiguration config, LocalSession session, LocalPlayer player) {
|
||||||
|
this.controller = controller;
|
||||||
|
this.player = player;
|
||||||
|
this.config = config;
|
||||||
|
this.server = server;
|
||||||
|
this.session = session;
|
||||||
|
}
|
||||||
|
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren