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

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

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

revision 1747 by torben, Sun Mar 18 11:38:57 2012 UTC revision 1755 by torben, Mon Mar 19 10:01:12 2012 UTC
# Line 53  public class TemplateCommand implements Line 53  public class TemplateCommand implements
53                          return true;                          return true;
54                  }                                }              
55    
56                  File templateFile = new File( plugin.getDataFolder(), "template_" + args[0] + ".txt");                            File templateFile = new File( plugin.getDataFolder(), "templates/" + args[0] + ".txt");        
57                  if (! templateFile.exists()  ) {                  if (! templateFile.exists()  ) {
58                          sender.sendMessage( ChatColor.YELLOW + "Template not found" );                          sender.sendMessage( ChatColor.YELLOW + "Template not found" );
59                          return true;                          return true;
# Line 73  public class TemplateCommand implements Line 73  public class TemplateCommand implements
73                          return true;                          return true;
74                  }                  }
75    
76                  buildTemplate( player.getLocation(),  template);                  buildTemplate( player.getLocation(),  template, 1);
77                    buildTemplate( player.getLocation(),  template, 2);
78    
79                  return false;                  return false;
80          }          }
# Line 121  public class TemplateCommand implements Line 122  public class TemplateCommand implements
122    
123                          if (line.charAt(0) == '-')                          if (line.charAt(0) == '-')
124                                  continue;                                  continue;
125                            
126                            if ( y >= ysize) {
127                                    throw new Exception( "Template: found more levels in file than specified in header" );
128                            }
129    
130                          String elements[] = line.split(",");                          String elements[] = line.split(",");
131                          if (elements.length != zsize) {                          if (elements.length != zsize) {
# Line 175  public class TemplateCommand implements Line 180  public class TemplateCommand implements
180    
181          }          }
182    
183          void buildTemplate(Location loc, Pair[][][] template) {          void buildTemplate(Location loc, Pair[][][] template, int pass) {
184    
185                    
186                  World world = loc.getWorld();                  World world = loc.getWorld();
187                  for (int i=0; i<template.length; i++ ) {                  for (int i=0; i<template.length; i++ ) {
188                          for (int j=0; j<template[0].length; j++) {                          for (int j=0; j<template[0].length; j++) {
189                                  for (int k=0; k<template[0][0].length; k++) {                                  for (int k=0; k<template[0][0].length; k++) {
190                                          int x = loc.getBlockX() + i + 1;                                          int x, y ,z;
191                                          int y = loc.getBlockY() + j;                                          
192                                          int z = loc.getBlockZ() + k;                                          x = z = 0;
193                                            
194                                            y = loc.getBlockY() + j;
195                                            if (y >= 255) {
196                                                    continue;
197                                            }                                                                              
198                                            
199                                            switch ( getFacing(loc) ) {
200                                            case 0: //west                                          
201                                                    x = loc.getBlockX() - k;                                        
202                                                    z = loc.getBlockZ() + i + 1;                                                    
203                                                    break;
204                                            case 1: //north
205                                                    x = loc.getBlockX() - i - 1;                                    
206                                                    z = loc.getBlockZ() - k;                                                
207                                                    break;                                          
208                                            case 2: //east
209                                                    x = loc.getBlockX() + k;                                        
210                                                    z = loc.getBlockZ() - i - 1;
211                                                    break;
212                                            case 3: //south
213                                                    x = loc.getBlockX() + i + 1;                                    
214                                                    z = loc.getBlockZ() + k;                                                
215                                                    break;                                          
216                                            }
217    
218    
219                                          int type = template[i][j][k].id;                                          int type = template[i][j][k].id;
220                                          byte data = (byte) template[i][j][k].subId;                                          byte data = (byte) template[i][j][k].subId;
221    
222                                          //plugin.getLogger().info(  String.format(  "Setting typeid at %d,%d,%d  to %d", x,y,z, type)  );                                          //plugin.getLogger().info(  String.format(  "Setting typeid at %d,%d,%d  to %d", x,y,z, type)  );
223    
224                                            if (pass == 1) {
225                                                    if ( type == 50 || type == 75 || type == 76) //torch / redstone torch                                                  
226                                                            continue;
227                                                    if (type == 64 || type==71) //door / irondoor
228                                                            continue;
229                                                    if (type == 68) // sign
230                                                            continue;
231                                            }
232                                                                                    
233                                          world.getBlockAt(x, y, z).setTypeIdAndData(type, data, true);                                          world.getBlockAt(x, y, z).setTypeIdAndData(type, data, true);
234                                            
235                                  }                                  }
236                          }                          }
237                  }                  }
238    
239          }          }
240            
241            
242            //yaw is left,right looking direction, 0=straight west
243            int getFacing(Location loc) {
244                    int angle = (int) loc.getYaw();
245                    
246                    if (angle < 45) {
247                            return 0;
248                    } else if (angle < 135) {
249                            return 1;
250                    } else if (angle < 225) {
251                            return 2;
252                    } else if (angle < 315) {
253                            return 3;
254                    } else {
255                            return 0;
256                    }
257            }
258    
259  }  }

Legend:
Removed from v.1747  
changed lines
  Added in v.1755

  ViewVC Help
Powered by ViewVC 1.1.20