Skip to main content

Framework for building Stormworks microcontrollers

Project description

Stormworks Microcontroller framework

A framework for building microcontrollers in Stormworks: Build and Rescue using python scripts.

Features

  • Modular design: Easily create and manage multiple microcontroller scripts.
  • Latency optimization: Arithmetic functions are collapsed into function blocks in order to reduce latency.
  • Auto layout: Automatically arrange function blocks for better readability.
  • Integration with tumfl for lua verification and minification.
  • Implicit constant number creation.

Getting started

Installation

Install the package using pip

pip install sw_mc_builder

Install using prebuilt binaries

Copy the latest release for your platform from the releases page and add it to your PATH.

Usage

After installing, use the sw_mc_builder module/executable to create microcontrollers.

sw_mc_builder init test_mc.py

Afterwards, you can define a microcontroller in test_mc.py.

from sw_mc_builder import *

input1 = comp.input(SignalType.Number, "Input 1")
input2 = comp.input(SignalType.Number, "Input 2")

added = input1 + input2 * 2
highest = input1.max(input2)

mc = Microcontroller("Example MC")
mc.place_input(input1, 0, 0)
mc.place_input(input2, 0, 1)
mc.place_output(added, "Added", x=1, y=0)
mc.place_output(highest, "Highest", x=1, y=1)

if __name__ == "__main__":
    handle_mcs(mc)

And finally, run the script to generate the microcontroller (-m).

sw_mc_builder run test_mc.py -m

Design

There are two predominant design patterns used in this framework:

Python operators

from sw_mc_builder import *

input1 = comp.input(SignalType.Number, "Input 1")
input2 = comp.input(SignalType.Number, "Input 2")

added = input1 + input2
maxed = (added * input2).max(1)

Each operation is represented as a python expression. This makes it very easy to write and read code, but latency is harder to reason about, as some operations can result in multiple components.

[!WARNING] There are some operands which are impossible to implement as python expressions, see below.

Component functions

from sw_mc_builder import *

input1 = comp.input(SignalType.Number, "Input 1")
input2 = comp.input(SignalType.Number, "Input 2")

added = comp.add(input1, input2)
multiplied = comp.mul(added, input2)
maxed = comp.function("max(x,y)", multiplied, 1)

Each function represents exactly one component. This makes latency very easy to reason about, as each function has a fixed latency of one tick.

[!WARNING] The optimizer might collapse multiple arithmetic operations into a single function block, which can affect latency.

[!INFO] It is discouraged to use numerical or boolean function blocks. In part due to the poor readability, but also because some parts of the optimizer work better, if there are no function blocks.

Caveats of using python operators

  • and: Use & instead. Keep in mind that & has a different operator precedence than and.
  • or: Use | instead. Keep in mind that | has a different operator precedence than or.
  • not: Use ~ instead. Keep in mind that ~ has a different operator precedence than not.
  • int: Use <Wire>.int() instead. Will convert a boolean to a number (0 or 1).
  • __getindex__: (<Wire>[index]): will always return a number. If you want to get a boolean, use <Wire>.get_bool(index) instead.
  • __setindex__: (<Wire>[index] = value): This will create a new composite write for each write.

Functions other than python operators

The Wire class has a few functions that are possible with function blocks.

  • max(other): Maximum of two wires.
  • min(other): Minimum of two wires.
  • clamp(min, max): Clamp the wire between min and max.
  • lerp(start, end): Linear interpolation between two wires.
  • sin(): Sine of the wire (in radians).
  • cos(): Cosine of the wire (in radians).
  • tan(): Tangent of the wire (in radians).
  • asin(): Arcsine of the wire (in radians).
  • acos(): Arccosine of the wire (in radians).
  • atan(): Arctangent of the wire (in radians).
  • atan2(other): Arctangent of the wire and another wire (in radians).
  • sqrt(): Square root of the wire.
  • ceil(): Ceiling of the wire.
  • floor(): Floor of the wire.
  • round(ndigits): Round the wire.
  • sgn(): Sign of the wire.
  • switch(on_wire, off_wire): Switch between two wires based on the boolean value of the wire.

