145 lines
3.8 KiB
Java
145 lines
3.8 KiB
Java
/*
|
|
This file is part of the OdinMS Maple Story Server
|
|
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
|
Matthias Butz <matze@odinms.de>
|
|
Jan Christian Meyer <vimes@odinms.de>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package server.maps;
|
|
|
|
import client.MapleClient;
|
|
import java.awt.Point;
|
|
import scripting.portal.PortalScriptManager;
|
|
import server.MaplePortal;
|
|
import tools.MaplePacketCreator;
|
|
|
|
public class MapleGenericPortal implements MaplePortal {
|
|
|
|
private String name;
|
|
private String target;
|
|
private Point position;
|
|
private int targetmap;
|
|
private int type;
|
|
private boolean status = true;
|
|
private int id;
|
|
private String scriptName;
|
|
private boolean portalState;
|
|
|
|
public MapleGenericPortal(int type) {
|
|
this.type = type;
|
|
}
|
|
|
|
@Override
|
|
public int getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(int id) {
|
|
this.id = id;
|
|
}
|
|
|
|
@Override
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
|
|
@Override
|
|
public Point getPosition() {
|
|
return position;
|
|
}
|
|
|
|
@Override
|
|
public String getTarget() {
|
|
return target;
|
|
}
|
|
|
|
@Override
|
|
public void setPortalStatus(boolean newStatus) {
|
|
this.status = newStatus;
|
|
}
|
|
|
|
@Override
|
|
public boolean getPortalStatus() {
|
|
return status;
|
|
}
|
|
|
|
@Override
|
|
public int getTargetMapId() {
|
|
return targetmap;
|
|
}
|
|
|
|
@Override
|
|
public int getType() {
|
|
return type;
|
|
}
|
|
|
|
@Override
|
|
public String getScriptName() {
|
|
return scriptName;
|
|
}
|
|
|
|
public void setName(String name) {
|
|
this.name = name;
|
|
}
|
|
|
|
public void setPosition(Point position) {
|
|
this.position = position;
|
|
}
|
|
|
|
public void setTarget(String target) {
|
|
this.target = target;
|
|
}
|
|
|
|
public void setTargetMapId(int targetmapid) {
|
|
this.targetmap = targetmapid;
|
|
}
|
|
|
|
@Override
|
|
public void setScriptName(String scriptName) {
|
|
this.scriptName = scriptName;
|
|
}
|
|
|
|
@Override
|
|
public void enterPortal(MapleClient c) {
|
|
boolean changed = false;
|
|
if (getScriptName() != null) {
|
|
changed = PortalScriptManager.getInstance().executePortalScript(this, c);
|
|
} else if (getTargetMapId() != 999999999) {
|
|
MapleMap to = c.getPlayer().getEventInstance() == null ? c.getChannelServer().getMapFactory().getMap(getTargetMapId()) : c.getPlayer().getEventInstance().getMapInstance(getTargetMapId());
|
|
MaplePortal pto = to.getPortal(getTarget());
|
|
if (pto == null) {// fallback for missing portals - no real life case anymore - intresting for not implemented areas
|
|
pto = to.getPortal(0);
|
|
}
|
|
c.getPlayer().changeMap(to, pto); //late resolving makes this harder but prevents us from loading the whole world at once
|
|
changed = true;
|
|
}
|
|
if (!changed) {
|
|
c.announce(MaplePacketCreator.enableActions());
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public void setPortalState(boolean state) {
|
|
this.portalState = state;
|
|
}
|
|
|
|
@Override
|
|
public boolean getPortalState() {
|
|
return portalState;
|
|
}
|
|
}
|