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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1778 by torben, Thu Apr 5 14:10:28 2012 UTC revision 3203 by torben, Thu Jun 1 13:16:06 2017 UTC
# Line 1  Line 1 
1  package dk.thoerup.bukkit.hoeruputils;  package dk.thoerup.bukkit.hoeruputils;
2    
3    
4    import java.net.InetSocketAddress;
5  import java.util.ArrayList;  import java.util.ArrayList;
6  import java.util.List;  import java.util.List;
7    import java.util.logging.Level;
8    
9  import org.bukkit.plugin.PluginManager;  import org.bukkit.plugin.PluginManager;
10  import org.bukkit.plugin.java.JavaPlugin;  import org.bukkit.plugin.java.JavaPlugin;
11    
12    import com.sun.net.httpserver.HttpServer;
13    
14    import dk.thoerup.bukkit.hoeruputils.chests.AdvancedChest;
15    import dk.thoerup.bukkit.hoeruputils.chests.ChestBean;
16  import dk.thoerup.bukkit.hoeruputils.creative.GeneralContractorCommands;  import dk.thoerup.bukkit.hoeruputils.creative.GeneralContractorCommands;
17  import dk.thoerup.bukkit.hoeruputils.message.MessageBean;  import dk.thoerup.bukkit.hoeruputils.message.MessageBean;
18  import dk.thoerup.bukkit.hoeruputils.message.MessageWrapper;  import dk.thoerup.bukkit.hoeruputils.message.MessageWrapper;
19  import dk.thoerup.bukkit.hoeruputils.secretdoor.DoorBlockListener;  import dk.thoerup.bukkit.hoeruputils.secretdoor.DoorBlockListener;
20  import dk.thoerup.bukkit.hoeruputils.web.WebLoader;  import dk.thoerup.bukkit.hoeruputils.web.BanListener;
21    import dk.thoerup.bukkit.hoeruputils.web.StatusListener;
22    import dk.thoerup.bukkit.hoeruputils.web.WebUser;
23    import dk.thoerup.bukkit.hoeruputils.web.WebUserCommand;
24    import io.ebean.Ebean;
25    
26    @SuppressWarnings("restriction")
27  public class HoerupUtilsPlugin extends JavaPlugin {  public class HoerupUtilsPlugin extends JavaPlugin {
28    
29          @Override          @Override
30          public void onDisable() {          public void onDisable() {
31                  // TODO Auto-generated method stub                  if ( server != null ) {
32                            server.stop( 0 );
33                    }
34          }          }
35                    
36          MessageWrapper messageWrapper;          MessageWrapper messageWrapper;  
37            HttpServer server = null;
38    
39                    
40          @Override          @Override
41          public void onEnable() {          public void onEnable() {
42                  System.out.println("Loading HoerupUtils plugin");                  System.out.println("Loading HoerupUtils plugin");
43                    
44                    Ebean.getDefaultServer();
45                    
46                  getCommand("whereis").setExecutor(new WhereisCommand(getServer()));                  getCommand("whereis").setExecutor(new WhereisCommand(getServer()));
47                  //getCommand("mapgen").setExecutor(new MapgenCommand(this));                  //getCommand("mapgen").setExecutor(new MapgenCommand(this));
48                  getCommand("eternalday").setExecutor(new EternalDayCommand(this));                  getCommand("eternalday").setExecutor(new EternalDayCommand(this));
49                  getCommand("getpos").setExecutor( new GetposCommand() );                  getCommand("getpos").setExecutor( new GetposCommand() );
50                  getCommand("msg").setExecutor( new MsgCommand( this ) );                  getCommand("msg").setExecutor( new MsgCommand( this ) );
51                  getCommand("tp").setExecutor( new TeleportCommand() );  //              getCommand("tp").setExecutor( new TeleportCommand() );
52    
53                  getCommand("wall").setExecutor( new WallCommand() );                  getCommand("wall").setExecutor( new WallCommand() );
54                  getCommand("weather").setExecutor( new WeatherCommand() );                  getCommand("weather").setExecutor( new WeatherCommand() );
# Line 42  public class HoerupUtilsPlugin extends J Line 59  public class HoerupUtilsPlugin extends J
59                  HomeCommand home = new HomeCommand(this);                  HomeCommand home = new HomeCommand(this);
60                  getCommand("home").setExecutor( home );                  getCommand("home").setExecutor( home );
61                  getCommand("sethome").setExecutor( home );                  getCommand("sethome").setExecutor( home );
62                    getCommand("ophome").setExecutor( home );
63    
64                  DiverCommand diver = new DiverCommand(this );                  DiverCommand diver = new DiverCommand(this );
65                  getCommand("diver").setExecutor( diver );                  getCommand("diver").setExecutor( diver );
66    
67                    getCommand("opkill").setExecutor( new OpkillCommand() );
68                                    
69                  GeneralContractorCommands generalContractor = new GeneralContractorCommands();                  GeneralContractorCommands generalContractor = new GeneralContractorCommands();
70                  getCommand("replay").setExecutor( generalContractor );                  getCommand("replay").setExecutor( generalContractor );
71                  getCommand("levelarea").setExecutor( generalContractor );                  getCommand("levelarea").setExecutor( generalContractor );
72                  getCommand("fillarea").setExecutor( generalContractor );                  getCommand("fillarea").setExecutor( generalContractor );
73                    getCommand("levelandfillarea").setExecutor( generalContractor );
74    
75                  getCommand("slopearea").setExecutor( generalContractor );                  getCommand("slopearea").setExecutor( generalContractor );
76                  getCommand("setsurface").setExecutor( generalContractor );                  getCommand("setsurface").setExecutor( generalContractor );
77                  getCommand("platform").setExecutor( generalContractor );                  getCommand("platform").setExecutor( generalContractor );
78                  getCommand("cylinder").setExecutor( generalContractor );                  getCommand("cylinder").setExecutor( generalContractor );
79                  getCommand("createcave").setExecutor( generalContractor );                  getCommand("createcave").setExecutor( generalContractor );
80                    getCommand("spawn").setExecutor( new SpawnCommand() );
81                                    
82                  getCommand("template").setExecutor( new TemplateCommand(this) );                  getCommand("template").setExecutor( new TemplateCommand(this) );
83                    getCommand("regenerate").setExecutor( new RegenerateCommand() );
84    
85    
86                  LogintimeHandler logintimeHandler = new LogintimeHandler( this.getDataFolder() );                  LogintimeHandler logintimeHandler = new LogintimeHandler( this.getDataFolder() );
87                                    
# Line 65  public class HoerupUtilsPlugin extends J Line 89  public class HoerupUtilsPlugin extends J
89                  PluginManager pm = getServer().getPluginManager();                  PluginManager pm = getServer().getPluginManager();
90    
91    
92                    MotdHandler motd = new MotdHandler(this);
93                    getCommand("motd").setExecutor( motd );
94                    pm.registerEvents( motd, this);
95                    
96                    WayPoint wp = new WayPoint(this);
97                    getCommand("waypoint").setExecutor( wp );
98                    getCommand("setwaypoint").setExecutor( wp );
99                    pm.registerEvents( wp, this);
100    
101    
102                  pm.registerEvents(logintimeHandler, this);                  pm.registerEvents(logintimeHandler, this);
103                  pm.registerEvents(logintimeHandler, this);                  pm.registerEvents(logintimeHandler, this);
104    
# Line 72  public class HoerupUtilsPlugin extends J Line 106  public class HoerupUtilsPlugin extends J
106                  pm.registerEvents(diver, this);                  pm.registerEvents(diver, this);
107    
108                  pm.registerEvents(new EndermanStopper(), this);                  pm.registerEvents(new EndermanStopper(), this);
109                    
110                                    Jail jail = new Jail(this);
111                                    pm.registerEvents(jail, this);
112                                    getCommand("jail").setExecutor( jail );
113                    
114                    StickyChunk chunks = new StickyChunk();
115                    pm.registerEvents(chunks, this);
116                    getCommand("stickychunk").setExecutor(chunks);          
117                    
118                    Mute mute = new Mute(this);
119                    pm.registerEvents(mute, this);
120                    getCommand("mute").setExecutor(mute);
121                    getCommand("unmute").setExecutor(mute);
122                                    
123                    
124                  Runnable ddlInstaller = new Runnable() {  
125                          @Override                  messageWrapper = new MessageWrapper(this);
                         public void run() {  
                                 System.out.println("installddl");  
                                 installDDL();  
                         }  
                 };  
                 messageWrapper = new MessageWrapper(this, ddlInstaller);  
126                  pm.registerEvents( messageWrapper, this);                  pm.registerEvents( messageWrapper, this);
127                            
128                    AdvancedChest locked = new AdvancedChest(this);
129                    getCommand("chest").setExecutor(locked);
130                    pm.registerEvents( locked, this);
131                    
132                                    
133                  SnitchingChest snitch = new SnitchingChest(this, ddlInstaller);                  getCommand("webuser").setExecutor( new WebUserCommand(this) );                          
                 getCommand("snitchingchest").setExecutor(snitch);  
                 pm.registerEvents( snitch, this);  
134    
135                    
136                  //register web plugins                  //register web plugins
137                  //pm.registerEvent(Event.Type.CUSTOM_EVENT, new StatusListener(getServer(), logintimeHandler.getConfig(), home.getConfig() ), Priority.Normal, this);                  //pm.registerEvent(Event.Type.CUSTOM_EVENT, new StatusListener(getServer(), logintimeHandler.getConfig(), home.getConfig() ), Priority.Normal, this);
138                  //pm.registerEvent(Event.Type.CUSTOM_EVENT, new MessageListener(getServer()), Priority.Normal, this);                  //pm.registerEvent(Event.Type.CUSTOM_EVENT, new MessageListener(getServer()), Priority.Normal, this);
139    
140                  try {                  /*try {
141                          try {                          try {
142                                  //først probes om klassen i det hele taget findes                                  //først probes om klassen i det hele taget findes
143                                  Class.forName("de.codeinfection.quickwango.ApiBukkit.ApiServer.ApiController"); //if it fails it throws an exception                                  Class.forName("de.codeinfection.quickwango.ApiBukkit.ApiServer.ApiController"); //if it fails it throws an exception
# Line 110  public class HoerupUtilsPlugin extends J Line 150  public class HoerupUtilsPlugin extends J
150                          }                                                }                      
151                  } catch (Throwable e) { //instead of ClassNotFoundException + NoSuchMethodException + InvocationTargetException + IllegalAccessException                  } catch (Throwable e) { //instead of ClassNotFoundException + NoSuchMethodException + InvocationTargetException + IllegalAccessException
152                          getLogger().warning("Could not find ApiBukkit - web status is disabled (" + e.getClass().getName() + ":" + e.getMessage() + ")"  );                          getLogger().warning("Could not find ApiBukkit - web status is disabled (" + e.getClass().getName() + ":" + e.getMessage() + ")"  );
153                    }*/
154                    
155                    try  {
156                            InetSocketAddress adr = new InetSocketAddress("127.0.0.1", 9999);
157                            server = HttpServer.create(adr, 20);
158                            server.createContext("/bans", new BanListener(this, getServer()) );
159                            server.createContext("/webstatus", new StatusListener(this, getServer(),logintimeHandler.getConfig(), home.getConfig()) );
160                            server.start();
161                            
162                    } catch(Exception e) {
163                            getLogger().log(Level.SEVERE, "Error loading webserver", e);
164                            
165                  }                  }
166                                    
167                                    
# Line 117  public class HoerupUtilsPlugin extends J Line 169  public class HoerupUtilsPlugin extends J
169                                    
170                  DoorBlockListener secretDoor = new DoorBlockListener(this);                  DoorBlockListener secretDoor = new DoorBlockListener(this);
171                  pm.registerEvents(secretDoor, this);                  pm.registerEvents(secretDoor, this);
172                  pm.registerEvents(secretDoor.getPlayerListener(), this);                  pm.registerEvents(secretDoor.getPlayerListener(), this);                
                   
173          }          }
174                    
175            
176            
177            
178            
179          public MessageWrapper getMessageWrapper() {          public MessageWrapper getMessageWrapper() {
180                  return messageWrapper;                  return messageWrapper;
181          }          }
182    
         //@SuppressWarnings({ "unchecked", "rawtypes" })  
         @Override  
         public List<Class<?>> getDatabaseClasses() {  
                 List<Class<?>> list = new ArrayList<Class<?>>();  
   
                 list.add(MessageBean.class);  
                 list.add(SnitchingChestBean.class);  
183    
184                  return list;          
         }  
185    
186            /*
187          private void deprecated() {          private void deprecated() {
188  /*  
189                  getCommand("stoner").setExecutor( new StonerCommand() );                  getCommand("stoner").setExecutor( new StonerCommand() );
190                  getCommand("spawn").setExecutor( new SpawnCommand() );                  getCommand("spawn").setExecutor( new SpawnCommand() );
191                  getCommand("boom").setExecutor( new BoomCommand(this) );                  getCommand("boom").setExecutor( new BoomCommand(this) );
# Line 163  public class HoerupUtilsPlugin extends J Line 211  public class HoerupUtilsPlugin extends J
211                  //pm.registerEvent(Event.Type.PLAYER_RESPAWN, new RespawnHandler(this), Priority.Normal, this);                  //pm.registerEvent(Event.Type.PLAYER_RESPAWN, new RespawnHandler(this), Priority.Normal, this);
212                  //pm.registerEvent(Event.Type.ENTITY_DEATH, new RespawnHandler.PlayerDeathListener(this.getDataFolder()), Priority.Normal, this);                                //pm.registerEvent(Event.Type.ENTITY_DEATH, new RespawnHandler.PlayerDeathListener(this.getDataFolder()), Priority.Normal, this);              
213    
214  */  
215          }          }
216            */
217    
218  }  }

Legend:
Removed from v.1778  
changed lines
  Added in v.3203

  ViewVC Help
Powered by ViewVC 1.1.20