diff options
Diffstat (limited to 'src/test.rhm')
-rw-r--r-- | src/test.rhm | 34 |
1 files changed, 16 insertions, 18 deletions
diff --git a/src/test.rhm b/src/test.rhm index 5648c53..01c4649 100644 --- a/src/test.rhm +++ b/src/test.rhm @@ -17,51 +17,49 @@ fun let wrld = world.World() let chunk = world.Chunk(64, 64, 0, 0) wrld.chunks.add(chunk) -let entity = world.EntityPlayer(0, 0, 0, chunk) -wrld.entities.add(entity) +let entity = world.EntityPlayer(0, 0, 0) +wrld.entities[0] := entity reset_entity(entity) -test(entity.move(1, 0), "move horizontal") +test(entity.move(1, 0, chunk) == chunk, "move horizontal") reset_entity(entity, 1, 1) -test(entity.move(0, 1), "move vertical") +test(entity.move(0, 1, chunk) == chunk, "move vertical") reset_entity(entity) -test(entity.move(1, 1), "move diagonal") +test(entity.move(1, 1, chunk) == chunk, "move diagonal") reset_entity(entity) -test(!entity.move(2, 0), "move diagonal") +test(!entity.move(2, 0, chunk), "move diagonal") reset_entity(entity) -test(!entity.move(0, 0), "starting pos") +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), "cross chunk") -test(entity.current_chunk == new_chunk, "changed chunk") +test(entity.move(64, 0, chunk) == new_chunk, "cross chunk & changed chunk") -entity.current_chunk := chunk reset_entity(entity, 0, 1) -entity.current_chunk.set_tile(0, 1, world.Tile(#'wall_north)) -test(!entity.move(0, 0), "blocked by wall") -test(entity.move(1,1), "move by wall") +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, chunk, world.ItemCap.chop) -let gather_result = entity.gather(other_ent) +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) == world.ActionResponse.invalid, "gather too far away") +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) +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) == world.ActionResponse.cooldown, "gather cooldown") +test(entity.gather(other_ent, chunk) == world.ActionResponse.cooldown, "gather cooldown") |