DungeonsXL/api/src/main/java/de/erethon/dungeonsxl/api/event/world/ResourceWorldInstantiateEve...

83 lines
2.4 KiB
Java
Raw Normal View History

2020-04-25 01:25:34 +02:00
/*
2023-09-28 19:16:23 +02:00
* Copyright (C) 2014-2023 Daniel Saukel
2020-04-25 01:25:34 +02:00
*
* This library is free software: you can redistribute it and/or modify it under the
* terms of the GNU Lesser 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 GNULesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License along with
* this program. If not, see <http://www.gnu.org/licenses/>.
*/
package de.erethon.dungeonsxl.api.event.world;
import de.erethon.dungeonsxl.api.world.ResourceWorld;
import org.bukkit.event.Cancellable;
import org.bukkit.event.HandlerList;
/**
* Fired when a {@link ResourceWorld} is instantiated.
*
* @author Daniel Saukel
*/
public class ResourceWorldInstantiateEvent extends ResourceWorldEvent implements Cancellable {
2020-04-25 01:25:34 +02:00
private static final HandlerList handlers = new HandlerList();
private boolean cancelled;
2020-11-02 21:17:19 +01:00
private String instanceWorldName;
2020-04-25 01:25:34 +02:00
2020-11-02 21:17:19 +01:00
public ResourceWorldInstantiateEvent(ResourceWorld resource, String instanceWorldName) {
super(resource);
2020-11-02 21:17:19 +01:00
this.instanceWorldName = instanceWorldName;
2020-04-25 01:25:34 +02:00
}
/**
2020-11-02 21:17:19 +01:00
* Returns if the loaded instance will be an edit world.
2020-04-25 01:25:34 +02:00
*
2020-11-02 21:17:19 +01:00
* @return if the loaded instance will be an edit world
2020-04-25 01:25:34 +02:00
*/
2020-11-02 21:17:19 +01:00
public boolean isEditInstance() {
return instanceWorldName.startsWith("DXL_Edit_");
2020-04-25 01:25:34 +02:00
}
/**
2020-11-02 21:17:19 +01:00
* Returns the name the newly loaded Bukkit world is going to have.
* <p>
* Note that at this point no Bukkit World object for this world exists.
2020-04-25 01:25:34 +02:00
*
2020-11-02 21:17:19 +01:00
* @return the name the newly loaded Bukkit world is going to have
2020-04-25 01:25:34 +02:00
*/
2020-11-02 21:17:19 +01:00
public String getInstanceWorldName() {
return instanceWorldName;
2020-04-25 01:25:34 +02:00
}
@Override
public HandlerList getHandlers() {
return handlers;
}
public static HandlerList getHandlerList() {
return handlers;
}
@Override
public boolean isCancelled() {
return cancelled;
}
@Override
public void setCancelled(boolean cancelled) {
this.cancelled = cancelled;
}
@Override
public String toString() {
return getClass().getSimpleName() + "{resource=" + resource + "; instanceWorldName=" + instanceWorldName + "}";
}
2020-04-25 01:25:34 +02:00
}