Show resources

This commit is contained in:
Aaron Mueller 2014-12-06 14:14:32 +01:00
parent 2a9deedee7
commit 0fd3f60aeb
3 changed files with 15 additions and 8 deletions

View file

@ -4,8 +4,10 @@ app.game =
@map[i] = new Tile
render: ->
app.layer.save().scale(5, 5)
for tile, i in @map
tile.render(i-(Math.floor(i/20)*20), Math.floor(i/20))
app.layer.restore()
@hud.render()
step: ->
@ -13,8 +15,8 @@ app.game =
map: []
resources:
stardust: 0
bedrock: 0
stardust: 10
bedrock: 1
lubinit: 0
oxodum: 0
notch: 0

View file

@ -1,6 +1,11 @@
app.game.hud =
render: ->
app.layer
.fillStyle "#f00"
.fillRect 0, 0, 8, 8
posy = 20
for type, amount of app.game.resources
if amount > 0
app.layer
.fillStyle "#fff"
.font "15px Arial"
.wrappedText(amount + "x " + type, 10, posy, 200)
posy += 15

View file

@ -1,7 +1,7 @@
app = playground({
width: 8*20,
height: 8*15,
scaleToFit: true,
width: 8*20*5,
height: 8*15*5,
scaleToFit: false,
smoothing: false,
create: ->