User hardcoded scripts
-
It should be fixed in the latest commits:
- added support for multiple inclusion of script files · christophhart/HISE@7600b30
The open source framework for sample based instruments - - added support for multiple inclusion of script files · christophhart/HISE@7600b30
GitHub (github.com)
[link text](link url)
-
The multi-inclusion seems to be working well, I like that it gives a notice in the console, but that isn't really the issue with my post in this thread :)
-
That's embarrassing, I was only reading your last post and thought it was the other thread :)
I have another proposition: How about a "CompressedScriptProcessor", that includes every external dependency but GZIPs the script into a binary file (or base64 encoded string just like the web snippet string)? You can then just distribute this file and it should contain everything to run.
It won't be any sort of copy protection if that's what you're after though...
-
That sounds like a good solution. Copy protection isn't an issue as I think they should be open source so developers can adapt them to their own projects. Would it include everything in the external files or just the functions that are used by the "main" script? Would it be able to resolve absolute file paths or will that end user have to sort that out?
-
It would include everything (also absolute files). I don't know if its necessary to strip unneeded stuff, normally GZIP can reduce the size of text files pretty good (i could make some tinyfing operations like removing comments and whitespace before that).
-
I think comments and formatting should be left in, or their removal should be optional.
-
Making it optional it is :)
-
Alright I implemented a minimal solution:
- You can export and compress a script using the context menu of the editor (Export as compressed script). It replaces all include statements with the actual file content (and skips multiple inclusions), then compresses it with GZIP and saves it to a custom file with the ending
.cjs
( = compressed javascript ) in the project's script folder. This file should contain everything that the script needs. - You can import a compressed script, also using the editor's context menu (Import compressed script). Select a file and it will load it like a uncompressed script.
From this point on it will behave like a normal script - however everything that was included before is now written into the
onInit
callback, so it will bloat the preset size if you have a big include file for everything that will be duplicated for every script (in this case I'd recommend increasing the modularity of your file layout to reduce the amount of unnecessarily included code). Also the script is just as visible to the user as the uncompressed version - it just makes sharing easier.This is highly expermental - I only tested it with some minimal examples, so let me know if there are issues.
- You can export and compress a script using the context menu of the editor (Export as compressed script). It replaces all include statements with the actual file content (and skips multiple inclusions), then compresses it with GZIP and saves it to a custom file with the ending
-
Update: I added removal of unneeded namespaces before compressing. If a namespace isn't mentioned anywhere outside its definition, it will be removed. This also handles referencing within namespaces, so this code:
namespace firstUnusedSpace { reg a = 5; } namespace secondUnusedSpace { reg b = firstUnusedSpace.a; } Console.print("Empty");
will be truncated to the last line even if the first namespace gets referenced.
-
This looks awesome, I shall try it out soon. Thanks :) you work very quickly!