Skip to content
Snippets Groups Projects
Commit 344d8e67 authored by rswindell's avatar rswindell
Browse files

Add a "sub_default" command-line option so a default avatar can be easily

imported, e.g.
jsexec avatars sub_default=/sbbs/text/avatars/silhouettes.bin
parent fee59b1d
No related branches found
No related tags found
No related merge requests found
......@@ -598,6 +598,7 @@ function main()
case "normalize":
case "count":
case "colls":
case "sub_default":
cmds.push(arg);
break;
default:
......@@ -772,6 +773,32 @@ function main()
printf("%s\r\n", success ? "Successful" : "FAILED!");
ini.close();
break;
case "sub_default":
if(!files.length)
files.push(optval[cmd]);
if(!files.length) {
alert("No file specified");
break;
}
if(!file_exists(files[0])) {
printf("File does not exist: %s\r\n", files[0]);
break;
}
printf("Importing %s sub-board default avatar\r\n", files[0]);
var data = lib.import_file(null, files[0], offset);
if(!data) {
alert("Failed");
break;
}
var ini = new File(file_cfgname(system.ctrl_dir, "modopts.ini"));
if(!ini.open(file_exists(ini.name) ? 'r+':'w+')) {
alert(ini.name + " open error " + ini.error);
break;
}
var success = ini.iniSetValue("avatars", "sub_default", data);
printf("%s\r\n", success ? "Successful" : "FAILED!");
ini.close();
break;
case "normalize":
var graphic = new Graphic(lib.defs.width, lib.defs.height);
if(files.length) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment