1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#lang rhombus/static
import:
"world.rhm"
fun test(test_result :: Boolean, test_str :: String):
if test_result
| println("Passed " +& test_str)
| println("Failed " +& test_str)
fun
| reset_entity(entity :: world.Entity): reset_entity(entity, 0, 0)
| reset_entity(entity :: world.Entity, x :: Int, y :: Int):
entity.x := x
entity.y := y
let wrld = world.World()
let chunk = world.Chunk(64, 64, 0, 0)
wrld.chunks.add(chunk)
let entity = world.EntityPlayer(0, 0, 0)
wrld.entities[0] := entity
reset_entity(entity)
test(entity.move(1, 0, chunk) == chunk, "move horizontal")
reset_entity(entity, 1, 1)
test(entity.move(0, 1, chunk) == chunk, "move vertical")
reset_entity(entity)
test(entity.move(1, 1, chunk) == chunk, "move diagonal")
reset_entity(entity)
test(!entity.move(2, 0, chunk), "move diagonal")
reset_entity(entity)
test(!entity.move(0, 0, chunk), "starting pos")
let new_chunk = world.Chunk(64, 64, 1, 0)
chunk.add_neighbour(new_chunk, world.Direction.east)
reset_entity(entity, 63, 0)
test(entity.move(64, 0, chunk) == new_chunk, "cross chunk & changed chunk")
reset_entity(entity, 0, 1)
chunk.set_tile(0, 1, world.Tile(#'wall_north))
test(!entity.move(0, 0, chunk), "blocked by wall")
test(entity.move(1, 1, chunk) == chunk, "move by wall")
reset_entity(entity, 0, 0)
entity.equip[world.Slot.right_hand] := world.Item.bronze_axe
let other_ent = world.EntityGatherable(1, 1, 1, world.ItemCap.chop)
let gather_result = entity.gather(other_ent, chunk)
test(gather_result == world.ActionResponse.ok || gather_result == world.ActionResponse.unsuccessful, "gathering")
reset_entity(other_ent, 2, 2)
entity.timer := 0
test(entity.gather(other_ent, chunk) == world.ActionResponse.invalid, "gather too far away")
reset_entity(other_ent, 64, 0)
reset_entity(entity, 63, 0)
entity.timer := 0
let gather_result = entity.gather(other_ent, chunk)
test(gather_result == world.ActionResponse.ok || gather_result == world.ActionResponse.unsuccessful, "gather accross chunk")
entity.tick()
test(entity.gather(other_ent, chunk) == world.ActionResponse.cooldown, "gather cooldown")
|