-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
40c66a4
commit abddf5c
Showing
32 changed files
with
174 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
src/main/java/com/extollit/gaming/ai/path/model/PathObject.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
src/main/java/com/extollit/gaming/ai/path/model/SortedPointQueue.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 0 additions & 8 deletions
8
src/main/java/com/extollit/gaming/ai/path/persistence/IVersionedReadable.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
src/main/java/com/extollit/gaming/ai/path/persistence/IVersionedWriteable.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/com/extollit/gaming/ai/path/persistence/LinkableReader.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/com/extollit/gaming/ai/path/persistence/LinkableWriter.java
This file was deleted.
Oops, something went wrong.
8 changes: 0 additions & 8 deletions
8
src/main/java/com/extollit/gaming/ai/path/persistence/PartialObjectReader.java
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
src/main/java/com/extollit/gaming/ai/path/persistence/PathType.java
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/java/com/extollit/gaming/ai/path/persistence/internal/IVersionedReadable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.extollit.gaming.ai.path.persistence.internal; | ||
|
||
import java.io.IOException; | ||
import java.io.ObjectInput; | ||
|
||
/** | ||
* Internal API, do not use this directly | ||
* @see com.extollit.gaming.ai.path.persistence.Persistence | ||
*/ | ||
public interface IVersionedReadable { | ||
void readVersioned(byte version, ReaderWriters readerWriters, ObjectInput input) throws IOException; | ||
} |
12 changes: 12 additions & 0 deletions
12
src/main/java/com/extollit/gaming/ai/path/persistence/internal/IVersionedWriteable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.extollit.gaming.ai.path.persistence.internal; | ||
|
||
import java.io.IOException; | ||
import java.io.ObjectOutput; | ||
|
||
/** | ||
* Internal API, do not use this directly | ||
* @see com.extollit.gaming.ai.path.persistence.Persistence | ||
*/ | ||
public interface IVersionedWriteable { | ||
void writeVersioned(byte version, ReaderWriters readerWriters, ObjectOutput output) throws IOException; | ||
} |
6 changes: 5 additions & 1 deletion
6
...g/ai/path/persistence/IdentityMapper.java → .../persistence/internal/IdentityMapper.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
src/main/java/com/extollit/gaming/ai/path/persistence/internal/LinkableReader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.extollit.gaming.ai.path.persistence.internal; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* Internal API, do not use this directly | ||
* @see com.extollit.gaming.ai.path.persistence.Persistence | ||
*/ | ||
public interface LinkableReader<A, B> { | ||
void readLinkages(A object, ReferableObjectInput<B> in) throws IOException; | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/com/extollit/gaming/ai/path/persistence/internal/LinkableWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.extollit.gaming.ai.path.persistence.internal; | ||
|
||
import java.io.IOException; | ||
|
||
/** | ||
* Internal API, do not use this directly | ||
* @see com.extollit.gaming.ai.path.persistence.Persistence | ||
*/ | ||
public interface LinkableWriter<A, B> { | ||
void writeLinkages(A object, ReferableObjectOutput<B> out) throws IOException; | ||
} |
6 changes: 5 additions & 1 deletion
6
...persistence/MutableVec3dReaderWriter.java → ...ce/internal/MutableVec3dReaderWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...nce/NullableMutableVec3dReaderWriter.java → ...nal/NullableMutableVec3dReaderWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...ersistence/NullableVec3dReaderWriter.java → ...e/internal/NullableVec3dReaderWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 5 additions & 1 deletion
6
...ersistence/NullableVec3iReaderWriter.java → ...e/internal/NullableVec3iReaderWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 12 additions & 0 deletions
12
src/main/java/com/extollit/gaming/ai/path/persistence/internal/PartialObjectReader.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
package com.extollit.gaming.ai.path.persistence.internal; | ||
|
||
import java.io.IOException; | ||
import java.io.ObjectInput; | ||
|
||
/** | ||
* Internal API, do not use this directly | ||
* @see com.extollit.gaming.ai.path.persistence.Persistence | ||
*/ | ||
public interface PartialObjectReader<T> { | ||
T readPartialObject(ObjectInput in) throws IOException; | ||
} |
6 changes: 5 additions & 1 deletion
6
...path/persistence/PartialObjectWriter.java → ...istence/internal/PartialObjectWriter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
package com.extollit.gaming.ai.path.persistence; | ||
package com.extollit.gaming.ai.path.persistence.internal; | ||
|
||
import java.io.IOException; | ||
import java.io.ObjectOutput; | ||
|
||
/** | ||
* Internal API, do not use this directly | ||
* @see com.extollit.gaming.ai.path.persistence.Persistence | ||
*/ | ||
public interface PartialObjectWriter<T> { | ||
void writePartialObject(T object, ObjectOutput out) throws IOException; | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/com/extollit/gaming/ai/path/persistence/internal/PathType.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.extollit.gaming.ai.path.persistence.internal; | ||
|
||
/** | ||
* Internal API, do not use this directly | ||
* @see com.extollit.gaming.ai.path.persistence.Persistence | ||
*/ | ||
public enum PathType { | ||
none, | ||
complete, | ||
incomplete | ||
} |
Oops, something went wrong.