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

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

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

miscJava/bukkit-minecraft-plugins/HoerupUtils/src/dk/thoerup/bukkit/hoeruputils/secretdoor/Door.java revision 1532 by torben, Mon Jun 27 18:10:05 2011 UTC miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/secretdoor/Door.java revision 2430 by torben, Mon Mar 9 13:24:52 2015 UTC
# Line 3  package dk.thoerup.bukkit.hoeruputils.se Line 3  package dk.thoerup.bukkit.hoeruputils.se
3  import java.util.Map;  import java.util.Map;
4    
5  import org.bukkit.Location;  import org.bukkit.Location;
6  import org.bukkit.Server;  import org.bukkit.Material;
7  import org.bukkit.World;  import org.bukkit.World;
8  import org.bukkit.block.Block;  import org.bukkit.block.Block;
9    import org.bukkit.block.BlockFace;
10    import org.bukkit.block.BlockState;
11    
12    
13  class Door {  class Door {
         final static int EAST = 0;  
         final static int WEST = 1;  
         final static int NORTH = 2;  
         final static int SOUTH = 3;  
           
         Location leftUpper;  
14    
15                    private Location leftUpper;
         Location blocks[][] = new Location[2][2]; // [width][height] - [0][0] == leftUpper  
16    
         int material;  
17                    
18          int direction;          private Location blockLocations[][]; // [width][height] - [0][0] == leftUpper
19            private BlockState blockStates[][];
20                    
21          int width = 2;          private BlockFace direction;
         int height = 2;  
22                    
23            private int width;
24            private int height;
25    
26          public Door(Block sign) {          private String owner;
27    
28            private boolean isPrivate;
29            
30            private String password;
31            
32    
33            public Door(Block sign, int width, int height, DoorStorage store, String owner, boolean isPrivate, String password) throws ConflictingDoorException{
34                  leftUpper = sign.getLocation().clone();                  leftUpper = sign.getLocation().clone();
35                                    
36                    this.width = width;
37                    this.height = height;
38    
39                    this.owner = owner;
40    
41                    this.isPrivate = isPrivate;
42                    this.password = password;
43                    
44                    BlockState signState = sign.getState();
45                    org.bukkit.material.Sign signData = (org.bukkit.material.Sign) signState.getData();
46    
47                  direction = sign.getData() - 2;                  direction = signData.getFacing();
48                                    
49                  switch ( sign.getData() ) {                  switch ( direction ) {
50                  case 2: //facing east                  case EAST: //facing east
51                          leftUpper.setZ( leftUpper.getZ() + 1 );                          leftUpper.setZ( leftUpper.getZ() + 1 );
52                          break;                            break;  
53                  case 3: //facing west                  case WEST: //facing west
54                          leftUpper.setZ( leftUpper.getZ() - 1 );                          leftUpper.setZ( leftUpper.getZ() - 1 );
55                          break;                          break;
56                  case 4: //facing north                  case NORTH: //facing north
57                          leftUpper.setX( leftUpper.getX() + 1);                          leftUpper.setX( leftUpper.getX() + 1);
58                          break;                          break;
59                  case 5: //facing south                  case SOUTH: //facing south
60                          leftUpper.setX( leftUpper.getX() - 1);                          leftUpper.setX( leftUpper.getX() - 1);
61                          break;                          break;
62                    default:
63                            //DoNothing
64                            break;
65                  }                  }
66    
67                                    
68                                    
69                  material = leftUpper.getBlock().getTypeId();                  //material = leftUpper.getBlock().getTypeId();
70                                    
71                  loadBlocks();                  loadBlocks();
72                    
73            
74                    for (int w=0; w<width; w++) {
75                            for (int h=0; h<height; h++) {
76                                    Door d = store.findDoor( blockLocations[w][h] );
77                                    if (d != null) {
78                                            throw new ConflictingDoorException();
79                                    }
80                            }
81                    }
82    
83          }          }
84    
85    /*
86            @Deprecated
87          public Door(String input, Server server) {          public Door(String input, Server server) {
88                  String parts[] = input.split(":");                  String parts[] = input.split(":");
89    
# Line 63  class Door { Line 91  class Door {
91    
92                  leftUpper  = new Location(w, Integer.parseInt(parts[1]),  Integer.parseInt(parts[2]),  Integer.parseInt(parts[3]) );                  leftUpper  = new Location(w, Integer.parseInt(parts[1]),  Integer.parseInt(parts[2]),  Integer.parseInt(parts[3]) );
93                  direction = Integer.parseInt( parts[4] );                  direction = Integer.parseInt( parts[4] );
94                  material = Integer.parseInt( parts[5] );                  //material = Integer.parseInt( parts[5] );
95                    
96                    width = Integer.parseInt( parts[6] );
97                    height = Integer.parseInt( parts[7] );
98                    owner = parts[8];
99    
100                    
101                    loadBlocks();
102            }*/
103    
104            public Door(Location loc, BlockFace direction, int width, int height, String owner, boolean isPrivate, String password) {
105                    leftUpper = loc;
106                    this.direction = direction;
107                    this.width = width;
108                    this.height = height;
109                    this.owner = owner;
110                    this.isPrivate = isPrivate;
111                    this.password = password;
112    
113                  loadBlocks();                  loadBlocks();
114          }          }
115    
116            
117    
118            public void powerChange(World world, int oldCurrent, int newCurrent ) {
119                    if (isPowered() == true) {
120                            open();
121                    } else {
122                            close();
123                    }      
124            }
125    
126            public boolean isPowered() {
127                    for (int w=0; w<width; w++) {
128                            for (int h=0; h<height; h++) {
129                                    Block b = blockLocations[w][h].getBlock();
130    
131                                    if ( b.isBlockPowered() ||  b.isBlockIndirectlyPowered() )
132                                            return true;
133                            }
134                    }
135                            
136                    return false;
137            }
138                    
139          private void loadBlocks() {          private void loadBlocks() {
140                    blockLocations = new Location[width][height];          
141                    blockStates = new BlockState[width][height];            
142                                    
143                  for (int w=0; w<width; w++) {                  for (int w=0; w<width; w++) {
144                          for (int h=0; h<height; h++) {                          for (int h=0; h<height; h++) {
# Line 94  class Door { Line 165  class Door {
165                                                                    
166                                  //System.out.println("Add block: " + x + ":" + y + ":" + z);                                  //System.out.println("Add block: " + x + ":" + y + ":" + z);
167                                                                    
168                                  blocks[w][h] = new Location( leftUpper.getWorld(), x, y, z);                                  blockLocations[w][h] = new Location( leftUpper.getWorld(), x, y, z);
169                                    
170                                    blockStates[w][h] = blockLocations[w][h].getBlock().getState();
171            
172                          }                          }
173                  }                  }
174                                    
175          }          }
176    
177          public String toCsv() {  /*      public String toCsv() {
178                  StringBuilder sb = new StringBuilder();                  StringBuilder sb = new StringBuilder();
179                  sb.append( leftUpper.getWorld().getName() );                  sb.append( leftUpper.getWorld().getName() );
180    
# Line 111  class Door { Line 184  class Door {
184                                    
185                  sb.append( ":" + direction );                  sb.append( ":" + direction );
186    
187                    sb.append( ":" + material[0][0] );
188                  sb.append( ":" + material );                  
189                    sb.append( ":" + width );
190                    sb.append( ":" + height );
191                    sb.append( ":" + owner);
192    
193                  return sb.toString();                  return sb.toString();
194          }          }*/
195    
196    
197          public void registerMap(Map<Location,Door> map) {          public void registerMap(Map<Location,Door> map) {
198                  for (int w=0; w<width; w++) {                  for (int w=0; w<width; w++) {
199                          for (int h=0; h<height; h++) {                          for (int h=0; h<height; h++) {
200                                  map.put(blocks[w][h], this);                                  map.put(blockLocations[w][h], this);
201                          }                          }
202                  }                  }
203          }          }
# Line 129  class Door { Line 205  class Door {
205          public void unregisterMap(Map<Location,Door> map) {          public void unregisterMap(Map<Location,Door> map) {
206                  for (int w=0; w<width; w++) {                  for (int w=0; w<width; w++) {
207                          for (int h=0; h<height; h++) {                          for (int h=0; h<height; h++) {
208                                  map.remove( blocks[w][h] );                                  map.remove( blockLocations[w][h] );
209                          }                          }
210                  }                  }
211    
212          }          }
213    
214          public void open(World world) {          public void open() {
215                  for (int w=0; w<width; w++) {                  for (int w=0; w<width; w++) {
216                          for (int h=0; h<height; h++) {                                                    for (int h=0; h<height; h++) {                          
217                                  blocks[w][h].getBlock().setTypeId(0);                                  //blocks[w][h].getBlock().setTypeId( 0, false);
218                                    blockLocations[w][h].getBlock().setType( Material.AIR );
219                          }                          }
220                  }                  }
221    
222          }          }
223    
224          public void close(World world) {          public void close() {
225                  for (int w=0; w<width; w++) {                  for (int w=0; w<width; w++) {
226                          for (int h=0; h<height; h++) {                                                    for (int h=0; h<height; h++) {                          
227                                  blocks[w][h].getBlock().setTypeId( material );                                  blockStates[w][h].update(true, true);
228                          }                          }
229                  }                  }
230          }          }
231    
 }  
232    
233            /////// setters and getters
234            public String getOwner() {
235                    return owner;
236            }
237    
238            public Location getLeftUpper() {
239                    return leftUpper;
240            }
241    
242            public int getWidth() {
243                    return width;
244            }
245    
246            public int getHeight() {
247                    return height;
248            }
249    
250            public BlockFace getDirection() {
251                    return direction;
252            }
253    
254            public boolean isPrivate() {
255                    return isPrivate;
256            }
257            
258            public String getPassword() {
259                    return password;
260            }
261    
262    }

Legend:
Removed from v.1532  
changed lines
  Added in v.2430

  ViewVC Help
Powered by ViewVC 1.1.20