Stormworks: Build and Rescue Wiki
Advertisement

Radios allow vehicles and people to share numeric, boolean, audio, and video data. Signal strength is worsened by distance and depleted power sources, and improved with larger antennas (which also increase maximum range). Poor signal strength adds static to audio communication and a grain/static effect to video feeds, but numeric and boolean data are reliable until the maximum range is reached (maximum range is affected by both the transmitter and receiver).

Radios are also required to operate train switches, see below for details.

This article was last updated for Stormworks version V1.4.16 (16 Apr 2022).

Setup[]

Frequencies[]

Usable frequencies can be any number, within certain limits:

  • Only integers can be used.
    • Numbers with a decimal point get rounded to the nearest integer. For example, 0.5 and everything above it rounds to 1, everything below it rounds to 0.
  • Numbers larger than 16,777,216 may overlap with nearby numbers.
    • Number precision within Stormworks is limited to +/- 224. Larger and smaller numbers may be used, but they may be converted to some other nearby value, so the limit where sequential radio channels definitely do not overlap is within the bounds of +/-16,777,216.
  • Negative numbers can be used and are distinct from positive numbers (so -1 will not communicate with 1 or vice versa).

Within those bounds, all radio frequencies besides those listed below can be safely used by player creations without other in-game interaction. Note that for all of the in-game systems that respond to radio signals, buttons can be used instead for manual operation; the radio is there for convenience.

  • 0-8: Used by handheld radios and remote controls.
  • 440: Used to operate junction switches for trains. Whenever there are two possible paths a train could take, junction switches default to sending the train to the right. Sending an 'on' signal on channel 440 while within range of a junction switch will temporarily cause it to send trains to the left.
  • 1136: Used by coal gantries where coal is sold, such as on the Isle of Donkk and on Sawyer Island at the Dean Hall Mining Company. Boolean channel 1 will cause the gantry to dispense coal.
  • 1202: Used by the diesel pump cranes where fuel can be bought or sold, such as at the BVG Logistics Depot (sell) in the arctic, at the unnamed refinery island (buy), Olsen Bay in the northwest of Sawyer Island (sell), and the Sawyer South Freight Terminal (sell). Boolean channel 1 will cause the pump to buy/sell the fuel.
  • 1267: Used by crude oil pump cranes where oil can be bought or sold, such as at the Krail Oilworks (buy), the Daylight Oil Refinery in the arctic (buy), the unnamed refinery island (sell), or offshore oil rigs (buy). Boolean channel 1 will cause the pump to buy/sell the oil.
  • 1863: Used by jet fuel pump cranes where jet fuel can be bought or sold, such as at the small unnamed airstrip (sell), or the unnamed refinery island (buy). Boolean channel 1 will cause the pump to buy/sell the fuel.

Note: the Sawyer Island bridges cannot be operated by radio; they require someone to press the button on either side to lift them.

Power consumption[]

Every antenna requires a small amount of power to operate, regardless of whether they are receiving or transmitting. Note that the power consumption by antennas is negligible, at only about 0.002 swatts per minute. A single small battery could operate a huge antenna as a relay transmitter for about 38 real-life days without recharging, though with gradually diminishing performance due to power loss.

Radio RX antennas[]

These are the antennas vehicles use to transmit numeric, boolean, and audio data. Each antenna can either send or receive, depending on the setting of its transmit mode.

Logic nodes:

  • Transmit mode (Boolean input):
    • Off (or not connected): The radio will be in 'listen' mode, and can receive transmissions.
    • On: The radio will be in 'transmit' mode, and can send but not receive transmissions.
  • Frequency (Numeric input): Can be any value, see the frequencies section above.
  • Signal strength (Numeric output): A value from 0 to 1. Will show 0 when no signal is being received. The small radios do not have a signal strength logic node. This can be also be used by radio scanners to automatically detect channels with any active data transfers, and to triangulate transmission locations. Specific types of data transfer can be identified by analyzing the various data channels within the frequency, or checking to see if a microphone connected to the antenna indicates an active audio transmission.
  • Data Send (Composite input): The antenna will transmit all data sent to this node while in transmit mode.
  • Data Recv (Composite output): Provides any data sent from the strongest nearby source broadcasting on the antenna's frequency setting.
  • Audio Send (Audio input): Transmits audio from a microphone, or can relay audio from an antenna on another frequency to bridge communications between distant regions.
  • Audio Recv (Audio output): Provides any audio sent from the strongest nearby source broadcasting on the antenna's frequency setting.

Video antennas[]

Video transmissions do not interfere with radio communications and vice versa. Video is managed with a separate transmitter and receiver. This can allow a camera on a remotely-operated vehicle to be linked into a monitor display for a control terminal.

Handheld radios[]

