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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
|
package de.romjaki.pluggabledino.game
import de.romjaki.pluggabledino.highscore
import de.romjaki.pluggabledino.score
import org.jbox2d.callbacks.ContactImpulse
import org.jbox2d.callbacks.ContactListener
import org.jbox2d.collision.Manifold
import org.jbox2d.collision.shapes.PolygonShape
import org.jbox2d.common.Vec2
import org.jbox2d.dynamics.*
import org.jbox2d.dynamics.contacts.Contact
import org.newdawn.slick.Input
import java.util.Random
class GameWorld : ContactListener {
override fun endContact(contact: Contact?) {
}
override fun beginContact(contact: Contact?) {
contact!!
val bodies = listOf(contact.fixtureA.body, contact.fixtureB.body)
if (bodies.contains(dino) && cacti.any { bodies.contains(it) }) {
hurt = true
}
}
override fun preSolve(contact: Contact?, oldManifold: Manifold?) {
}
override fun postSolve(contact: Contact?, impulse: ContactImpulse?) {
}
var hurt = false
val world: World
val cacti = mutableListOf<Body>()
val cactiBodyDef: BodyDef
var speed = 1000
val groundBody: Body
val random = Random()
var delay = 0f
val dino: Body
val groundBodyDef: BodyDef
val groundBox: PolygonShape
val dinoDef: BodyDef
val dinoBox: PolygonShape
val dinoFixtureDef: FixtureDef
init {
val gravity = Vec2(0f, 40f)
world = World(gravity)
//#region GROUND
groundBodyDef = BodyDef()
groundBodyDef.position.set(0f, 50f)
groundBody = world.createBody(groundBodyDef)
groundBox = PolygonShape()
groundBox.setAsBox(50f, 10f)
groundBody.createFixture(groundBox, 0f)
//#endregion
//#region DINO
dinoDef = BodyDef()
dinoDef.type = BodyType.DYNAMIC
dinoDef.position.set(4f, 39f)
dino = world.createBody(dinoDef)
dinoBox = PolygonShape()
dinoBox.setAsBox(1f, 1f)
dinoFixtureDef = FixtureDef()
dinoFixtureDef.shape = dinoBox
dinoFixtureDef.density = 0.9f
dinoFixtureDef.friction = 0.3f
dino.createFixture(dinoFixtureDef)
//#endregion
cactiBodyDef = BodyDef()
cactiBodyDef.type = BodyType.KINEMATIC
createCactus1()
}
fun rand(from: Int, to: Int): Int {
return random.nextInt(to - from) + from
}
fun createCactus1() {
val body = world.createBody(cactiBodyDef)
body.position.set(100f, 39f)
val shape = PolygonShape()
shape.setAsBox(1f, 1f)
val cactiFixtureDef = FixtureDef()
cactiFixtureDef.shape = dinoBox
cactiFixtureDef.isSensor = true
cactiFixtureDef.density = 0.1f
cactiFixtureDef.friction = 0f
body.createFixture(cactiFixtureDef)
cacti.add(body)
speed += 20
}
fun update(delta: Float, input: Input) {
if (input.isKeyDown(Input.KEY_UP)) {
if (isDinoOnGround()) {
print("Jump")
dino.applyForceToCenter(Vec2(0f, -4250f))
}
}
delay -= delta
if (delay < 0) {
createCactus1()
delay = random.nextFloat() + rand(2, 3)
}
cacti.forEach {
it.linearVelocity.set(-delta * speed, 0f)
}
world.step(delta, 4, 3)
world.setContactListener(this)
}
private fun isDinoOnGround(): Boolean =
dino.linearVelocity.y == 0.0f
}
|