/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/HoerupUtilsPlugin.java
ViewVC logotype

Contents of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/HoerupUtilsPlugin.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1525 - (show annotations) (download)
Sun Jun 26 13:29:58 2011 UTC (12 years, 10 months ago) by torben
File size: 2699 byte(s)
Added basic version of secretdoor
1 package dk.thoerup.bukkit.hoeruputils;
2
3
4 import org.bukkit.event.Event;
5 import org.bukkit.event.Event.Priority;
6 import org.bukkit.plugin.PluginManager;
7 import org.bukkit.plugin.java.JavaPlugin;
8
9 import dk.thoerup.bukkit.hoeruputils.web.MessageListener;
10 import dk.thoerup.bukkit.hoeruputils.web.StatusListener;
11
12 public class HoerupUtilsPlugin extends JavaPlugin {
13
14 @Override
15 public void onDisable() {
16 // TODO Auto-generated method stub
17 }
18
19
20 @Override
21 public void onEnable() {
22 System.out.println("Loading HoerupUtils plugin");
23 getCommand("whereis").setExecutor(new WhereisCommand(getServer()));
24 getCommand("mapgen").setExecutor(new MapgenCommand(this));
25 getCommand("eternalday").setExecutor(new EternalDayCommand(this));
26 getCommand("grass").setExecutor(new GrassCommand());
27 getCommand("getpos").setExecutor( new GetposCommand() );
28 getCommand("zapme").setExecutor( new ZapmeCommand() );
29 getCommand("zap").setExecutor( new ZapCommand() );
30 getCommand("msg").setExecutor( new MsgCommand( getServer() ) );
31 getCommand("stoner").setExecutor( new StonerCommand() );
32 getCommand("boom").setExecutor( new BoomCommand(this) );
33 getCommand("spawn").setExecutor( new SpawnCommand() );
34
35 PluginManager pm = getServer().getPluginManager();
36 pm.registerEvent(Event.Type.PLAYER_RESPAWN, new RespawnHandler(this), Priority.Normal, this);
37 pm.registerEvent(Event.Type.ENTITY_DEATH, new RespawnHandler.PlayerDeathListener(this.getDataFolder()), Priority.Normal, this);
38
39 //register web plugins
40 pm.registerEvent(Event.Type.CUSTOM_EVENT, new StatusListener(getServer()), Priority.Normal, this);
41 pm.registerEvent(Event.Type.CUSTOM_EVENT, new MessageListener(getServer()), Priority.Normal, this);
42
43
44 PowerMiner powerMiner = new PowerMiner();
45 pm.registerEvent(Event.Type.BLOCK_DAMAGE, powerMiner, Priority.Normal, this);
46 pm.registerEvent(Event.Type.PLAYER_QUIT, powerMiner.getPlayerQuitListener(), Priority.Normal, this);
47 getCommand("powerminer").setExecutor(powerMiner);
48
49
50 SuperMiner superMiner = new SuperMiner();
51 pm.registerEvent(Event.Type.BLOCK_DAMAGE, superMiner, Priority.Normal, this);
52 pm.registerEvent(Event.Type.PLAYER_QUIT, superMiner.getPlayerQuitListener(), Priority.Normal, this);
53 getCommand("superminer").setExecutor(superMiner);
54
55 pm.registerEvent(Event.Type.PROJECTILE_HIT, new ExplosiveSnowballs(), Priority.Normal, this);
56
57
58 SecretDoor secretDoor = new SecretDoor(this);
59 pm.registerEvent(Event.Type.BLOCK_BREAK, secretDoor, Priority.Normal, this);
60 pm.registerEvent(Event.Type.SIGN_CHANGE, secretDoor, Priority.Normal, this);
61 pm.registerEvent(Event.Type.PLAYER_INTERACT, secretDoor.getPlayerListener(), Priority.Normal, this);
62
63 }
64
65 }

  ViewVC Help
Powered by ViewVC 1.1.20