2023-04-22 16:44:26 -05:00
|
|
|
var component = {
|
2023-09-20 17:58:18 -05:00
|
|
|
components: [],
|
2023-04-22 16:44:26 -05:00
|
|
|
toString() {
|
|
|
|
if ('gameobject' in this)
|
|
|
|
return this.name + " on " + this.gameobject;
|
|
|
|
else
|
|
|
|
return this.name;
|
|
|
|
},
|
|
|
|
name: "component",
|
|
|
|
component: true,
|
2023-05-27 07:01:17 -05:00
|
|
|
enabled: true,
|
2023-04-22 16:44:26 -05:00
|
|
|
enable() { this.enabled = true; },
|
|
|
|
disable() { this.enabled = false; },
|
2023-10-10 17:37:58 -05:00
|
|
|
|
2023-12-24 11:50:01 -06:00
|
|
|
isComponent(c) {
|
|
|
|
if (typeof c !== 'object') return false;
|
|
|
|
if (typeof c.toString !== 'function') return false;
|
|
|
|
if (typeof c.make !== 'function') return false;
|
|
|
|
return (typeof component[c.toString()] === 'object');
|
|
|
|
},
|
|
|
|
|
2023-10-10 17:37:58 -05:00
|
|
|
hides: ['gameobject', 'id'],
|
|
|
|
|
|
|
|
make(go) {
|
|
|
|
var nc = Object.create(this);
|
2023-12-19 15:34:36 -06:00
|
|
|
nc.gameobject = go;
|
2023-10-10 17:37:58 -05:00
|
|
|
Object.assign(nc, this._enghook(go.body));
|
|
|
|
assign_impl(nc,this.impl);
|
|
|
|
Object.hide(nc, ...this.hides);
|
2023-11-02 17:25:00 -05:00
|
|
|
nc.post();
|
2023-10-10 17:37:58 -05:00
|
|
|
return nc;
|
|
|
|
},
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2024-02-25 17:31:48 -06:00
|
|
|
kill() { console.info("Kill not created for this component yet"); },
|
2023-10-10 17:37:58 -05:00
|
|
|
sync() {},
|
2023-11-02 17:25:00 -05:00
|
|
|
post(){},
|
2023-04-22 16:44:26 -05:00
|
|
|
gui() { },
|
|
|
|
gizmo() { },
|
|
|
|
|
|
|
|
prepare_center() {},
|
|
|
|
finish_center() {},
|
2023-12-19 15:34:36 -06:00
|
|
|
extend(spec) { return Object.copy(this, spec); },
|
2023-04-22 16:44:26 -05:00
|
|
|
};
|
|
|
|
|
2024-02-29 13:54:33 -06:00
|
|
|
var make_point_obj = function(o, p)
|
2024-02-25 17:31:48 -06:00
|
|
|
{
|
|
|
|
return {
|
|
|
|
pos: p,
|
|
|
|
move(d) {
|
|
|
|
d = o.gameobject.dir_world2this(d);
|
|
|
|
p.x += d.x;
|
|
|
|
p.y += d.y;
|
|
|
|
},
|
|
|
|
sync: o.sync.bind(o)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-02-29 13:54:33 -06:00
|
|
|
var assign_impl = function(obj, impl)
|
2024-02-25 17:31:48 -06:00
|
|
|
{
|
|
|
|
var tmp = {};
|
|
|
|
for (var key of Object.keys(impl))
|
|
|
|
if (typeof obj[key] !== 'undefined' && typeof obj[key] !== 'function')
|
|
|
|
tmp[key] = obj[key];
|
|
|
|
|
|
|
|
Object.mixin(obj, impl);
|
|
|
|
|
|
|
|
for (var key in tmp)
|
|
|
|
obj[key] = tmp[key];
|
|
|
|
}
|
|
|
|
|
2023-10-04 17:57:37 -05:00
|
|
|
component.sprite = Object.copy(component, {
|
2023-09-21 12:50:39 -05:00
|
|
|
pos:[0,0],
|
2023-10-31 12:38:23 -05:00
|
|
|
color:[1,1,1,1],
|
2023-09-21 12:50:39 -05:00
|
|
|
layer:0,
|
|
|
|
enabled:true,
|
2023-09-26 17:07:51 -05:00
|
|
|
path: "",
|
2023-10-05 08:02:12 -05:00
|
|
|
rect: {s0:0, s1: 1, t0: 0, t1: 1},
|
2023-09-21 12:50:39 -05:00
|
|
|
toString() { return "sprite"; },
|
2023-10-10 17:37:58 -05:00
|
|
|
_enghook: make_sprite,
|
2023-10-04 17:57:37 -05:00
|
|
|
});
|
2023-09-21 12:50:39 -05:00
|
|
|
|
2024-01-14 10:24:31 -06:00
|
|
|
component.sprite.mode = {
|
|
|
|
simple: 0,
|
|
|
|
tile: 1
|
|
|
|
};
|
|
|
|
|
2023-10-04 17:57:37 -05:00
|
|
|
component.sprite.impl = {
|
2023-12-29 19:08:53 -06:00
|
|
|
toJSON() {
|
|
|
|
var j = {};
|
|
|
|
Object.keys(this).forEach(k => j[k] = this[k]);
|
|
|
|
delete j.rect;
|
|
|
|
return j;
|
|
|
|
},
|
|
|
|
|
2023-09-26 17:07:51 -05:00
|
|
|
set path(x) {
|
2023-12-29 19:08:53 -06:00
|
|
|
if (this.cancel) {
|
|
|
|
this.cancel();
|
|
|
|
this.cancel = undefined;
|
|
|
|
}
|
2024-01-01 14:48:58 -06:00
|
|
|
|
2023-12-29 19:08:53 -06:00
|
|
|
if (!Resources.is_animation(x)) {
|
|
|
|
this.rect = component.sprite.rect;
|
|
|
|
cmd(12,this.id,x,this.rect);
|
|
|
|
}
|
|
|
|
else {
|
2024-01-01 14:48:58 -06:00
|
|
|
this.anims = SpriteAnim.make(x);
|
2024-01-14 10:24:31 -06:00
|
|
|
Object.hide(this, 'anims');
|
2024-01-01 14:48:58 -06:00
|
|
|
var anim = this.anims[0];
|
|
|
|
this.rect = anim.frames[0].rect;
|
|
|
|
cmd(12,this.id,anim.path,this.rect);
|
2023-12-29 19:08:53 -06:00
|
|
|
}
|
2023-09-26 17:07:51 -05:00
|
|
|
},
|
|
|
|
get path() {
|
2023-12-24 11:50:01 -06:00
|
|
|
var s = cmd(116,this.id);
|
|
|
|
if (s === "icons/no_tex.gif") return undefined;
|
|
|
|
return s;
|
2023-09-26 17:07:51 -05:00
|
|
|
},
|
2023-12-29 19:08:53 -06:00
|
|
|
|
2024-01-01 14:48:58 -06:00
|
|
|
play(name) {
|
|
|
|
if (!this.anims) return;
|
|
|
|
if (this.cancel) this.cancel();
|
|
|
|
name ??= 0;
|
2023-12-29 19:08:53 -06:00
|
|
|
var frame = 0;
|
2024-01-01 14:48:58 -06:00
|
|
|
var anim = this.anims[name];
|
2023-12-29 19:08:53 -06:00
|
|
|
var advance = function() {
|
|
|
|
frame = (frame+1)%anim.frames.length;
|
|
|
|
this.rect = anim.frames[frame].rect;
|
2024-01-01 14:48:58 -06:00
|
|
|
cmd(12,this.id,anim.path,this.rect);
|
2023-12-29 19:08:53 -06:00
|
|
|
this.cancel = this.gameobject.delay(advance.bind(this), anim.frames[frame].time);
|
|
|
|
}
|
|
|
|
advance.call(this);
|
|
|
|
},
|
|
|
|
|
|
|
|
stop() {
|
|
|
|
if (!this.cancel) return;
|
|
|
|
this.cancel();
|
|
|
|
this.cancel = undefined;
|
|
|
|
},
|
|
|
|
setframe(f) {
|
2024-01-01 14:48:58 -06:00
|
|
|
if (!this.anims) return;
|
2023-12-29 19:08:53 -06:00
|
|
|
this.stop();
|
2024-01-01 14:48:58 -06:00
|
|
|
var anim = this.anims[0];
|
2023-12-29 19:08:53 -06:00
|
|
|
this.rect = anim.frames[f].rect;
|
2024-01-01 14:48:58 -06:00
|
|
|
cmd(12,this.id,anim.path,this.rect);
|
2023-12-29 19:08:53 -06:00
|
|
|
},
|
|
|
|
|
2023-10-10 17:37:58 -05:00
|
|
|
toString() { return "sprite"; },
|
2023-10-02 17:03:01 -05:00
|
|
|
hide() { this.enabled = false; },
|
|
|
|
show() { this.enabled = true; },
|
2023-09-21 12:50:39 -05:00
|
|
|
asset(str) { this.path = str; },
|
2023-09-20 17:58:18 -05:00
|
|
|
get enabled() { return cmd(114,this.id); },
|
|
|
|
set enabled(x) { cmd(20,this.id,x); },
|
|
|
|
set color(x) { cmd(96,this.id,x); },
|
2023-10-31 12:38:23 -05:00
|
|
|
get color() {return cmd(148,this.id);},
|
2023-09-20 17:58:18 -05:00
|
|
|
get pos() { return cmd(111, this.id); },
|
|
|
|
set pos(x) { cmd(37,this.id,x); },
|
2024-01-01 07:44:43 -06:00
|
|
|
get parallax() { return cmd(232, this.id); },
|
|
|
|
set parallax(x) { cmd(233,this.id,x); },
|
2023-12-26 15:39:46 -06:00
|
|
|
get angle() { return cmd(217,this.id); },
|
|
|
|
set angle(x) { cmd(218,this.id,x); },
|
|
|
|
get scale() { return cmd(215, this.id); },
|
|
|
|
set scale(x) { cmd(216, this.id, x); },
|
2023-12-27 14:16:43 -06:00
|
|
|
get drawmode() { return cmd(220,this.id); },
|
|
|
|
set drawmode(x) { cmd(219,this.id,x); },
|
2023-11-21 01:07:50 -06:00
|
|
|
emissive(x) { cmd(170, this.id, x); },
|
2024-01-01 14:48:58 -06:00
|
|
|
sync() { },
|
2023-12-24 09:14:46 -06:00
|
|
|
pickm() { return this; },
|
2023-12-20 17:20:29 -06:00
|
|
|
move(d) { this.pos = this.pos.add(d); },
|
2023-09-20 17:58:18 -05:00
|
|
|
|
|
|
|
boundingbox() {
|
|
|
|
var dim = this.dimensions();
|
2023-12-20 17:20:29 -06:00
|
|
|
dim = dim.scale(this.gameobject.gscale());
|
|
|
|
var realpos = dim.scale(0.5).add(this.pos);
|
2024-02-29 13:54:33 -06:00
|
|
|
return bbox.fromcwh(realpos,dim);
|
2023-09-20 17:58:18 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
kill() { cmd(9,this.id); },
|
2023-12-27 17:28:10 -06:00
|
|
|
dimensions() {
|
|
|
|
var dim = Resources.texture.dimensions(this.path);
|
|
|
|
dim.x *= (this.rect.s1-this.rect.s0);
|
|
|
|
dim.y *= (this.rect.t1-this.rect.t0);
|
|
|
|
return dim;
|
|
|
|
},
|
|
|
|
width() { return this.dimensions().x; },
|
|
|
|
height() { return this.dimensions().y; },
|
2023-10-04 17:57:37 -05:00
|
|
|
};
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-09-23 12:35:02 -05:00
|
|
|
Object.freeze(sprite);
|
|
|
|
|
2023-11-03 08:31:06 -05:00
|
|
|
component.model = Object.copy(component, {
|
|
|
|
path:"",
|
|
|
|
_enghook: make_model,
|
|
|
|
});
|
|
|
|
component.model.impl = {
|
|
|
|
set path(x) { cmd(149, this.id, x); },
|
|
|
|
draw() { cmd(150, this.id); },
|
2023-12-20 17:20:29 -06:00
|
|
|
kill() { cmd(213, this.id); },
|
2023-11-03 08:31:06 -05:00
|
|
|
};
|
|
|
|
|
2023-10-04 17:57:37 -05:00
|
|
|
var sprite = component.sprite;
|
2023-09-20 13:33:11 -05:00
|
|
|
|
2023-10-23 08:08:11 -05:00
|
|
|
sprite.doc = {
|
|
|
|
path: "Path to the texture.",
|
|
|
|
color: "Color to mix with the sprite.",
|
|
|
|
pos: "The offset position of the sprite, relative to its entity."
|
|
|
|
};
|
|
|
|
|
2023-09-13 16:49:22 -05:00
|
|
|
sprite.inputs = {};
|
2023-12-20 17:20:29 -06:00
|
|
|
sprite.inputs.kp9 = function() { this.pos = this.dimensions().scale([0,0]); };
|
|
|
|
sprite.inputs.kp8 = function() { this.pos = this.dimensions().scale([-0.5, 0]); };
|
|
|
|
sprite.inputs.kp7 = function() { this.pos = this.dimensions().scale([-1,0]); };
|
|
|
|
sprite.inputs.kp6 = function() { this.pos = this.dimensions().scale([0,-0.5]); };
|
|
|
|
sprite.inputs.kp5 = function() { this.pos = this.dimensions().scale([-0.5,-0.5]); };
|
|
|
|
sprite.inputs.kp4 = function() { this.pos = this.dimensions().scale([-1,-0.5]); };
|
|
|
|
sprite.inputs.kp3 = function() { this.pos = this.dimensions().scale([0, -1]); };
|
|
|
|
sprite.inputs.kp2 = function() { this.pos = this.dimensions().scale([-0.5,-1]); };
|
|
|
|
sprite.inputs.kp1 = function() { this.pos = this.dimensions().scale([-1,-1]); };
|
2023-09-23 12:35:02 -05:00
|
|
|
Object.seal(sprite);
|
2023-09-13 16:49:22 -05:00
|
|
|
|
2023-12-29 19:08:53 -06:00
|
|
|
/* sprite anim returns a data structure for the given file path
|
|
|
|
frames: array of frames
|
|
|
|
rect: frame rectangle
|
|
|
|
time: miliseconds to hold the frame for
|
|
|
|
loop: true if it should be looped
|
|
|
|
*/
|
2023-11-01 15:33:22 -05:00
|
|
|
var SpriteAnim = {
|
2023-12-28 14:34:00 -06:00
|
|
|
make(path) {
|
|
|
|
if (path.ext() === 'gif')
|
|
|
|
return SpriteAnim.gif(path);
|
2024-01-01 14:48:58 -06:00
|
|
|
else if (path.ext() === 'ase')
|
|
|
|
return SpriteAnim.aseprite(path);
|
2023-12-29 19:08:53 -06:00
|
|
|
else
|
|
|
|
return undefined;
|
2023-12-28 14:34:00 -06:00
|
|
|
},
|
2023-11-01 15:33:22 -05:00
|
|
|
gif(path) {
|
|
|
|
var anim = {};
|
|
|
|
anim.frames = [];
|
|
|
|
anim.path = path;
|
2023-12-27 17:28:10 -06:00
|
|
|
var frames = Resources.gif.frames(path);
|
2023-11-01 15:33:22 -05:00
|
|
|
var yslice = 1/frames;
|
|
|
|
for (var f = 0; f < frames; f++) {
|
|
|
|
var frame = {};
|
|
|
|
frame.rect = {
|
|
|
|
s0: 0,
|
|
|
|
s1: 1,
|
|
|
|
t0: yslice*f,
|
|
|
|
t1: yslice*(f+1)
|
|
|
|
};
|
|
|
|
frame.time = 0.05;
|
|
|
|
anim.frames.push(frame);
|
|
|
|
}
|
2023-12-29 19:08:53 -06:00
|
|
|
var times = cmd(224,path);
|
|
|
|
for (var i = 0; i < frames; i++)
|
|
|
|
anim.frames[i].time = times[i]/1000;
|
2023-11-01 15:33:22 -05:00
|
|
|
anim.loop = true;
|
2023-12-27 17:28:10 -06:00
|
|
|
var dim = Resources.texture.dimensions(path);
|
2023-11-01 15:33:22 -05:00
|
|
|
dim.y /= frames;
|
|
|
|
anim.dim = dim;
|
2024-01-01 14:48:58 -06:00
|
|
|
return {0:anim};
|
2023-11-01 15:33:22 -05:00
|
|
|
},
|
2023-09-25 08:21:02 -05:00
|
|
|
|
2023-11-02 17:25:00 -05:00
|
|
|
strip(path, frames, time=0.05) {
|
2023-11-01 15:33:22 -05:00
|
|
|
var anim = {};
|
|
|
|
anim.frames = [];
|
|
|
|
anim.path = path;
|
|
|
|
var xslice = 1/frames;
|
|
|
|
for (var f = 0; f < frames; f++) {
|
|
|
|
var frame = {};
|
|
|
|
frame.rect = {s0:xslice*f, s1: xslice*(f+1), t0:0, t1:1};
|
2023-11-02 17:25:00 -05:00
|
|
|
frame.time = time;
|
2023-11-01 15:33:22 -05:00
|
|
|
anim.frames.push(frame);
|
|
|
|
}
|
2023-12-27 17:28:10 -06:00
|
|
|
anim.dim = Resources.texture.dimensions(path);
|
2023-11-01 15:33:22 -05:00
|
|
|
anim.dim.x /= frames;
|
|
|
|
return anim;
|
|
|
|
},
|
2023-09-25 08:21:02 -05:00
|
|
|
|
2023-11-01 15:33:22 -05:00
|
|
|
aseprite(path) {
|
|
|
|
function aseframeset2anim(frameset, meta) {
|
|
|
|
var anim = {};
|
|
|
|
anim.frames = [];
|
|
|
|
anim.path = meta.image;
|
|
|
|
var dim = meta.size;
|
|
|
|
|
|
|
|
var ase_make_frame = function(ase_frame,i) {
|
|
|
|
var f = ase_frame.frame;
|
|
|
|
var frame = {};
|
|
|
|
frame.rect = {
|
|
|
|
s0: f.x/dim.w,
|
|
|
|
s1: (f.x+f.w)/dim.w,
|
|
|
|
t0: f.y/dim.h,
|
|
|
|
t1: (f.y+f.h)/dim.h
|
|
|
|
};
|
|
|
|
frame.time = ase_frame.duration / 1000;
|
|
|
|
anim.frames.push(frame);
|
|
|
|
};
|
2023-09-25 08:21:02 -05:00
|
|
|
|
2023-11-01 15:33:22 -05:00
|
|
|
frameset.forEach(ase_make_frame);
|
|
|
|
anim.dim = [frameset[0].sourceSize.x, frameset[0].sourceSize.y];
|
|
|
|
anim.loop = true;
|
|
|
|
return anim;
|
2023-09-24 11:26:44 -05:00
|
|
|
};
|
|
|
|
|
2024-02-25 17:31:48 -06:00
|
|
|
var json = io.slurp(path);
|
2023-11-01 15:33:22 -05:00
|
|
|
json = JSON.parse(json);
|
|
|
|
var anims = {};
|
2024-01-01 14:48:58 -06:00
|
|
|
var frames = Array.isArray(json.frames) ? json.frames : Object.values(json.frames);
|
|
|
|
var f = 0;
|
|
|
|
for (var tag of json.meta.frameTags) {
|
2023-11-01 15:33:22 -05:00
|
|
|
anims[tag.name] = aseframeset2anim(frames.slice(tag.from, tag.to+1), json.meta);
|
2024-01-01 14:48:58 -06:00
|
|
|
anims[f] = anims[tag.name];
|
|
|
|
f++;
|
|
|
|
}
|
2023-11-01 15:33:22 -05:00
|
|
|
|
|
|
|
return anims;
|
|
|
|
},
|
2023-11-02 17:25:00 -05:00
|
|
|
|
|
|
|
validate(anim)
|
|
|
|
{
|
|
|
|
if (!Object.isObject(anim)) return false;
|
|
|
|
if (typeof anim.path !== 'string') return false;
|
|
|
|
if (typeof anim.dim !== 'object') return false;
|
|
|
|
return true;
|
|
|
|
},
|
|
|
|
|
|
|
|
find(path) {
|
2024-02-25 17:31:48 -06:00
|
|
|
if (!io.exists(path + ".asset")) return;
|
|
|
|
var asset = JSON.parse(io.slurp(path + ".asset"));
|
2023-11-02 17:25:00 -05:00
|
|
|
|
|
|
|
},
|
2023-11-01 15:33:22 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
SpriteAnim.doc = 'Functions to create Primum animations from varying sources.';
|
|
|
|
SpriteAnim.gif.doc = 'Convert a gif.';
|
|
|
|
SpriteAnim.strip.doc = 'Given a path and number of frames, converts a horizontal strip animation, where each cell is the same width.'
|
|
|
|
SpriteAnim.aseprite.doc = 'Given an aseprite json metadata, returns an object of animations defined in the aseprite file.';
|
2023-11-02 17:25:00 -05:00
|
|
|
SpriteAnim.find.doc = 'Given a path, find the relevant animation for the file.';
|
2023-09-24 11:26:44 -05:00
|
|
|
|
2023-04-22 16:44:26 -05:00
|
|
|
/* For all colliders, "shape" is a pointer to a phys2d_shape, "id" is a pointer to the shape data */
|
2023-09-20 17:58:18 -05:00
|
|
|
var collider2d = Object.copy(component, {
|
2023-04-22 16:44:26 -05:00
|
|
|
name: "collider 2d",
|
2023-05-25 21:55:55 -05:00
|
|
|
sensor: false,
|
2023-04-22 16:44:26 -05:00
|
|
|
|
|
|
|
kill() {}, /* No killing is necessary - it is done through the gameobject's kill */
|
|
|
|
|
2023-10-11 17:22:41 -05:00
|
|
|
impl: {
|
|
|
|
set sensor(x) { cmd(18,this.shape,x); },
|
2023-05-27 07:01:17 -05:00
|
|
|
get sensor() { return cmd(21,this.shape); },
|
2023-10-31 08:31:56 -05:00
|
|
|
set enabled(x) { cmd(22,this.shape,x); },
|
|
|
|
get enabled() { return cmd(23,this.shape); }
|
2023-10-11 17:22:41 -05:00
|
|
|
},
|
2023-04-22 16:44:26 -05:00
|
|
|
});
|
|
|
|
|
2023-10-31 08:31:56 -05:00
|
|
|
Object.hide(collider2d.impl, 'enabled');
|
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
collider2d.inputs = {};
|
|
|
|
collider2d.inputs['M-s'] = function() { this.sensor = !this.sensor; }
|
|
|
|
collider2d.inputs['M-s'].doc = "Toggle if this collider is a sensor.";
|
|
|
|
|
|
|
|
collider2d.inputs['M-t'] = function() { this.enabled = !this.enabled; }
|
|
|
|
collider2d.inputs['M-t'].doc = "Toggle if this collider is enabled.";
|
|
|
|
|
2023-09-20 17:58:18 -05:00
|
|
|
component.polygon2d = Object.copy(collider2d, {
|
2023-12-24 11:50:01 -06:00
|
|
|
toString() { return "polygon2d"; },
|
2023-10-10 17:37:58 -05:00
|
|
|
flipx: false,
|
|
|
|
flipy: false,
|
2023-09-23 12:35:02 -05:00
|
|
|
|
|
|
|
boundingbox() {
|
2024-02-27 10:09:15 -06:00
|
|
|
return bbox.frompoints(this.spoints());
|
2023-09-23 12:35:02 -05:00
|
|
|
},
|
2023-10-10 17:37:58 -05:00
|
|
|
|
|
|
|
hides: ['id', 'shape', 'gameobject'],
|
|
|
|
_enghook: make_poly2d,
|
2023-10-05 17:30:17 -05:00
|
|
|
points:[],
|
2023-11-16 09:27:04 -06:00
|
|
|
setpoints(points) {
|
|
|
|
this.points = points;
|
|
|
|
this.sync();
|
|
|
|
},
|
2023-10-05 17:30:17 -05:00
|
|
|
|
2023-05-27 07:01:17 -05:00
|
|
|
/* EDITOR */
|
2023-12-19 15:34:36 -06:00
|
|
|
spoints() {
|
2023-04-22 16:44:26 -05:00
|
|
|
var spoints = this.points.slice();
|
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
if (this.flipx) {
|
2023-04-22 16:44:26 -05:00
|
|
|
spoints.forEach(function(x) {
|
|
|
|
var newpoint = x.slice();
|
|
|
|
newpoint.x = -newpoint.x;
|
|
|
|
spoints.push(newpoint);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
if (this.flipy) {
|
2023-04-22 16:44:26 -05:00
|
|
|
spoints.forEach(function(x) {
|
|
|
|
var newpoint = x.slice();
|
|
|
|
newpoint.y = -newpoint.y;
|
|
|
|
spoints.push(newpoint);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
return spoints;
|
|
|
|
},
|
|
|
|
|
|
|
|
gizmo() {
|
2024-02-25 17:31:48 -06:00
|
|
|
this.spoints().forEach(x => render.point(this.gameobject.this2screen(x), 3, Color.green));
|
2023-12-19 15:34:36 -06:00
|
|
|
this.points.forEach((x,i)=>Debug.numbered_point(this.gameobject.this2screen(x), i));
|
2023-04-22 16:44:26 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
pick(pos) {
|
2023-10-05 17:30:17 -05:00
|
|
|
if (!Object.hasOwn(this,'points'))
|
|
|
|
this.points = deep_copy(this.__proto__.points);
|
|
|
|
|
2023-12-18 06:45:27 -06:00
|
|
|
var i = Gizmos.pick_gameobject_points(pos, this.gameobject, this.points);
|
|
|
|
var p = this.points[i];
|
2023-11-16 09:27:04 -06:00
|
|
|
if (p)
|
|
|
|
return make_point_obj(this, p);
|
2023-09-27 12:36:32 -05:00
|
|
|
|
|
|
|
return undefined;
|
2023-04-22 16:44:26 -05:00
|
|
|
},
|
2023-10-05 17:30:17 -05:00
|
|
|
});
|
|
|
|
|
2023-10-31 08:31:56 -05:00
|
|
|
component.polygon2d.impl = Object.mix(collider2d.impl, {
|
2023-12-27 07:04:18 -06:00
|
|
|
sync() { cmd_poly2d(0, this.id, this.spoints());},
|
2023-12-19 15:34:36 -06:00
|
|
|
query() { return cmd(80, this.shape); },
|
2023-10-31 08:31:56 -05:00
|
|
|
});
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-09-20 17:58:18 -05:00
|
|
|
var polygon2d = component.polygon2d;
|
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
polygon2d.inputs = {};
|
2023-12-27 07:04:18 -06:00
|
|
|
//polygon2d.inputs.post = function() { this.sync(); };
|
2023-08-25 01:30:39 -05:00
|
|
|
polygon2d.inputs.f10 = function() {
|
2024-02-25 17:31:48 -06:00
|
|
|
this.points = Math.sortpointsccw(this.points);
|
2023-08-25 01:30:39 -05:00
|
|
|
};
|
|
|
|
polygon2d.inputs.f10.doc = "Sort all points to be CCW order.";
|
|
|
|
|
|
|
|
polygon2d.inputs['C-lm'] = function() {
|
|
|
|
this.points.push(this.gameobject.world2this(Mouse.worldpos));
|
|
|
|
};
|
|
|
|
polygon2d.inputs['C-lm'].doc = "Add a point to location of mouse.";
|
2023-10-06 12:38:49 -05:00
|
|
|
polygon2d.inputs.lm = function(){};
|
|
|
|
polygon2d.inputs.lm.released = function(){};
|
2023-08-25 01:30:39 -05:00
|
|
|
|
2023-11-17 15:16:13 -06:00
|
|
|
polygon2d.inputs['C-M-lm'] = function() {
|
2023-11-29 17:31:41 -06:00
|
|
|
var idx = Math.grab_from_points(Mouse.worldpos, this.points.map(p => this.gameobject.this2world(p)), 25);
|
2023-08-25 01:30:39 -05:00
|
|
|
if (idx === -1) return;
|
|
|
|
this.points.splice(idx, 1);
|
|
|
|
};
|
2023-11-17 15:16:13 -06:00
|
|
|
polygon2d.inputs['C-M-lm'].doc = "Remove point under mouse.";
|
2023-08-25 01:30:39 -05:00
|
|
|
|
|
|
|
polygon2d.inputs['C-b'] = function() {
|
|
|
|
this.points = this.spoints;
|
|
|
|
this.flipx = false;
|
|
|
|
this.flipy = false;
|
|
|
|
};
|
|
|
|
polygon2d.inputs['C-b'].doc = "Freeze mirroring in place.";
|
|
|
|
|
2023-09-27 17:40:04 -05:00
|
|
|
component.edge2d = Object.copy(collider2d, {
|
2023-04-22 16:44:26 -05:00
|
|
|
dimensions:2,
|
2023-10-05 17:30:17 -05:00
|
|
|
thickness:0,
|
2023-12-13 08:06:24 -06:00
|
|
|
/* if type === -1, point to point */
|
2023-12-12 08:46:27 -06:00
|
|
|
type: Spline.type.catmull,
|
2023-12-18 06:45:27 -06:00
|
|
|
C: 1, /* when in bezier, continuity required. 0, 1 or 2. */
|
2023-10-29 16:39:45 -05:00
|
|
|
looped: false,
|
2023-12-20 17:20:29 -06:00
|
|
|
angle: 0.5, /* smaller for smoother bezier */
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
flipx: false,
|
|
|
|
flipy: false,
|
2023-10-12 17:05:49 -05:00
|
|
|
cpoints:[],
|
2023-10-05 17:30:17 -05:00
|
|
|
toString() { return "edge2d"; },
|
2023-04-22 16:44:26 -05:00
|
|
|
|
|
|
|
hollow: false,
|
2023-05-27 07:01:17 -05:00
|
|
|
hollowt: 0,
|
2023-10-29 16:39:45 -05:00
|
|
|
|
2023-10-12 17:05:49 -05:00
|
|
|
spoints() {
|
|
|
|
if (!this.cpoints) return [];
|
2023-04-22 16:44:26 -05:00
|
|
|
var spoints = this.cpoints.slice();
|
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
if (this.flipx) {
|
2023-12-20 17:20:29 -06:00
|
|
|
if (Spline.is_bezier(this.type))
|
|
|
|
spoints.push(Vector.reflect_point(spoints.at(-2), spoints.at(-1)));
|
|
|
|
|
|
|
|
for (var i = spoints.length-1; i >= 0; i--) {
|
2023-04-22 16:44:26 -05:00
|
|
|
var newpoint = spoints[i].slice();
|
|
|
|
newpoint.x = -newpoint.x;
|
|
|
|
spoints.push(newpoint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
if (this.flipy) {
|
2023-12-20 17:20:29 -06:00
|
|
|
if (Spline.is_bezier(this.type))
|
|
|
|
spoints.push(Vector.reflect(point(spoints.at(-2),spoints.at(-1))));
|
|
|
|
|
2023-04-22 16:44:26 -05:00
|
|
|
for (var i = spoints.length-1; i >= 0; i--) {
|
|
|
|
var newpoint = spoints[i].slice();
|
|
|
|
newpoint.y = -newpoint.y;
|
|
|
|
spoints.push(newpoint);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.hollow) {
|
2023-10-29 16:39:45 -05:00
|
|
|
var hpoints = inflate_cpv(spoints, spoints.length, this.hollowt);
|
|
|
|
if (hpoints.length === spoints.length) return spoints;
|
|
|
|
var arr1 = hpoints.filter(function(x,i) { return i % 2 === 0; });
|
|
|
|
var arr2 = hpoints.filter(function(x,i) { return i % 2 !== 0; });
|
|
|
|
return arr1.concat(arr2.reverse());
|
2023-04-22 16:44:26 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
return spoints;
|
|
|
|
},
|
|
|
|
|
2023-11-16 09:27:04 -06:00
|
|
|
setpoints(points) {
|
|
|
|
this.cpoints = points;
|
2023-12-27 07:04:18 -06:00
|
|
|
// this.sync();
|
2023-11-16 09:27:04 -06:00
|
|
|
},
|
|
|
|
|
2023-11-06 07:05:27 -06:00
|
|
|
post() {
|
|
|
|
this.cpoints = [];
|
|
|
|
},
|
|
|
|
|
2023-12-13 08:06:24 -06:00
|
|
|
sample() {
|
2023-10-12 17:05:49 -05:00
|
|
|
var spoints = this.spoints();
|
2023-12-13 08:06:24 -06:00
|
|
|
if (this.type === -1) {
|
|
|
|
if (this.looped) spoints.push(spoints[0]);
|
|
|
|
return spoints;
|
|
|
|
}
|
2023-12-13 19:53:09 -06:00
|
|
|
|
|
|
|
if (this.type === Spline.type.catmull) {
|
2023-12-18 06:45:27 -06:00
|
|
|
if (this.looped)
|
|
|
|
spoints = Spline.catmull_loop(spoints);
|
|
|
|
else
|
|
|
|
spoints = Spline.catmull_caps(spoints);
|
|
|
|
|
2023-12-13 19:53:09 -06:00
|
|
|
return Spline.sample_angle(this.type, spoints,this.angle);
|
2023-12-12 19:35:34 -06:00
|
|
|
}
|
2023-12-13 19:53:09 -06:00
|
|
|
|
2023-12-20 17:20:29 -06:00
|
|
|
if (this.looped && Spline.is_bezier(this.type))
|
|
|
|
spoints = Spline.bezier_loop(spoints);
|
|
|
|
|
2023-12-12 08:46:27 -06:00
|
|
|
return Spline.sample_angle(this.type, spoints, this.angle);
|
2023-09-27 17:40:04 -05:00
|
|
|
},
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2024-02-27 10:09:15 -06:00
|
|
|
boundingbox() { return bbox.frompoints(this.points.map(x => x.scale(this.gameobject.scale))); },
|
2023-09-27 17:40:04 -05:00
|
|
|
|
2023-10-16 09:40:43 -05:00
|
|
|
hides: ['gameobject', 'id', 'shape'],
|
2023-10-11 17:22:41 -05:00
|
|
|
_enghook: make_edge2d,
|
|
|
|
|
2023-05-27 07:01:17 -05:00
|
|
|
/* EDITOR */
|
2023-04-22 16:44:26 -05:00
|
|
|
gizmo() {
|
2023-12-27 10:34:14 -06:00
|
|
|
if (this.type === Spline.type.catmull || this.type === -1) {
|
2024-02-25 17:31:48 -06:00
|
|
|
this.spoints().forEach(x => render.point(this.gameobject.this2screen(x), 3, Color.teal));
|
2023-12-18 06:45:27 -06:00
|
|
|
this.cpoints.forEach((x,i) => Debug.numbered_point(this.gameobject.this2screen(x), i));
|
2023-12-15 12:45:09 -06:00
|
|
|
} else {
|
2023-12-18 06:45:27 -06:00
|
|
|
for (var i = 0; i < this.cpoints.length; i += 3)
|
|
|
|
Debug.numbered_point(this.gameobject.this2screen(this.cpoints[i]), i, Color.teal);
|
|
|
|
|
|
|
|
for (var i = 1; i < this.cpoints.length; i+=3) {
|
|
|
|
Debug.numbered_point(this.gameobject.this2screen(this.cpoints[i]), i, Color.green);
|
|
|
|
Debug.numbered_point(this.gameobject.this2screen(this.cpoints[i+1]), i+1, Color.green);
|
2024-02-25 17:31:48 -06:00
|
|
|
render.line([this.gameobject.this2screen(this.cpoints[i-1]), this.gameobject.this2screen(this.cpoints[i])], Color.yellow);
|
|
|
|
render.line([this.gameobject.this2screen(this.cpoints[i+1]), this.gameobject.this2screen(this.cpoints[i+2])], Color.yellow);
|
2023-12-15 12:45:09 -06:00
|
|
|
}
|
|
|
|
}
|
2023-04-22 16:44:26 -05:00
|
|
|
},
|
2023-05-27 07:01:17 -05:00
|
|
|
|
2023-12-18 06:45:27 -06:00
|
|
|
finish_center(change) { this.cpoints = this.cpoints.map(function(x) { return x.sub(change); }); },
|
2023-05-27 07:01:17 -05:00
|
|
|
|
2023-09-27 17:40:04 -05:00
|
|
|
pick(pos) {
|
2023-12-18 06:45:27 -06:00
|
|
|
var i = Gizmos.pick_gameobject_points(pos, this.gameobject, this.cpoints);
|
|
|
|
var p = this.cpoints[i];
|
2023-12-18 17:12:05 -06:00
|
|
|
if (!p) return undefined;
|
|
|
|
|
2023-12-27 10:34:14 -06:00
|
|
|
if (Spline.is_catmull(this.type) || this.type === -1)
|
2023-12-18 17:12:05 -06:00
|
|
|
return make_point_obj(this,p);
|
|
|
|
|
2023-12-18 06:45:27 -06:00
|
|
|
var that = this.gameobject;
|
|
|
|
var me = this;
|
|
|
|
if (p) {
|
|
|
|
var o = {
|
|
|
|
pos: p,
|
|
|
|
sync: me.sync.bind(me)
|
|
|
|
};
|
|
|
|
if (Spline.bezier_is_handle(this.cpoints,i))
|
|
|
|
o.move = function(d) {
|
|
|
|
d = that.dir_world2this(d);
|
|
|
|
p.x += d.x;
|
|
|
|
p.y += d.y;
|
|
|
|
Spline.bezier_cp_mirror(me.cpoints,i);
|
|
|
|
};
|
|
|
|
else
|
|
|
|
o.move = function(d) {
|
|
|
|
d = that.dir_world2this(d);
|
|
|
|
p.x += d.x;
|
|
|
|
p.y += d.y;
|
|
|
|
var pp = Spline.bezier_point_handles(me.cpoints,i);
|
|
|
|
pp.forEach(ph => me.cpoints[ph] = me.cpoints[ph].add(d));
|
|
|
|
}
|
|
|
|
return o;
|
|
|
|
}
|
2023-09-27 17:40:04 -05:00
|
|
|
},
|
2023-10-29 16:39:45 -05:00
|
|
|
|
2023-12-19 15:34:36 -06:00
|
|
|
rm_node(idx) {
|
|
|
|
if (idx < 0 || idx >= this.cpoints.length) return;
|
|
|
|
if (Spline.is_catmull(this.type))
|
|
|
|
this.cpoints.splice(idx,1);
|
|
|
|
|
|
|
|
if (Spline.is_bezier(this.type)) {
|
|
|
|
Debug.assert(Spline.bezier_is_node(this.cpoints, idx), 'Attempted to delete a bezier handle.');
|
|
|
|
if (idx === 0)
|
|
|
|
this.cpoints.splice(idx,2);
|
|
|
|
else if (idx === this.cpoints.length-1)
|
|
|
|
this.cpoints.splice(this.cpoints.length-2,2);
|
|
|
|
else
|
|
|
|
this.cpoints.splice(idx-1,3);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
add_node(pos) {
|
|
|
|
pos = this.gameobject.world2this(pos);
|
|
|
|
var idx = 0;
|
2023-12-27 10:34:14 -06:00
|
|
|
if (Spline.is_catmull(this.type) || this.type === -1) {
|
2023-12-19 15:34:36 -06:00
|
|
|
if (this.cpoints.length >= 2)
|
|
|
|
idx = cmd(59, pos, this.cpoints, 400);
|
|
|
|
|
|
|
|
if (idx === this.cpoints.length)
|
|
|
|
this.cpoints.push(pos);
|
|
|
|
else
|
|
|
|
this.cpoints.splice(idx, 0, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Spline.is_bezier(this.type)) {
|
|
|
|
idx = cmd(59, pos, Spline.bezier_nodes(this.cpoints),400);
|
2023-12-21 10:49:44 -06:00
|
|
|
|
2023-12-19 15:34:36 -06:00
|
|
|
if (idx < 0) return;
|
|
|
|
|
2023-12-21 10:49:44 -06:00
|
|
|
if (idx === 0) {
|
|
|
|
this.cpoints.unshift(pos.slice(), pos.add([-100,0]), Vector.reflect_point(this.cpoints[1], this.cpoints[0]));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (idx === Spline.bezier_node_count(this.cpoints)) {
|
|
|
|
this.cpoints.push(Vector.reflect_point(this.cpoints.at(-2), this.cpoints.at(-1)), pos.add([-100,0]), pos.slice());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
idx = 2 + (idx-1)*3;
|
|
|
|
var adds = [pos.add([100,0]), pos.slice(), pos.add([-100,0])];
|
|
|
|
this.cpoints.splice(idx, 0, ...adds);
|
2023-12-19 15:34:36 -06:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2023-10-29 16:39:45 -05:00
|
|
|
pick_all() {
|
|
|
|
var picks = [];
|
2023-12-19 15:34:36 -06:00
|
|
|
this.cpoints.forEach(x =>picks.push(make_point_obj(this,x)));
|
2023-10-29 16:39:45 -05:00
|
|
|
return picks;
|
|
|
|
},
|
2023-08-25 01:30:39 -05:00
|
|
|
});
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-10-31 08:31:56 -05:00
|
|
|
component.edge2d.impl = Object.mix({
|
2023-10-05 17:30:17 -05:00
|
|
|
set thickness(x) {
|
|
|
|
cmd_edge2d(1,this.id,x);
|
|
|
|
},
|
|
|
|
get thickness() { return cmd(112,this.id); },
|
|
|
|
sync() {
|
|
|
|
var sensor = this.sensor;
|
2023-12-13 08:06:24 -06:00
|
|
|
var points = this.sample();
|
2023-12-12 19:35:34 -06:00
|
|
|
if (!points) return;
|
2023-10-11 17:22:41 -05:00
|
|
|
cmd_edge2d(0,this.id,points);
|
2023-10-05 17:30:17 -05:00
|
|
|
this.sensor = sensor;
|
|
|
|
},
|
2023-10-31 08:31:56 -05:00
|
|
|
}, component.edge2d.impl);
|
2023-10-05 17:30:17 -05:00
|
|
|
|
2023-09-27 17:40:04 -05:00
|
|
|
var bucket = component.edge2d;
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.spoints.doc = "Returns the controls points after modifiers are applied, such as it being hollow or mirrored on its axises.";
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs = {};
|
2023-12-27 07:04:18 -06:00
|
|
|
//bucket.inputs.post = function() { this.sync(); };
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs.h = function() { this.hollow = !this.hollow; };
|
|
|
|
bucket.inputs.h.doc = "Toggle hollow.";
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.inputs['C-g'] = function() { if (this.hollowt > 0) this.hollowt--; };
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs['C-g'].doc = "Thin the hollow thickness.";
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.inputs['C-g'].rep = true;
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs['C-f'] = function() { this.hollowt++; };
|
|
|
|
bucket.inputs['C-f'].doc = "Increase the hollow thickness.";
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.inputs['C-f'].rep = true;
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.inputs['M-v'] = function() { if (this.thickness > 0) this.thickness--; };
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs['M-v'].doc = "Decrease spline thickness.";
|
|
|
|
bucket.inputs['M-v'].rep = true;
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.inputs['C-y'] = function() {
|
2023-10-12 17:05:49 -05:00
|
|
|
this.cpoints = this.spoints();
|
2023-08-25 01:30:39 -05:00
|
|
|
this.flipx = false;
|
|
|
|
this.flipy = false;
|
2023-10-29 16:39:45 -05:00
|
|
|
this.hollow = false;
|
2023-08-25 01:30:39 -05:00
|
|
|
};
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.inputs['C-y'].doc = "Freeze mirroring,";
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs['M-b'] = function() { this.thickness++; };
|
|
|
|
bucket.inputs['M-b'].doc = "Increase spline thickness.";
|
|
|
|
bucket.inputs['M-b'].rep = true;
|
|
|
|
|
2023-11-16 09:27:04 -06:00
|
|
|
bucket.inputs.plus = function() {
|
2023-12-13 08:06:24 -06:00
|
|
|
if (this.angle <= 1) {
|
|
|
|
this.angle = 1;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
this.angle *= 0.9;
|
2023-11-16 09:27:04 -06:00
|
|
|
};
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs.plus.doc = "Increase the number of samples of this spline.";
|
|
|
|
bucket.inputs.plus.rep = true;
|
|
|
|
|
2023-12-13 08:06:24 -06:00
|
|
|
bucket.inputs.minus = function() { this.angle *= 1.1; };
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs.minus.doc = "Decrease the number of samples on this spline.";
|
|
|
|
bucket.inputs.minus.rep = true;
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs['C-r'] = function() { this.cpoints = this.cpoints.reverse(); };
|
|
|
|
bucket.inputs['C-r'].doc = "Reverse the order of the spline's points.";
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-10-29 16:39:45 -05:00
|
|
|
bucket.inputs['C-l'] = function() { this.looped = !this.looped};
|
|
|
|
bucket.inputs['C-l'].doc = "Toggle spline being looped.";
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-12-18 06:45:27 -06:00
|
|
|
bucket.inputs['C-c'] = function() {
|
|
|
|
switch(this.type) {
|
|
|
|
case Spline.type.bezier:
|
|
|
|
this.cpoints = Spline.bezier2catmull(this.cpoints);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
this.type = Spline.type.catmull;
|
|
|
|
};
|
|
|
|
|
2023-12-13 08:06:24 -06:00
|
|
|
bucket.inputs['C-c'].doc = "Set type of spline to catmull-rom.";
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-12-18 06:45:27 -06:00
|
|
|
bucket.inputs['C-b'] = function() {
|
|
|
|
switch(this.type) {
|
|
|
|
case Spline.type.catmull:
|
|
|
|
this.cpoints = Spline.catmull2bezier(Spline.catmull_caps(this.cpoints));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
this.type = Spline.type.bezier;
|
|
|
|
};
|
2023-12-13 19:53:09 -06:00
|
|
|
|
2023-12-13 08:06:24 -06:00
|
|
|
bucket.inputs['C-o'] = function() { this.type = -1; };
|
|
|
|
bucket.inputs['C-o'].doc = "Set spline to linear.";
|
2023-10-29 16:39:45 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs['C-M-lm'] = function() {
|
2023-12-19 15:34:36 -06:00
|
|
|
if (Spline.is_catmull(this.type)) {
|
|
|
|
var idx = Math.grab_from_points(Mouse.worldpos, this.cpoints.map(p => this.gameobject.this2world(p)), 25);
|
|
|
|
if (idx === -1) return;
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
this.cpoints = this.cpoints.newfirst(idx);
|
|
|
|
};
|
|
|
|
bucket.inputs['C-M-lm'].doc = "Select the given point as the '0' of this spline.";
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-12-19 15:34:36 -06:00
|
|
|
bucket.inputs['C-lm'] = function() { this.add_node(Mouse.worldpos); }
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs['C-lm'].doc = "Add a point to the spline at the mouse position.";
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-11-17 15:16:13 -06:00
|
|
|
bucket.inputs['C-M-lm'] = function() {
|
2023-12-19 15:34:36 -06:00
|
|
|
var idx = -1;
|
|
|
|
if (Spline.is_catmull(this.type))
|
|
|
|
idx = Math.grab_from_points(Mouse.worldpos, this.cpoints.map(p => this.gameobject.this2world(p)), 25);
|
|
|
|
else {
|
|
|
|
var nodes = Spline.bezier_nodes(this.cpoints);
|
|
|
|
idx = Math.grab_from_points(Mouse.worldpos, nodes.map(p => this.gameobject.this2world(p)), 25);
|
|
|
|
idx *= 3;
|
|
|
|
}
|
2023-11-06 07:05:27 -06:00
|
|
|
|
2023-12-19 15:34:36 -06:00
|
|
|
this.rm_node(idx);
|
2023-08-25 01:30:39 -05:00
|
|
|
};
|
2023-11-17 15:16:13 -06:00
|
|
|
bucket.inputs['C-M-lm'].doc = "Remove point from the spline.";
|
|
|
|
|
|
|
|
bucket.inputs.lm = function(){};
|
|
|
|
bucket.inputs.lm.released = function(){};
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
bucket.inputs.lb = function() {
|
|
|
|
var np = [];
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
this.cpoints.forEach(function(c) {
|
|
|
|
np.push(Vector.rotate(c, Math.deg2rad(-1)));
|
|
|
|
});
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-08-25 01:30:39 -05:00
|
|
|
this.cpoints = np;
|
|
|
|
};
|
|
|
|
bucket.inputs.lb.doc = "Rotate the points CCW.";
|
|
|
|
bucket.inputs.lb.rep = true;
|
|
|
|
|
|
|
|
bucket.inputs.rb = function() {
|
|
|
|
var np = [];
|
|
|
|
|
|
|
|
this.cpoints.forEach(function(c) {
|
|
|
|
np.push(Vector.rotate(c, Math.deg2rad(1)));
|
|
|
|
});
|
|
|
|
|
|
|
|
this.cpoints = np;
|
|
|
|
};
|
|
|
|
bucket.inputs.rb.doc = "Rotate the points CW.";
|
|
|
|
bucket.inputs.rb.rep = true;
|
2023-04-22 16:44:26 -05:00
|
|
|
|
2023-09-20 17:58:18 -05:00
|
|
|
component.circle2d = Object.copy(collider2d, {
|
2023-10-04 17:57:37 -05:00
|
|
|
radius:10,
|
|
|
|
offset:[0,0],
|
|
|
|
toString() { return "circle2d"; },
|
|
|
|
|
2023-09-20 13:33:11 -05:00
|
|
|
boundingbox() {
|
2024-02-29 13:54:33 -06:00
|
|
|
return bbox.fromcwh(this.offset.scale(this.gameobject.scale), [this.radius,this.radius]);
|
2023-09-20 13:33:11 -05:00
|
|
|
},
|
2023-10-10 17:37:58 -05:00
|
|
|
|
|
|
|
hides: ['gameobject', 'id', 'shape', 'scale'],
|
|
|
|
_enghook: make_circle2d,
|
2023-09-20 17:58:18 -05:00
|
|
|
});
|
2023-05-01 20:58:10 -05:00
|
|
|
|
2023-10-31 08:31:56 -05:00
|
|
|
component.circle2d.impl = Object.mix({
|
2023-10-11 17:22:41 -05:00
|
|
|
set radius(x) { cmd_circle2d(0,this.id,x); },
|
|
|
|
get radius() { return cmd_circle2d(2,this.id); },
|
|
|
|
|
|
|
|
set scale(x) { this.radius = x; },
|
|
|
|
get scale() { return this.radius; },
|
|
|
|
|
|
|
|
set offset(x) { cmd_circle2d(1,this.id,x); },
|
|
|
|
get offset() { return cmd_circle2d(3,this.id); },
|
2023-12-21 10:49:44 -06:00
|
|
|
|
2024-03-01 11:45:06 -06:00
|
|
|
get pos() { return cmd_circle2d(3,this.id); },
|
|
|
|
set pos(x) { cmd_circle2d(1,this.id,x); },
|
2023-12-21 10:49:44 -06:00
|
|
|
|
2023-12-29 19:08:53 -06:00
|
|
|
}, collider2d.impl);
|
2024-02-27 10:09:15 -06:00
|
|
|
|
|
|
|
return {component};
|