5
5
*/
6
6
7
7
import java .awt .{Color , Graphics2D }
8
+ import Settings ._
8
9
import Utils ._
9
10
import java .util .Random
10
11
import math .{Pi , round , cos , sin , pow , abs , signum }
@@ -60,10 +61,9 @@ abstract class GameObject(val ownerOp : Option[Player]) {
60
61
61
62
class Character (val owner : Player ) extends GameObject (Some (owner)) with Hittable {
62
63
var shouldMove = false
63
- var health = 100
64
- val maxHealth = 200
64
+ var health = InitialHealth
65
65
var position = Rng .getPos()
66
- val maxVelocity = 300.0
66
+ // val maxVelocity = 300.0
67
67
var angVel = 0.0
68
68
val maxAngVel = 2.0
69
69
var left = true
@@ -87,9 +87,9 @@ class Character(val owner : Player) extends GameObject(Some(owner)) with Hittabl
87
87
this .owner.alive = false
88
88
this .owner.died = System .currentTimeMillis()
89
89
if (this .owner != destroyer)
90
- destroyer.score += 40
90
+ destroyer.score += Bounty
91
91
else
92
- destroyer.score -= 30
92
+ destroyer.score -= SuicidePenalty
93
93
}
94
94
95
95
def shoot () = this .weapon.fire()
@@ -149,15 +149,15 @@ class Character(val owner : Player) extends GameObject(Some(owner)) with Hittabl
149
149
// Move
150
150
151
151
if (this .shouldMove){
152
- this .velocity += Vector .polar(dir, 400 * dt)
152
+ this .velocity += Vector .polar(dir, Acceleration * dt)
153
153
}
154
- this .velocity *= pow(.25 , dt)
154
+ this .velocity *= pow(Friction , dt)
155
155
this .position = this .position + this .velocity* dt
156
156
157
157
this .dir = this .dir % (2 * Pi )
158
158
checkCollision()
159
- if (this .health > this .maxHealth ){
160
- this .health = this .maxHealth
159
+ if (this .health > MaxHealth ){
160
+ this .health = MaxHealth
161
161
}
162
162
}
163
163
}
0 commit comments