goapauto 0.2.2__tar.gz → 0.2.4__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {goapauto-0.2.2 → goapauto-0.2.4}/PKG-INFO +1 -1
- {goapauto-0.2.2 → goapauto-0.2.4}/pyproject.toml +2 -2
- {goapauto-0.2.2 → goapauto-0.2.4}/pyproject.toml.orig +2 -2
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/__init__.py +10 -2
- {goapauto-0.2.2 → goapauto-0.2.4}/README.md +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/__init__.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/action_provider.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/actions.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/goal.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/goal_arbitrator.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/goap_planner.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/node.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/sensors.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/models/worldstate.py +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/py.typed +0 -0
- {goapauto-0.2.2 → goapauto-0.2.4}/src/goapauto/utils/visualizer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: goapauto
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.4
|
|
4
4
|
Summary: A flexible Goal-Oriented Action Planning (GOAP) system for game AI and planning problems, featuring A* search, efficient state management, and modular design.
|
|
5
5
|
Author: IAmNo1Special
|
|
6
6
|
Author-email: IAmNo1Special <ivmno1special@gmail.com>
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "goapauto"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.4"
|
|
4
4
|
description = "A flexible Goal-Oriented Action Planning (GOAP) system for game AI and planning problems, featuring A* search, efficient state management, and modular design."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = "==3.13.*"
|
|
@@ -11,7 +11,7 @@ name = "IAmNo1Special"
|
|
|
11
11
|
email = "ivmno1special@gmail.com"
|
|
12
12
|
|
|
13
13
|
[build-system]
|
|
14
|
-
requires = ["uv_build>=0.8.8,<0.
|
|
14
|
+
requires = ["uv_build>=0.8.8,<0.12.0"]
|
|
15
15
|
build-backend = "uv_build"
|
|
16
16
|
|
|
17
17
|
[dependency-groups]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "goapauto"
|
|
3
|
-
version = "0.2.
|
|
3
|
+
version = "0.2.4"
|
|
4
4
|
description = "A flexible Goal-Oriented Action Planning (GOAP) system for game AI and planning problems, featuring A* search, efficient state management, and modular design."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
authors = [
|
|
@@ -12,7 +12,7 @@ dependencies = [
|
|
|
12
12
|
]
|
|
13
13
|
|
|
14
14
|
[build-system]
|
|
15
|
-
requires = ["uv_build>=0.8.8,<0.
|
|
15
|
+
requires = ["uv_build>=0.8.8,<0.12.0"]
|
|
16
16
|
build-backend = "uv_build"
|
|
17
17
|
|
|
18
18
|
[dependency-groups]
|
|
@@ -38,20 +38,23 @@ Example usage:
|
|
|
38
38
|
from goapauto.models.actions import (
|
|
39
39
|
Action,
|
|
40
40
|
Actions,
|
|
41
|
+
Decrement,
|
|
41
42
|
Delete,
|
|
42
43
|
GreaterThan,
|
|
44
|
+
Increment,
|
|
43
45
|
LessThan,
|
|
44
46
|
Range,
|
|
47
|
+
Set,
|
|
45
48
|
Unset,
|
|
46
49
|
)
|
|
47
50
|
from goapauto.models.goal import Goal
|
|
48
51
|
from goapauto.models.goal_arbitrator import GoalArbitrator
|
|
49
|
-
from goapauto.models.goap_planner import Plan, Planner,
|
|
52
|
+
from goapauto.models.goap_planner import Plan, PlanResult, PlanStats, Planner, Schedule, ScheduleStep
|
|
50
53
|
from goapauto.models.sensors import Sensor, SensorManager
|
|
51
54
|
from goapauto.models.worldstate import WorldState
|
|
52
55
|
from goapauto.utils.visualizer import SearchTreeVisualizer
|
|
53
56
|
|
|
54
|
-
__version__ = "0.2.
|
|
57
|
+
__version__ = "0.2.4"
|
|
55
58
|
__all__ = [
|
|
56
59
|
"Planner",
|
|
57
60
|
"Goal",
|
|
@@ -61,12 +64,17 @@ __all__ = [
|
|
|
61
64
|
"PlanResult",
|
|
62
65
|
"PlanStats",
|
|
63
66
|
"Plan",
|
|
67
|
+
"Schedule",
|
|
68
|
+
"ScheduleStep",
|
|
64
69
|
"Sensor",
|
|
65
70
|
"SensorManager",
|
|
66
71
|
"GoalArbitrator",
|
|
67
72
|
"SearchTreeVisualizer",
|
|
68
73
|
"Unset",
|
|
69
74
|
"Delete",
|
|
75
|
+
"Set",
|
|
76
|
+
"Increment",
|
|
77
|
+
"Decrement",
|
|
70
78
|
"GreaterThan",
|
|
71
79
|
"LessThan",
|
|
72
80
|
"Range",
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|