Difference between revisions of "VariationalAction2/Objects"

From GRFSpecs
Jump to navigationJump to search
m (Title with wrong format)
(add view to var 60)
 
(6 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 
==Introduction==
 
==Introduction==
   
==Variables==
+
== Variables ==
 
{|
 
{|
!Variable !!Version !![[GRFActionsDetailed|Size]] !! Description
+
!Variable !![[GRFActionsDetailed|Size]] !!Version !! Description
 
|-
 
|-
|40||||D||Relative position, like [[VarAction2IndustryTiles#Relative_position_(43)|Industry Tile var43]]
+
|40||D||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Relative position, like [[VarAction2IndustryTiles#Relative position (43)|Industry Tile var43]]
 
|-
 
|-
|41||||W||Tile information, see below
+
|41||W||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2088}}||Tile information, see below
 
|-
 
|-
|42||||D||Construction date from year 0
+
|42||D||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Construction date from year 0
 
|-
 
|-
|43||||B||Animation counter, see below
+
|43||B||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Animation counter, see below
 
|-
 
|-
|44||||B||Object founder information
+
|44||B||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Object founder information
 
|-
 
|-
|45||||D||Get town zone and Manhattan distance of closest town
+
|45||D||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Get [[TownZones|town zone]] and Manhattan distance of closest town
 
|-
 
|-
|46||||D||Get square of Euclidian distance of closest town
+
|46||D||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Get square of Euclidian distance of closest town
 
|-
 
|-
|47||||B||Object colour
+
|47||B||{{ottdp|1.1|2.6|ottdrev=r21259|ttdprev=r2351}}||Object colour
 
|-
 
|-
|48||||B||Object views
+
|48||B||{{ottdp|1.1|2.6|ottdrev=r21455|ttdprev=r2340}}||Object views
 
|-
 
|-
|60||||W||Get object type at offset
+
|60||W||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Get object type and view at offset
 
|-
 
|-
|61||||B||Get random bits at offset
+
|61||B||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Get random bits at offset
 
|-
 
|-
|62||||D||Land info of nearby tiles
+
|62||D||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Land info of nearby tiles
 
|-
 
|-
|63||||W||Animation counter of nearby tile
+
|63||W||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Animation counter of nearby tile
 
|-
 
|-
|64||||D||Count of object, distance of closest instance
+
|64||D||{{ottdp|1.1|2.6|ottdrev=r20670|ttdprev=r2340}}||Count of object, distance of closest instance
 
|}
 
|}
   
==Description==
+
== Description ==
===Tile information (41)===
+
=== Tile information (41) ===
   
 
The return value has the format of ss0t where t is the terrain type which the tile is on, same values as [[VarAction2Canals|canal var81]].
 
The return value has the format of ss0t where t is the terrain type which the tile is on, same values as [[VarAction2Canals|canal var81]].
   
As of TTDPatch r2088, ss contains the slope data of the tile, same format as for [[VarAction2IndustryTiles#Land_info_of_nearby_tiles_(60)| industrytile var60]]. The meaning of the individual bits is:
+
As of TTDPatch r2088, ss contains the slope data of the tile, same format as for [[VarAction2IndustryTiles#Land info of nearby tiles (60)|industrytile var60]]. The meaning of the individual bits is:
   
 
{|
 
{|
Line 57: Line 57:
 
(*) - Steep slopes have this bit plus 3 points raised, giving them values of 0x17, 0x1B, 0x1D and 0x1E.
 
(*) - Steep slopes have this bit plus 3 points raised, giving them values of 0x17, 0x1B, 0x1D and 0x1E.
   
===Animation Counter (43)===
+
=== Animation Counter (43) ===
   
 
This byte gets the actual value of the animation counter (note that action0, property 10, bit 6 must be set for this to work).
 
This byte gets the actual value of the animation counter (note that action0, property 10, bit 6 must be set for this to work).
   
===Object founder information (44)===
+
=== Object founder information (44) ===
   
 
This byte contains the ID of the company that funded the object, or 10h if the object was placed in the scenario editor.
 
This byte contains the ID of the company that funded the object, or 10h if the object was placed in the scenario editor.
   
===Get town zone and Manhattan distance of closest town (45)===
+
=== Get [[TownZones|town zone]] and Manhattan distance of closest town (45) ===
   
Like [[VarAction2Industries#Get_town_zone_and_Manhattan_distance_of_closest_town_(65)|industry var65]] but instead of an offset the current tile is used.
+
Like [[VarAction2Industries#Get town zone and Manhattan distance of closest town (65)|industry var65]] but instead of an offset the current tile is used.
   
===Get square of Euclidian distance of closest town (46)===
+
=== Get square of Euclidian distance of closest town (46) ===
   
Like [[VarAction2Industries#Get_square_of_Euclidean_distance_of_closest_town_(66)|industry var66]] but instead of an offset the current tile is used.
+
Like [[VarAction2Industries#Get square of Euclidean distance of closest town (66)|industry var66]] but instead of an offset the current tile is used.
   
===Object colour (47)===
+
=== Object colour (47) ===
   
 
This byte returns the colour of the object.
 
This byte returns the colour of the object.
Line 79: Line 79:
 
(since TTDPatch r2351 and OpenTTD r21259)
 
(since TTDPatch r2351 and OpenTTD r21259)
   
===Get object views (48)===
+
=== Get object views (48) ===
   
 
Returned value stands for a particular view of an object. Number and rank of set-IDs must match the value given in the object's action0 prop17, i.e. for an object with 4 views, prop48 may return values 0 .. 4. Since OpenTTD r21455.
 
Returned value stands for a particular view of an object. Number and rank of set-IDs must match the value given in the object's action0 prop17, i.e. for an object with 4 views, prop48 may return values 0 .. 4. Since OpenTTD r21455.
   
===Get object type at offset (60)===
+
=== Get object type at offset (60) ===
   
The parameter of this variable is an offset from the current tile. The low nibble contains the signed X offset (that is 0h=0, 1h=+1 ... 7h=+7, 8h=-8, 9h=-7 ... Fh=-1), the high nibble contains the Y offset. Therefore the parameter 00h accesses the current tile itself. The high word of the return value is currently reserved, and the low word can be:
+
The parameter of this variable is an offset from the current tile. The low nibble contains the signed X offset (that is 0h=0, 1h=+1 ... 7h=+7, 8h=-8, 9h=-7 ... Fh=-1), the high nibble contains the Y offset. Therefore the parameter 00h accesses the current tile itself.
   
  +
The variable value has the format
  +
rrrvtttt
  +
  +
{| |-
  +
! field !! bits !! Meaning
  +
|-
  +
| tttt || 0 - 15
  +
|
 
* 00xxh if the tile is an object tile and was defined in the current GRF with ID xx.
 
* 00xxh if the tile is an object tile and was defined in the current GRF with ID xx.
 
* FFFEh if the tile is an object tile that was defined in another GRF file or it's a default object.
 
* FFFEh if the tile is an object tile that was defined in another GRF file or it's a default object.
 
* FFFFh if the tile isn't an object tile.
 
* FFFFh if the tile isn't an object tile.
  +
|-
  +
| v || 16 - 19 || {{ottdp|1.4|no|ottdrev=r26315}} View of the object, if it is defined in the current GRF.
  +
|-
  +
| rrrr || 20 - 31 || reserved, always mask
  +
|}
   
===Get random bits at offset (61)===
+
=== Get random bits at offset (61) ===
   
Returns the same values as [[VarAction2Industries#Get_random_tile_bits_at_offset_(61)|industry var61]]. The offset it from the current tile and is signed.
+
Returns the same values as [[VarAction2Industries#Get random tile bits at offset (61)|industry var61]]. The offset it from the current tile and is signed.
   
 
To get the random bits from a tile using a offset relative to the north tile of the object, see the example below.
 
To get the random bits from a tile using a offset relative to the north tile of the object, see the example below.
   
===Land info of nearby tiles (62)===
+
=== Land info of nearby tiles (62) ===
   
Returns the same values as [[VarAction2IndustryTiles#Land_info_of_nearby_tiles_(60)|industry tile var60]]. The offset it from the current tile and is signed.
+
Returns the same values as [[VarAction2IndustryTiles#Land info of nearby tiles (60)|industry tile var60]]. The offset it from the current tile and is signed.
   
 
To get the land info from a tile using a offset relative to the north tile of the object, see the example below.
 
To get the land info from a tile using a offset relative to the north tile of the object, see the example below.
   
===Animation counter of nearby tile (63)===
+
=== Animation counter of nearby tile (63) ===
   
 
Returns the var43 of another tile given by the signed offset.
 
Returns the var43 of another tile given by the signed offset.
Line 109: Line 122:
 
To get the animation counter from a tile using a offset relative to the north tile of the object, see the example below.
 
To get the animation counter from a tile using a offset relative to the north tile of the object, see the example below.
   
===Count of object, distance of closest instance (64)===
+
=== Count of object, distance of closest instance (64) ===
   
Returns the same values as [[VarAction2Industries#Count_of_industry,_distance_of_closest_instance_(67,_68)|industry var67]]. The distance is from the current tile.
+
Returns the same values as [[VarAction2Industries#Count of industry, distance of closest instance (67, 68)|industry var67]]. The distance is from the current tile.
   
==Examples==
+
== Examples ==
   
===Getting the north tile random bits===
+
=== Getting the north tile random bits ===
   
 
The following code uses variable 40, 61 and 7B to read the random bits of the north tile of the object.
 
The following code uses variable 40, 61 and 7B to read the random bits of the north tile of the object.

Latest revision as of 23:00, 7 February 2014

Introduction

Variables

Variable Size Version Description
40 D Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Relative position, like Industry Tile var43
41 W Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2088)2.6 Tile information, see below
42 D Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Construction date from year 0
43 B Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Animation counter, see below
44 B Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Object founder information
45 D Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Get town zone and Manhattan distance of closest town
46 D Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Get square of Euclidian distance of closest town
47 B Supported by OpenTTD 1.1 (r21259)1.1 Supported by TTDPatch 2.6 (r2351)2.6 Object colour
48 B Supported by OpenTTD 1.1 (r21455)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Object views
60 W Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Get object type and view at offset
61 B Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Get random bits at offset
62 D Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Land info of nearby tiles
63 W Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Animation counter of nearby tile
64 D Supported by OpenTTD 1.1 (r20670)1.1 Supported by TTDPatch 2.6 (r2340)2.6 Count of object, distance of closest instance

Description

Tile information (41)

The return value has the format of ss0t where t is the terrain type which the tile is on, same values as canal var81.

As of TTDPatch r2088, ss contains the slope data of the tile, same format as for industrytile var60. The meaning of the individual bits is:

Bit Meaning
0 West corner is above the lowest
1 South corner is above the lowest
2 East corner is above the lowest
3 North corner is above the lowest
4 The tile is a steep slope (*)

(*) - Steep slopes have this bit plus 3 points raised, giving them values of 0x17, 0x1B, 0x1D and 0x1E.

Animation Counter (43)

This byte gets the actual value of the animation counter (note that action0, property 10, bit 6 must be set for this to work).

Object founder information (44)

This byte contains the ID of the company that funded the object, or 10h if the object was placed in the scenario editor.

Get town zone and Manhattan distance of closest town (45)

Like industry var65 but instead of an offset the current tile is used.

Get square of Euclidian distance of closest town (46)

Like industry var66 but instead of an offset the current tile is used.

Object colour (47)

This byte returns the colour of the object.

(since TTDPatch r2351 and OpenTTD r21259)

Get object views (48)

Returned value stands for a particular view of an object. Number and rank of set-IDs must match the value given in the object's action0 prop17, i.e. for an object with 4 views, prop48 may return values 0 .. 4. Since OpenTTD r21455.

Get object type at offset (60)

The parameter of this variable is an offset from the current tile. The low nibble contains the signed X offset (that is 0h=0, 1h=+1 ... 7h=+7, 8h=-8, 9h=-7 ... Fh=-1), the high nibble contains the Y offset. Therefore the parameter 00h accesses the current tile itself.

The variable value has the format

rrrvtttt
field bits Meaning
tttt 0 - 15
  • 00xxh if the tile is an object tile and was defined in the current GRF with ID xx.
  • FFFEh if the tile is an object tile that was defined in another GRF file or it's a default object.
  • FFFFh if the tile isn't an object tile.
v 16 - 19 Supported by OpenTTD 1.4 (r26315)1.4 Not supported by TTDPatch View of the object, if it is defined in the current GRF.
rrrr 20 - 31 reserved, always mask

Get random bits at offset (61)

Returns the same values as industry var61. The offset it from the current tile and is signed.

To get the random bits from a tile using a offset relative to the north tile of the object, see the example below.

Land info of nearby tiles (62)

Returns the same values as industry tile var60. The offset it from the current tile and is signed.

To get the land info from a tile using a offset relative to the north tile of the object, see the example below.

Animation counter of nearby tile (63)

Returns the var43 of another tile given by the signed offset.

To get the animation counter from a tile using a offset relative to the north tile of the object, see the example below.

Count of object, distance of closest instance (64)

Returns the same values as industry var67. The distance is from the current tile.

Examples

Getting the north tile random bits

The following code uses variable 40, 61 and 7B to read the random bits of the north tile of the object.

    0 * 0    02 0F xx 81
                       40      30 FF   // Get relative position of object tile as yx
               \2^     1A      20 77   // Negate the numbers in bits 0..3 and 4..7 ...
               \2+     1A      20 11   // ... (here we can optionally insert another (positive) offset, to get some other tile relative to the north tile)
               \2^     1A      20 88   // ... (we need to split the xor in two parts, so bits 0..3 do not influence bits 4..7)
               \2rst   7B 61   00 FF   // Get the random bits at the northern tile
                        ...