mirror of
https://github.com/EngineHub/WorldGuard.git
synced 2025-02-26 17:21:29 +01:00
160 lines
4.2 KiB
Java
160 lines
4.2 KiB
Java
// $Id$
|
|
/*
|
|
* WorldGuard
|
|
* Copyright (C) 2010 sk89q <http://www.sk89q.com>
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package com.sk89q.worldguard.protection;
|
|
|
|
import com.sk89q.worldedit.BlockVector;
|
|
import com.sk89q.worldedit.Vector;
|
|
import com.sk89q.worldguard.domains.DefaultDomain;
|
|
|
|
/**
|
|
* Represents a region of any shape and size that can be protected.
|
|
*
|
|
* @author sk89q
|
|
*/
|
|
public abstract class ProtectedRegion {
|
|
/**
|
|
* Area message.
|
|
*/
|
|
private String enterMessage;
|
|
/**
|
|
* List of owners.
|
|
*/
|
|
private DefaultDomain owners = new DefaultDomain();
|
|
/**
|
|
* Priority.
|
|
*/
|
|
private int priority = 0;
|
|
/**
|
|
* Area flags.
|
|
*/
|
|
private AreaFlags flags = new AreaFlags();
|
|
|
|
/**
|
|
* Construct a new instance of this cuboid region.
|
|
*
|
|
* @param id
|
|
* @param priority
|
|
* @param owners
|
|
* @param enterMessage
|
|
*/
|
|
public ProtectedRegion() {
|
|
this.priority = 0;
|
|
this.owners = new DefaultDomain();
|
|
this.enterMessage = null;
|
|
}
|
|
|
|
/**
|
|
* @return the priority
|
|
*/
|
|
public int getPriority() {
|
|
return priority;
|
|
}
|
|
|
|
/**
|
|
* @param priority the priority to set
|
|
*/
|
|
public void setPriority(int priority) {
|
|
this.priority = priority;
|
|
}
|
|
|
|
/**
|
|
* Se flags.
|
|
* @param flags
|
|
*/
|
|
public void setFlags(AreaFlags flags) {
|
|
this.flags = flags;
|
|
}
|
|
|
|
/**
|
|
* @return the enterMessage
|
|
*/
|
|
public String getEnterMessage() {
|
|
return enterMessage;
|
|
}
|
|
|
|
/**
|
|
* @param enterMessage the enterMessage to set
|
|
*/
|
|
public void setEnterMessage(String enterMessage) {
|
|
this.enterMessage = enterMessage;
|
|
}
|
|
|
|
/**
|
|
* @return the owners
|
|
*/
|
|
public DefaultDomain getOwners() {
|
|
return owners;
|
|
}
|
|
|
|
/**
|
|
* @param owners the owners to set
|
|
*/
|
|
public void setOwners(DefaultDomain owners) {
|
|
this.owners = owners;
|
|
}
|
|
|
|
/**
|
|
* Get flags.
|
|
*
|
|
* @return
|
|
*/
|
|
public AreaFlags getFlags() {
|
|
return flags;
|
|
}
|
|
|
|
/**
|
|
* Check to see if a point is inside this region.
|
|
*
|
|
* @param pt
|
|
* @return
|
|
*/
|
|
public abstract boolean contains(Vector pt);
|
|
|
|
/**
|
|
* Checks if two region intersects.
|
|
*
|
|
* @param region1
|
|
* @param region2
|
|
* @throws UnsupportedIntersectionException
|
|
* @return
|
|
*/
|
|
public static boolean intersects(ProtectedRegion region1, ProtectedRegion region2)
|
|
throws UnsupportedIntersectionException {
|
|
if (region1 instanceof ProtectedCuboidRegion
|
|
&& region2 instanceof ProtectedCuboidRegion) {
|
|
ProtectedCuboidRegion r1 = (ProtectedCuboidRegion)region1;
|
|
ProtectedCuboidRegion r2 = (ProtectedCuboidRegion)region2;
|
|
BlockVector min1 = r1.getMinimumPoint();
|
|
BlockVector max1 = r1.getMaximumPoint();
|
|
BlockVector min2 = r2.getMinimumPoint();
|
|
BlockVector max2 = r2.getMaximumPoint();
|
|
|
|
return !(min1.getBlockX() > max2.getBlockX()
|
|
|| min1.getBlockY() > max2.getBlockY()
|
|
|| min1.getBlockZ() > max2.getBlockZ()
|
|
|| max1.getBlockX() < min2.getBlockX()
|
|
|| max1.getBlockY() < min2.getBlockY()
|
|
|| max1.getBlockZ() < min2.getBlockZ());
|
|
} else {
|
|
throw new UnsupportedIntersectionException();
|
|
}
|
|
}
|
|
}
|