Handheld radios can be used to communicate with players and interact with autonomous vehicles. The signal strength produced by the handheld radio on a specific frequency can be used to detect a received signal, even though only audio data is being transmitted, and even if there's too much static to understand the audio. Vehicles can also distinguish audio data from other types by connecting the audio to a speaker - the speaker has a logic node to indicate if it is being used to receive a transmission. As such, handheld radios can be used to selectively trigger remotely-activated systems and to communicate via Morse code at longer distances while traveling on foot or in minimalist/lightweight vehicles.

Unfortunately, handheld radios cannot receive data back from autonomous vehicles. While it is theoretically possible to place a buzzer near a microphone in the hopes of creating audible Morse code chirps, in practice microphones will only transmit player voice data, and will only transmit when a player is nearby. However, it is certainly possible to receive audio from vehicles piloted by players.

Calculating maximum transmission ranges[]

In Stormworks transmission ranges are calculated somewhat different than from what you would expect. If you want to send a signal from antenna A to antenna B, the maximum range for a successfull transmission depends on:

  • range of antenna A
  • range of antenna B
  • battery level of antenna A
  • battery level of antenna B

+ any repeaters you have setup in the area

Calculate maximum distance as sender[]

maximumDistance = ( rangeAntennaA + rangeAntennaB ) * batteryLevelA * batteryLevelB


Calculate maximum distance as receiver (you must know distance to sender)[]

Hint: Small antenna has no output for signalStrength, so this does not work!

maximumDistance = distanceToSender / ( 1 - signalStrength )


distanceToSender must be calculated by gps difference:

distanceToSender = math.sqrt( (myGpsX - senderGpsX )^2 + (myGpsY - senderGpsY )^2 )

Hint: You could transmit the gps coordinates via radio.

Calculate distance to sender (you must know the range of sender antenna and receiver antenna and both battery levels[]

Hint: Small antenna has no output for signalStrength, so this does not work!

distanceToSender = ( ( rangeAntennaSender + rangeAntennaReceiver ) * batteryLevelSender * batteryLevelReceiver ) * ( 1 - signalStrength )


If you know the sender always has a full battery (e.g. diesel generator) and know the antenna type they are using, you can calculate your distance to the sender without any data over composite:

distanceToSender = ( ( rangeAntennaSender + rangeAntennaReceiver ) * 1 * batteryLevelReceiver ) * ( 1 - signalStrength )


Example[]

Sender antenna: Huge Receiver antenna: Small Sender antenna range = 20000m Receiver antenna range = 100m

Maximum distance between sender and receiver (in case of 100% batteries):

maximumDistance = ( rangeAntennaA + rangeAntennaB ) *batteryLevelA * batteryLevelB

maximumDistance = ( 20000m + 100m ) * 1 * 1
maximumDistance = 20100m * 1 * 1
maximumDistance = 20100m



Maximum distance between sender and receiver (in case of 100% battery for the sender and 50% battery for the receiver): {{code-block | content = maximumDistance = rangeAntennaA * batteryLevelA + rangeAntennaB * batteryLevelB

maximumDistance = ( 20000m + 100m ) * 1 * 0.5
maximumDistance = 20100m * 0.5
maximumDistance = 10050m

Controlling train switches[]

Broadcast Boolean on/off signal on 1st composite channel on frequency(radio channel) 440 . Example: Train with antenna (frequency 440) in transmit mode. Connect a push button to composite input (boolean channel 1) of the antenna.

Now if you hit the push button, every train switch in range will toggle!

Vehicle radio antennas[]

Radio RX Huge
Radio RX Huge
Range: 20km
Radio RX Large
Radio RX Large
Range: 4km
Radio RX Medium
Radio RX Medium
Range: 1km
Radio RX Small
Radio RX Small
Range: 100m


Video transmitters and receivers[]

Video receiver
Video receiver
Range: 10km
Video emitter
Video emitter
Range: 10km


Patch history[]

V1.3.19[]

  • Balance - Reduced radio voice chat static noise

V1.3.13[]

  • Fix - Rx range description for handheld radios/remote control

V1.1.23-24[]

  • Fix - Handheld radio and remote control range being larger than described

V1.0.15[]

  • Fix - PTT being disabled when scrolling over hotbar radio equipment

V0.10.19-22[]

  • Balance - Radio parts now consume electricity proportionate to range. x4 when transmitting.

V0.9.20[]

  • Fix - Corrected Large Radio cost from 200 -> 2500

V0.8.32-33[]

  • Feature - Microphone Component
  • Feature - 3 Speaker Components
  • Feature - Audio Switchbox Microprocessor Component
  • Rework - Radio Components V2 *
  • Fix - Voicechat and Quickchat can now be bound to inputs other than keyboard
  • Old Radio components are now deprecated, but will still continue to work.

V0.7.1[]

  • Feature - Added 4 radio antenna sizes
  • Larger antennas have higher range (up to 40km)
  • Antennas can send and recieve composite data on a set channel
  • Antennas have jiggle physics
  • Radio signal is reduced when travelling through water
  • Feature - Added 2 video radio components (transmitter and reciever)
    • Similar to radio antennas, but they transmit a video signal
    • Quality of video signal will degrade over long distances
Advertisement