Skip to content

Commit aac9b32

Browse files
committed
Added Settings
1 parent 71b7fb1 commit aac9b32

10 files changed

+265
-124
lines changed

.cache-main

+194-99
Large diffs are not rendered by default.

.classpath

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
<classpathentry kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"/>
55
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
66
<classpathentry kind="lib" path="/usr/share/scala/lib/scala-swing_2.11-1.0.2.jar"/>
7+
<classpathentry kind="lib" path="/usr/share/scala/lib/scala-xml_2.11-1.0.4.jar"/>
78
<classpathentry kind="output" path="bin"/>
89
</classpath>

src/GameObject.scala

+9-9
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66

77
import java.awt.{Color, Graphics2D}
8+
import Settings._
89
import Utils._
910
import java.util.Random
1011
import math.{Pi, round, cos, sin, pow, abs, signum}
@@ -60,10 +61,9 @@ abstract class GameObject(val ownerOp : Option[Player]) {
6061

6162
class Character(val owner : Player) extends GameObject(Some(owner)) with Hittable {
6263
var shouldMove = false
63-
var health = 100
64-
val maxHealth = 200
64+
var health = InitialHealth
6565
var position = Rng.getPos()
66-
val maxVelocity = 300.0
66+
//val maxVelocity = 300.0
6767
var angVel = 0.0
6868
val maxAngVel = 2.0
6969
var left = true
@@ -87,9 +87,9 @@ class Character(val owner : Player) extends GameObject(Some(owner)) with Hittabl
8787
this.owner.alive = false
8888
this.owner.died = System.currentTimeMillis()
8989
if(this.owner != destroyer)
90-
destroyer.score += 40
90+
destroyer.score += Bounty
9191
else
92-
destroyer.score -= 30
92+
destroyer.score -= SuicidePenalty
9393
}
9494

9595
def shoot() = this.weapon.fire()
@@ -149,15 +149,15 @@ class Character(val owner : Player) extends GameObject(Some(owner)) with Hittabl
149149
//Move
150150

151151
if(this.shouldMove){
152-
this.velocity += Vector.polar(dir, 400*dt)
152+
this.velocity += Vector.polar(dir, Acceleration*dt)
153153
}
154-
this.velocity *= pow(.25, dt)
154+
this.velocity *= pow(Friction, dt)
155155
this.position = this.position + this.velocity*dt
156156

157157
this.dir = this.dir % (2*Pi)
158158
checkCollision()
159-
if(this.health > this.maxHealth){
160-
this.health = this.maxHealth
159+
if(this.health > MaxHealth){
160+
this.health = MaxHealth
161161
}
162162
}
163163
}

src/Player.scala

+3-4
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,11 @@
66

77
//import scala.swing.event.Key.Value
88

9-
import Utils._
9+
import Settings._
1010

