Jsona, stylised as JSONa, is a JSON parser for AngelScript in Sven Co-op.
This is a library for other AngelScript plugins in Sven Co-op. In other words, this is NOT a plugin itself, so you don't really install it. It's actually USED by plugins.
JSONa could parse a JSON string into objects that AngelScript recognizes, and you're able to modify them, then stringify them back into a JSON string. Sounds simple, right? That is the way it should be, and glad it is.
Jsona tokenizes a JSON string into a lot of tokens (basically split the string into words) with JsonaTokenizer, and parses the tokens to values that they're meant to be, which is stored with JsonaValue - since AngelScript is static typed, and you need to know in which type a value is.
Jsona
in /svencoop/scripts/plugins
./svencoop/scripts/plugins/Jsona
.See Wiki For more info.