Merge pull request #236 from vorburger/SomeMinorCleanUp
Thanks for this @vorburger . I'm interested in how you used blockly with ScriptCraft - is there source code for that integration anywhere?
This commit is contained in:
commit
754dd687e1
7 changed files with 71 additions and 36 deletions
11
.classpath
Normal file
11
.classpath
Normal file
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<classpath>
|
||||
<classpathentry kind="src" path="src/docs/java"/>
|
||||
<classpathentry kind="src" path="src/main/java/bukkit"/>
|
||||
<classpathentry kind="src" path="src/main/java/canary"/>
|
||||
<classpathentry kind="src" path="src/main/java/webserver"/>
|
||||
<classpathentry kind="lib" path="lib/bukkit-1.7.10-R0.1-SNAPSHOT.jar"/>
|
||||
<classpathentry kind="lib" path="lib/canarymod.jar"/>
|
||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
|
||||
<classpathentry kind="output" path="target"/>
|
||||
</classpath>
|
17
.project
Normal file
17
.project
Normal file
|
@ -0,0 +1,17 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>ScriptCraft</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
1
lib/.gitignore
vendored
Normal file
1
lib/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/canarymod.jar
|
|
@ -1,6 +1,5 @@
|
|||
import javax.script.*;
|
||||
import java.io.FileReader;
|
||||
import net.canarymod.api.Server;
|
||||
import net.canarymod.api.inventory.ItemType;
|
||||
|
||||
public class jscript
|
||||
|
|
|
@ -21,8 +21,8 @@ public class ScriptCraftPlugin extends JavaPlugin implements Listener
|
|||
//protected Map<CommandSender,ScriptCraftEvaluator> playerContexts = new HashMap<CommandSender,ScriptCraftEvaluator>();
|
||||
private String NO_JAVASCRIPT_MESSAGE = "No JavaScript Engine available. ScriptCraft will not work without Javascript.";
|
||||
protected ScriptEngine engine = null;
|
||||
@Override
|
||||
public void onEnable()
|
||||
|
||||
@Override public void onEnable()
|
||||
{
|
||||
Thread currentThread = Thread.currentThread();
|
||||
ClassLoader previousClassLoader = currentThread.getContextClassLoader();
|
||||
|
@ -44,6 +44,7 @@ public class ScriptCraftPlugin extends JavaPlugin implements Listener
|
|||
currentThread.setContextClassLoader(previousClassLoader);
|
||||
}
|
||||
}
|
||||
|
||||
public List<String> onTabComplete(CommandSender sender, Command cmd,
|
||||
String alias,
|
||||
String[] args)
|
||||
|
@ -66,7 +67,6 @@ public class ScriptCraftPlugin extends JavaPlugin implements Listener
|
|||
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args)
|
||||
{
|
||||
boolean result = false;
|
||||
String javascriptCode = "";
|
||||
Object jsResult = null;
|
||||
if (this.engine == null) {
|
||||
this.getLogger().severe(NO_JAVASCRIPT_MESSAGE);
|
||||
|
|
|
@ -16,12 +16,8 @@ import net.canarymod.commandsys.Command;
|
|||
import net.canarymod.commandsys.TabComplete;
|
||||
import net.canarymod.chat.MessageReceiver;
|
||||
import net.canarymod.Canary;
|
||||
import net.canarymod.api.inventory.recipes.CraftingRecipe;
|
||||
import net.canarymod.api.inventory.recipes.RecipeRow;
|
||||
import net.canarymod.api.inventory.Item;
|
||||
// event help stuff
|
||||
import net.canarymod.hook.Dispatcher;
|
||||
import net.canarymod.plugin.PluginListener;
|
||||
import net.canarymod.hook.Hook;
|
||||
|
||||
public class ScriptCraftPlugin extends Plugin implements PluginListener, CommandListener
|
||||
|
@ -31,6 +27,7 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
private String NO_JAVASCRIPT_MESSAGE = "No JavaScript Engine available. " +
|
||||
"ScriptCraft will not work without Javascript.";
|
||||
protected ScriptEngine engine = null;
|
||||
|
||||
@Override
|
||||
public void disable(){
|
||||
try {
|
||||
|
@ -39,6 +36,7 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
this.getLogman().error(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean enable()
|
||||
{
|
||||
|
@ -62,11 +60,15 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
e.printStackTrace();
|
||||
this.getLogman().error(e.getMessage());
|
||||
}
|
||||
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public static interface IDispatcher {
|
||||
public void execute(PluginListener listener, Hook hook);
|
||||
}
|
||||
|
||||
public Dispatcher getDispatcher(final IDispatcher impl){
|
||||
return new Dispatcher(){
|
||||
public void execute(PluginListener listener, Hook hook){
|
||||
|
@ -74,6 +76,7 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
}
|
||||
};
|
||||
}
|
||||
|
||||
static class ScriptCraftTask extends ServerTask {
|
||||
private Runnable runnable = null;
|
||||
public ScriptCraftTask(Runnable runnable, TaskOwner owner, long delay, boolean continuous){
|
||||
|
@ -91,8 +94,6 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
}
|
||||
|
||||
private void executeCommand( MessageReceiver sender, String[] args) {
|
||||
boolean result = false;
|
||||
String javascriptCode = "";
|
||||
Object jsResult = null;
|
||||
if (this.engine == null){
|
||||
this.getLogman().error(NO_JAVASCRIPT_MESSAGE);
|
||||
|
@ -110,6 +111,7 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
}
|
||||
return;
|
||||
}
|
||||
|
||||
@Command(
|
||||
aliases = { "js" },
|
||||
description = "Execute Javascript code",
|
||||
|
@ -119,6 +121,7 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
|
||||
executeCommand(sender, args);
|
||||
}
|
||||
|
||||
/*
|
||||
groupmod permission add visitors canary.jsp
|
||||
groupmod permission add visitors canary.command.jsp
|
||||
|
@ -148,10 +151,12 @@ public class ScriptCraftPlugin extends Plugin implements PluginListener, Command
|
|||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
@TabComplete (commands = { "js" })
|
||||
public List<String> jsComplete(MessageReceiver sender, String[] args){
|
||||
return complete(sender, args, "js");
|
||||
}
|
||||
|
||||
@TabComplete (commands = { "jsp" })
|
||||
public List<String> jspComplete(MessageReceiver sender, String[] args){
|
||||
return complete(sender, args, "jsp");
|
||||
|
|
2
src/main/js/lib/.gitignore
vendored
Normal file
2
src/main/js/lib/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/events-helper-bukkit.js
|
||||
/events-helper-canary.js
|
Reference in a new issue