Skip to content

Instantly share code, notes, and snippets.

@JimmyCushnie
Last active December 13, 2021 14:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JimmyCushnie/7dae698c92a900f2e530668740c20ca2 to your computer and use it in GitHub Desktop.
Save JimmyCushnie/7dae698c92a900f2e530668740c20ca2 to your computer and use it in GitHub Desktop.

Blotter File Format - v5 - Draft 0

Subject to change

The Blotter File Format, successor to the format known as ".tung files", is a system for storing the components and wires of a Logic World world. It is used for both full world saves as well as subassemblies, but there are slight differences between the two.

File types

  • World files:
    • Represent a full, playable world space
    • Potentially have multiple root components at different positions/rotations in the world
    • Use .logicworld file extension
    • All circuit states are stored contiguously, from circuit state 0 through the highest state.
  • Subassembly files:
    • Represent a substructure within a playable world space; can be loaded and added to a world at arbitrary position/rotation
    • Contain a single root component
    • Use .lwsubassembly file extension
    • Has a list of circuit state indexes that are On. All indexes not listed here are inferred as being Off.

File structure

The "Save Info" data is at the beginning of the file so that it is easy to extract as metadata. This is done by the game itself in a few places, as well as logicworld.net when uploading a save there.

Header and footer

Header

The first 16 bytes of every Blotter file are 4C-6F-67-69-63-20-57-6F-72-6C-64-20-73-61-76-65, which is UTF-8 for “Logic World save”.

Footer

The final 16 bytes of every Blotter file are 72-65-64-73-74-6F-6E-65-20-73-75-78-20-6C-6F-6C , which is UTF-8 for “redstone sux lol”.

The header and footer exist to protect against save corruption. If the file does not have them, we know that something is wrong with the file.

Save Format Version

One byte specifies the save format version. Currently this is 05.

Game version

Blotter files store the game version they were saved in. Logic World versions contain four numbers (i.e. 1.0.3.1069). These four numbers are written to the file in order, each as a 4-byte int. Thus, 4x4 bytes = 16 bytes for this.

Save type

There are two types of file that use the Blotter format, worlds and subassemblies. One byte specifies which type of file this is.

Byte Meaning
00 Unknown/error
01 World
02 Subassembly

Component and wire counts

Here there are two ints. The first specifies the number of components in the save, the second specifies the number of wires.

Component IDs Map

When humans add component types to Logic World, they use text IDs like MHG.CircuitBoard. To make save files and network packets small in size, the game internally uses numeric IDs to reference component types. The relationship between text IDs and numeric IDs is not deterministic or consistent between different save files, so the map from text IDs to numeric IDs must be stored with the save.

First we write an int for the number of component IDs in this file.

One by one the mappings are written to the file:

  • A 2-byte unsigned integer for the numeric ID
  • An int for the number of bytes in the text ID
  • The bytes of the text ID, as UTF-8

Components data

One by one, every component is listed in the file. The first component must be a root component -- i.e. have an address of C-0 for its parent -- and every subsequent component must have a parent that was listed before it.

World files may have multiple root components, at different positions & rotations within the world. Subassembly files must have only one root component, which can explicitly have any arbitrary position/rotation.

It is explicitly okay to have a world file with no components in it (i.e. an empty world). However, a subassembly file must have at least one component.

Each component is written like so:

  • The component address of this component

  • The component address of the component's parent

  • 2 bytes for the numeric ID of the component's type (see Component IDs Map)

  • Three floats for the local position of the component; x y z

  • Four floats for the local rotation of the component as a quaternion; x y z w

  • Information about the component's inputs:

    • 1 byte for the number of inputs the component has
    • For each input:
      • A boolean for exclusivity, where false means an unexclusive input and true means an exclusive input
      • An int for the input's circuit state ID
  • Information about the component's outputs:

    • 1 byte for the number of outputs the component has
    • For each output:
      • An int for the output's circuit state ID
  • The component's custom data:

    • An int for the number of bytes in the custom data
    • All the bytes of the custom data, in order

Wires data

One by one, every wire is listed in the file.

  • The peg address of the wire's first point
  • The peg address of the wire's second point
  • An int for the wire's circuit state ID
  • A float for the wire's rotation, relative to the default rotation it would have

We do not need to save wire addresses; nothing in the save file needs to reference them, and there is no need for them to be consistent between save loads. Instead, wire addresses are dynamically assigned when the save is loaded.

Circuit states

We've saved the circuit state IDs of all the pegs and wires in the save. Now we need to save the values of those state IDs, so states can be looked up.

A state is either on or off. At runtime, the game stores all circuit states from zero through the highest state in a contiguous block of memory.

World files

Worlds are large, and generally use most circuit states, starting from state 0. All circuit states are listed.

  • First an int for the number of bytes in this sequence
  • Then, that number of bytes. Each bit represents the value of the next circuit state; each byte contains 8 states.
    • If, when saving the game, the number of circuit states is not divisible by 8, the last byte will be padded.

Subassembly files

Subassemblies represent a subset of a world. Most of the circuit states in a world will be irrelevant to a particular subassembly, so it would be silly and wasteful to save all of them with every subassembly.

Instead, we save a list of circuit state IDs which are both used in this subassembly and have a state of on. All unlisted state IDs are assumed to be in the off state.

  • First an int for the number of ints in this sequence
  • Then, that number of ints. Each int signifies a state ID with a value of on.

Sub-standards

Int (4 bytes)
32 bit signed integers. [todo figure out and list endianness]

Float (4 bytes)
32 bit floating point values. [todo figure out and list endianness]

Boolean (1 byte)
An entire byte that is either 00 for false or 01 for true.

Component Address (4 bytes)
Component Addresses are written as 32 bit unsigned integers.

Peg Address (6 bytes)

  • A boolean for whether the peg is input (true) or output (false)
  • A component address for the component of the peg
  • A single byte for the zero-based index of the peg (i.e. is it the 0th input, the 1st input, ect )

A note on seemingly-bizarre design choices

This file structure is not the most efficient, most beautiful, or most logical way to lay out the data. The primary purpose of the design of the Blotter format is that it is easy to integrate them with the game code. Therefore, the format uses the exact same data structures used by the game. This makes it fast and simple to convert the game state to a save file and vice versa, but since these data structures are optimized for runtime, the files do look a little weird.

  • "Why are circuit states stored so weirdly? Why not directly save the state of an input/output, instead of a reference to a state index?"
    • This is how the game stores circuit states at runtime, for performance and for ease of synchronization between the client and server. Storing it this way in the file makes for easy interoperability with the runtime game code, and allows us to use the same component/wire data structures in the saves and in the game.
  • "Must all the circuit states be stored? Surely you only need the states of the inputs or outputs, and everything else (including the wires) can be inferred from those."
    • This is true for the server, but the client has no ability to run a simulation and infer other states. However, the client needs to know all the states so that it can render a subassembly correctly before it is placed and added to the server's world/simulation. Storing all the states is also just simpler, and requires fewer steps when loading a save.
  • "Why in god's name are all the integers signed when come on they really should be unsigned?"
    • Logic World is written in C#. The .NET runtime has a few weird quirks, and one of those quirks is that most integers are signed, even things that can never be below zero like array lengths and indexes. Since this file format is for maximum interoperability with the code, this quirk is copied, and we use signed ints a lot.
@VectorASD
Copy link

I like this file format!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment