/*
MobileRobots Advanced Robotics Navigation and Localization (ARNL)
Version 1.7.1

Copyright (C) 2004, 2005 ActivMedia Robotics LLC
Copyright (C) 2006, 2007, 2008, 2009 MobileRobots Inc.

All Rights Reserved.

MobileRobots Inc does not make any representations about the
suitability of this software for any purpose.  It is provided "as is"
without express or implied warranty.

The license for this software is distributed as LICENSE.txt in the top
level directory.

robots@mobilerobots.com
MobileRobots
10 Columbia Drive
Amherst, NH 03031
800-639-9481

*/
/* ----------------------------------------------------------------------------
 * This file was automatically generated by SWIG (http://www.swig.org).
 * Version 1.3.29
 *
 * Do not make changes to this file unless you know what you are doing--modify
 * the SWIG interface file instead.
 * ----------------------------------------------------------------------------- */

package com.mobilerobots.BaseArnl;

  import com.mobilerobots.Aria.*;
  import com.mobilerobots.ArNetworking.*;

public class ArServerInfoPath {
  private long swigCPtr;
  protected boolean swigCMemOwn;

  /* for internal use by swig only */
  public ArServerInfoPath(long cPtr, boolean cMemoryOwn) {
    swigCMemOwn = cMemoryOwn;
    swigCPtr = cPtr;
  }

  /* for internal use by swig only */
  public static long getCPtr(ArServerInfoPath obj) {
    return (obj == null) ? 0 : obj.swigCPtr;
  }

  protected void finalize() {
    delete();
  }

  public void delete() {
    if(swigCPtr != 0 && swigCMemOwn) {
      swigCMemOwn = false;
      BaseArnlJavaJNI.delete_ArServerInfoPath(swigCPtr);
    }
    swigCPtr = 0;
  }

  public ArServerInfoPath(ArServerBase server, ArRobot robot, ArPathPlanningTask pathTask) {
    this(BaseArnlJavaJNI.new_ArServerInfoPath(ArServerBase.getCPtr(server), ArRobot.getCPtr(robot), ArPathPlanningTask.getCPtr(pathTask)), true);
  }

  public void getPath(ArServerClient client, ArNetPacket packet) {
    BaseArnlJavaJNI.ArServerInfoPath_getPath(swigCPtr, ArServerClient.getCPtr(client), ArNetPacket.getCPtr(packet));
  }

  public void getSearchRectangle(ArServerClient client, ArNetPacket packet) {
    BaseArnlJavaJNI.ArServerInfoPath_getSearchRectangle(swigCPtr, ArServerClient.getCPtr(client), ArNetPacket.getCPtr(packet));
  }

  public void addSearchRectangleDrawing(ArServerInfoDrawings drawings) {
    BaseArnlJavaJNI.ArServerInfoPath_addSearchRectangleDrawing(swigCPtr, ArServerInfoDrawings.getCPtr(drawings));
  }

  public void addControlCommands(ArServerHandlerCommands handlerCommands) {
    BaseArnlJavaJNI.ArServerInfoPath_addControlCommands(swigCPtr, ArServerHandlerCommands.getCPtr(handlerCommands));
  }

  public void searchRectangleEnable() {
    BaseArnlJavaJNI.ArServerInfoPath_searchRectangleEnable(swigCPtr);
  }

  public void searchRectangleDisable() {
    BaseArnlJavaJNI.ArServerInfoPath_searchRectangleDisable(swigCPtr);
  }

  public void setSearchRectangleDrawingData(ArDrawingData data, boolean takeOwnershipOfData) {
    BaseArnlJavaJNI.ArServerInfoPath_setSearchRectangleDrawingData(swigCPtr, ArDrawingData.getCPtr(data), takeOwnershipOfData);
  }

}
