How do we make YAML suck less

I really do not like working with YAML. Every time I have to write or read a lot of YAML I fucking weep. The syntax just isn’t easy to glance over and feels like it’s mostly noise.

I’m just making this thread to brainstorm ideas.

Use a different language

YAML is both extremely flexible and also extremely restrictive at the same time. At the end of the day it’s based around a fixed set of 3 components: scalars, sequences, and mappings. This can represent a lot of data in many ways, but none really match how people think about it at a high level, I would suspect.

One alternative I’ve looked at is KDL, which didn’t even exist when we made SS14 use YAML years ago. Unlike YAML, its syntax is node-based, which may have some desirable aspects for us.

Take this simple prototype:

- type: entity
  id: FooBar
  parent: Baz
  name: Real?

  components:
  - type: DoesTheThing
  - type: AnotherThing
    property: value

In something like KDL, this could be represented as:

entity "Foobar" {
  parent "Baz"
  name "Real?"
  
  components {
    DoesTheThing
    AnotherThing property="value"
    // or alternatively
    AnotherThing {
      property "value"
    }
  }
}

I feel like this definitely has some benefits to readability:

  • Avoids syntax noise from specifying type: constantly
  • Prototype kind & ID are specified at the top of the prototype, always.
  • Components with no properties (or components with little) can be written much more compactly than in YAML.

That said, I’m not 100% sure on some of the more nuanced syntaxes we’d need to support, like !type:. This may require workshopping.

Furthermore, I’m not sure that this is enough of an improvement on its own to warrant migrating hundreds of thousands of lines of YAML.

Of course, there is always the option of “fuck it, we make our own thing”, but I do still understand that buying into an existing ecosystem like KDL provides some benefits for us.

Try to change YAML’s syntax

We could try to keep working with YAML by changing the exact syntax we use. I’m not sure there’s many options for us here though.

Enforce better code standards

I suspect many of the problems with YAML being hard to read are just due to lack of comments and similar styling, which something like KDL wouldn’t even necessarily fix. I personally try to put good effort into this myself, but we’d really need mechanical enforcement.

Fuck it, Robust Editor

We become a REAL GAME ENGINE and get a COOL FANCY editor that can represent the data. I’ll see you in 2030.

All joking aside, I do earnestly believe an “editor” would be great regardless of what language we use, even if we have a language server. I suspect there’s many manipulations that can be done much more efficiently with a well-made GUI.

Language server

Something we would ideally want regardless is a language server. It’d enable better syntax highlighting (allow us to highlight types etc in the code), which would likely help somewhat to make important aspects pop out more. But it still can’t fix core language issues.

I’m having this listed here as a “maybe this is good enough to make the other points moot.”

1 Like

We already have hot reloading if you full send an editor i think itll pay off in the long run and get people real interested in coding/contributing

3 Likes

Half the time spent in YAML review is purely making sure that all of the conventions are followed. Having a RobustEditor that formats everything properly, shows you what relates to what, etc. would be a huge benefit for contributors looking to contribute to the game. It would probably decrease the amount of time doing YAML review, with most of the time instead being spent on discussions (do we want x, y), rather than that + “does this actually work”.

2 Likes

Added robust-toolbox

I echo the same concerns that you bring up concerning the existing YAML. I do feel that it would take something like a DSL to eliminate most of the boilerplate.

KDL looks interesting, and I’m sure there are a plethora of other alternatives. One thing that might be a small factor is whether or not tools are available to work with this (e.g. in editors or workflows). The other factor is that we have a lot of people who are already familiar with YAML – there will probably be a lot of inertia making the switch.

Since we’re all still in the mood of April 1st, I’m going to semi-jokingly suggest another language particularly suited to implementing a DSL:

(defentity "Foobar"
  :parent "Baz"
  :name "Real?"
  :components (
    DoesTheThing
    (AnotherThing :property "value")))

Some people might be off-put but the parenthesis, but there are a lot of commercial Lisp systems (think Autodesk, Cadence) that hide this via an alternative syntax like:

defentity("Foobar"
  :parent "Baz"
  :name "Real?"
  :components (
    DoesTheThing
    (AnotherThing :property "value")))

