Difference between revisions of "CULL"
(Do we really need an extra IPL link?) |
(cosmetic fixes) |
||
Line 9: | Line 9: | ||
Cull zones in GTA III and Vice City are built by a box which is controlled by various flags{{ref|2}}. By default, most of the cull zones are located in <code>data\maps\cull.ipl</code> for both games. | Cull zones in GTA III and Vice City are built by a box which is controlled by various flags{{ref|2}}. By default, most of the cull zones are located in <code>data\maps\cull.ipl</code> for both games. | ||
− | {| | + | {| class="wikitable" |
− | ! | + | ! style="width: 3em;"| {{Icon|3}} {{Icon|VC}} |
! Identifier | ! Identifier | ||
− | ! | + | ! style="width: 7em;" | Type |
! Description | ! Description | ||
|- | |- | ||
Line 38: | Line 38: | ||
Coordinates are always rounded to the nearest world [[unit]] so that they are no longer floating point values, they are non-decimal integers. | Coordinates are always rounded to the nearest world [[unit]] so that they are no longer floating point values, they are non-decimal integers. | ||
− | {| | + | {| class="wikitable collapsible" |
!width="25%"|Value | !width="25%"|Value | ||
!Description | !Description | ||
Line 61: | Line 61: | ||
=== Mirrors === | === Mirrors === | ||
− | + | {{research}} | |
− | |||
== Flags == | == Flags == | ||
Line 68: | Line 67: | ||
Flags are numbers which are build out of a collection of numbers formed by the ''[[Wikipedia:Power_of_2|power of 2]]''-numbers lower than 2<sup>30</sup>. Some are defining various behaviours of the zone. They can be combined by simply adding one flag value to another (see [[binary to decimal conversion]]). | Flags are numbers which are build out of a collection of numbers formed by the ''[[Wikipedia:Power_of_2|power of 2]]''-numbers lower than 2<sup>30</sup>. Some are defining various behaviours of the zone. They can be combined by simply adding one flag value to another (see [[binary to decimal conversion]]). | ||
− | {| | + | {| class="wikitable collapsible" |
− | ! | + | ! style="width: 9em;" | Flag |
− | ! | + | ! style="width: 7em;" | Supported games |
− | ! | + | ! style="width: 25%;" | Binary |
− | !Description | + | ! Description |
|- | |- | ||
|<center>-1</center>||<center>–</center>||<center><code>1111 1111 1111 1111</code></center>||Enables all flags. {{ref|3}} | |<center>-1</center>||<center>–</center>||<center><code>1111 1111 1111 1111</code></center>||Enables all flags. {{ref|3}} | ||
Line 88: | Line 87: | ||
|<center>256</center>||<center>{{Icon|3}} {{Icon|VC}}</center>||<center><code>0000 0001 0000 0000</code></center>||Police will always exit their vehicles once they are spawned ONLY IF you have a wanted level. If you don't, they'll drive normally. | |<center>256</center>||<center>{{Icon|3}} {{Icon|VC}}</center>||<center><code>0000 0001 0000 0000</code></center>||Police will always exit their vehicles once they are spawned ONLY IF you have a wanted level. If you don't, they'll drive normally. | ||
|- | |- | ||
− | |<center>1024</center>||<center>{{Icon|VC}}</center>||<center><code>0000 | + | |<center>512</center>||<center>{{Icon|VC}}</center>||<center><code>0000 0010 0000 0000</code></center>|| |
+ | |- | ||
+ | |<center>1024</center>||<center>{{Icon|VC}}</center>||<center><code>0000 0100 0000 0000</code></center>||Some visual ocean water effects are removed like the transparent waves and sparkles on the water | ||
|- | |- | ||
|<center>4096</center>||<center>{{Icon|SA}} {{Icon|4}}</center>||<center><code>0001 0000 0000 0000</code></center>||5-Star Military zone. | |<center>4096</center>||<center>{{Icon|SA}} {{Icon|4}}</center>||<center><code>0001 0000 0000 0000</code></center>||5-Star Military zone. | ||
Line 105: | Line 106: | ||
* {{GTAF|202532|IPL documentation topic}} | * {{GTAF|202532|IPL documentation topic}} | ||
− | {{N|4|SA|VC}} | + | {{N|4|SA|VC|3}} |
− | [[Category:Map Formats | + | [[Category:Map Formats]][[Category:GTA LCS]][[Category:GTA VCS]] |
Revision as of 05:36, 3 January 2015
Short description: | Create a culling zone | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Supported games: | GTA 3 GTA VC GTA SA GTA IV | |||||||||||||||||||||
IPL Sections:
|
CULL is a section in the IPL file. It is used to create zones with different behaviour like mirrors [1] or fixed camera positions. It can also influence the environment like disable rain within the zone and certain police behaviors.
Contents
Format
GTA III and Vice City
Cull zones in GTA III and Vice City are built by a box which is controlled by various flags[2]. By default, most of the cull zones are located in data\maps\cull.ipl
for both games.
Identifier | Type | Description | |
---|---|---|---|
float[3] | A point which defines the center of the box in real world coordinates. | ||
float[3] | A point which corresponds to the lower left corner of the box. | ||
float[3] | A point which corresponds to the upper right corner of the box. | ||
integer | The behaviour of the cull zone – see below. | ||
integer | Always 0 |
Changing the zones center coordinates does not directly affect the zone itself. Anyway this vector should always point to the real center of the zone since those values are used to calculate the distance of several instances (e.g. the player) to the zone itself.
GTA San Andreas / IV
San Andreas has two different major formats in the game:
CenterX, CenterY, CenterZ, Unknown1, Length, Bottom, Width, Unknown2, Top, Flag, Unknown3
CenterX, CenterY, CenterZ, Unknown1, Length, Bottom, Width, Unknown2, Top, Flag, Vx, Vy, Vz, Cm
Coordinates are always rounded to the nearest world unit so that they are no longer floating point values, they are non-decimal integers.
Value | Description |
---|---|
Vector to the center of the cull zone. | |
Allways 0. | |
Dimensions of the zone along y-axis. | |
Dimensions of the zone along x-axis. | |
Absolute Z coordinate of the top and bottom of the box. | |
The behaviour of the cull zone – see below | |
Mirror parameters [4]. |
This section is incomplete. You can help by fixing and expanding it.
Mirrors
Flags
Flags are numbers which are build out of a collection of numbers formed by the power of 2-numbers lower than 230. Some are defining various behaviours of the zone. They can be combined by simply adding one flag value to another (see binary to decimal conversion).
Flag | Supported games | Binary | Description |
---|---|---|---|
1111 1111 1111 1111 |
Enables all flags. [3] | ||
0000 0000 0000 0001 |
Camera close in into player using closest third-person view camera mode, does not close in if in first person or cinematic mode, camera mode cannot be changed while in the zone | ||
0000 0000 0000 0010 |
Camera remotely placed outside the zone, no control of camera, camera mode cannot be changed while in the zone | ||
0000 0000 0000 0100 |
Lowers the camera angle on boats | ||
0000 0000 0000 1000 |
Rain-free, police helicopter-free zone | ||
0000 0000 0001 0000 |
Police will not exit their vehicles voluntarily. They will only exit if you do something to them (like shoot it). Cops both on foot and in vehicles will not chase you but can shoot at you. | ||
0000 0001 0000 0000 |
Police will always exit their vehicles once they are spawned ONLY IF you have a wanted level. If you don't, they'll drive normally. | ||
0000 0010 0000 0000 |
|||
0000 0100 0000 0000 |
Some visual ocean water effects are removed like the transparent waves and sparkles on the water | ||
0001 0000 0000 0000 |
5-Star Military zone. |
This section is incomplete. You can help by fixing and expanding it.
References
- ^ GTAForums: 8 Track Screen
- ^ GTAForums: GTA VC cullzones deciphered
- ^ Two's complement
- ^ GTAForums: SA Mirrors
External links
- GTAForums: Karma contest with cullzones as topic
- GTAForums: IPL documentation topic
Grand Theft Auto IV | |
---|---|
File Formats | .dat • .gxt • .ide • .img • .ipl • .nod • .sco • .rpf • .rrr • .wad • .wbd/.wbn • .wdd • .wdr • .wft • .whm • .wpl • .wtd |
Documentation | Audio • Bink Video • Cryptography • Cutscenes • GXT Text • Image listing • Keycodes • Map Listing • Native functions • Paths • Radar Blips • Radio Stations • Saves • Scenarios • VTable • Weapons |
Tools | ASI Loader • ENBSeries • G-Texture • GIMS IV • Ingame WPL Editor • IV Needle • OpenIV • SparkIV • XLiveLess • WPL Manager • X Mod Installer Alice • C++ Script Hook • .NET Script Hook • Scocl |
Tutorials | Importing Textures with OpenIV • Importing Textures with SparkIV |
Modifications | GTA Connected • Gostown IV • Four Multiplayer • IV Multiplayer • CitizenMP:IV Reloaded |
Useful links | Community portal • Discussion forums • Modding forums • Mods on GTAGarage.com |