diff --git a/src/game.coffee b/src/game.coffee index 87ce52d..b6e4334 100644 --- a/src/game.coffee +++ b/src/game.coffee @@ -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 diff --git a/src/hud.coffee b/src/hud.coffee index 9324591..08943b7 100644 --- a/src/hud.coffee +++ b/src/hud.coffee @@ -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 diff --git a/src/main.coffee b/src/main.coffee index 7ff68bf..acbe002 100644 --- a/src/main.coffee +++ b/src/main.coffee @@ -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: ->