continual-foragax 0.14.0__py3-none-any.whl → 0.16.0__py3-none-any.whl
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.
- {continual_foragax-0.14.0.dist-info → continual_foragax-0.16.0.dist-info}/METADATA +1 -1
- {continual_foragax-0.14.0.dist-info → continual_foragax-0.16.0.dist-info}/RECORD +7 -7
- foragax/objects.py +31 -0
- foragax/registry.py +32 -0
- {continual_foragax-0.14.0.dist-info → continual_foragax-0.16.0.dist-info}/WHEEL +0 -0
- {continual_foragax-0.14.0.dist-info → continual_foragax-0.16.0.dist-info}/entry_points.txt +0 -0
- {continual_foragax-0.14.0.dist-info → continual_foragax-0.16.0.dist-info}/top_level.txt +0 -0
@@ -1,8 +1,8 @@
|
|
1
1
|
foragax/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
2
2
|
foragax/colors.py,sha256=rqNPiywP4Nvr0POhsGpasRk-nMMTS3DOwFRUgperlUk,2065
|
3
3
|
foragax/env.py,sha256=EyT6KY0d0mXNh6yw10V-8SJVAdyPAGKtRdFV4wXq-JM,19836
|
4
|
-
foragax/objects.py,sha256
|
5
|
-
foragax/registry.py,sha256
|
4
|
+
foragax/objects.py,sha256=wyTqqmfksvGXdxw8rxsUn06CrB22hPIDdoQTSMI1qd8,7657
|
5
|
+
foragax/registry.py,sha256=iAM6lBwUB4h-3jVz8raZcSCmiBXwsptyc7TJbgxprAo,6033
|
6
6
|
foragax/rendering.py,sha256=bms7wvBZTofoR-K-2QD2Ggeed7Viw8uwAEiEpEM3eSo,2768
|
7
7
|
foragax/weather.py,sha256=KNAiwuFz8V__6G75vZIWQKPocLzXqxXn-Vt4TbHIpcA,1258
|
8
8
|
foragax/data/ECA_non-blended_custom/TG_SOUID100897.txt,sha256=N7URbX6VlCZvCboUogYjMzy1I-0cfNPOn0QTLSHHfQ0,1776751
|
@@ -128,8 +128,8 @@ foragax/data/ECA_non-blended_custom/TG_SOUID156887.txt,sha256=juzTPgJoJxfqmZkorL
|
|
128
128
|
foragax/data/ECA_non-blended_custom/elements.txt,sha256=OtcUBoDAHxuln79BPKGu0tsQxG_5G2BfAX3Ck130kEA,4507
|
129
129
|
foragax/data/ECA_non-blended_custom/metadata.txt,sha256=nudnmOCy5cPJfSXt_IjyX0S5-T7NkCZREICZSimqeqc,48260
|
130
130
|
foragax/data/ECA_non-blended_custom/sources.txt,sha256=1j3lSmINAoCMqPqFrHfZJriOz6sTYZNOhXzUwvTLas0,20857
|
131
|
-
continual_foragax-0.
|
132
|
-
continual_foragax-0.
|
133
|
-
continual_foragax-0.
|
134
|
-
continual_foragax-0.
|
135
|
-
continual_foragax-0.
|
131
|
+
continual_foragax-0.16.0.dist-info/METADATA,sha256=spiV8s6tTWMtx0CWxpIecNNbmmYF16t0_hHg2gEowwo,4897
|
132
|
+
continual_foragax-0.16.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
133
|
+
continual_foragax-0.16.0.dist-info/entry_points.txt,sha256=Qiu6iE_XudrDO_bVAMeA435h4PO9ourt8huvSHiuMPc,41
|
134
|
+
continual_foragax-0.16.0.dist-info/top_level.txt,sha256=-z3SDK6RfLIcLI24n8rdbeFzlVY3hunChzlu-v1Fncs,8
|
135
|
+
continual_foragax-0.16.0.dist-info/RECORD,,
|
foragax/objects.py
CHANGED
@@ -189,6 +189,14 @@ BROWN_MOREL = NormalRegenForagaxObject(
|
|
189
189
|
mean_regen_delay=300,
|
190
190
|
std_regen_delay=30,
|
191
191
|
)
|
192
|
+
BROWN_MOREL_2 = NormalRegenForagaxObject(
|
193
|
+
name="brown_morel",
|
194
|
+
reward=10.0,
|
195
|
+
collectable=True,
|
196
|
+
color=(63, 30, 25),
|
197
|
+
mean_regen_delay=100,
|
198
|
+
std_regen_delay=10,
|
199
|
+
)
|
192
200
|
BROWN_OYSTER = NormalRegenForagaxObject(
|
193
201
|
name="brown_oyster",
|
194
202
|
reward=1.0,
|
@@ -204,6 +212,21 @@ GREEN_DEATHCAP = DefaultForagaxObject(
|
|
204
212
|
color=(0, 255, 0),
|
205
213
|
regen_delay=(10, 10),
|
206
214
|
)
|
215
|
+
GREEN_DEATHCAP_2 = DefaultForagaxObject(
|
216
|
+
name="green_deathcap",
|
217
|
+
reward=-5.0,
|
218
|
+
collectable=True,
|
219
|
+
color=(0, 255, 0),
|
220
|
+
regen_delay=(10, 10),
|
221
|
+
)
|
222
|
+
GREEN_DEATHCAP_3 = DefaultForagaxObject(
|
223
|
+
name="green_deathcap",
|
224
|
+
reward=-5.0,
|
225
|
+
collectable=True,
|
226
|
+
color=(0, 255, 0),
|
227
|
+
mean_regen_delay=10,
|
228
|
+
std_regen_delay=1,
|
229
|
+
)
|
207
230
|
GREEN_FAKE = DefaultForagaxObject(
|
208
231
|
name="green_fake",
|
209
232
|
reward=0.0,
|
@@ -211,6 +234,14 @@ GREEN_FAKE = DefaultForagaxObject(
|
|
211
234
|
color=(0, 255, 0),
|
212
235
|
regen_delay=(10, 10),
|
213
236
|
)
|
237
|
+
GREEN_FAKE_2 = DefaultForagaxObject(
|
238
|
+
name="green_fake",
|
239
|
+
reward=0.0,
|
240
|
+
collectable=True,
|
241
|
+
color=(0, 255, 0),
|
242
|
+
mean_regen_delay=10,
|
243
|
+
std_regen_delay=1,
|
244
|
+
)
|
214
245
|
|
215
246
|
|
216
247
|
def create_weather_objects(
|
foragax/registry.py
CHANGED
@@ -11,9 +11,13 @@ from foragax.env import (
|
|
11
11
|
)
|
12
12
|
from foragax.objects import (
|
13
13
|
BROWN_MOREL,
|
14
|
+
BROWN_MOREL_2,
|
14
15
|
BROWN_OYSTER,
|
15
16
|
GREEN_DEATHCAP,
|
17
|
+
GREEN_DEATHCAP_2,
|
18
|
+
GREEN_DEATHCAP_3,
|
16
19
|
GREEN_FAKE,
|
20
|
+
GREEN_FAKE_2,
|
17
21
|
LARGE_MOREL,
|
18
22
|
LARGE_OYSTER,
|
19
23
|
MEDIUM_MOREL,
|
@@ -73,6 +77,34 @@ ENV_CONFIGS: Dict[str, Dict[str, Any]] = {
|
|
73
77
|
),
|
74
78
|
"nowrap": True,
|
75
79
|
},
|
80
|
+
"ForagaxTwoBiome-v3": {
|
81
|
+
"size": (15, 15),
|
82
|
+
"aperture_size": None,
|
83
|
+
"objects": (BROWN_MOREL, BROWN_OYSTER, GREEN_DEATHCAP_2, GREEN_FAKE),
|
84
|
+
"biomes": (
|
85
|
+
# Morel biome
|
86
|
+
Biome(start=(3, 0), stop=(5, 15), object_frequencies=(0.5, 0.0, 0.25, 0.0)),
|
87
|
+
# Oyster biome
|
88
|
+
Biome(
|
89
|
+
start=(10, 0), stop=(12, 15), object_frequencies=(0.0, 0.5, 0.0, 0.25)
|
90
|
+
),
|
91
|
+
),
|
92
|
+
"nowrap": True,
|
93
|
+
},
|
94
|
+
"ForagaxTwoBiome-v4": {
|
95
|
+
"size": (15, 15),
|
96
|
+
"aperture_size": None,
|
97
|
+
"objects": (BROWN_MOREL_2, BROWN_OYSTER, GREEN_DEATHCAP_3, GREEN_FAKE_2),
|
98
|
+
"biomes": (
|
99
|
+
# Morel biome
|
100
|
+
Biome(start=(3, 0), stop=(5, 15), object_frequencies=(0.5, 0.0, 0.25, 0.0)),
|
101
|
+
# Oyster biome
|
102
|
+
Biome(
|
103
|
+
start=(10, 0), stop=(12, 15), object_frequencies=(0.0, 0.5, 0.0, 0.25)
|
104
|
+
),
|
105
|
+
),
|
106
|
+
"nowrap": True,
|
107
|
+
},
|
76
108
|
"ForagaxTwoBiomeSmall-v1": {
|
77
109
|
"size": (16, 8),
|
78
110
|
"aperture_size": None,
|
File without changes
|
File without changes
|
File without changes
|