prosperon/scripts/entity.js

607 lines
14 KiB
JavaScript
Raw Normal View History

2023-09-08 12:35:06 -05:00
function grab_from_points(pos, points, slop) {
var shortest = slop;
var idx = -1;
points.forEach(function(x,i) {
if (Vector.length(pos.sub(x)) < shortest) {
shortest = Vector.length(pos.sub(x));
idx = i;
}
});
return idx;
};
var gameobject = {
save: true,
selectable: true,
2023-09-22 09:44:58 -05:00
ed_locked: false,
2023-09-08 12:35:06 -05:00
layer_nuke() {
Nuke.label("Collision layer");
Nuke.newline(Collision.num);
for (var i = 0; i < Collision.num; i++)
this.layer = Nuke.radio(i, this.layer, i);
},
draw_layer: 1,
draw_layer_nuke() {
Nuke.label("Draw layer");
Nuke.newline(5);
for (var i = 0; i < 5; i++)
this.draw_layer = Nuke.radio(i, this.draw_layer, i);
},
_visible: true,
get visible(){ return this._visible; },
set visible(x) {
this._visible = x;
for (var key in this.components) {
if ('visible' in this.components[key]) {
this.components[key].visible = x;
}
}
2023-09-22 09:44:58 -05:00
for (var key in this.$)
this.$[key].visible = x;
2023-09-08 12:35:06 -05:00
},
phys_nuke() {
Nuke.newline(1);
Nuke.label("phys");
Nuke.newline(3);
this.phys = Nuke.radio("dynamic", this.phys, 0);
this.phys = Nuke.radio("kinematic", this.phys, 1);
this.phys = Nuke.radio("static", this.phys, 2);
},
set_center(pos) {
var change = pos.sub(this.pos);
this.pos = pos;
for (var key in this.components) {
this.components[key].finish_center(change);
}
},
2023-09-20 13:33:11 -05:00
set_relpos(x) {
2023-09-08 12:35:06 -05:00
if (!this.level) {
this.pos = x;
return;
}
this.pos = Vector.rotate(x, Math.deg2rad(this.level.angle)).add(this.level.pos);
},
2023-09-20 13:33:11 -05:00
get_relpos() {
2023-09-08 12:35:06 -05:00
if (!this.level) return this.pos;
var offset = this.pos.sub(this.level.pos);
return Vector.rotate(offset, -Math.deg2rad(this.level.angle));
},
2023-09-20 13:33:11 -05:00
get_relangle() {
2023-09-08 12:35:06 -05:00
if (!this.level) return this.angle;
return this.angle - this.level.angle;
},
gizmo: "", /* Path to an image to draw for this gameobject */
width() {
var bb = this.boundingbox();
2023-09-08 12:35:06 -05:00
return bb.r - bb.l;
},
height() {
var bb = this.boundingbox();
2023-09-08 12:35:06 -05:00
return bb.t-bb.b;
},
2023-09-22 09:44:58 -05:00
save_obj() {
var json = JSON.stringify(this);
if (!json) return {};
var o = JSON.parse(json);
delete o.pos;
delete o.angle;
return o;
},
2023-09-08 12:35:06 -05:00
/* Make a unique object the same as its prototype */
revert() {
2023-09-22 09:44:58 -05:00
var save = this.save_obj();
for (var key in save)
this[key] = this.ur[key];
2023-09-08 12:35:06 -05:00
},
gui() {
var go_guis = walk_up_get_prop(this, 'go_gui');
Nuke.newline();
go_guis.forEach(function(x) { x.call(this); }, this);
for (var key in this) {
if (typeof this[key] === 'object' && 'gui' in this[key]) this[key].gui();
}
},
check_registers(obj) {
Register.unregister_obj(this);
if (typeof obj.update === 'function')
Register.update.register(obj.update, obj);
if (typeof obj.physupdate === 'function')
Register.physupdate.register(obj.physupdate, obj);
if (typeof obj.collide === 'function')
obj.register_hit(obj.collide, obj);
if (typeof obj.separate === 'function')
obj.register_separate(obj.separate, obj);
if (typeof obj.draw === 'function')
Register.draw.register(obj.draw,obj);
if (typeof obj.debug === 'function')
Register.debug.register(obj.debug, obj);
obj.components.forEach(function(x) {
if (typeof x.collide === 'function')
register_collide(1, x.collide, x, obj.body, x.shape);
});
},
instances: [],
get scale() { return cmd(103, this.body); },
set scale(x) {
var pct = x/this.scale;
cmd(36, this.body, x);
this.objects.forEach(function(obj) {
obj.scale *= pct;
obj.set_relpos(obj.get_relpos().scale(pct));
}, this);
},
get flipx() { return cmd(104,this.body); },
set flipx(x) {
cmd(55, this.body, x);
return;
this.objects.forEach(function(obj) {
obj.flipx = !obj.flipx;
var rp = obj.get_relpos();
obj.pos = [-rp.x, rp.y].add(this.pos);
obj.angle = -obj.angle;
},this);
},
get flipy() { return cmd(105,this.body); },
set flipy(x) {
cmd(56, this.body, x);
return;
this.objects.forEach(function(obj) {
var rp = obj.get_relpos();
obj.pos = [rp.x, -rp.y].add(this.pos);
obj.angle = -obj.angle;
},this);
},
2023-09-08 12:35:06 -05:00
set pos(x) {
var diff = x.sub(this.pos);
this.objects.forEach(function(x) { x.pos = x.pos.add(diff); });
set_body(2,this.body,x);
},
get pos() { return q_body(1,this.body); },
get angle() { return Math.rad2deg(q_body(2,this.body))%360; },
set angle(x) {
var diff = x - this.angle;
this.objects.forEach(function(x) {
x.angle = x.angle + diff;
var pos = x.pos.sub(this.pos);
var r = Vector.length(pos);
var p = Math.rad2deg(Math.atan2(pos.y, pos.x));
p += diff;
p = Math.deg2rad(p);
x.pos = this.pos.add([r*Math.cos(p), r*Math.sin(p)]);
}, this);
set_body(0,this.body, Math.deg2rad(x));
},
get elasticity() { return cmd(107,this.body); },
set elasticity(x) { cmd(106,this.body,x); },
get friction() { return cmd(109,this.body); },
set friction(x) { cmd(108,this.body,x); },
set mass(x) { set_body(7,this.body,x); },
get mass() { return q_body(5, this.body); },
set phys(x) { set_body(1, this.body, x); },
get phys() { return q_body(0,this.body); },
get velocity() { return q_body(3, this.body); },
set velocity(x) { set_body(9, this.body, x); },
get angularvelocity() { return Math.rad2deg(q_body(4, this.body)); },
set angularvelocity(x) { set_body(8, this.body, Math.deg2rad(x)); },
pulse(vec) { set_body(4, this.body, vec);},
push(vec) { set_body(12,this.body,vec);},
world2this(pos) { return cmd(70, this.body, pos); },
this2world(pos) { return cmd(71, this.body,pos); },
set layer(x) { cmd(75,this.body,x); },
get layer() { return 0; },
alive() { return this.body >= 0; },
in_air() { return q_body(7, this.body);},
on_ground() { return !this.in_air(); },
disable() { this.components.forEach(function(x) { x.disable(); });},
enable() { this.components.forEach(function(x) { x.enable(); });},
sync() { },
spawn(ur) {
if (typeof ur === 'string')
ur = prototypes.get_ur(ur);
if (!ur) Log.warn("Failed to make UR from " + ur);
return gameobject.make(ur, this);
},
/* Bounding box of the object in world dimensions */
boundingbox() {
var boxes = [];
boxes.push({t:0, r:0,b:0,l:0});
for (var key in this.components) {
if ('boundingbox' in this.components[key])
boxes.push(this.components[key].boundingbox());
}
for (var key in this.$)
boxes.push(this.$[key].boundingbox());
if (boxes.empty) return cwh2bb([0,0], [0,0]);
var bb = boxes[0];
boxes.forEach(function(x) {
bb = bb_expand(bb, x);
});
var cwh = bb2cwh(bb);
if (!bb) return;
if (this.flipx) cwh.c.x *= -1;
if (this.flipy) cwh.c.y *= -1;
cwh.c = cwh.c.add(this.pos);
bb = cwh2bb(cwh.c, cwh.wh);
return bb ? bb : cwh2bb([0,0], [0,0]);
},
json_obj() {
2023-09-26 13:34:02 -05:00
return JSON.parse(JSON.stringify(this));
},
2023-09-26 08:37:19 -05:00
make_ur() {
var thisur = this.json_obj();
thisur.pos = this.pos;
thisur.angle = this.angle;
2023-09-26 08:37:19 -05:00
return thisur;
},
2023-09-26 13:34:02 -05:00
transform() {
var t = {};
t.pos = this.pos;
t.angle = this.angle;
return t;
},
2023-09-26 08:37:19 -05:00
dup(diff) {
var n = this.level.spawn(this.ur);
Object.totalmerge(n, this.make_ur());
return n;
},
kill() {
if (this.body === -1) {
Log.warn(`Object is already dead!`);
return;
}
Register.endofloop(() => {
cmd(2, this.body);
delete Game.objects[this.body];
2023-09-20 13:33:11 -05:00
// if (this.level)
// this.level.unregister(this);
Player.uncontrol(this);
this.instances.remove(this);
Register.unregister_obj(this);
// Signal.clear_obj(this);
this.body = -1;
for (var key in this.components) {
Register.unregister_obj(this.components[key]);
this.components[key].kill();
}
this.objects.forEach(x => x.kill());
if (typeof this.stop === 'function')
this.stop();
});
},
up() { return [0,1].rotate(Math.deg2rad(this.angle));},
down() { return [0,-1].rotate(Math.deg2rad(this.angle));},
right() { return [1,0].rotate(Math.deg2rad(this.angle));},
left() { return [-1,0].rotate(Math.deg2rad(this.angle));},
reparent(parent) {
if (this.level === parent) return;
parent.objects.push(this);
if (this.level)
this.level.objects.remove(this);
this.level = parent;
},
make(ur, level) {
2023-09-20 13:33:11 -05:00
level ??= Primum;
var obj = Object.create(gameobject);
obj.body = make_gameobject();
obj.components = {};
obj.objects = [];
2023-09-20 13:33:11 -05:00
Game.register_obj(obj);
cmd(113, obj.body, obj); // set the internal obj reference to this obj
2023-09-08 12:35:06 -05:00
2023-09-21 19:51:38 -05:00
obj.$ = {};
obj.ur = ur;
obj.reparent(level);
2023-09-21 19:51:38 -05:00
for (var prop in ur) {
var p = ur[prop];
2023-09-21 12:50:39 -05:00
if (typeof p !== 'object') continue;
if ('ur' in p) {
2023-09-21 19:51:38 -05:00
obj[prop] = obj.spawn(prototypes.get_ur(p.ur));
obj.$[prop] = obj[prop];
2023-09-21 12:50:39 -05:00
} else if ('make' in p) {
obj[prop] = p.make(obj);
2023-09-21 12:50:39 -05:00
obj.components[prop] = obj[prop];
2023-09-21 19:51:38 -05:00
} else if ('comp' in p) {
obj[prop] = component[p.comp].make(obj);
2023-09-21 19:51:38 -05:00
obj.components[prop] = obj[prop];
}
2023-09-21 12:50:39 -05:00
};
2023-09-21 19:51:38 -05:00
Object.totalmerge(obj,ur);
2023-09-26 08:37:19 -05:00
obj.$.forEach(function(x) { x.pos = obj.pos.add(x.pos); });
obj.check_registers(obj);
2023-09-11 02:46:12 -05:00
if (typeof obj.start === 'function') obj.start();
2023-09-08 12:35:06 -05:00
return obj;
},
register_hit(fn, obj) {
if (!obj)
obj = this;
Signal.obj_begin(fn, obj, this);
},
register_separate(fn, obj) {
if (!obj)
obj = this;
Signal.obj_separate(fn,obj,this);
},
}
2023-09-20 13:33:11 -05:00
gameobject.toJSON = ur_json;
gameobject.ur = {
pos: [0,0],
scale:1,
flipx:false,
flipy:false,
angle:0,
elasticity:0.5,
friction:1,
mass:1,
velocity:[0,0],
angularvelocity:0,
layer: 0,
};
gameobject.entity = {};
/* Default objects */
var prototypes = {};
prototypes.ur = {};
prototypes.load_all = function()
{
if (IO.exists("proto.json"))
prototypes = JSON.parse(IO.slurp("proto.json"));
for (var key in prototypes) {
if (key in gameobjects)
Object.dainty_assign(gameobjects[key], prototypes[key]);
else {
/* Create this gameobject fresh */
Log.info("Making new prototype: " + key + " from " + prototypes[key].from);
var newproto = gameobjects[prototypes[key].from].clone(key);
gameobjects[key] = newproto;
for (var pkey in newproto)
if (typeof newproto[pkey] === 'object' && newproto[pkey] && 'clone' in newproto[pkey])
newproto[pkey] = newproto[pkey].clone();
Object.dainty_assign(gameobjects[key], prototypes[key]);
}
}
}
prototypes.save_gameobjects = function() { slurpwrite(JSON.stringify(gameobjects,null,2), "proto.json"); };
2023-09-26 13:34:02 -05:00
/* Makes a new ur-type from disk. If the ur doesn't exist, it searches on the disk to create it. */
prototypes.from_file = function(file)
{
2023-09-26 13:34:02 -05:00
var urpath = file;
2023-09-26 08:37:19 -05:00
var path = urpath.split('.');
2023-09-26 13:34:02 -05:00
if (path.length > 1 && (path.at(-1) === path.at(-2))) {
return prototypes.get_ur(path.at(-1));
}
2023-09-26 08:37:19 -05:00
var upperur = gameobject.ur;
2023-09-26 13:34:02 -05:00
2023-09-26 08:37:19 -05:00
if (path.length > 1) {
var upperpath = path.slice(0,-1);
upperur = prototypes.get_ur(upperpath.join('/'));
2023-09-26 13:34:02 -05:00
if (!upperur) {
Log.error(`Attempted to create an UR ${urpath}, but ${upperpath} is not a defined UR.`);
return undefined;
}
2023-09-26 08:37:19 -05:00
}
2023-09-26 08:37:19 -05:00
var newur = Object.create(upperur);
2023-09-26 13:34:02 -05:00
file = file.replaceAll('.','/');
2023-09-26 13:34:02 -05:00
var jsfile = file + ".js";
var jsonfile = file + ".json";
2023-09-26 13:34:02 -05:00
var script = undefined;
var json = undefined;
2023-09-26 13:34:02 -05:00
if (IO.exists(jsfile))
script = IO.slurp(jsfile);
else {
jsfile = urpath + "/" + path.at(-1) + ".js";
if (IO.exists(jsfile)) script = IO.slurp(jsfile);
}
if (IO.exists(jsonfile))
json = JSON.parse(IO.slurp(jsonfile));
else {
jsonfile = urpath + "/" + path.at(-1) + ".json";
if (IO.exists(jsonfile)) json = JSON.parse(IO.slurp(jsonfile));
}
2023-09-26 13:34:02 -05:00
if (!json && !script) {
Log.warn(`Could not make ur from ${file}`);
return undefined;
}
if (script)
compile_env(script, newur, file);
2023-09-26 13:34:02 -05:00
json ??= {};
Object.merge(newur,json);
prototypes.list.push(urpath);
2023-09-26 08:37:19 -05:00
newur.toString = function() { return urpath; };
2023-09-26 13:34:02 -05:00
ur[urpath] = newur;
2023-09-26 13:34:02 -05:00
return ur[urpath];
}
prototypes.from_file.doc = "Create a new ur-type from a given script file.";
prototypes.list = [];
prototypes.from_obj = function(name, obj)
{
var newobj = Object.copy(gameobject.ur, obj);
prototypes.ur[name] = newobj;
newobj.toString = function() { return name; };
return prototypes.ur[name];
}
prototypes.list_ur = function()
{
var list = [];
function list_obj(obj, prefix)
{
prefix ??= "";
var list = [];
for (var e in obj) {
list.push(prefix + e);
list.concat(list_obj(obj[e], e + "."));
}
return list;
}
return list_obj(ur);
}
2023-09-26 13:34:02 -05:00
prototypes.file2ur = function(file)
2023-09-26 08:37:19 -05:00
{
2023-09-26 13:34:02 -05:00
file = file.strip_ext();
2023-09-26 08:37:19 -05:00
file = file.replaceAll('/','.');
2023-09-26 13:34:02 -05:00
return file;
2023-09-26 08:37:19 -05:00
}
2023-09-26 13:34:02 -05:00
/* Returns an ur, or makes it, for any given type of path
could be a file on a disk like ball/big.js
could be an ur path like ball.big
*/
prototypes.get_ur = function(name)
{
2023-09-26 13:34:02 -05:00
var urpath = name;
if (urpath.includes('/'))
urpath = prototypes.file2ur(name);
if (!prototypes.ur[urpath]) {
var ur = prototypes.from_file(urpath);
Log.warn(`tried to make ${urpath}`);
if (ur)
return ur;
else {
2023-09-26 08:37:19 -05:00
Log.warn(`Could not find prototype using name ${name}.`);
return undefined;
}
} else
2023-09-26 13:34:02 -05:00
return prototypes.ur[urpath];
}
prototypes.generate_ur = function(path)
{
var ob = IO.glob("**.js");
2023-09-26 13:34:02 -05:00
ob = ob.concat(IO.glob("**.json"));
ob = ob.filter(function(path) { return path !== "game.js" && path !== "play.js" });
ob = ob.map(function(path) { return path.set_ext(""); });
ob.forEach(function(name) { prototypes.get_ur(name); });
}
var ur = prototypes.ur;
prototypes.from_obj("camera2d", {
phys: Physics.kinematic,
speed: 300,
get zoom() { return cmd(135); },
set zoom(x) {
x = Math.clamp(x,0.1,10);
cmd(62, x);
},
speedmult: 1.0,
selectable: false,
world2this(pos) { return cmd(70, this.body, pos); },
this2world(pos) { return cmd(71, this.body,pos); },
view2world(pos) {
return cmd(137,pos);
},
world2view(pos) {
return cmd(136,pos);
},
});
prototypes.from_obj("arena", {});