-
Notifications
You must be signed in to change notification settings - Fork 191
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New Command 2055 - Process JSON Code #3215
base: master
Are you sure you want to change the base?
Conversation
Hm... neat idea. I was just thinking about how it would be nice to have a special storage type for user defined structs. So, a possible solution for the freezes would be of course, to subclass this base storage for a new JSON type and use it to keep the data in memory. This would have the upside of already having access to all the common mechanisms (Get, Set, Range operations, Validation, Load&Save, special operations for "scoped" variables...) for the different data types without any extra implementation. |
@florianessl huh, thats cool! Your idea seems to be more solid, though I don't have the knowledge to make it work. |
I like this idea. But I think this needs an extra argument to reason about the "data type". So the code knows whether to read/write from an int variable or a string variable. Is currently a bit ambiguous (and sometimes you want that a number lands in a string directly). You almost implemented JSON Path for the lookup. Was this intentional? https://goessner.net/articles/JsonPath/ JSON path is supported by certain libraries, so no need to implement this manually :). I'm not sure if picojson supports this. Picojson actually only exists because it is a single header and is only used in emscripten. For any more serious work we can switch to any other JSON library. For tools we e.g. use nlohmann json. For performance we could do some simple caching of a "json object" in memory in the String class to make this faster the first time this command is used. |
@Ghabry right now my outputs are always string. There are ways on strvars to parse them as int later. But reducing the amount of steps as you suggested may be the better approach. PicoJson was kinda rejected on the stuff I researched. I kept it because it was already used. I'm leaning towards florianessi suggestions. Seems a proper evolution to what I proposed. |
Okay then I will mark this as a draft first as it depends on work of @florianessl . Before we do the same work twice. ^^ |
3d444dc
to
f98c9fc
Compare
OK @Ghabry, I guess this doesn't have PR dependencies, since I won't work directly with Florian's code by now. I'm having a problem compiling this in some platforms. Looks like some versions of easyRPG supports this by default: Others (android, web, ubuntu, etc) can't find it. How can I proceed? |
This needs a detection in the build system because not all platforms have this library by default. I will add a detection for you in ~1 day. |
FYI: Because this is an optional dependency to make this work after #3228 is merged you must edit your files (see e.g. Header: LICENSE
#ifndef
#define
#include "system.h" <- NEW
#ifdef HAVE_NLOHMANN_JSON <- NEW
[...] all the code here
#endif <- NEW
#endif Source: LICENSE
#include "json_helper.h"
#ifdef HAVE_NLOHMANN_JSON <- NEW
[...] all the other includes and code here
#endif <- NEW In // Inside JsonCommand
#ifndef HAVE_NLOHMANN_JSON
Output::Warning("CommandProcessJson: JSON not supported on this platform");
return true;
#else
All the normal event code here
#endif |
also Update Makefile.am
b9cd98a
to
85e9ac9
Compare
Rebased and no longer "Draft". |
85e9ac9
to
368bbac
Compare
It's a bit faster and now you can tell if the target output is Switch, Variable, or StringVar. Update game_message.cpp
368bbac
to
98e716f
Compare
This command allows you to Get or Set values inside a JSON string.
(Requires Maniacs Patch)
The syntax always comes in pairs. The first parameter of each pair indicates whether you are using a direct value or a variable/indirect variable, through ValueOrVariable().
Syntax (TPC):
Get Example:
"d"
from the JSON data{"a":{"b":{"c":[{"d":"result"},"not_result"]}}}
and store it in the string variable withID 1
.Set Example:
"d"
in the JSON data stored in the string variable withID 5
, using the value from the string variable withID 2
.This command works nice until you deal with a json string with more than 2mb:
Every time I call it, the engine freezes for some frames.
That may happen due to how I keep parsing and deleting entire JSON objects every time I call it. Maybe there's a way to keep it stored in memory for some time, to deal with multiple calls in sequence.
Here's a JSON file I used for testing bigger strings:
JSONdatabase.txt