Schemas for objects used in the ARENA.
There are a handful of scripts and run commands that can update scripts and generate intermediate json schema and markdown documents:
Step 1. This will take a source directory, like the arena-web-core build directory and parse it's [src]/schemas/ for arena-schema-files.json to output expanded json schema in our local schema dir ./schemas/, removing older .json schema files if needed.
make update src=~/git/arena-services-docker/arena-web-core/build/schemasStep 2. This will take the expanded json schema in our local schema dir ./schemas/, and generate formatted tables of schema in Markdown format linked together with descriptions in our local markdown output folder ./docs, removing older .md Markdown files if needed.
make docsStep 3. This will take a destination directory where jekyll Markdown should be created. It will use ./schemas/arena-schema-files.json to generate an index.md file and copy it and all of the .md in ./docs to [dst]/. The process will add the appropriate Jekyll preamble to the beginning of the destination .md files.
make jekyll dst=~/git/arena-docs/content/schemas/messageThis will read directly from your src directory of message schema (usually arena-web-core/build), and update the your local arena-py repo at the dst location. It will generate missing classes in Python, and update only the first docstring of any existing Python classes.
make py src=~/git/arena-services-docker/arena-web-core/build dst=~/git/arena-py/arenaThis will read directly from your src directory of message schema (usually arena-web-core/build), and update the your local arena-unity repo at the dst location. It will overwrite the entire folder and write the JSON serialization classes for the entire schema in .NET C# for Unity.
make dotnet src=~/git/arena-services-docker/arena-web-core/build dst=~/git/arena-unity/Runtime/Schemasmake update src=~/git/arena-services-docker/arena-web-core/build
make docs
make jekyll dst=~/git/arena-docs/content/schemas/message
make py src=~/git/arena-services-docker/arena-web-core/build dst=~/git/arena-py/arena
make dotnet src=~/git/arena-services-docker/arena-web-core/build dst=~/git/arena-unity/Runtime/Schemas