MapData #地图数据

Link to mapdata-地图数据

It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import at the very top of the file.

ZenScript
Copy
import crafttweaker.api.data.MapData;

已实现的接口

Link to 已实现的接口

mapData实现了以下接口。 That means all methods defined in these interfaces are also available in MapData

Constructor #构造函数

Link to constructor-构造函数

ZenScript
Copy
new MapData() as MapData
new MapData();
ZenScript
Copy
new MapData(map as IData[string]) as MapData
参数类型
参数
map
类型
IData[string]
Result Type是否隐藏
Result Type
布尔值
是否隐藏
false
Result Type
byte
是否隐藏
false
Result Type
byte[]
是否隐藏
false
Result Type
double
是否隐藏
false
Result Type
float
是否隐藏
false
Result Type
int
是否隐藏
false
Result Type
整型[]
是否隐藏
false
Result Type
long
是否隐藏
false
Result Type
long[]
是否隐藏
false
Result Type
short
是否隐藏
false
Result Type
stdlib.List<IData>
是否隐藏
false
Result Type
string
是否隐藏
false

Name: add

Adds the given IData to this IData.

Returns: A new IData after adding the other data.
Return Type: IData

ZenScript
Copy
// MapData.add(other as IData) as IData

(Hello: "World", Somewhere: "Over the rainbow").add(2);
参数类型描述
参数
other
类型
IData #数据
描述
the other data to add.

Name: asBool

Casts this IData to a boolean.

Returns: this data as a bool
Return Type: boolean

ZenScript
Copy
// MapData.asBool() as boolean

(Hello: "World", Somewhere: "Over the rainbow").asBool();

Name: asByte

Casts this IData to a byte.

Returns: this data as a byte
Return Type: byte

ZenScript
Copy
// MapData.asByte() as byte

(Hello: "World", Somewhere: "Over the rainbow").asByte();

Name: asByteArray

Casts this IData to a byte array.

Returns: this data as a byte array
Return Type: byte[]

ZenScript
Copy
// MapData.asByteArray() as byte[]

(Hello: "World", Somewhere: "Over the rainbow").asByteArray();

Name: asDouble

Casts this IData to a double.

Returns: this data as a double
Return Type: double

ZenScript
Copy
// MapData.asDouble() as double

(Hello: "World", Somewhere: "Over the rainbow").asDouble();

Name: asFloat

Casts this IData to a float.

Returns: this data as a float
Return Type: float

ZenScript
Copy
// MapData.asFloat() as float

(Hello: "World", Somewhere: "Over the rainbow").asFloat();

Name: asInt

Casts this IData to an int.

Returns: this data as an int
Return Type: int

ZenScript
Copy
// MapData.asInt() as int

(Hello: "World", Somewhere: "Over the rainbow").asInt();

Name: asIntArray

Casts this IData to an int array.

Returns: this data as an int array
Return Type: int[]

ZenScript
Copy
// MapData.asIntArray() as int[]

(Hello: "World", Somewhere: "Over the rainbow").asIntArray();

Name: asList

Casts this IData to a list.

Returns: this data as a list
Return Type: stdlib.List<IData>

ZenScript
Copy
// MapData.asList() as stdlib.List<IData>

(Hello: "World", Somewhere: "Over the rainbow").asList();

Name: asLong

Casts this IData to a long.

Returns: this data as a long
Return Type: long

ZenScript
Copy
// MapData.asLong() as long

(Hello: "World", Somewhere: "Over the rainbow").asLong();

Name: asLongArray

Casts this IData to a long array.

Returns: this data as a long array
Return Type: long[]

ZenScript
Copy
// MapData.asLongArray() as long[]

(Hello: "World", Somewhere: "Over the rainbow").asLongArray();

Name: asShort

Casts this IData to a short.

Returns: this data as a short
Return Type: short

ZenScript
Copy
// MapData.asShort() as short

(Hello: "World", Somewhere: "Over the rainbow").asShort();

Name: asString

Gets an escaped string version of this IData, quotes are included in the output

E.G println(("hello" as IData).asString()) prints "hello"

Returns: The escaped string version of this IData.
Return Type: string

ZenScript
Copy
// MapData.asString() as string

(Hello: "World", Somewhere: "Over the rainbow").asString();

Name: compareTo

Compares this IData to the other IData

Returns: The comparison result.
Return Type: int

ZenScript
Copy
// MapData.compareTo(other as IData) as int

