-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added some simple Physics benchmarks
- Loading branch information
1 parent
07334e4
commit 934e554
Showing
2 changed files
with
127 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
125 changes: 125 additions & 0 deletions
125
indigo/benchmarks/src/main/scala/indigo/benchmarks/PhysicsWorldBenchmarks.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,125 @@ | ||
package indigo.benchmarks | ||
|
||
import indigo.* | ||
import indigo.syntax.* | ||
import indigo.physics.* | ||
|
||
import japgolly.scalajs.benchmark._ | ||
import japgolly.scalajs.benchmark.gui._ | ||
|
||
object PhysicsWorldBenchmarks: | ||
|
||
def render[A]: Collider[A] => SceneNode = { | ||
case Collider.Circle(_, bounds, _, _, _, _, _, _, _) => | ||
Shape.Circle( | ||
bounds.position.toPoint, | ||
bounds.radius.toInt, | ||
Fill.Color(RGBA.White.withAlpha(0.2)), | ||
Stroke(1, RGBA.White) | ||
) | ||
|
||
case Collider.Box(_, bounds, _, _, _, _, _, _, _) => | ||
Shape.Box( | ||
bounds.toRectangle, | ||
Fill.Color(RGBA.White.withAlpha(0.2)), | ||
Stroke(1, RGBA.White) | ||
) | ||
} | ||
|
||
val suite = GuiSuite( | ||
Suite("Physics World Benchmarks")( | ||
Benchmark("update - balls") { | ||
TestWorlds.worldBalls.update(Seconds(0.1)) | ||
}, | ||
Benchmark("present - balls") { | ||
TestWorlds.worldBalls.present(render) | ||
}, | ||
Benchmark("update - boxes") { | ||
TestWorlds.worldBoxes.update(Seconds(0.1)) | ||
}, | ||
Benchmark("present - boxes") { | ||
TestWorlds.worldBoxes.present(render) | ||
}, | ||
Benchmark("update - balls and boxes") { | ||
TestWorlds.worldBallsAndBoxes.update(Seconds(0.1)) | ||
}, | ||
Benchmark("present - balls and boxes") { | ||
TestWorlds.worldBallsAndBoxes.present(render) | ||
} | ||
) | ||
) | ||
|
||
object TestWorlds: | ||
|
||
val dice: Dice = Dice.fromSeed(0) | ||
|
||
val basicWorld: World[MyTag] = | ||
val circles = | ||
(0 to 19).toBatch.map { i => | ||
Collider( | ||
MyTag.StaticCircle, | ||
BoundingCircle(i.toDouble * 100 + 30, 200.0, 20.0) | ||
).makeStatic | ||
} | ||
|
||
World | ||
.empty[MyTag] | ||
.addForces(Vector2(0, 600)) | ||
.withResistance(Resistance(0.01)) | ||
.withColliders(circles) | ||
.addColliders( | ||
Collider(MyTag.Ball, BoundingCircle(400.0, 80.0, 25.0)) | ||
.withRestitution(Restitution(0.6)), | ||
Collider(MyTag.Platform, BoundingCircle(-100.0d, 700.0, 300.0)).makeStatic, | ||
Collider(MyTag.Platform, BoundingCircle(900.0d, 700.0, 300.0)).makeStatic, | ||
Collider(MyTag.Platform, BoundingCircle(400.0d, 800.0, 300.0)).makeStatic | ||
) | ||
|
||
val worldBalls: World[MyTag] = | ||
val balls = | ||
(0 to 50).toBatch.map { i => | ||
Collider( | ||
MyTag.Ball, | ||
BoundingCircle(i.toDouble * 10 + 28, (if i % 2 == 0 then 20 else 40) + i.toDouble * 2, 15.0) | ||
) | ||
.withRestitution(Restitution(0.8)) | ||
} | ||
|
||
basicWorld.addColliders(balls) | ||
|
||
def worldBoxes: World[MyTag] = | ||
val cubes = | ||
(0 to 50).toBatch.map { i => | ||
Collider(MyTag.Box, BoundingBox(i.toDouble * 10 + 200, (if i % 2 == 0 then 0 else 50) + 60, 40, 40)) | ||
.withRestitution(Restitution(0.6)) | ||
.withVelocity(dice.roll(200) - 100, -dice.roll(350)) | ||
} | ||
|
||
basicWorld.addColliders(cubes) | ||
|
||
val worldBallsAndBoxes: World[MyTag] = | ||
val cubes = | ||
(0 to 25).toBatch.map { i => | ||
Collider(MyTag.Box, BoundingBox(i.toDouble * 10 + 200, (if i % 2 == 0 then 0 else 50) + 60, 40, 40)) | ||
.withRestitution(Restitution(0.4)) | ||
.withVelocity(dice.roll(200) - 100, -dice.roll(200)) | ||
} | ||
|
||
val balls = | ||
(0 to 25).toBatch.map { i => | ||
Collider( | ||
MyTag.Ball, | ||
BoundingCircle(i.toDouble * 10 + 28, (if i % 2 == 0 then 20 else 40) + i.toDouble * 2, 15.0) | ||
) | ||
.withRestitution(Restitution(0.7)) | ||
} | ||
|
||
basicWorld | ||
.addColliders(balls) | ||
.addColliders(cubes) | ||
|
||
enum MyTag: | ||
case Platform | ||
case StaticCircle | ||
case Ball | ||
case Box |