About Social Code
summaryrefslogtreecommitdiff
path: root/world.rhm
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-20 23:01:42 +0000
committerLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-20 23:04:16 +0000
commitf4e83d48a0e355707dbe6912b4c585436757bb6e (patch)
tree640ea9b1c4c135cd558275031e76dd56b638cc48 /world.rhm
parentf741a652f283c4533723a03eca7cf315a487ce92 (diff)
Add skeleton for gathering
Diffstat (limited to 'world.rhm')
-rw-r--r--world.rhm19
1 files changed, 18 insertions, 1 deletions
diff --git a/world.rhm b/world.rhm
index dbedf15..a528f89 100644
--- a/world.rhm
+++ b/world.rhm
@@ -116,13 +116,30 @@ class Entity(id:: Int, mutable x :: Int, mutable y :: Int, mutable current_chunk
cond
| validate_dist(x, y, max_dist) && target_chunk != #false && validate_move(x, y, max_dist, target_chunk!!):
- this.current_chunk := target_chunk
+ this.current_chunk := target_chunk!!
this.x := x
this.y := y
#true
| ~else:
#false
+ method gather(target_entity :: Entity):
+ let x = target_entity.x
+ let y = target_entity.y
+ let target_chunk = validate_chunk(x, y)
+
+ fun validate_gather_resource() :: Boolean:
+ // TODO figure out how to implement resource gathering
+ // it could be better to keep them as a tile and update the
+ // tile from regular to consumed
+ #false
+
+ cond
+ | validate_dist(x, y, 1) && target_chunk != #false && validate_gather_resource():
+ #true
+ | ~else:
+ #false
+
class World(chunks :: MutableList.now_of(Chunk),
entities :: MutableList.now_of(Entity)):