mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-06-16 05:13:58 -07:00
Up to now `eslint-plugin-brace-rules` was used to enforce a common brace style for JavaScript code. This plugin was however updated the last time over 9 years ago and will be incompatible with ESLint v10, as that [removes `context.getSourceCode()`][1], the plugin relies on. To keep the eslint config working with ESLint v10, this replaces `eslint-plugin-brace-rules` with the [`@stylistic/brace-style`][2] rule from `@stylistic/eslint-plugin`, a package we already use. While `@stylistic/brace-style` doesn't offer an option to format braces in exactly the same way as before, the "allman" style seems to be the one closest to the existing code. [1]: https://eslint.org/blog/2025/11/eslint-v10.0.0-alpha.0-released/#removed-deprecated-rule-context-members [2]: https://eslint.style/rules/brace-style
120 lines
2.4 KiB
JavaScript
120 lines
2.4 KiB
JavaScript
function TestScript1_values() {}
|
|
|
|
TestScript1_values.prototype.Init = function()
|
|
{
|
|
this.x = +this.template.x;
|
|
this.str = "this is a string";
|
|
this.things = { "a": 1, "b": "2", "c": [3, "4", [5, []]] };
|
|
};
|
|
|
|
TestScript1_values.prototype.GetX = function()
|
|
{
|
|
// print(uneval(this));
|
|
return this.x;
|
|
};
|
|
|
|
Engine.RegisterComponentType(IID_Test1, "TestScript1_values", TestScript1_values);
|
|
|
|
// -------- //
|
|
|
|
function TestScript1_entity() {}
|
|
|
|
TestScript1_entity.prototype.GetX = function()
|
|
{
|
|
// Test that .entity is readonly
|
|
try
|
|
{
|
|
delete this.entity;
|
|
Engine.TS_FAIL("Missed exception");
|
|
}
|
|
catch(e) { /* OK */ }
|
|
try
|
|
{
|
|
this.entity = -1;
|
|
Engine.TS_FAIL("Missed exception");
|
|
}
|
|
catch(e) { /* OK */ }
|
|
|
|
// and return the value
|
|
return this.entity;
|
|
};
|
|
|
|
Engine.RegisterComponentType(IID_Test1, "TestScript1_entity", TestScript1_entity);
|
|
|
|
// -------- //
|
|
|
|
function TestScript1_nontree() {}
|
|
|
|
TestScript1_nontree.prototype.Init = function()
|
|
{
|
|
var n = [1];
|
|
this.x = [n, n, null, { "y": n }];
|
|
this.x[2] = this.x;
|
|
};
|
|
|
|
TestScript1_nontree.prototype.GetX = function()
|
|
{
|
|
// print(uneval(this)+"\n");
|
|
this.x[0][0] += 1;
|
|
return this.x[0][0] + this.x[1][0] + this.x[2][0][0] + this.x[3].y[0];
|
|
};
|
|
|
|
Engine.RegisterComponentType(IID_Test1, "TestScript1_nontree", TestScript1_nontree);
|
|
|
|
// -------- //
|
|
|
|
function TestScript1_custom() {}
|
|
|
|
TestScript1_custom.prototype.Init = function()
|
|
{
|
|
this.y = 2;
|
|
};
|
|
|
|
TestScript1_custom.prototype.Serialize = function()
|
|
{
|
|
return { "c": 1 };
|
|
};
|
|
|
|
TestScript1_custom.prototype.Deserialize = function(data)
|
|
{
|
|
this.c = data.c;
|
|
};
|
|
|
|
Engine.RegisterComponentType(IID_Test1, "TestScript1_custom", TestScript1_custom);
|
|
|
|
// -------- //
|
|
|
|
function TestScript1_getter() {}
|
|
|
|
TestScript1_getter.prototype.Init = function()
|
|
{
|
|
this.x = 100;
|
|
this.__defineGetter__('x', function() { print("FAIL\n"); die(); return 200; });
|
|
};
|
|
|
|
Engine.RegisterComponentType(IID_Test1, "TestScript1_getter", TestScript1_getter);
|
|
|
|
// -------- //
|
|
|
|
function TestScript1_consts() {}
|
|
|
|
TestScript1_consts.prototype.Schema = "<ref name='anything'/>";
|
|
|
|
TestScript1_consts.prototype.Init = function()
|
|
{
|
|
this.cached = (+this.entity) + (+this.template.x);
|
|
};
|
|
|
|
TestScript1_consts.prototype.Serialize = null;
|
|
|
|
TestScript1_consts.prototype.Deserialize = function(data)
|
|
{
|
|
this.Init();
|
|
};
|
|
|
|
TestScript1_consts.prototype.GetX = function()
|
|
{
|
|
return this.cached;
|
|
};
|
|
|
|
Engine.RegisterComponentType(IID_Test1, "TestScript1_consts", TestScript1_consts);
|