Difference between revisions of "Programming Guide/zh"

From Space Engineers Wiki
Jump to: navigation, search
Line 35: Line 35:
  
 
=== 脚本执行 ===
 
=== 脚本执行 ===
按下“运行”按钮或将“运行”指定为终端操作时,将执行脚本。 目前需要手动调用“运行”,例如 用户需要单击“运行”按钮或将其作为终端操作附加。
+
按下“运行”按钮或将“运行”指定为终端操作时,将执行脚本。 目前需要手动调用“运行”,例如 用户需要单击“运行”按钮或将其作为终端操作附加。<br />
脚本仅在服务器上执行,即使它是从客户端触发的。 如果在脚本执行期间出现任何异常,将在可编程块详细信息区域中通知所有客户端有关失败的信息。
+
脚本仅在服务器上执行,即使它是从客户端触发的。 如果在脚本执行期间出现任何异常,将在可编程块详细信息区域中通知所有客户端有关失败的信息。<br />
如果在脚本执行期间发生异常,除非用户打开编辑器并更改脚本,否则脚本将不会再次运行。
+
如果在脚本执行期间发生异常,除非用户打开编辑器并更改脚本,否则脚本将不会再次运行。<br />
计时器还可以通过运行操作(可能会提示您输入参数)继续运行脚本,然后启动/触发自身或通过脚本代码启动/触发(如果脚本崩溃,计时器将停止)。
+
计时器还可以通过运行操作(可能会提示您输入参数)继续运行脚本,然后启动/触发自身或通过脚本代码启动/触发(如果脚本崩溃,计时器将停止)。<br />
  
 
=== 指令计数 ===
 
=== 指令计数 ===
Line 57: Line 57:
 
=== 同一方块类的不同SubTypeID ===
 
=== 同一方块类的不同SubTypeID ===
 
一些块具有相同的父类 (例如: <TypeId> 在 cubeblocks.sbc中) 只有子类不同 (例如:<SubtypeId>). 这意味着代码中的这些块之间没有区别。 <br />
 
一些块具有相同的父类 (例如: <TypeId> 在 cubeblocks.sbc中) 只有子类不同 (例如:<SubtypeId>). 这意味着代码中的这些块之间没有区别。 <br />
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 subtype and Type is same for them e.g. large cargo container id is: <br />
+
一个例子是货物储存箱:在游戏中有三种货物储存箱:小型、中型和大型。这三种类型的区别仅在于子类型不同。<br />
 +
例如:大型货物储存箱的id是: <br />
 
<Id><br />
 
<Id><br />
 
<TypeId>CargoContainer</TypeId><br />
 
<TypeId>CargoContainer</TypeId><br />
 
<SubtypeId>LargeBlockLargeContainer</SubtypeId><br />
 
<SubtypeId>LargeBlockLargeContainer</SubtypeId><br />
 
</Id><br />
 
</Id><br />
Medium is:<br />
+
中型的是:<br />
 
<Id><br />
 
<Id><br />
 
<TypeId>CargoContainer</TypeId><br />
 
<TypeId>CargoContainer</TypeId><br />
 
<SubtypeId>SmallBlockMediumContainer</SubtypeId><br />
 
<SubtypeId>SmallBlockMediumContainer</SubtypeId><br />
 
</Id><br />
 
</Id><br />
And small is:<br />
+
小型的是:<br />
 
<Id><br />
 
<Id><br />
 
<TypeId>CargoContainer</TypeId><br />
 
<TypeId>CargoContainer</TypeId><br />
Line 73: Line 74:
 
</Id><br />
 
</Id><br />
  
In this case there is only one class IMyCargoContainer for all types of cargo containers.
+
在这种情况下,所有类型的货物储存箱都只有一个类IMyCargoContainer。
  
 
== Example programs ==
 
== Example programs ==

Revision as of 17:13, 1 September 2018

在太空工程师游戏内编程是通过可编程块完成的,可以使用C#(念做 C Sharp)语言来编写脚本。 它可用于制造自主式采矿无人机,远距离玩家捕杀鱼雷,船舶建造用自动焊接臂等等。

介绍

编辑权限

同一时间只有一个玩家可以编辑同一个脚本。 如果已经有一个人在当前块打开编辑器,而此时其他人试图打开该块的编辑器时,会显示一条通知,表示编辑器已经打开。

Main 方法

当编辑器第一次打开时,代码编辑器中会出现void Main() 方法。
这是执行脚本时程序调用的入口方法。 如果删除/重命名Main方法,脚本将不会运行,您将在可编程块详细信息区域中收到通知。
可以定义和使用自定义方法/变量,但只调用Main方法而不引用。