Working principles

Microcontroller handler

The handle_mcs function is the entity that will bring your microcontrollers to life. It manages the actual generation (including optimization and layout) and placement of microcontrollers. It can replace existing microcontrollers in vehicles, or simply make them available ingame. It can handle multiple microcontrollers at once.

Command line arguments

  • -m or --microcontroller: Export generated microcontrollers to the games microcontrollers directory.
  • -v or --vehicle: Replace microcontrollers in vehicles in the games vehicles directory. Will reserve parameter settings.
  • -s or --select: Only process microcontrollers with the given, comma separated, names.

Recursive definitions

There is a special component, a Placeholder, which can be used to create recursive definitions. A Placeholder must be resolved before submitting the microcontroller to handle_mcs, otherwise an error will be raised.

from sw_mc_builder import *

counter = comp.placeholder(SignalType.Number)
counter.replace_producer(counter + 1)

Input and output management

Inputs will usually be the first thing to be defined in a microcontroller. They produce Wire objects that can be used in the microcontroller. If an input is used in any calculation that is present in an output, wi has to be placed in the microcontroller.

Outputs are simply defined by placing them in a microcontroller.

If inputs or outputs are outside of the boundaries of the microcontroller, a warning will be generated, and the microcontroller expanded.

from sw_mc_builder import *

input1 = comp.input(SignalType.Number, "Input 1")
input2 = comp.input(SignalType.Number, "Input 2")

# Program logic
added = input1 + input2 * 2

mc = Microcontroller("Example MC")
mc.place_input(input1, 0, 0)
mc.place_input(input2, 0, 1)
mc.place_output(added, "Added", x=1, y=0)

if __name__ == "__main__":
    handle_mcs(mc)

Optimizer

All arithmetic operations are collapsed into a single function block in order to reduce latency. This can be disabled per node or per mc.

from sw_mc_builder import *

input1 = comp.input(SignalType.Number, "Input 1")

# Delay signal by one tick, disabling optimization for this node
delayed = comp.function("x", input1).stop_optimization()

# Disable optimization for the entire microcontroller
mc = Microcontroller("name")
mc.stop_optimization()

Microcontroller thumbnails

Microcontroller thumbnails can either be included as a .png file using mc.add_image_from_file(Path("path/to/thumbnail.png")), or be written as a list of lists of booleans using mc.add_image_from_list(image_data).

Note: Images will automatically be resized to 16x16 pixels and converted to black and white.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sw_mc_builder-0.1.4.tar.gz (28.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sw_mc_builder-0.1.4-py3-none-any.whl (29.0 kB view details)

Uploaded Python 3

File details

Details for the file sw_mc_builder-0.1.4.tar.gz.

File metadata

  • Download URL: sw_mc_builder-0.1.4.tar.gz
  • Upload date:
  • Size: 28.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.23

File hashes

Hashes for sw_mc_builder-0.1.4.tar.gz
Algorithm Hash digest
SHA256 4974760ff65303486c806cf31709516c27e996087299f0b90dd5a9c5f21194e4
MD5 e1b0b3ad083456443495f668cdc34d6b
BLAKE2b-256 b97da26446abe9bae5f51fed0d34df5fd21cf35c48b747c9ae4f503ed81ff90d

See more details on using hashes here.

File details

Details for the file sw_mc_builder-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: sw_mc_builder-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 29.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.23

File hashes

Hashes for sw_mc_builder-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 1ce27845ab8d2b2dbbf5424463043c9470118e91cce8e79fe54f9679c48c86af
MD5 479c2308559a779a44b72cac0ae6fb1a
BLAKE2b-256 a9e14bb0a507293f0f5e53b2da9196f75fb4a870edeee1b581f11ec4bf11b9eb

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page