X-Git-Url: http://git.plutz.net/?a=blobdiff_plain;f=engine.js;h=7c9263202202a02a8e57746f96c5be29da08c4c7;hb=c41a891b9f9721581368634b021ffe8f0d8dc658;hp=c1b7a9d454b19e610bc9edf172480ff01a3efbc8;hpb=47fa4b01ad3ade8f5f9ef4c1bab972cf7ba4bbef;p=flarejs diff --git a/engine.js b/engine.js index c1b7a9d..7c92632 100644 --- a/engine.js +++ b/engine.js @@ -1,5 +1,15 @@ -var gamedata = {}; -var gfx = {}; +var gamedata = { + load: def => this[def] ? this[def] : this[def] = new Textfile(def) +} +var gfx = { + load: function(def) { + if (!this[def]) { + this[def] = document.createElement("img"); + this[def].setAttribute("src", def); + } + return this[def]; + } +}; function Textfile(txtfile) { var lines, fetch = new XMLHttpRequest(); @@ -52,6 +62,12 @@ function Textfile(txtfile) { case /^duration=[0-9]+s$/.test(line): ref["duration"] = line.split(/=|s$/)[1] * 1000; break; + case /^[^#].*=[0-9]+$/.test(line): + key = line.split(/[=]/)[0]; value = line.split(/=/).slice(1) * 1; + if (!ref[key]) ref[key] = value; + else if (!Array.isArray(ref[key])) ref[key] = [ref[key],value]; + else if ( Array.isArray(ref[key])) ref[key].push(value); + break; case /^[^#].*=.+$/.test(line): key = line.split(/[=]/)[0]; value = line.split(/=/).slice(1).join("="); if (!ref[key]) ref[key] = value; @@ -61,23 +77,61 @@ function Textfile(txtfile) { } } -function Map() { - this.tileset = new Textfile("/tilesetdefs/tileset_grassland.txt"); +function Map(textdef) { this.frametime = performance.now(); - if (! gfx[this.tileset.img]) { - gfx[this.tileset.img] = document.createElement("img"); - gfx[this.tileset.img].setAttribute("src", this.tileset.img); + this.info = gamedata.load(textdef); + this.tileset = gamedata.load(this.info.header.tileset); + gfx.load(this.tileset.img); + + var h = this.info.header.height, w = this.info.header.width; + var th = this.info.header.tileheight, tw = this.info.header.tilewidth; + var posx = canvas.canvas.width / 2, posy = canvas.canvas.height / 2 - h * th/2; + + canvas.fillStyle = "rgba("+this.info.header.background_color+")"; + + this.tileAt = function(x, y) { + nx = (y + th / 2) / th + (x - w * tw / 2) / tw |0; + ny = (y + th / 2) / th - (x - w * tw / 2) / tw |0; + return ny * w + nx; + } + + this.center = function(x, y) { + posx = canvas.canvas.width / 2 - x; + posy = canvas.canvas.height / 2 - y; + return this; + } + + this.draw = function(mobs) { + var x, y, dx, dy, i; + var bg = this.info.layer.find(l => l.type == "background").data; + var ob = this.info.layer.find(l => l.type == "object").data; + var mm = []; + mobs.forEach(m => { + i = this.tileAt(m.position[0], m.position[1]); + mm[i] = mobs.filter(m => i == this.tileAt(m.position[0], m.position[1])); + }); + canvas.fillRect(0,0, canvas.canvas.width, canvas.canvas.height); + + for ( y = 0; y < h; y++ ) for ( x = 0; x < w; x++ ) { + i = y * h + x; + dx = posx + (w + x - y) * tw /2; + dy = posy + (x + y) * th / 2; + this.draw_tile(bg[i], dx, dy); + this.draw_tile(ob[i], dx, dy); + if (mm[i]) mm[i].forEach(m => m.draw(dx, dy)); + } } this.draw_tile = function(tile, x, y) { - t = this.tileset.tile[tile] + x = x |0; y = y |0; + var t = this.tileset.tile[tile]; + var f = this.tileset.animation[tile]; - if (this.tileset.animation[tile]) { - f = this.tileset.animation[tile]; + if (t && f) { frame = ((performance.now() - this.frametime) / f[0][2] |0) % f.length; canvas.drawImage(gfx[this.tileset.img], f[frame][0], f[frame][1], t[2], t[3], x - t[4], y - t[5], t[2], t[3]); - } else { + } else if (t) { canvas.drawImage(gfx[this.tileset.img], t[0], t[1], t[2], t[3], x - t[4], y - t[5], t[2], t[3]); } @@ -85,30 +139,28 @@ function Map() { } function Mob(textdef) { - if (! gamedata[textdef]) gamedata[textdef] = new Textfile(textdef); - this.info = gamedata[textdef]; - this.direction = 0; this.position = [0, 0]; - this.animation = "stance"; - this.previous_animation = ""; - this.frametime = performance.now(); - if (! gfx[this.info.image]) { - gfx[this.info.image] = document.createElement("img"); - gfx[this.info.image].setAttribute("src", this.info.image); - } + var info = gamedata.load(textdef); + var direction = 0; + var animation = "stance"; + var previous_animation = ""; + var frametime = performance.now(); + gfx.load(info.image) this.place = function(x, y) { this.position = [x, y]; return this; } - this.direct = function(d) { this.direction = d % 8; return this; } + this.direct = function(d) { direction = d % 8; return this; } this.animate = function(a) { - this.previous_animation = this.animation; - this.animation = a; - this.frametime = performance.now(); + if ( a != animation ) { + previous_animation = animation; + animation = a; + frametime = performance.now(); + } return this; } - this.draw = function(){ - var f, a = this.info[this.animation]; - var frame = ( performance.now() - this.frametime ) * a.frames / a.duration | 0; + this.draw = function(x, y){ + var f, a = info[animation]; + var frame = ( performance.now() - frametime ) * a.frames / a.duration | 0; switch(a.type){ case "looped": @@ -116,10 +168,10 @@ function Mob(textdef) { break; case "play_once": if ( frame >= a.frames ){ - this.animation = this.previous_animation; - this.previous_animation = ""; - this.frametime = performance.now(); - a = this.info[this.animation]; + animation = previous_animation; + previous_animation = ""; + frametime = performance.now(); + a = info[animation]; frame = 0; } break; @@ -131,32 +183,32 @@ function Mob(textdef) { break; default: break; } - f = a.frame[frame][this.direction]; + f = a.frame[frame][direction]; - canvas.drawImage(gfx[this.info.image], f[0], f[1], f[2], f[3], - this.position[0] - f[4], this.position[1] - f[5], + canvas.drawImage(gfx[info.image], f[0], f[1], f[2], f[3], + x - f[4], y - f[5], f[2], f[3]); } - this.block = function() { this.animate("block" ); return this; }; - this.cast = function() { this.animate("cast" ); return this; }; - this.die = function() { this.animate("die" ); return this; }; - this.hit = function() { this.animate("hit" ); return this; }; - this.run = function() { this.animate("run" ); return this; }; - this.shoot = function() { this.animate("shoot" ); return this; }; - this.stance = function() { this.animate("stance"); return this; }; - this.swing = function() { this.animate("swing" ); return this; }; + this.block = () => this.animate("block" ); + this.cast = () => this.animate("cast" ); + this.die = () => this.animate("die" ); + this.hit = () => this.animate("hit" ); + this.run = () => this.animate("run" ); + this.shoot = () => this.animate("shoot" ); + this.stance = () => this.animate("stance"); + this.swing = () => this.animate("swing" ); } function Hero(gender = "female", hair = "short"){ - this.position = [0,0]; this.direction = 0; - this.hair = (gender == "female")?"long":hair; - this.animation = "stance"; - - if (! gamedata["/engine/hero_layers.txt"]) - gamedata["/engine/hero_layers.txt"] = new Textfile("/engine/hero_layers.txt"); - this.limbs = { - head: new Mob("/animations/avatar/"+gender+"/head_"+this.hair+".txt"), + this.position = [0,0]; + this.stats = gamedata.load("/engine/stats.txt"); + var layers = gamedata.load("/engine/hero_layers.txt"); + var hair = (gender == "female")?"long":hair; + var direction = 0, animation = "stance"; + + limbs = { + head : new Mob("/animations/avatar/"+gender+"/head_"+hair+".txt"), chest: new Mob("/animations/avatar/"+gender+"/default_chest.txt"), hands: new Mob("/animations/avatar/"+gender+"/default_hands.txt"), legs : new Mob("/animations/avatar/"+gender+"/default_legs.txt"), @@ -166,45 +218,78 @@ function Hero(gender = "female", hair = "short"){ } this.dress = function(limb, item) { - this.limbs[limb] = new Mob("/animations/avatar/"+gender+"/"+item+".txt") - this.limbs[limb].place(this.position[0], this.position[1]).direct(this.direction); - this.animate(this.animation); + limbs[limb] = new Mob("/animations/avatar/"+gender+"/"+item+".txt") + limbs[limb].place(this.position[0], this.position[1]).direct(direction); + this.animate(animation); return this; } this.place = function(x,y) { this.position = [x,y]; - for (var limb in this.limbs) this.limbs[limb].place(x,y); + for (var limb in limbs) limbs[limb].place(x,y); return this; } this.direct = function(d) { - this.direction = d; - for (var limb in this.limbs) this.limbs[limb].direct(d); + direction = d; + for (var limb in limbs) limbs[limb].direct(d); return this; } this.animate = function(anim){ - this.animation = anim; - for (var limb in this.limbs) this.limbs[limb].animate(anim); + animation = anim; + for (var limb in limbs) limbs[limb].animate(anim); return this; } - this.draw = function(){ - gamedata["/engine/hero_layers.txt"].layer[this.direction].forEach(limb => this.limbs[limb].draw()); + this.draw = function(x, y){ + layers.layer[direction].forEach(limb => limbs[limb].draw(x, y)); return this; } - this.block = function() { this.animate("block" ); return this; }; - this.cast = function() { this.animate("cast" ); return this; }; - this.die = function() { this.animate("die" ); return this; }; - this.hit = function() { this.animate("hit" ); return this; }; - this.run = function() { this.animate("run" ); return this; }; - this.shoot = function() { this.animate("shoot" ); return this; }; - this.stance = function() { this.animate("stance"); return this; }; - this.swing = function() { this.animate("swing" ); return this; }; + this.block = () => this.animate("block" ); + this.cast = () => this.animate("cast" ); + this.die = () => this.animate("die" ); + this.hit = () => this.animate("hit" ); + this.run = () => this.animate("run" ); + this.shoot = () => this.animate("shoot" ); + this.stance = () => this.animate("stance"); + this.swing = () => this.animate("swing" ); +} + +function Controls(hero, map){ + var keys = []; + + function input(){ + var d = {}; + d.l = keys[65] || keys[37]; d.r = keys[68] || keys[39]; + d.u = keys[87] || keys[38]; d.d = keys[83] || keys[40]; + if ( d.l ) hero.direct(0).run(); if ( d.r ) hero.direct(4).run(); + if ( d.u ) hero.direct(2).run(); if ( d.d ) hero.direct(6).run(); + if ( d.u && d.l ) hero.direct(1).run(); + if ( d.u && d.r ) hero.direct(3).run(); + if ( d.d && d.l ) hero.direct(7).run(); + if ( d.d && d.r ) hero.direct(5).run(); + if ( ! (d.l || d.r || d.u || d.d) ) hero.stance(); + } + window.addEventListener("keydown", function(e){ keys[e.keyCode] = true ; input();} ); + window.addEventListener("keyup" , function(e){ keys[e.keyCode] = false; input();} ); } -canvas = document.getElementById("view").getContext("2d"); -player = new Hero().place(240, 160).direct(5); -map = new Map(); +document.querySelector("body").setAttribute("style", "margin: 0; padding: 0;"); +canvas = document.createElement("canvas").getContext("2d"); +canvas.canvas.setAttribute("style", "display: block; border: 0; margin: 0; padding: 0;"); +document.querySelector("body").appendChild(canvas.canvas); + +canvas.canvas.width = window.innerWidth; +canvas.canvas.height = window.innerHeight; +window.addEventListener("resize", function(){ + canvas.canvas.width = window.innerWidth; + canvas.canvas.height = window.innerHeight; +}); -setInterval( function() { canvas.clearRect(0,0, 480, 320); map.draw_tile(265, 240, 160); player.draw(); }, 33.33); +player = new Hero(); +map = new Map("/maps/arrival.txt"); +player.place(map.info.header.hero_pos.split(/,/)[0] * map.info.header.tilewidth, + map.info.header.hero_pos.split(/,/)[1] * map.info.header.tileheight); +player.direct(5).stance(); +c = new Controls(player, map); +setInterval (function() { map.center(player.position[0], player.position[1]).draw([player]);}, 33.33 );