1111
class Player(val key : String) {
1212
var alive = true
1313
var died = 0L
14-
val respawnTime = 5000 //5s
1514
var character = new Character(this)
1615
private var keyDown = false
1716
GameObjectRoot.addGameObject(this.character)
@@ -47,11 +46,11 @@ class Player(val key : String) {
4746
}
4847

4948
def tryRespawn() = {
50-
if(!this.alive && System.currentTimeMillis() - this.died > this.respawnTime){
49+
if(!this.alive && System.currentTimeMillis() - this.died > RespawnTime){
5150
this.character = new Character(this)
5251
GameObjectRoot.addGameObject(this.character)
5352
this.alive = true
54-
this.end = System.currentTimeMillis() // Prevent kicking
53+
//this.end = System.currentTimeMillis() // Prevent kicking
5554
}
5655
}
5756

src/Powerup.scala

+10-4
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ import java.awt.{Color, Image}
1313
import java.awt.geom.Ellipse2D
1414
import javax.imageio.ImageIO
1515
import Utils._
16+
import Settings._
1617

1718
abstract class Powerup extends GameObject(None) with Hittable {
1819
val pic : Image
@@ -40,15 +41,15 @@ object Powerup {
4041
classOf[ScorePackage]
4142
)
4243
def random() = {
43-
val v = round(Rng.getFloat()*(powerups.size - 1))
44+
val v = round(Rng.getFloat()*(this.powerups.length-1))
4445
powerups(v).newInstance().asInstanceOf[Powerup]
4546
}
4647
}
4748

4849
class HealthPackage extends Powerup {
4950
val pic = ImageIO.read(new File("src/Media/HealthPackage.png"))
5051
def collect(c : Character) = {
51-
c.health += 40
52+
c.health += ((PowerupAttr(this.getClass) \ "@health") text).toInt
5253
this.destroy(c.owner)
5354
}
5455
}
@@ -74,14 +75,19 @@ object WeaponsDealer {
7475
)
7576

7677
def deal() = {
77-
this.weapons(toInt((this.weapons.length - 1)*Rng.getFloat())).asInstanceOf[Class[Weapon]]
78+
var tmp = EnabledWeapons
79+
/*val xml = WeaponAttr(classOf[])
80+
for(w <- this.weapons){
81+
if(
82+
}*/
83+
tmp(toInt((tmp.length - 1)*Rng.getFloat())).asInstanceOf[Class[Weapon]]
7884
}
7985
}
8086

8187
class ScorePackage extends Powerup {
8288
val pic = ImageIO.read(new File("src/Media/ScorePackage.png"))
8389
def collect(c : Character) = {
84-
c.owner.score += 30
90+
c.owner.score += ((PowerupAttr(this.getClass) \ "@score") text).toInt
8591
this.destroy(c.owner)
8692
}
8793
}

src/Random.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@
55
*/
66

77
import java.util.Random
8+
import Settings._
89

910
object Rng {
1011
val rng = new Random()
1112

1213
def getPos() = Vector.normal(50 + rng.nextFloat() * (GameObjectRoot.areaWidth - 100), 50 + rng.nextFloat() * (GameObjectRoot.areaHeight - 100))
1314
//def getInt(from : Int, to : Int) : Int = from + math.round((to - from)*rng.nextFloat())
1415
def getFloat() = rng.nextFloat()
15-
def nextPowerupSpawnTime = System.currentTimeMillis() + 3000 + rng.nextInt(10000)
16+
def nextPowerupSpawnTime = System.currentTimeMillis() + PowerupMinTime + rng.nextInt(PowerupInterval)
1617
}

src/Utils.scala

+31-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,38 @@
1+
12
import math.round
2-
import scala.swing._
3+
import scala.xml.XML
4+
import scala.collection.mutable.Buffer
35

46
object Utils {
57
def toInt(a : Double) = round(a).asInstanceOf[Int]
68
val FONT_WIDTH = 6
79
val FONT_HEIGHT = 7
8-
val KickThreshold = 15000L
10+
}
11+
12+
object Settings {
13+
private var xml = XML.loadFile("src/settings.xml")
14+
//private var playerPath = xml \\ "settings" \\ "player"
15+
16+
def reload() = xml = XML.loadFile("src/settings.xml")
17+
18+
def Bounty = ((xml \\ "settings" \\ "score" \\ "@bounty") text).toInt
19+
def SuicidePenalty = ((xml \\ "settings" \\ "score" \\ "@suicidePenalty") text).toInt
20+
def KickThreshold = ((xml \\ "settings" \\ "player" \ "@KickThreshold") text).toLong * 1000
21+
def RespawnTime = ((xml \\ "settings" \\ "player" \ "@RespawnTime") text).toLong * 1000
22+
def SpawnProtection = ((xml \\ "settings" \\ "character" \ "@SpawnProtection") text).toLong * 1000
23+
def Ammo(w : Class[_]) = ((xml \\ "settings" \\ "weapon" \\ w.getCanonicalName \ "@ammo") text).toInt
24+
def InitialHealth = ((xml \\ "settings" \\ "character" \\ "@initialHealth") text).toInt
25+
def MaxHealth = ((xml \\ "settings" \\ "character" \\ "@maxHealth") text).toInt
26+
def Acceleration = ((xml \\ "settings" \\ "character" \\ "@acceleration") text).toInt
27+
def Friction = ((xml \\ "settings" \\ "character" \\ "@friction") text).toDouble
28+
def PowerupMinTime = ((xml \\ "settings" \\ "powerup" \\ "@minTime") text).toInt * 1000
29+
def PowerupInterval = ((xml \\ "settings" \\ "powerup" \\ "@interval") text).toInt * 1000
30+
def PowerupAttr(c : Class[_]) = xml \\ "settings" \\ "powerup" \\ c.getCanonicalName
31+
def EnabledWeapons = {
32+
val items = PowerupAttr(classOf[WeaponPackage])
33+
val enabled = items.flatMap { x => x.attributes }.map{x => if(x.value.text.toBoolean) Some(x.key) else None}
34+
val res = Buffer[Class[_]]()
35+
enabled.foreach { x => if(x.isDefined) res += Class.forName(x.get.asInstanceOf[String]) }
36+
res
37+
}
938
}

src/WeaponImplementations.scala

-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import scala.collection.mutable.Buffer
99

1010
class Colt45(owner : Player) extends Weapon(owner) {
11-
var ammo = -1
1211
def fire() = {
1312
val c = this.holder
1413
val p = this.owner
@@ -17,7 +16,6 @@ class Colt45(owner : Player) extends Weapon(owner) {
1716
}
1817

1918
class Shotgun(owner : Player) extends Weapon(owner) {
20-
var ammo = 15
2119
val scattering = math.Pi/6.0
2220
def fire() = {
2321
this.ammo -= 1
@@ -40,7 +38,6 @@ class Shotgun(owner : Player) extends Weapon(owner) {
4038
}
4139

4240
class AK47(owner : Player) extends Weapon(owner) {
43-
var ammo = 100
4441
var shouldShoot = false
4542
val shootingInterval = 50L
4643
private var lastShot = System.currentTimeMillis()
@@ -64,5 +61,4 @@ class AK47(owner : Player) extends Weapon(owner) {
6461
}
6562

6663
abstract class MissileLauncher(owner : Player) extends Weapon(owner){
67-
ammo = 3
6864
}

src/WeaponSuperClasses.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66

77
import scala.swing.Graphics2D
88
import Utils._
9+
import Settings._
910

1011
abstract class Bullet(owner : Player, val dir : Double, var position : Vector) extends GameObject(Some(owner)) {
1112
val _lifetime : Long
@@ -46,7 +47,7 @@ abstract class Bullet(owner : Player, val dir : Double, var position : Vector) e
4647
}
4748

4849
abstract class Weapon(owner : Player) {
49-
var ammo : Int
50+
var ammo = Ammo(this.getClass)
5051
val shootingThreshold = 200L
5152
def holder = owner.character
5253
def fire() : Unit

src/settings.xml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<settings>
2+
<score suicidePenalty="30" bounty="40"></score>
3+
<character initialHealth="100" maxHealth="200" acceleration="400" friction="0.25" SpawnProtection="5"></character>
4+
<weapon>
5+
<AK47 ammo="100"></AK47>
6+
<Shotgun ammo="15">
7+
</Shotgun>
8+
<Colt45 ammo="-1"></Colt45></weapon>
9+
<powerup minTime="0" interval="3">
10+
<ScorePackage score="30"></ScorePackage>
11+
<WeaponPackage AK47="true" Shotgun="false"></WeaponPackage>
12+
<HealthPackage health="40"></HealthPackage></powerup>
13+
<player KickThreshold="15" RespawnTime="5"></player></settings>

0 commit comments

Comments
 (0)