Tooling, syntax highlighting, parsing, and a way to extend the language would already exist.

1 Like

I would rather die than entertain writing a Lisp unironically.

Having a Robust Editor would be amazing and would solve most problems I have when doing yaml reviews. Here my feature wishlist I mentioned before:

  • fixing formatting automatically or enforce it as you type
  • show all components and datafields a prototype has, including those from inheritance
  • ability to compare two protoypes and highlight their differences, similar to a git diff
  • show the default value for datafields without having to look it up in C#
  • give some kind of hint that you are overwriting instead of adding to some list datafields (often happens with tags)
  • show doc strings for components when you select them
  • warn you if something is redundant or already inherited from a parent
  • show an inheritance tree
  • run the yaml liner
  • warn you about invalid Ids, RSIs and audio files you are using
  • good and fast prototype/component search function

Since we have already have yaml hotreloading you could easily have this open at the same time as the game.

In general I really like yaml. It is very easy to read and it allows us to have a lot of contributors with almost no coding knowledge. I think using something more similar to a programming language as KDL could look scary in comparison with its curly braces.

3 Likes

Oh and slightly off-topic but somewhat connected: Can we add some kind of github action that checks for tabs instead of spaces, end of line whitespace as well as a new line at the end of the file?
Because every second yaml PR I review has some completely unrelated whitespace changes in it when an IDE fixed what someone else changed by using notepad instead.

Any possibility of using TOML or does it not cover some structures being used?
Losing the visible hierarchy would be a shame I suppose

A language server would be very helpful, at least for experienced contributors. Might not do much for novices though - it won’t cut down on the number of webedits.

It’s only available for VS Code, but I highly recommend this extension: Robust YAML - Visual Studio Marketplace

It does a number of the things slarti mentioned, like showing DataField descriptions and being able to jump to the component definition from the YAML.

there is an unofficial language server i found on github, dunno how useful it is: GitHub - Ertanic/robust-lsp: Language Server for Robust Toolbox

I personally think YAML is OK and its probably not worth the tradeoff of switching. I also think that having an editor or some kind of extension for rider/vs code would be amazing (for YAML or something else!).

I think a lot new new contrbs get scared thinking YAML is some crazy type of programing language, having a simple editor might ease them into it more.

I had thrown together a loose prototype for a tool that prompted you for particular fields for our YAMLs. I may be able to convert the bare bones of what I was doing into the beginning of a language server for our YAML implementation. I would need the support of the maintainers and other contributors, however.

Fundamentally unmaintainable as it’s in Rust instead of C#, sadly.

1 Like

(Offtopic, but I have to say it) Nik is closing in on your location. Better look out.

Huh?

EDIT: Oh, you were replying to someone. I’m still learning this particular forum interface.

Well, the language server would be plenty maintainable; perhaps many of the SS14 and Robust developers aren’t familiar with Rust, but there’s been more stirrings lately from the SS13 dev diaspora about BYOND’s shortcomings, and hilariously, many of them know Rust.

To me it would seem a creep of sovereign responsibility to argue against unofficially endorsing the language server in question because the SS14 devs aren’t familiar with Rust in order to maintain it; I mean, SpacemanDMM for BYOND is written in Rust!

To add context on why PJB said this

I think you’re seriously underestimating how masochistic and/or obsessed with “rewriting it in Rust” literally every Rust developer is.

Again, because it’s possible to do so does not mean it’s a good idea.

You are free to use this project, no one is stopping you. But to be an official project this will need to be made in c# for the sake of ease of maintenance. Not just by the maintainer team, but anyone coming into the project wanting to contribute. I like rust too, a lot of others do as well in the project and I want to learn it. But I would not enjoy having to install and learn another coding language because I wanted to fix a small bug in the LSP.

Also this currently needs you to run an external installation script for rider which is frankly a little sus (read the script, it’s fine, but I still would not tell people “Run this script trust me bro :3” officially. Preferbly this will work automatically when you clone the project but IDK if that’s how LSP’s work on rider.)

1 Like

The difference is that the BYOND community can’t use DM to build a language server because it’s plain unsuitable. This is not the case for C#, so the proper choice is obvious.