<span>Change Log</span>
</h2>
<ul>
+ <li>
+ This is computer science. Trees are non-negociable.
+ (asset contributed by
+ <a href="https://www.codingame.com/profile/f529ecfbb6cc3b402a40027fd38beec14437821">
+ Alshock
+ </a>)
+ </li>
<li>
Don't destroy the castle if the troll doesn't reach it.
</li>
graphicEntityModule.createSprite()
.setImage("background.png")
.setAnchor(0);
+
+ int numTrees = random.nextInt(101);
+ while (numTrees --> 0) {
+ int x, y;
+ do {
+ x = random.nextInt(1920);
+ // yes, this biases randomness wrt perspective! :-(
+ y = 700 + random.nextInt(175);
+ } while (y > 880 && (x < 200 || x > 1720));
+ double scale = ( 100.0 / 433.0 // base height from PNG
+ * (y - 680) / (875 - 680) ); // perspective
+ graphicEntityModule.createSprite()
+ .setImage("Alshock.png")
+ .setAnchorX(0.5)
+ .setAnchorY(1)
+ .setX(x)
+ .setY(y)
+ .setScaleX(scale * (random.nextInt(2) == 0 ? -1 : 1))
+ .setScaleY(scale)
+ .setRotation((random.nextDouble() - 0.5) * Math.PI / 1800)
+ .setSkewX((random.nextDouble() - 0.5) /4)
+ .setSkewY((random.nextDouble() - 0.5) /8);
+ }
}
private void drawTroll() {