Add logo to main menu

This commit is contained in:
asraelite 2018-03-02 19:37:24 +00:00
parent cfe9c55c9a
commit 435b24cb6a
15 changed files with 135 additions and 40 deletions

10
js/graphics/draw.mjs Normal file
View file

@ -0,0 +1,10 @@
import {canvas, context} from './index.mjs';
export function text(string, x, y,
{font = '52pt Arial', align = 'left', valign = 'top'}) {
context.textAlign = align;
context.textBaseline = valign;
context.font = font;
context.fillText(string, x, y);
}

View file

@ -1,10 +1,24 @@
import {canvas, context} from './index.mjs';
import * as gui from '../gui/index.mjs';
export function render() {
renderElement(gui.root);
}
export function renderFrame(frame) {
context.fillStyle = '#eb9';
context.fillRect(frame.x, frame.y, frame.w, frame.h);
function renderElement(element) {
//console.log(element.options);
if (element.options.draw) {
if (element.type == 'frame') renderFrame(element);
if (element.type == 'image') renderImage(element);
}
element.children.forEach(renderElement);
}
function renderFrame(element) {
context.fillStyle = '#eb9';
context.fillRect(...element.shape);
}
function renderImage(element) {
context.drawImage(element.image, ...element.shape);
}

View file

@ -2,6 +2,7 @@ import {game} from '../game.mjs';
import {getContainedSectors} from '../world/index.mjs';
import * as background from './background.mjs';
import * as gui from './gui.mjs';
import * as draw from './draw.mjs';
export let canvas, context, tempCanvas, tempContext;
export let view;
@ -21,10 +22,14 @@ export function init() {
y: 0,
zoom: 1
}
draw.text('Loading...', canvas.width / 2, canvas.height / 2,
{ align: 'center', valign: 'middle' });
}
export function render() {
context.clearRect(0, 0, canvas.width, canvas.height);
context.fillStyle = '#000';
context.fillRect(0, 0, canvas.width, canvas.height);
context.save();