Difference between revisions of "Object Data"

From wiki.vg
Jump to navigation Jump to search
(Use Template:Type for type links.)
 
(17 intermediate revisions by 8 users not shown)
Line 1: Line 1:
This article documents the '''Data''' field in the [[Protocol#Spawn Object|Spawn Object]] packet. The field is of type Int, and the meaning of its contents depend on the type of object being spawned, as defined in the Type field of the same packet, and is documented below.
+
This article documents the '''Data''' field in the [[Protocol#Spawn Entity|Spawn Entity]] packet. The field is of type Int, and the meaning of its contents depend on the [[Entity_metadata|type of entity]] being spawned, as defined in the Type field of the same packet, and is documented below.
  
== Minecarts (id 10) ==
+
== [[Entity_metadata#Item_Frame|Item Frame]] ==
 
 
The int value itself specifies the minecart's functionality:
 
  
 
{| class="wikitable"
 
{| class="wikitable"
 
  |-
 
  |-
 
  ! Value
 
  ! Value
  ! Minecart functionality
+
  ! Orientation
 
  |-
 
  |-
 
  | 0
 
  | 0
  | Empty (ride-able) minecart
+
  | Down
 
  |-
 
  |-
 
  | 1
 
  | 1
  | Chest minecart
+
  | Up
 
  |-
 
  |-
 
  | 2
 
  | 2
  | Furnace (powered) minecart
+
  | North
 
  |-
 
  |-
 
  | 3
 
  | 3
  | TNT minecart
+
  | South
 
  |-
 
  |-
 
  | 4
 
  | 4
  | Spawner minecart
+
  | West
 
  |-
 
  |-
 
  | 5
 
  | 5
  | Hopper minecart
+
  | East
|-
 
| 6
 
| Command Block minecart
 
 
  |}
 
  |}
  
== Item Frame (id 71) ==
+
The Notchian client clamps invalid values into the valid range through the modulus operator. If the resulting value is negative, the absolute value is used.
 +
 
 +
Velocity in the packet is always ignored.
 +
 
 +
== [[Entity_metadata#Painting|Painting]] ==
  
 
{| class="wikitable"
 
{| class="wikitable"
 
  |-
 
  |-
  ! Field name
+
  ! Value
  ! Field type
+
  ! Orientation
  ! Example
+
  |-
  ! Notes
+
| 2
 +
| North
 +
|-
 +
| 3
 +
| South
 +
|-
 +
| 4
 +
  | West
 
  |-
 
  |-
  | Orientation
+
  | 5
  | Int
+
  | East
| <code>3</code>
 
| 0–3: South, West, North, East
 
 
  |}
 
  |}
  
== Falling Block (id 70) ==
+
The Notchian client clamps invalid values into the valid range through the modulus operator. If the resulting value is negative, the absolute value is used.
 +
 
 +
{{Warning|Although the values of 0 and 1 are invalid, the Notchian client uses the same clamping algorithm as [[#Item_Frame|Item Frame]], which can result in any value from 0 to 5. If the resulting value is invalid, the entity will fail to spawn.}}
 +
 
 +
Velocity in the packet is always ignored.
 +
 
 +
== [[Entity_metadata#Falling_Block|Falling Block]] ==
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 53: Line 63:
 
  ! Field name
 
  ! Field name
 
  ! Field type
 
  ! Field type
! Example
 
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | Block type
+
  | Block state ID
  | Int
+
  | {{Type|Int}}
  | <code>12</code>
+
  | ID of the block state that the falling block will represent.
| <code>BlockID | (Metadata << 0x10)</code>
 
 
  |}
 
  |}
  
== Splash Potions (id 73) ==
+
Velocity in the packet is always ignored.
 +
 
 +
== [[Entity_metadata#Fishing_Hook|Fishing Hook]] ==
  
 
{| class="wikitable"
 
{| class="wikitable"
|-
 
 
  ! Field name
 
  ! Field name
 
  ! Field type
 
  ! Field type
! Example
 
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | Entity ID
+
  | Owner
  | Int
+
  | {{Type|Int}}
  | <code>64</code>
+
  | The entity ID of the owner
| Potion data value
 
 
  |}
 
  |}
  
For more information on potion data values, see {{Minecraft Wiki|Data values#Potions}}.
+
{{Warning|If the entity with the Owner ID doesn't exist in the client, the entity will fail to spawn.}}
 +
 
 +
Velocity in the packet is ignored, and instead should be inferred from the shooter's position.
 +
 
 +
{{Need Info|What's the exact algorithm for determining this?}}
  
== Fishing Float (id 90) ==
+
== [[Entity_metadata#Projectile|Projectile]] ==
  
 
{| class="wikitable"
 
{| class="wikitable"
 +
|-
 
  ! Field name
 
  ! Field name
 
  ! Field type
 
  ! Field type
! Example
 
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | Owner
+
  | Owner ID
  | Int
+
  | {{Type|Int}}
|
 
 
  | The entity ID of the owner
 
  | The entity ID of the owner
 
  |}
 
  |}
  
== Projectiles ([[Entities#Objects|Any projectile]]) ==
+
== [[Entity_metadata#Warden|Warden]] ==
 
 
This includes ghast fireballs, arrows, and fishhooks (probably more).
 
  
 
{| class="wikitable"
 
{| class="wikitable"
Line 101: Line 109:
 
  ! Field name
 
  ! Field name
 
  ! Field type
 
  ! Field type
! Example
 
 
  ! Notes
 
  ! Notes
 
  |-
 
  |-
  | Entity ID
+
  | Pose
  | Int
+
  | {{Type|Int}}
  | <code>64</code>
+
  | If a value of 1 is specified, the Warden will spawn in the [[Entity_metadata#Entity_Metadata_Format|emerging pose]].
| The entity ID of the thrower
+
Any other value is silently ignored.
 
  |}
 
  |}
 +
  
 
[[Category:Protocol Details]]
 
[[Category:Protocol Details]]
 
[[Category:Minecraft Modern]]
 
[[Category:Minecraft Modern]]

Latest revision as of 22:32, 24 February 2024

This article documents the Data field in the Spawn Entity packet. The field is of type Int, and the meaning of its contents depend on the type of entity being spawned, as defined in the Type field of the same packet, and is documented below.

Item Frame

Value Orientation
0 Down
1 Up
2 North
3 South
4 West
5 East

The Notchian client clamps invalid values into the valid range through the modulus operator. If the resulting value is negative, the absolute value is used.

Velocity in the packet is always ignored.

Painting

Value Orientation
2 North
3 South
4 West
5 East

The Notchian client clamps invalid values into the valid range through the modulus operator. If the resulting value is negative, the absolute value is used.

Warning.png Although the values of 0 and 1 are invalid, the Notchian client uses the same clamping algorithm as Item Frame, which can result in any value from 0 to 5. If the resulting value is invalid, the entity will fail to spawn.

Velocity in the packet is always ignored.

Falling Block

Field name Field type Notes
Block state ID Int ID of the block state that the falling block will represent.

Velocity in the packet is always ignored.

Fishing Hook

Field name Field type Notes
Owner Int The entity ID of the owner

Warning.png If the entity with the Owner ID doesn't exist in the client, the entity will fail to spawn.

Velocity in the packet is ignored, and instead should be inferred from the shooter's position.

Huh.png The following information needs to be added to this page:
What's the exact algorithm for determining this?

Projectile

Field name Field type Notes
Owner ID Int The entity ID of the owner

Warden

Field name Field type Notes
Pose Int If a value of 1 is specified, the Warden will spawn in the emerging pose.

Any other value is silently ignored.