Skip to content

Commit c88d7db

Browse files
committed
more gametests 2: the long awaited sequel
1 parent 27e142a commit c88d7db

File tree

10 files changed

+922
-1
lines changed

10 files changed

+922
-1
lines changed

src/gametests/java/io/github/fusionflux/portalcubed_gametests/gametests/PortalGameTests.java

+106
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,113 @@ public void validPortalSurfaces(GameTestHelper helper) {
347347

348348
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
349349
});
350+
}
351+
352+
353+
//Tests portal bumping if you shoot too close to a wall
354+
@GameTest(template = GROUP + "portal_bump_wall")
355+
public void portalBumpWall(GameTestHelper helper) {
356+
357+
PortalHelper portalBumpWall = new PortalHelper(helper, "portal_bump_wall", 0x2055fe, 0xfe7020);
358+
portalBumpWall.primary().shootFrom(new Vec3(1, 3, 2.5), Direction.DOWN);
359+
360+
helper.succeedWhen(() -> {
361+
//portalBumpWall.primary().assertPresent();
362+
363+
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
364+
});
365+
}
366+
367+
368+
//Tests portal bumping if you shoot too close to another portal
369+
@GameTest(template = GROUP + "portal_bump_portal")
370+
public void portalBumpPortal(GameTestHelper helper) {
371+
372+
PortalHelper portalBumpPortal = new PortalHelper(helper, "portal_bump_portal", 0x2055fe, 0xfe7020);
373+
portalBumpPortal.primary().shootFrom(new Vec3(1.5, 3, 2.5), Direction.DOWN);
374+
helper.runAfterDelay(20, () -> portalBumpPortal.secondary().shootFrom(new Vec3(2, 3, 2.5), Direction.DOWN));
375+
376+
helper.succeedWhen(() -> {
377+
//portalBumpPortal.secondary().assertPresent();
378+
379+
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
380+
});
381+
}
382+
383+
384+
//Tests portal bumping if you shoot an invalid portal surface. The portal should not be bumped.
385+
@GameTest(template = GROUP + "portal_bump_invalid_surface")
386+
public void portalBumpInvalidSurface(GameTestHelper helper) {
387+
388+
PortalHelper portalBumpInvalidSurface = new PortalHelper(helper, "portal_bump_invalid_surface", 0x2055fe, 0xfe7020);
389+
portalBumpInvalidSurface.primary().shootFrom(new Vec3(0.75, 3, 2.5), Direction.DOWN);
390+
391+
helper.succeedWhen(() -> {
392+
//portalBumpInvalidSurface.primary().assertNotPresent();
393+
394+
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
395+
});
396+
}
397+
398+
399+
//Tests portal bumping across a gap. It probably shouldn't bump, but the current implementation does, and it's hard to make it not do that.
400+
@GameTest(template = GROUP + "portal_bump_gap")
401+
public void portalBumpGap(GameTestHelper helper) {
402+
403+
PortalHelper portalBumpGap = new PortalHelper(helper, "portal_bump_gap", 0x2055fe, 0xfe7020);
404+
405+
portalBumpGap.primary().shootFrom(new Vec3(1.25, 3, 2.5), Direction.DOWN);
350406

407+
helper.succeedWhen(() -> {
408+
//portalBumpGap.primary().assertPresent();
409+
410+
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
411+
});
412+
}
413+
414+
415+
//Tests portal bumping through a thin wall. Bumping across walls is the correct behavior to match portal.
416+
@GameTest(template = GROUP + "portal_bump_thin_wall")
417+
public void portalBumpThinWall(GameTestHelper helper) {
418+
419+
PortalHelper portalBumpThinWall = new PortalHelper(helper, "portal_bump_thin_wall", 0x2055fe, 0xfe7020);
420+
portalBumpThinWall.primary().shootFrom(new Vec3(1.25, 3, 2.5), Direction.DOWN);
421+
422+
helper.succeedWhen(() -> {
423+
//portalBumpThinWall.primary().assertPresent();
424+
425+
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
426+
});
427+
}
428+
429+
430+
//Tests portal bumping when a portal is shot on the edge of a block
431+
@GameTest(template = GROUP + "portal_bump_edge")
432+
public void portalBumpEdge(GameTestHelper helper) {
433+
434+
PortalHelper portalBumpEdge = new PortalHelper(helper, "portal_bump_edge", 0x2055fe, 0xfe7020);
435+
portalBumpEdge.primary().shootFrom(new Vec3(1.25, 3, 2.5), Direction.DOWN);
436+
437+
helper.succeedWhen(() -> {
438+
//portalBumpEdge.primary().assertPresent();
439+
440+
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
441+
});
442+
}
443+
444+
445+
//Tests portal bumping when a portal is shot into a thin trench. The portal should not be placed.
446+
@GameTest(template = GROUP + "portal_bump_trench")
447+
public void portalBumpTrench(GameTestHelper helper) {
448+
449+
PortalHelper portalBumpTrench = new PortalHelper(helper, "portal_bump_trench", 0x2055fe, 0xfe7020);
450+
portalBumpTrench.primary().shootFrom(new Vec3(1.25, 3, 2.5), Direction.DOWN);
451+
452+
helper.succeedWhen(() -> {
453+
//portalBumpTrench.primary().assertNotPresent();
454+
455+
helper.assertBlockPresent(Blocks.SPONGE, 0, 0, 0); //todo: leave this here until the portal existence checks are implemented, so the test doesn't pass instantly. Remove later
456+
});
351457
}
352458

