mum fixes; add mum.rectangle

This commit is contained in:
John Alanbrook 2024-07-16 15:37:07 -05:00
parent fb88641883
commit 845ee6ade3
3 changed files with 95 additions and 81 deletions

View file

@ -1331,6 +1331,11 @@ Object.defineProperty(Number.prototype, 'lerp', {
return (to - this) * t + this; return (to - this) * t + this;
} }
}); });
Object.defineProperty(Number.prototype, 'clamp', {
value: function(from,to) {
return Math.clamp(this,from,to);
}
});
Math.clamp = function (x, l, h) { return x > h ? h : x < l ? l : x; } Math.clamp = function (x, l, h) { return x > h ? h : x < l ? l : x; }

View file

@ -51,6 +51,12 @@ mum.base = {
tooltip: null, tooltip: null,
} }
// data is passed into each function, and various stats are generated
// drawpos: the point to start the drawing from
// wh: an array of [width,height]
// bound: a boundingbox around the drawn UI element
// extent: a boundingbox around the total extents of the element (ie before padding)
function show_debug() { return prosperon.debug && mum.debug; } function show_debug() { return prosperon.debug && mum.debug; }
mum.debug = false; mum.debug = false;
@ -58,87 +64,79 @@ mum.debug = false;
var post = function() {}; var post = function() {};
var posts = []; var posts = [];
var context = mum.base; mum.style = mum.base;
var container = undefined;
var contexts = [];
var cursor = [0,0]; var cursor = [0,0];
mum._frame = function()
{
cursor = [0,0];
}
var pre = function(data) var pre = function(data)
{ {
if (data.hide) return true; if (data.hide) return true;
data.__proto__ = mum.base; data.__proto__ = mum.style;
if (context)
contexts.push(context); if (data.pos) cursor = data.pos.slice();
data.drawpos = cursor.slice().add(data.offset);
context = data;
if (context.pos) cursor = context.pos.slice(); if (data.opacity !== 1) {
context.drawpos = cursor.slice().add(context.offset); data.color = data.color.slice();
data.color[3] = data.opacity;
}
data.wh = [data.width,data.height];
} }
var end = function() var anchor_calc = function(data)
{ {
var old = context; var aa = [0,1].sub(data.anchor);
context = contexts.pop(); data.drawpos = data.drawpos.add([data.width,data.height]).scale(aa);
cursor = cursor.add(old.padding);
post(old);
} }
mum.style = function(fn, data) var end = function(data)
{ {
var oldbase = mum.base; cursor = cursor.add(data.padding);
data.__proto__ = mum.base; post(data);
mum.base = data;
fn();
mum.base = oldbase;
} }
mum.list = function(fn, data = {}) mum.list = function(fn, data = {})
{ {
if (pre(data)) return; if (pre(data)) return;
var aa = [0,1].sub(context.anchor); var aa = [0,1].sub(data.anchor);
cursor = cursor.add([context.width,context.height].scale(aa)).add(context.offset).add(context.padding); cursor = cursor.add([data.width,data.height].scale(aa)).add(data.offset).add(data.padding);
posts.push(post); posts.push(post);
post = mum.list.post; post = mum.list.post.bind(data);
if (show_debug()) if (show_debug())
render.boundingbox({ render.boundingbox({
t:cursor.y, t:cursor.y,
b:cursor.y-context.height, b:cursor.y-data.height,
l:cursor.x, l:cursor.x,
r:cursor.x+context.width r:cursor.x+data.width
}); });
//if (context.background_image) mum.image(null, Object.create(context)) //if (data.background_image) mum.image(null, Object.create(data))
if (context.background_image) { if (data.background_image) {
var imgpos = context.pos.slice(); var imgpos = data.pos.slice();
imgpos.y -= context.height/2; imgpos.y -= data.height/2;
imgpos.x -= context.width/2; imgpos.x -= data.width/2;
var imgscale = [context.width,context.height]; var imgscale = [data.width,data.height];
if (context.slice) if (data.slice)
render.slice9(game.texture(context.background_image), imgpos, context.slice, imgscale); render.slice9(game.texture(data.background_image), imgpos, data.slice, imgscale);
else else
render.image(game.texture(context.background_image), imgpos, [context.width,context.height]); render.image(game.texture(data.background_image), imgpos, [data.width,data.height]);
} }
fn(); fn();
context.bb.l -= context.padding.x; data.bb.l -= data.padding.x;
context.bb.r += context.padding.x; data.bb.r += data.padding.x;
context.bb.t += context.padding.y; data.bb.t += data.padding.y;
context.bb.b -= context.padding.y; data.bb.b -= data.padding.y;
if (show_debug()) if (show_debug())
render.boundingbox(context.bb); render.boundingbox(data.bb);
post = posts.pop(); post = posts.pop();
end(); end(data);
} }
mum.list.post = function(e) mum.list.post = function(e)
@ -146,48 +144,48 @@ mum.list.post = function(e)
cursor.y -= (e.bb.t - e.bb.b); cursor.y -= (e.bb.t - e.bb.b);
cursor.y -= e.padding.y; cursor.y -= e.padding.y;
if (context.bb) if (this.bb)
context.bb = bbox.expand(context.bb,e.bb) this.bb = bbox.expand(this.bb,e.bb)
else else
context.bb = e.bb; this.bb = e.bb;
} }
mum.label = function(str, data = {}) mum.label = function(str, data = {})
{ {
if (pre(data)) return; if (pre(data)) return;
render.set_font(context.font, context.font_size); render.set_font(data.font, data.font_size);
context.bb = render.text_bb(str, context.scale, -1, cursor); data.bb = render.text_bb(str, data.scale, -1, cursor);
context.wh = bbox.towh(context.bb); data.wh = bbox.towh(data.bb);
var aa = [0,1].sub(context.anchor); var aa = [0,1].sub(data.anchor);
data.drawpos.y -= (context.bb.t-cursor.y); data.drawpos.y -= (data.bb.t-cursor.y);
data.drawpos = data.drawpos.add(context.wh.scale(aa)).add(context.offset); data.drawpos = data.drawpos.add(data.wh.scale(aa)).add(data.offset);
context.bb = render.text_bb(str, context.scale, data.wrap, data.drawpos); data.bb = render.text_bb(str, data.scale, data.wrap, data.drawpos);
if (context.action && bbox.pointin(context.bb, input.mouse.screenpos())) { if (data.action && bbox.pointin(data.bb, input.mouse.screenpos())) {
if (context.hover) { if (data.hover) {
context.hover.__proto__ = context; data.hover.__proto__ = data;
context = context.hover; data = data.hover;
selected = context; selected = data;
} }
} }
context.bb = render.text(str, data.drawpos, context.scale, context.color, data.wrap); data.bb = render.text(str, data.drawpos, data.scale, data.color, data.wrap);
if (show_debug()) if (show_debug())
render.boundingbox(context.bb); render.boundingbox(data.bb);
end(); end(data);
} }
mum.image = function(path, data = {}) mum.image = function(path, data = {})
{ {
if (pre(data)) return; if (pre(data)) return;
path ??= context.background_image; path ??= data.background_image;
var tex = path; var tex = path;
if (typeof path === 'string') if (typeof path === 'string')
tex = game.texture(path); tex = game.texture(path);
@ -198,20 +196,31 @@ mum.image = function(path, data = {})
var aa = [0,0].sub(data.anchor); var aa = [0,0].sub(data.anchor);
data.drawpos = data.drawpos.add(aa.scale([data.width,data.height])); data.drawpos = data.drawpos.add(aa.scale([data.width,data.height]));
if (context.slice) if (data.slice)
render.slice9(tex, data.drawpos, context.slice, [data.width,data.height]); render.slice9(tex, data.drawpos, data.slice, [data.width,data.height]);
else { else {
cursor.y -= tex.height*context.scale; cursor.y -= tex.height*data.scale;
context.bb = render.image(tex, data.drawpos, [context.scale*tex.width, context.scale*tex.height]); data.bb = render.image(tex, data.drawpos, [data.scale*tex.width, data.scale*tex.height]);
} }
end(); end(data);
}
mum.rectangle = function(data = {})
{
if (pre(data)) return;
var aa = [0,0].sub(data.anchor);
data.drawpos = data.drawpos.add(aa.scale([data.width,data.height]));
render.rectangle(data.drawpos, data.drawpos.add([data.width,data.height]), data.color);
end(data);
} }
var btnbb; var btnbb;
var btnpost = function() var btnpost = function()
{ {
btnbb = context.bb; btnbb = data.bb;
} }
mum.button = function(str, data = {padding:[4,4], color:Color.black}) mum.button = function(str, data = {padding:[4,4], color:Color.black})
@ -220,30 +229,30 @@ mum.button = function(str, data = {padding:[4,4], color:Color.black})
posts.push(post); posts.push(post);
post = btnpost; post = btnpost;
if (typeof str === 'string') if (typeof str === 'string')
render.text(str, cursor.add(context.padding), context.scale, context.color); render.text(str, cursor.add(data.padding), data.scale, data.color);
else else
str(); str();
if (data.action && data.hover && bbox.pointin(btnbb, input.mouse.screenpos())) { if (data.action && data.hover && bbox.pointin(btnbb, input.mouse.screenpos())) {
data.hover.__proto__ = data; data.hover.__proto__ = data;
context = data.hover; data = data.hover;
} }
render.rectangle([btnbb.l-context.padding.x, btnbb.b-context.padding.y], [btnbb.r+context.padding.y, btnbb.t+context.padding.y], context.color); render.rectangle([btnbb.l-data.padding.x, btnbb.b-data.padding.y], [btnbb.r+data.padding.y, btnbb.t+data.padding.y], data.color);
context.bb = btnbb; data.bb = btnbb;
post = posts.pop(); post = posts.pop();
end(); end(data);
} }
mum.window = function(fn, data = {}) mum.window = function(fn, data = {})
{ {
if (pre(data)) return; if (pre(data)) return;
render.rectangle(cursor, cursor.add(context.size), context.color); render.rectangle(cursor, cursor.add(data.size), data.color);
cursor.y += context.height; cursor.y += data.height;
cursor = cursor.add(context.padding); cursor = cursor.add(data.padding);
fn(); fn();
end(); end(data);
} }
mum.ex_hud = function() mum.ex_hud = function()

View file

@ -1,7 +1,7 @@
#blend mix
#depth off #depth off
#primitive triangle #primitive triangle
#cull none #cull none
#blend mix
@vs vs @vs vs
in vec3 a_pos; in vec3 a_pos;