变量的生命周期

脚本中有两种类型的变量:
局部变量(定义在方法内部) - 这些变量仅在方法被执行期间保持其值。方法结束时,变量值将“丢失”。
全局变量(定义在方法外部) - 这些变量将在整个脚本的生命周期内保持其值。
例如:如果变量需要在程序运行时保持值,则需要在方法之外定义它。
按“保存并退出”或“保存”按钮后,之前的脚本将被覆盖,之前所有的全局变量都将丢失。
除了内置的保留变量之外的所有变量(局部和全局变量)将在重新编译代码时以及在已保存的游戏加载之间丢失其值或返回其默认值。
保留变量的独特之处在于它可以将在保存中和重新编译时的数据存储为字符串。

编译

按下“检查代码”按钮时,将编译代码并显示编译结果。
编译过程分为两步:
首先,编辑器内部的代码由c#编译器编译,检查语言错误。
如果在编译期间出现任何错误,则显示以下对话框:
It this case “aaa” string is placed before Main method. This is the wrong language construction and the compilation failed.
(大意为:“aaa”字符串不能放在了Main方法之前。 编译失败。)
在错误对话框中,将显示错误行号和错误描述。

编译后,将检查代码是否使用不允许的命名空间和类型。 如果检查失败,
显示以下对话框:
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”.
(大意为:禁止使用System.IO.Directory删除某个目录。 错误“脚本中使用了不允许的类型”。)

如果编译和检查通过,则会显示一个对话框,确认已通过检查,并保存代码。

脚本执行

按下“运行”按钮或将“运行”指定为终端操作时,将执行脚本。 目前需要手动调用“运行”,例如 用户需要单击“运行”按钮或将其作为终端操作附加。
脚本仅在服务器上执行,即使它是从客户端触发的。 如果在脚本执行期间出现任何异常,将在可编程块详细信息区域中通知所有客户端有关失败的信息。
如果在脚本执行期间发生异常,除非用户打开编辑器并更改脚本,否则脚本将不会再次运行。
计时器还可以通过运行操作(可能会提示您输入参数)继续运行脚本,然后启动/触发自身或通过脚本代码启动/触发(如果脚本崩溃,计时器将停止)。

指令计数

每次执行脚本时,都会计算脚本的每条指令。 如果脚本执行的指令多于限制,则停止执行并通知用户脚本太复杂而无法执行。 这可以防止脚本“冻结”游戏。

白名单

脚本中允许的类型和类受到限制。 请参阅脚本白名单以查看允许使用的内容。

可用的接口

可用的操作

目前,只能在脚本内触发终端操作。 用户可以访问可编程块所在的网格的终端系统,并触发网格上任何块的任何终端动作。

方块类 (操作对象列表)

同一方块类的不同SubTypeID

一些块具有相同的父类 (例如: <TypeId> 在 cubeblocks.sbc中) 只有子类不同 (例如:<SubtypeId>). 这意味着代码中的这些块之间没有区别。
一个例子是货物储存箱:在游戏中有三种货物储存箱:小型、中型和大型。这三种类型的区别仅在于子类型不同。
例如:大型货物储存箱的id是:
<Id>
<TypeId>CargoContainer</TypeId>
<SubtypeId>LargeBlockLargeContainer</SubtypeId>
</Id>
中型的是:
<Id>
<TypeId>CargoContainer</TypeId>
<SubtypeId>SmallBlockMediumContainer</SubtypeId>
</Id>
小型的是:
<Id>
<TypeId>CargoContainer</TypeId>
<SubtypeId>LargeBlockSmallContainer</SubtypeId>
</Id>

在这种情况下,所有类型的货物储存箱都只有一个类IMyCargoContainer。

Example programs

Hello world

The standard Hello World program in Space Engineers can be written as such:

public void Main()
{
   Echo ("Hello, world!");
}

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

This program will show the current GPS coordinates of your programming block's position in the world.

public void Main()
{
    var pos = Me.GetPosition();
    Echo (pos.ToString());
}


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.

List<MyDetectedEntityInfo> entity_list = new List<MyDetectedEntityInfo>(); 
public Program()
{
    Runtime.UpdateFrequency = UpdateFrequency.Update10;
    //This makes the program automatically run every 10 ticks.
}
public void Main()
{
    var door_sensor = GridTerminalSystem.GetBlockWithName("Door Sensor 1") as IMySensorBlock;
    door_sensor.DetectedEntities (entity_list);
    if (entity_list.Count == 0)
    {
        var door = GridTerminalSystem.GetBlockWithName("Door 1") as IMyDoor;
        door.ApplyAction ("Open_Off");
    }
}

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