353459

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
{
2+
DataVersion: 4189,
3+
size: [5, 4, 5],
4+
data: [
5+
{pos: [0, 0, 0], state: "minecraft:polished_andesite"},
6+
{pos: [0, 0, 1], state: "minecraft:polished_andesite"},
7+
{pos: [0, 0, 2], state: "minecraft:polished_andesite"},
8+
{pos: [0, 0, 3], state: "minecraft:polished_andesite"},
9+
{pos: [0, 0, 4], state: "minecraft:polished_andesite"},
10+
{pos: [1, 0, 0], state: "minecraft:polished_andesite"},
11+
{pos: [1, 0, 1], state: "portalcubed:white_half_panel"},
12+
{pos: [1, 0, 2], state: "portalcubed:white_half_panel"},
13+
{pos: [1, 0, 3], state: "portalcubed:white_half_panel"},
14+
{pos: [1, 0, 4], state: "minecraft:polished_andesite"},
15+
{pos: [2, 0, 0], state: "minecraft:polished_andesite"},
16+
{pos: [2, 0, 1], state: "portalcubed:white_half_panel"},
17+
{pos: [2, 0, 2], state: "portalcubed:white_half_panel"},
18+
{pos: [2, 0, 3], state: "portalcubed:white_half_panel"},
19+
{pos: [2, 0, 4], state: "minecraft:polished_andesite"},
20+
{pos: [3, 0, 0], state: "minecraft:polished_andesite"},
21+
{pos: [3, 0, 1], state: "portalcubed:white_half_panel"},
22+
{pos: [3, 0, 2], state: "portalcubed:white_half_panel"},
23+
{pos: [3, 0, 3], state: "portalcubed:white_half_panel"},
24+
{pos: [3, 0, 4], state: "minecraft:polished_andesite"},
25+
{pos: [4, 0, 0], state: "minecraft:polished_andesite"},
26+
{pos: [4, 0, 1], state: "minecraft:polished_andesite"},
27+
{pos: [4, 0, 2], state: "minecraft:polished_andesite"},
28+
{pos: [4, 0, 3], state: "minecraft:polished_andesite"},
29+
{pos: [4, 0, 4], state: "minecraft:polished_andesite"},
30+
{pos: [0, 1, 0], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
31+
{pos: [0, 1, 1], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
32+
{pos: [0, 1, 2], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
33+
{pos: [0, 1, 3], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
34+
{pos: [0, 1, 4], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
35+
{pos: [1, 1, 0], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
36+
{pos: [1, 1, 1], state: "portalcubed:white_half_panel"},
37+
{pos: [1, 1, 2], state: "portalcubed:white_half_panel"},
38+
{pos: [1, 1, 3], state: "portalcubed:white_half_panel"},
39+
{pos: [1, 1, 4], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
40+
{pos: [2, 1, 0], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
41+
{pos: [2, 1, 1], state: "portalcubed:white_half_panel"},
42+
{pos: [2, 1, 2], state: "portalcubed:white_half_panel"},
43+
{pos: [2, 1, 3], state: "portalcubed:white_half_panel"},
44+
{pos: [2, 1, 4], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
45+
{pos: [3, 1, 0], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
46+
{pos: [3, 1, 1], state: "portalcubed:padded_gray_half_panel"},
47+
{pos: [3, 1, 2], state: "portalcubed:padded_gray_half_panel"},
48+
{pos: [3, 1, 3], state: "portalcubed:padded_gray_half_panel"},
49+
{pos: [3, 1, 4], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
50+
{pos: [4, 1, 0], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
51+
{pos: [4, 1, 1], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
52+
{pos: [4, 1, 2], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
53+
{pos: [4, 1, 3], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
54+
{pos: [4, 1, 4], state: "portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}"},
55+
{pos: [0, 2, 0], state: "minecraft:air"},
56+
{pos: [0, 2, 1], state: "minecraft:air"},
57+
{pos: [0, 2, 2], state: "minecraft:air"},
58+
{pos: [0, 2, 3], state: "minecraft:air"},
59+
{pos: [0, 2, 4], state: "minecraft:air"},
60+
{pos: [1, 2, 0], state: "minecraft:air"},
61+
{pos: [1, 2, 1], state: "minecraft:air"},
62+
{pos: [1, 2, 2], state: "minecraft:air"},
63+
{pos: [1, 2, 3], state: "minecraft:air"},
64+
{pos: [1, 2, 4], state: "minecraft:air"},
65+
{pos: [2, 2, 0], state: "minecraft:air"},
66+
{pos: [2, 2, 1], state: "minecraft:air"},
67+
{pos: [2, 2, 2], state: "minecraft:air"},
68+
{pos: [2, 2, 3], state: "minecraft:air"},
69+
{pos: [2, 2, 4], state: "minecraft:air"},
70+
{pos: [3, 2, 0], state: "minecraft:air"},
71+
{pos: [3, 2, 1], state: "minecraft:air"},
72+
{pos: [3, 2, 2], state: "minecraft:air"},
73+
{pos: [3, 2, 3], state: "minecraft:air"},
74+
{pos: [3, 2, 4], state: "minecraft:air"},
75+
{pos: [4, 2, 0], state: "minecraft:air"},
76+
{pos: [4, 2, 1], state: "minecraft:air"},
77+
{pos: [4, 2, 2], state: "minecraft:air"},
78+
{pos: [4, 2, 3], state: "minecraft:air"},
79+
{pos: [4, 2, 4], state: "minecraft:air"},
80+
{pos: [0, 3, 0], state: "minecraft:air"},
81+
{pos: [0, 3, 1], state: "minecraft:air"},
82+
{pos: [0, 3, 2], state: "minecraft:air"},
83+
{pos: [0, 3, 3], state: "minecraft:air"},
84+
{pos: [0, 3, 4], state: "minecraft:air"},
85+
{pos: [1, 3, 0], state: "minecraft:air"},
86+
{pos: [1, 3, 1], state: "minecraft:air"},
87+
{pos: [1, 3, 2], state: "minecraft:air"},
88+
{pos: [1, 3, 3], state: "minecraft:air"},
89+
{pos: [1, 3, 4], state: "minecraft:air"},
90+
{pos: [2, 3, 0], state: "minecraft:air"},
91+
{pos: [2, 3, 1], state: "minecraft:air"},
92+
{pos: [2, 3, 2], state: "minecraft:air"},
93+
{pos: [2, 3, 3], state: "minecraft:air"},
94+
{pos: [2, 3, 4], state: "minecraft:air"},
95+
{pos: [3, 3, 0], state: "minecraft:air"},
96+
{pos: [3, 3, 1], state: "minecraft:air"},
97+
{pos: [3, 3, 2], state: "minecraft:air"},
98+
{pos: [3, 3, 3], state: "minecraft:air"},
99+
{pos: [3, 3, 4], state: "minecraft:air"},
100+
{pos: [4, 3, 0], state: "minecraft:air"},
101+
{pos: [4, 3, 1], state: "minecraft:air"},
102+
{pos: [4, 3, 2], state: "minecraft:air"},
103+
{pos: [4, 3, 3], state: "minecraft:air"},
104+
{pos: [4, 3, 4], state: "minecraft:air"}
105+
],
106+
entities: [],
107+
palette: [
108+
"minecraft:polished_andesite",
109+
"portalcubed:white_half_panel",
110+
"portalcubed:padded_gray_half_panel",
111+
"portalcubed:padded_gray_half_panel_facade{down:true,east:false,north:false,south:false,up:false,waterlogged:false,west:false}",
112+
"minecraft:air"
113+
]
114+
}

0 commit comments

Comments
 (0)