GithubHelp home page GithubHelp logo

legacyeditor's Introduction

LegacyEditor

The Character builder for Project TUSSLE

This document is still in the process of being finalized and might be missing information

The purpose of this program is to be a front-end UI for generating fighters for Project TUSSLE. It can read and write the various TUSSLE data formats for fighters, actions, and articles. It organizes the data into sensible groupings and provides features such as drag-and-drop reorganization, drop-down variable selection, and auto-complete.

The Editor uses Electron to take advantage of the wealth of styling and compatibility options available with a web-based framework.

TUSSLE Info Files

The Editor deals with TUSSLE's Info files, which are JSON-serialized Unity classes. As a web-based framework, The Editor can operate on these files as Javascript Objects. These objects will often refer to each other using relative pathing.

graph TD;
    FighterInfo[Fighter Info]-->SpriteInfo[Sprite Info];
    FighterInfo-->ActionInfo;
    SpriteInfo-->Animation(Animation);
    Animation-->ImageInfo(Image Definition);
    ActionInfo[Action Info]-->Action(Action);
    Action-->SetUp;
    Action-->Transitions;
    Action-->BeforeFrame;
    Action-->OnFrame(OnFrame);
    Action-->AfterFrame;
    Action-->LastFrame;
    Action-->TearDown;
    FighterInfo-->Article(Article);
    Article-->ActionInfo;
    SetUp-->s1(Subaction);
    Transitions-->s2(Subaction);
    BeforeFrame-->s3(Subaction);
    OnFrame-->s4(Subaction);
    AfterFrame-->s5(Subaction);
    LastFrame-->s6(Subaction);
    TearDown-->s7(Subaction);
Loading

Viewing this on GitHub? Install GitHub+Mermaid to view this chart in-browser.

The above diagram describes the relationship of the various JSON serializable objects. Rounded rectangles represent a has-many relationship (example: the "Animation" box is rounded to show that there are many animations in a Sprite Info, and the Image Definition is rounded to show there are many Image Definitions in an Animation)

TODO create a list of every info file and all of their fields

Contributing

To get set up with contributing to the project or on how to report bugs, please see the Contributing Document

legacyeditor's People

Contributors

digiholic avatar

Watchers

 avatar  avatar  avatar

Forkers

mwaitzman

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.