From 0427ab89f1753a44b30cbc35ce021cbbdc845109 Mon Sep 17 00:00:00 2001 From: Foghrye4 Date: Thu, 10 Aug 2017 18:52:45 +0300 Subject: fix missing source folder --- javadoc/net/minecraft/pathfinding/Path.html | 308 +++++++++++++ javadoc/net/minecraft/pathfinding/PathEntity.html | 399 +++++++++++++++++ javadoc/net/minecraft/pathfinding/PathFinder.html | 335 ++++++++++++++ .../net/minecraft/pathfinding/PathNavigate.html | 491 +++++++++++++++++++++ javadoc/net/minecraft/pathfinding/PathPoint.html | 427 ++++++++++++++++++ .../net/minecraft/pathfinding/package-frame.html | 23 + .../net/minecraft/pathfinding/package-summary.html | 147 ++++++ .../net/minecraft/pathfinding/package-tree.html | 130 ++++++ 8 files changed, 2260 insertions(+) create mode 100644 javadoc/net/minecraft/pathfinding/Path.html create mode 100644 javadoc/net/minecraft/pathfinding/PathEntity.html create mode 100644 javadoc/net/minecraft/pathfinding/PathFinder.html create mode 100644 javadoc/net/minecraft/pathfinding/PathNavigate.html create mode 100644 javadoc/net/minecraft/pathfinding/PathPoint.html create mode 100644 javadoc/net/minecraft/pathfinding/package-frame.html create mode 100644 javadoc/net/minecraft/pathfinding/package-summary.html create mode 100644 javadoc/net/minecraft/pathfinding/package-tree.html (limited to 'javadoc/net/minecraft/pathfinding') diff --git a/javadoc/net/minecraft/pathfinding/Path.html b/javadoc/net/minecraft/pathfinding/Path.html new file mode 100644 index 0000000..9bd2e9b --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/Path.html @@ -0,0 +1,308 @@ + + + + + +Path (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.pathfinding
+

Class Path

+
+
+ +
+
    +
  • +
    +
    +
    public class Path
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      Path() 
      +
    • +
    + + +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        Path

        +
        public Path()
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + + + + + +
        +
      • +

        clearPath

        +
        public void clearPath()
        +
      • +
      + + + +
        +
      • +

        dequeue

        +
        public PathPoint dequeue()
        +
      • +
      + + + +
        +
      • +

        changeDistance

        +
        public void changeDistance(PathPoint p_75850_1_,
        +                  float p_75850_2_)
        +
      • +
      + + + +
        +
      • +

        isPathEmpty

        +
        public boolean isPathEmpty()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/pathfinding/PathEntity.html b/javadoc/net/minecraft/pathfinding/PathEntity.html new file mode 100644 index 0000000..cd45f5a --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/PathEntity.html @@ -0,0 +1,399 @@ + + + + + +PathEntity (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.pathfinding
+

Class PathEntity

+
+
+ +
+
    +
  • +
    +
    +
    public class PathEntity
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PathEntity

        +
        public PathEntity(PathPoint[] p_i2136_1_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        incrementPathIndex

        +
        public void incrementPathIndex()
        +
      • +
      + + + +
        +
      • +

        isFinished

        +
        public boolean isFinished()
        +
      • +
      + + + +
        +
      • +

        getFinalPathPoint

        +
        public PathPoint getFinalPathPoint()
        +
      • +
      + + + +
        +
      • +

        getPathPointFromIndex

        +
        public PathPoint getPathPointFromIndex(int p_75877_1_)
        +
      • +
      + + + +
        +
      • +

        getCurrentPathLength

        +
        public int getCurrentPathLength()
        +
      • +
      + + + +
        +
      • +

        setCurrentPathLength

        +
        public void setCurrentPathLength(int p_75871_1_)
        +
      • +
      + + + +
        +
      • +

        getCurrentPathIndex

        +
        public int getCurrentPathIndex()
        +
      • +
      + + + +
        +
      • +

        setCurrentPathIndex

        +
        public void setCurrentPathIndex(int p_75872_1_)
        +
      • +
      + + + +
        +
      • +

        getVectorFromIndex

        +
        public Vec3 getVectorFromIndex(Entity p_75881_1_,
        +                      int p_75881_2_)
        +
      • +
      + + + +
        +
      • +

        getPosition

        +
        public Vec3 getPosition(Entity p_75878_1_)
        +
      • +
      + + + +
        +
      • +

        isSamePath

        +
        public boolean isSamePath(PathEntity p_75876_1_)
        +
      • +
      + + + +
        +
      • +

        isDestinationSame

        +
        public boolean isDestinationSame(Vec3 p_75880_1_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/pathfinding/PathFinder.html b/javadoc/net/minecraft/pathfinding/PathFinder.html new file mode 100644 index 0000000..12e3247 --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/PathFinder.html @@ -0,0 +1,335 @@ + + + + + +PathFinder (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.pathfinding
+

Class PathFinder

+
+
+ +
+
    +
  • +
    +
    +
    public class PathFinder
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PathFinder(IBlockAccess p_i2137_1_, + boolean p_i2137_2_, + boolean p_i2137_3_, + boolean p_i2137_4_, + boolean p_i2137_5_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      PathEntitycreateEntityPathTo(Entity p_75856_1_, + Entity p_75856_2_, + float p_75856_3_) 
      PathEntitycreateEntityPathTo(Entity p_75859_1_, + int p_75859_2_, + int p_75859_3_, + int p_75859_4_, + float p_75859_5_) 
      static intfunc_82565_a(Entity p_82565_0_, + int p_82565_1_, + int p_82565_2_, + int p_82565_3_, + PathPoint p_82565_4_, + boolean p_82565_5_, + boolean p_82565_6_, + boolean p_82565_7_) 
      intgetVerticalOffset(Entity p_75855_1_, + int p_75855_2_, + int p_75855_3_, + int p_75855_4_, + PathPoint p_75855_5_) 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PathFinder

        +
        public PathFinder(IBlockAccess p_i2137_1_,
        +          boolean p_i2137_2_,
        +          boolean p_i2137_3_,
        +          boolean p_i2137_4_,
        +          boolean p_i2137_5_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        createEntityPathTo

        +
        public PathEntity createEntityPathTo(Entity p_75856_1_,
        +                            Entity p_75856_2_,
        +                            float p_75856_3_)
        +
      • +
      + + + +
        +
      • +

        createEntityPathTo

        +
        public PathEntity createEntityPathTo(Entity p_75859_1_,
        +                            int p_75859_2_,
        +                            int p_75859_3_,
        +                            int p_75859_4_,
        +                            float p_75859_5_)
        +
      • +
      + + + +
        +
      • +

        getVerticalOffset

        +
        public int getVerticalOffset(Entity p_75855_1_,
        +                    int p_75855_2_,
        +                    int p_75855_3_,
        +                    int p_75855_4_,
        +                    PathPoint p_75855_5_)
        +
      • +
      + + + +
        +
      • +

        func_82565_a

        +
        public static int func_82565_a(Entity p_82565_0_,
        +               int p_82565_1_,
        +               int p_82565_2_,
        +               int p_82565_3_,
        +               PathPoint p_82565_4_,
        +               boolean p_82565_5_,
        +               boolean p_82565_6_,
        +               boolean p_82565_7_)
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/pathfinding/PathNavigate.html b/javadoc/net/minecraft/pathfinding/PathNavigate.html new file mode 100644 index 0000000..e1b43db --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/PathNavigate.html @@ -0,0 +1,491 @@ + + + + + +PathNavigate (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.pathfinding
+

Class PathNavigate

+
+
+ +
+
    +
  • +
    +
    +
    public class PathNavigate
    +extends java.lang.Object
    +
  • +
+
+
+ +
+
+
    +
  • + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PathNavigate

        +
        public PathNavigate(EntityLiving p_i1671_1_,
        +            World p_i1671_2_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        setAvoidsWater

        +
        public void setAvoidsWater(boolean p_75491_1_)
        +
      • +
      + + + +
        +
      • +

        getAvoidsWater

        +
        public boolean getAvoidsWater()
        +
      • +
      + + + +
        +
      • +

        setBreakDoors

        +
        public void setBreakDoors(boolean p_75498_1_)
        +
      • +
      + + + +
        +
      • +

        setEnterDoors

        +
        public void setEnterDoors(boolean p_75490_1_)
        +
      • +
      + + + +
        +
      • +

        getCanBreakDoors

        +
        public boolean getCanBreakDoors()
        +
      • +
      + + + +
        +
      • +

        setAvoidSun

        +
        public void setAvoidSun(boolean p_75504_1_)
        +
      • +
      + + + +
        +
      • +

        setSpeed

        +
        public void setSpeed(double p_75489_1_)
        +
      • +
      + + + +
        +
      • +

        setCanSwim

        +
        public void setCanSwim(boolean p_75495_1_)
        +
      • +
      + + + +
        +
      • +

        getPathSearchRange

        +
        public float getPathSearchRange()
        +
      • +
      + + + +
        +
      • +

        getPathToXYZ

        +
        public PathEntity getPathToXYZ(double p_75488_1_,
        +                      double p_75488_3_,
        +                      double p_75488_5_)
        +
      • +
      + + + +
        +
      • +

        tryMoveToXYZ

        +
        public boolean tryMoveToXYZ(double p_75492_1_,
        +                   double p_75492_3_,
        +                   double p_75492_5_,
        +                   double p_75492_7_)
        +
      • +
      + + + +
        +
      • +

        getPathToEntityLiving

        +
        public PathEntity getPathToEntityLiving(Entity p_75494_1_)
        +
      • +
      + + + +
        +
      • +

        tryMoveToEntityLiving

        +
        public boolean tryMoveToEntityLiving(Entity p_75497_1_,
        +                            double p_75497_2_)
        +
      • +
      + + + +
        +
      • +

        setPath

        +
        public boolean setPath(PathEntity p_75484_1_,
        +              double p_75484_2_)
        +
      • +
      + + + + + + + +
        +
      • +

        onUpdateNavigation

        +
        public void onUpdateNavigation()
        +
      • +
      + + + +
        +
      • +

        noPath

        +
        public boolean noPath()
        +
      • +
      + + + +
        +
      • +

        clearPathEntity

        +
        public void clearPathEntity()
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/pathfinding/PathPoint.html b/javadoc/net/minecraft/pathfinding/PathPoint.html new file mode 100644 index 0000000..aa35b3a --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/PathPoint.html @@ -0,0 +1,427 @@ + + + + + +PathPoint (Forge API) + + + + + + + +
+ + + + + +
+ + + +
+
net.minecraft.pathfinding
+

Class PathPoint

+
+
+ +
+
    +
  • +
    +
    +
    public class PathPoint
    +extends java.lang.Object
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Summary

      + + + + + + + + + + + + + + + + + + + + + + +
      Fields 
      Modifier and TypeField and Description
      booleanisFirst 
      intxCoord 
      intyCoord 
      intzCoord 
      +
    • +
    + +
      +
    • + + +

      Constructor Summary

      + + + + + + + + +
      Constructors 
      Constructor and Description
      PathPoint(int p_i2135_1_, + int p_i2135_2_, + int p_i2135_3_) 
      +
    • +
    + +
      +
    • + + +

      Method Summary

      + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
      Methods 
      Modifier and TypeMethod and Description
      floatdistanceTo(PathPoint p_75829_1_) 
      floatdistanceToSquared(PathPoint p_75832_1_) 
      booleanequals(java.lang.Object p_equals_1_) 
      inthashCode() 
      booleanisAssigned() 
      static intmakeHash(int p_75830_0_, + int p_75830_1_, + int p_75830_2_) 
      java.lang.StringtoString() 
      +
        +
      • + + +

        Methods inherited from class java.lang.Object

        +clone, finalize, getClass, notify, notifyAll, wait, wait, wait
      • +
      +
    • +
    +
  • +
+
+
+
    +
  • + +
      +
    • + + +

      Field Detail

      + + + +
        +
      • +

        xCoord

        +
        public final int xCoord
        +
      • +
      + + + +
        +
      • +

        yCoord

        +
        public final int yCoord
        +
      • +
      + + + +
        +
      • +

        zCoord

        +
        public final int zCoord
        +
      • +
      + + + +
        +
      • +

        isFirst

        +
        public boolean isFirst
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Constructor Detail

      + + + +
        +
      • +

        PathPoint

        +
        public PathPoint(int p_i2135_1_,
        +         int p_i2135_2_,
        +         int p_i2135_3_)
        +
      • +
      +
    • +
    + +
      +
    • + + +

      Method Detail

      + + + +
        +
      • +

        makeHash

        +
        public static int makeHash(int p_75830_0_,
        +           int p_75830_1_,
        +           int p_75830_2_)
        +
      • +
      + + + +
        +
      • +

        distanceTo

        +
        public float distanceTo(PathPoint p_75829_1_)
        +
      • +
      + + + +
        +
      • +

        distanceToSquared

        +
        public float distanceToSquared(PathPoint p_75832_1_)
        +
      • +
      + + + +
        +
      • +

        equals

        +
        public boolean equals(java.lang.Object p_equals_1_)
        +
        +
        Overrides:
        +
        equals in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        hashCode

        +
        public int hashCode()
        +
        +
        Overrides:
        +
        hashCode in class java.lang.Object
        +
        +
      • +
      + + + +
        +
      • +

        isAssigned

        +
        public boolean isAssigned()
        +
      • +
      + + + +
        +
      • +

        toString

        +
        public java.lang.String toString()
        +
        +
        Overrides:
        +
        toString in class java.lang.Object
        +
        +
      • +
      +
    • +
    +
  • +
+
+
+ + +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/pathfinding/package-frame.html b/javadoc/net/minecraft/pathfinding/package-frame.html new file mode 100644 index 0000000..ed6d042 --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/package-frame.html @@ -0,0 +1,23 @@ + + + + + +net.minecraft.pathfinding (Forge API) + + + + +

net.minecraft.pathfinding

+
+

Classes

+ +
+ + diff --git a/javadoc/net/minecraft/pathfinding/package-summary.html b/javadoc/net/minecraft/pathfinding/package-summary.html new file mode 100644 index 0000000..0b7af20 --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/package-summary.html @@ -0,0 +1,147 @@ + + + + + +net.minecraft.pathfinding (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Package net.minecraft.pathfinding

+
+
+ +
+ +
+ + + + + +
+ + + + diff --git a/javadoc/net/minecraft/pathfinding/package-tree.html b/javadoc/net/minecraft/pathfinding/package-tree.html new file mode 100644 index 0000000..3217d0e --- /dev/null +++ b/javadoc/net/minecraft/pathfinding/package-tree.html @@ -0,0 +1,130 @@ + + + + + +net.minecraft.pathfinding Class Hierarchy (Forge API) + + + + + + + +
+ + + + + +
+ + +
+

Hierarchy For Package net.minecraft.pathfinding

+Package Hierarchies: + +
+
+

Class Hierarchy

+ +
+ +
+ + + + + +
+ + + + -- cgit v1.2.3