(Hello: "World", Somewhere: "Over the rainbow").compareTo(5);
参数类型描述
参数
other
类型
IData #数据
描述
the data to be compared.

Name: getAsString

Gets the literal string version of this IData.

E.G println(("hello" as IData).getAsString()) prints hello

Returns: The literal string version of this IData.
Return Type: string

ZenScript
Copy
// MapData.getAsString() as string

(Hello: "World", Somewhere: "Over the rainbow").getAsString();

Name: getId

Gets the internal ID of this data.

Returns: the intenral ID of this data.
Return Type: byte

ZenScript
Copy
// MapData.getId() as byte

(Hello: "World", Somewhere: "Over the rainbow").getId();

Name: isEmpty

Checks if this data is empty.

Returns: True if empty.
Return Type: boolean

ZenScript
Copy
// MapData.isEmpty() as boolean

(Hello: "World", Somewhere: "Over the rainbow").isEmpty();

Name: map

Maps this IData to another IData based on the given operation.

Returns: A new IData from the operation
Return Type: IData

ZenScript
Copy
// MapData.map(operation as Function<IData,IData>) as IData

(Hello: "World", Somewhere: "Over the rainbow").map((data) => 3);
参数类型描述
参数
operation
类型
Function<IData,IData>
描述
The operation to apply to this IData

Name: putAll

将给定地图中的所有条目添加到这个条目。 可以覆盖现有密钥。

ZenScript
Copy
// MapData.putAll(map as IData[string])

(Hello: "World", Somewhere: "Over the rainbow").putAll({Hello: "Goodbye", Item: "Bedrock"});
参数类型描述
参数
map
类型
IData[string]
描述
要添加到此地图的其他条目

Name: setAt

Sets the given value inside this IData at the given index.

ZenScript
Copy
MapData.setAt(name as string, data as IData?)
参数类型描述
参数
name(名称)
类型
string
描述
The key to store the data at
参数
data
类型
IData?
描述
The data to store.

Name: ADD

Adds the given IData to this IData.

ZenScript
Copy
myMapData + other as IData
(Hello: "World", Somewhere: "Over the rainbow") + 2

Name: AND

Applies a bitwise AND (&) operation to this IData and the other IData

ZenScript
Copy
myMapData & other as IData
(Hello: "World", Somewhere: "Over the rainbow") & 2

Name: CAT

Concatenates the given IData to this IData.

ZenScript
Copy
myMapData ~ other as IData
(Hello: "World", Somewhere: "Over the rainbow") ~ 2

Name: COMPARE

Compares this IData to the other IData

ZenScript
Copy
myMapData < other as IData
(Hello: "World", Somewhere: "Over the rainbow") < 5

Name: DIV

Divides the given IData from this IData.

ZenScript
Copy
myMapData / other as IData
(Hello: "World", Somewhere: "Over the rainbow") / 2

Name: MOD

Applies a modulo operation to this IData against the other IData.

ZenScript
Copy
myMapData % other as IData
(Hello: "World", Somewhere: "Over the rainbow") % 2

Name: MUL

Multiplies the given IData to this IData.

ZenScript
Copy
myMapData * other as IData
(Hello: "World", Somewhere: "Over the rainbow") * 2

Name: NEG

Negates this IData.

ZenScript
Copy
-myMapData
-(Hello: "World", Somewhere: "Over the rainbow")

Name: NOT

Applies a NOT (!) operation to this IData.

ZenScript
Copy
!myMapData
!true

Name: OR

Applies a bitwise OR (|) operation to this IData and the other IData

ZenScript
Copy
myMapData | other as IData
(Hello: "World", Somewhere: "Over the rainbow") | 2

Name: SHL

Applies a SHL (<<) operation to this data by the other data

ZenScript
Copy
myMapData << other as IData
(Hello: "World", Somewhere: "Over the rainbow") << 2

Name: SHR

Applies a SHR (>>) operation to this data by the other data

ZenScript
Copy
myMapData >> other as IData
(Hello: "World", Somewhere: "Over the rainbow") >> 2

Name: SUB

Subtracts the given IData from this IData.

ZenScript
Copy
myMapData - other as IData
(Hello: "World", Somewhere: "Over the rainbow") - 2

Name: XOR

Applies a bitwise XOR (^) operation to this IData and the other IData

ZenScript
Copy
myMapData ^ other as IData
(Hello: "World", Somewhere: "Over the rainbow") ^ 2
名称类型可获得可设置描述
名称
isEmpty #是否为空
类型
布尔值
可获得
true
可设置
false
描述
Checks if this data is empty.