1.15: Initial port.
This commit is contained in:
parent
7055adf985
commit
a733e39c51
1028 changed files with 31668 additions and 3 deletions
61
1.15/meta/lib/halfslab_assets.js
Normal file
61
1.15/meta/lib/halfslab_assets.js
Normal file
|
@ -0,0 +1,61 @@
|
|||
#!/usr/bin/djs
|
||||
// run from tasks.js directory
|
||||
"use strict";
|
||||
(function(constants, libassets){
|
||||
const me = {};
|
||||
const modid = constants.mod_registry_name();
|
||||
const assets_root = constants.local_assets_root();
|
||||
const hexchar = ['0','1','2','3','4','5','6','7','8','9','a','b','c','d','e']; // ('a'+parts) won't work so here we go
|
||||
|
||||
const create_item_model = function(prefix, texture) {
|
||||
const model = {
|
||||
parent: modid+":block/slab/generic/halfslab_inventory_model",
|
||||
textures: { all: texture }
|
||||
}
|
||||
const path = "models/item/halfslab_"+prefix+".json";
|
||||
if(!fs.writefile(path, JSON.stringify(model))) {
|
||||
throw new Error("Failed to write item model file '"+ path +"'");
|
||||
}
|
||||
};
|
||||
|
||||
const create_block_models = function(prefix, texture) {
|
||||
for(var parts=0; parts<15; ++parts) {
|
||||
const model = {
|
||||
parent: modid+":block/slab/generic/halfslab_s"+hexchar[parts]+"_model",
|
||||
textures: { all:texture }
|
||||
}
|
||||
const path = "models/block/slab/specific/halfslab_"+prefix+"_s"+hexchar[parts]+"_model.json";
|
||||
if(!fs.writefile(path, JSON.stringify(model))) {
|
||||
throw new Error("Failed to write model file '"+ path +"'");
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const create_blockstate = function(prefix) {
|
||||
var variants = {};
|
||||
for(var parts=0; parts<15; ++parts) {
|
||||
variants[ ("parts="+parts).replace(/[\s]/g,"") ] = {
|
||||
model: (modid+":block/slab/specific/halfslab_"+prefix+"_s"+hexchar[parts]+"_model").replace(/[\s]/g,"")
|
||||
}
|
||||
}
|
||||
const path = "blockstates/halfslab_"+prefix+".json";
|
||||
if(!fs.writefile(path, JSON.stringify({variants:variants},null,1))) throw new Error("Failed to write blockstate '"+path+"'");
|
||||
return path;
|
||||
};
|
||||
|
||||
me.create = function(data) {
|
||||
const here = fs.cwd()
|
||||
const registry_name_prefix = data.name_prefix;
|
||||
const texture = data.texture;
|
||||
if(!fs.chdir(assets_root)) throw new Error("Could not switch to assets root folder: '" + assets_root + "'");
|
||||
try {
|
||||
create_block_models(registry_name_prefix, texture);
|
||||
create_item_model(registry_name_prefix, texture);
|
||||
create_blockstate(registry_name_prefix, texture);
|
||||
} finally {
|
||||
fs.chdir(here);
|
||||
}
|
||||
}
|
||||
Object.freeze(me);
|
||||
return me;
|
||||
});
|
64
1.15/meta/lib/slab_assets.js
Normal file
64
1.15/meta/lib/slab_assets.js
Normal file
|
@ -0,0 +1,64 @@
|
|||
#!/usr/bin/djs
|
||||
// run from tasks.js directory
|
||||
"use strict";
|
||||
(function(constants, libassets){
|
||||
const me = {};
|
||||
const modid = constants.mod_registry_name();
|
||||
const assets_root = constants.local_assets_root();
|
||||
|
||||
const create_item_model = function(prefix, texture_prefix) {
|
||||
const model = {
|
||||
parent: modid+":block/slab/generic/slab_inventory_model",
|
||||
textures: { all: modid+":block/"+texture_prefix+"0" }
|
||||
}
|
||||
const path = "models/item/"+prefix+"_slab.json";
|
||||
if(!fs.writefile(path, JSON.stringify(model))) {
|
||||
throw new Error("Failed to write item model file '"+ path +"'");
|
||||
}
|
||||
};
|
||||
|
||||
const create_block_models = function(prefix, texture_prefix) {
|
||||
for(var parts=0; parts<3; ++parts) {
|
||||
for(var tvariant=0; tvariant<4; ++tvariant) {
|
||||
const model = {
|
||||
parent: modid+":block/slab/generic/slab_s"+parts+"_model",
|
||||
textures: { all: modid+":block/"+texture_prefix+tvariant }
|
||||
}
|
||||
const path = "models/block/slab/specific/"+prefix+"_slab_s"+parts+"v"+tvariant+"_model.json";
|
||||
if(!fs.writefile(path, JSON.stringify(model))) {
|
||||
throw new Error("Failed to write model file '"+ path +"'");
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const create_blockstate = function(prefix) {
|
||||
var variants = {};
|
||||
for(var parts=0; parts<3; ++parts) {
|
||||
for(var tvariant=0; tvariant<4; ++tvariant) {
|
||||
variants[ ("parts="+parts+",tvariant="+tvariant).replace(/[\s]/g,"") ] = {
|
||||
model: (modid+":block/slab/specific/"+prefix+"_slab_s"+parts+"v"+tvariant+"_model").replace(/[\s]/g,"")
|
||||
}
|
||||
}
|
||||
}
|
||||
const path = "blockstates/"+prefix+"_slab.json";
|
||||
if(!fs.writefile(path, JSON.stringify({variants:variants},null,1))) throw new Error("Failed to write blockstate '"+path+"'");
|
||||
return path;
|
||||
};
|
||||
|
||||
me.create = function(prefixes) {
|
||||
const here = fs.cwd()
|
||||
const registry_name_prefix = prefixes.name_prefix;
|
||||
const texture_prefix = prefixes.texture_prefix;
|
||||
if(!fs.chdir(assets_root)) throw new Error("Could not switch to assets root folder: '" + assets_root + "'");
|
||||
try {
|
||||
create_block_models(registry_name_prefix, texture_prefix);
|
||||
create_item_model(registry_name_prefix, texture_prefix);
|
||||
create_blockstate(registry_name_prefix, texture_prefix);
|
||||
} finally {
|
||||
fs.chdir(here);
|
||||
}
|
||||
}
|
||||
Object.freeze(me);
|
||||
return me;
|
||||
});
|
10
1.15/meta/update.json
Normal file
10
1.15/meta/update.json
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"homepage": "https://www.curseforge.com/minecraft/mc-mods/engineers-decor/",
|
||||
"1.15.1": {
|
||||
"1.0.17-b2": "[A] Initial port."
|
||||
},
|
||||
"promos": {
|
||||
"1.15.1-recommended": "",
|
||||
"1.15.1-latest": "1.0.17-b2"
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue