Package com.l2jfrozen.gameserver.model.waypoint

Source Code of com.l2jfrozen.gameserver.model.waypoint.WayPointNode

/*
* $Header: WayPointNode.java, 20/07/2005 19:49:29 luisantonioa Exp $
*
* $Author: luisantonioa $
* $Date: 20/07/2005 19:49:29 $
* $Revision: 1 $
* $Log: WayPointNode.java,v $
* Revision 1  20/07/2005 19:49:29  luisantonioa
* Added copyright notice
*
*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.gameserver.model.waypoint;

import java.util.Collections;
import java.util.List;
import java.util.Map;
import java.util.WeakHashMap;

import javolution.util.FastList;

import com.l2jfrozen.Config;
import com.l2jfrozen.gameserver.idfactory.IdFactory;
import com.l2jfrozen.gameserver.model.L2Character;
import com.l2jfrozen.gameserver.model.L2Object;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.network.serverpackets.MyTargetSelected;
import com.l2jfrozen.util.Point3D;

/**
* This class ...
*
* @version $Revision: 1.2 $ $Date: 2004/06/27 08:12:59 $
*/

public class WayPointNode extends L2Object
{
  private int _id;
  private String _title, _type;
  private static final String NORMAL = "Node", SELECTED = "Selected", LINKED = "Linked";
  private static int _lineId = 5560;
  private static final String LINE_TYPE = "item";
  private Map<WayPointNode, List<WayPointNode>> _linkLists;

  /**
   * @param objectId
   */
  public WayPointNode(int objectId)
  {
    super(objectId);
    _linkLists = Collections.synchronizedMap(new WeakHashMap<WayPointNode, List<WayPointNode>>());
  }

  /* (non-Javadoc)
   * @see com.l2jfrozen.gameserver.model.L2Object#isAutoAttackable(com.l2jfrozen.gameserver.model.L2Character)
   */
  @Override
  public boolean isAutoAttackable(L2Character attacker)
  {
    return false;
  }

  public static WayPointNode spawn(String type, int id, int x, int y, int z)
  {
    WayPointNode newNode = new WayPointNode(IdFactory.getInstance().getNextId());
    newNode.getPoly().setPolyInfo(type, id + "");
    newNode.spawnMe(x, y, z);

    return newNode;
  }

  public static WayPointNode spawn(boolean isItemId, int id, L2PcInstance player)
  {
    return spawn(isItemId ? "item" : "npc", id, player.getX(), player.getY(), player.getZ());
  }

  public static WayPointNode spawn(boolean isItemId, int id, Point3D point)
  {
    return spawn(isItemId ? "item" : "npc", id, point.getX(), point.getY(), point.getZ());
  }

  public static WayPointNode spawn(Point3D point)
  {
    return spawn(Config.NEW_NODE_TYPE, Config.NEW_NODE_ID, point.getX(), point.getY(), point.getZ());
  }

  public static WayPointNode spawn(L2PcInstance player)
  {
    return spawn(Config.NEW_NODE_TYPE, Config.NEW_NODE_ID, player.getX(), player.getY(), player.getZ());
  }

  @Override
  public void onAction(L2PcInstance player)
  {
    if(player.getTarget() != this)
    {
      player.setTarget(this);
      MyTargetSelected my = new MyTargetSelected(getObjectId(), 0);
      player.sendPacket(my);
      my = null;
    }
  }

  public void setNormalInfo(String type, int id, String title)
  {
    _type = type;
    changeID(id, title);
  }

  public void setNormalInfo(String type, int id)
  {
    _type = type;
    changeID(id);
  }

  private void changeID(int id)
  {
    _id = id;
    toggleVisible();
    toggleVisible();
  }

  private void changeID(int id, String title)
  {
    setName(title);
    setTitle(title);
    changeID(id);
  }

  public void setLinked()
  {
    changeID(Config.LINKED_NODE_ID, LINKED);
  }

  public void setNormal()
  {
    changeID(Config.NEW_NODE_ID, NORMAL);
  }

  public void setSelected()
  {
    changeID(Config.SELECTED_NODE_ID, SELECTED);
  }

  @Override
  public boolean isMarker()
  {
    return true;
  }

  public final String getTitle()
  {
    return _title;
  }

  public final void setTitle(String title)
  {
    _title = title;
  }

  public int getId()
  {
    return _id;
  }

  public String getType()
  {
    return _type;
  }

  public void setType(String type)
  {
    _type = type;
  }

  /**
   * @param nodeA
   * @param nodeB
   */
  public static void drawLine(WayPointNode nodeA, WayPointNode nodeB)
  {
    int x1 = nodeA.getX(), y1 = nodeA.getY(), z1 = nodeA.getZ();
    int x2 = nodeB.getX(), y2 = nodeB.getY(), z2 = nodeB.getZ();
    int modX = x1 - x2 > 0 ? -1 : 1;
    int modY = y1 - y2 > 0 ? -1 : 1;
    int modZ = z1 - z2 > 0 ? -1 : 1;

    int diffX = Math.abs(x1 - x2);
    int diffY = Math.abs(y1 - y2);
    int diffZ = Math.abs(z1 - z2);

    int distance = (int) Math.sqrt(diffX * diffX + diffY * diffY + diffZ * diffZ);

    int steps = distance / 40;

    List<WayPointNode> lineNodes = new FastList<WayPointNode>();

    for(int i = 0; i < steps; i++)
    {
      x1 = x1 + modX * diffX / steps;
      y1 = y1 + modY * diffY / steps;
      z1 = z1 + modZ * diffZ / steps;

      lineNodes.add(WayPointNode.spawn(LINE_TYPE, _lineId, x1, y1, z1));
    }

    nodeA.addLineInfo(nodeB, lineNodes);
    nodeB.addLineInfo(nodeA, lineNodes);

    lineNodes = null;
  }

  public void addLineInfo(WayPointNode node, List<WayPointNode> line)
  {
    _linkLists.put(node, line);
  }

  /**
   * @param target
   * @param selectedNode
   */
  public static void eraseLine(WayPointNode target, WayPointNode selectedNode)
  {
    List<WayPointNode> lineNodes = target.getLineInfo(selectedNode);

    if(lineNodes == null)
      return;

    for(WayPointNode node : lineNodes)
    {
      node.decayMe();
    }

    target.eraseLine(selectedNode);
    selectedNode.eraseLine(target);
    lineNodes = null;
  }

  /**
   * @param target
   */
  public void eraseLine(WayPointNode target)
  {
    _linkLists.remove(target);
  }

  /**
   * @param selectedNode
   * @return
   */
  private List<WayPointNode> getLineInfo(WayPointNode selectedNode)
  {
    return _linkLists.get(selectedNode);
  }

  public static void setLineId(int line_id)
  {
    _lineId = line_id;
  }

  public List<WayPointNode> getLineNodes()
  {
    List<WayPointNode> list = new FastList<WayPointNode>();

    for(List<WayPointNode> points : _linkLists.values())
    {
      list.addAll(points);
    }

    return list;
  }
}
TOP

Related Classes of com.l2jfrozen.gameserver.model.waypoint.WayPointNode

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.