Programming in Space Engineers is done with the Programmable Block which can be given scripts written in C# (pronounced C Sharp). This can be used to make autonomous mining drones, long-range player-killing torpedoes, automated welding arms for ship construction and much more.
- Sound Space Megalovania Custom
- No Sound? :: Space Engineers Troubleshooting
- Space Engineers Sound Block Script
- Space Engineers Jukebox Custom Music
- Space Engineers Sound Block Not Working
- Space Engineers Sound Block Loop
- 1Introduction
- 2Available interfaces
- 3Example programs
Introduction
To repaint blocks in Space Engineers, first make sure you own the block of the ship / station you want to recolor. Press ‘I’ and click on a block to indentify the owner. Next, select a block from your toolbar – tools / voxel hand will not work. Now, press ‘P’ to open up a list of colors and skins that you own. Select one of these. A Space Engineers script to automate block states (such as doors, lights and sound blocks) based on certain conditions (such as decompression or enemies detected). Space-engineers ingame-script mdk-se malware-development-kit programmable-block.
Editor access
Sound Space Megalovania Custom
Only one player can edit the same script at time. If someone else has an editor for the current block open and someone else tries to open that block's editor, a notification will be shown that the editor is already open.
Main method
No Sound? :: Space Engineers Troubleshooting
When the editor is opened for first time, void Main() method is present inside the code editor.This is entry point that will be called when executing script. If Main method is removed / renamed, the script will not run and you will be notified in the programmable block details area. Custom methods/variables can be defined and used, but only the Main method will be called without reference.
Variable lifetime and scoping
There are two types of variables for scripting:
- Local (inside the methods)
- these variables will keep their value only during execution of a method. Value will be “lost” when the method ends.
- Global (outside the methods)
- these variables will keep their values during the lifetime of script. For example, if the variable needs to keep its value between separate runs of the script, it needs to be defined outside the methods.
After pressing “Remember & Exit” or “Remember” buttons, the previous script will be overwritten and all Global variables will be lost.
All variables, local and global except for the built-in Storage variable will lose their value or return to their default value when recompiling the code and between saved game loads.The Storage variable is unique in that it will store the data as a string for use between saved sessions and recompile.
Compiling
When the “Check code” button is pressed, the code will be compiled and the result of the compilation will be shown.There are two steps of the compilation process:First the code inside editor is compiled by c# compiler for language errors.If there are any errors during compilation the following dialog is shown:It this case “aaa” string is placed before Main method. This is the wrong language construction and the compilation failed.In the error dialog the Line number error and description of the error is shown.
After compilation, the code is checked for usage of disallowed namespaces and types. In case that check fails,the following dialog is shown:In this case System.IO.Directory was used to delete some directory. This is forbidden and error is shown that “Not allowed type was used in script”.
If compilation and checks pass, a dialog is shown, confirming the checks passed, and the code is saved.
Script execution
Script can be triggered by the following means:
1. By pressing 'Run' button in terminal properties of programmable block.
2. By assigning terminal action and manually pressing the action button (1-9) while controlling the grid using cockpit, control station or remote control.
3. By pressing button on a button panel with assigned action 'Run'.
4. By a timer with assigned action 'Run'.
5. By another script in another programmable block in the same grid.
6. By antenna with assigned programmable block, when recieved message from another antenna. (see Antenna#Programming)
7. By the script itself, by assigning a value to Runtime.UpdateFrequency variable. In this case, no argument can be specified, however, you can use the following Main method signature: void Main(string argument, UpdateType updateSource) to gain acces to the information about what exactly triggered the script and so make the script 'know' if it was triggered by Update1, Update10, Update100 events or manually or whatever event was the reason of trigger execution.
Script is executed only on server even if it’s triggered from client. If there is any exception during script execution, all clients will be notified in programmable block details area about failure.In case of exception during script execution, script will not run again unless User opens editor and change script.
Space Engineers Sound Block Script
Counting of instructions
Every time script is executed, every instruction of script is counted. If script executes more instruction than limit, execution is stopped and user is notified that script is too complex for execution. This prevents scripts to “freeze” game.
Whitelist
The types and classes allowed in scripts are restricted. Refer to the Scripting Whitelist to see what you are allowed to use.
Available interfaces
Possible Actions
Currently only terminal actions can be triggered inside scripts. User can access terminal system for grid on which programmable block is located and trigger any terminal action on any block at grid.
Block Classes (Action List)
Same block class for different SubTypeID
Some blocks have the same parent (e.g. <TypeId> in cubeblocks.sbc) and differs only by subtype (e.g. <SubtypeId>). This means there is no distinction between these blocks in code.
Space Engineers Jukebox Custom Music
Example of these blocks is the Cargo Container: there are 3 types of cargo containers in the game: small, medium and large. These three types differ only by the Subtype and Type is the same for them e.g. large cargo container id is:
Medium is:
And small is:
In this case there is only one class IMyCargoContainer for all types of cargo containers.
Example programs
Hello world
The standard Hello World program in Space Engineers can be written as such:
If this program is entered into a programmable block and run, it will result in 'Hello, world!' being displayed in the programmable block's interface on the lower right hand side of the screen.
Getting your position
Space Engineers Sound Block Not Working
This program will show the current GPS coordinates of your programming block's position in the world.
Checking a sensor
It's easy to get a sensor to open a door or trigger some other action even without any programming if you just place that action in the sensor's 'Setup actions' list. However, triggering an action when a sensor does not detect something is more difficult, and cannot be done with timer blocks. This program will automatically check a sensor every 10 ticks (working out to about 6 times per second) and close a door if the sensor does not detect anything. This can easily be applied to other purposes, like turning off drills when asteroids are not in sensor range.
For this script to work, the sensor must be named 'Door Sensor 1' and the door must be named 'Door 1'. If you configure the sensor to open the door, the door will automatically open when the player enters the sensor range and close when the player leaves the sensor range.
Compilation errors
This is a list (in progress) of known compilation errors and what causes them.
- Method name expected: The compiler found parentheses when it wasn't expecting them. You could be missing a method name before the parentheses, or you might be inappropriately using parentheses instead of square or curly brackets, depending on what you're trying to do.
See also
- MyGridTerminalSystem - Methods for getting object references to your various ship components.
- Programming Guide/Action List - Actions you can apply to objects via the Object.ApplyAction method. Also includes some of the object properties. Data appears incomplete as of March 19th, 2018.
External links
- [Guide] Programmable Block - C# 101 For Space Engineers - Basic intro to C# programming for Space Engineers.
- [Guide] Programmable Block - C# 102 for Space Engineers: Loops, Strings, and Other Things - Basic intro to using loops and strings in C#
- [Guide] Programmable Block - C# 103 for Space Engineers - Math Class - Basic intro to using the Math library in C#
- Programmable Block Inter-Grid Communication Guide - Using antennas to enable programming blocks to remotely communicate with each other.
- Continuous Running No Timers Needed - Configuring programming blocks to run automatically without needing to use a timer.
- Tutorial: Constructor And Save - Saving and reloading data
- C# Operators - C# language reference for all operators, such as and, or, greater than, less than, etc.
- Space Engineers ModAPI Documentation - Includes many API methods and properties which can be used by Programmable Blocks.
5.1 surround (and im guessing 7.1 but I cannot test this) is completely broken. I opened a tech support request about this thinking it was only me. However upon further investigation it is the game.
Some symptoms of this issue are, sound blocks only playing out of one speaker at full volume no matter your distance or orientation relative to the block. Sound from behind you being played in the front speakers. Very quiet environmental sounds being played in the rear speakers. Extremely loud sounds from some blocks such as the airtight hanger doors. Engine sounds being played from the incorrect speakers regardless of position relative to them.
I have tried multiple sound cards and 1 external receiver testing this to be absolutely sure. Verified the surround sound is working correctly by using different games testing positional sounds and volumes, specifically Minecraft and The Witcher 3: Wild Hunt.
I tested the Creative Soundblaster Z:
'no encoder', Minecraft 5.1 surround working, The Witcher 5.1 surround working, Space Engineers broken.
'Dolby Digital Live', Both games working, Space Engineers broken.
'DTS Connect' and 'DTS Neo:PC' modes, both games working, Space Engineers broken.
Next I tried an older Creative X-Fi Xtremegamer. Same results as the Soundblaster Z.
Space Engineers Sound Block Loop
Next I tried onboard audio (Crystal Sound 2) which is a RealTek audio processor my on my motherboard. Same results as above (but sounds like trash in comparison to the Creative cards :P).
For the final test I connected the Soundblaster Z to a Pioneer receiver by the optical output and have exactly the same results.
I have also reinstalled Windows 10 and tried the Soundblaster Z again and still no change. I have made absolutely sure the sound drivers are up to date and even tried one version older to be sure.
When I contacted tech support about this, they assured me that it has been forwarded to the developers to look at but I have heard nothing.
This is easily testable in a creative world build noise making machines and turn your character around. The sound block is a bad one because of that I have to disable 5.1 whenever i want to play the game.
Please note that I am speaking of actual 6 channel surround sound. When I ask people, they assume I am talking about stereo headphones for some reason and claim it works.