Animals: Ambient System – Arma 3

From Bohemia Interactive Community
Jump to navigation Jump to search
mNo edit summary
m (Text replacement - "{{arma2}}" to "{{GameCategory|arma2|link= y}}")
 
(9 intermediate revisions by 2 users not shown)
Line 1: Line 1:
==Intro==
{{TOC|side}}
Animals can be placed in Arma 3 either directly by the mission designer (scripting command [[createAgent]], animal sites in modules) or created by the Ambient System. This page is only about the Ambient System presented in Arma 3, which is not the same as the Ambient System implemented in Arma 2.
Animals can be placed in Arma 3 either directly by the mission designer (scripting command [[createAgent]], animal sites in modules) or created by the Ambient System.
This page is only about the Ambient System presented in Arma 3, which is not the same as the Ambient System implemented in {{GameCategory|arma2|link= y}}.


Note: <font color="grey">''Animals placed by the mission designer are global and every player in a multiplayer mission can see them. Animals created by the Ambient System are only local and every player in multiplayer mission has his own ambient animals.''</font>
{{Feature | Informative | Animals placed by the mission designer are global and every player in a multiplayer mission can see them.
Animals created by the Ambient System are only local and every player in multiplayer mission has his own ambient animals.}}




==System description==
== System description ==
===Basic terms===
 
[[Image:Ambient_creation.png|thumb|200px|right|Working of the Ambient System in Arma 3.]]
=== Basic terms ===
 
[[File:Ambient_creation.png|thumb|200px|right|Working of the Ambient System in {{arma3}}.]]
* '''Ambient animal''' - An animal created by the automatic Ambient System.
* '''Ambient animal''' - An animal created by the automatic Ambient System.
* '''Ambient config''' - A config class placed in ''configFile'' >> ''CfgWorlds'' >> Name_of_map >> ''AmbientA3''.
* '''Ambient config''' - A config class placed in ''configFile'' >> ''CfgWorlds'' >> Name_of_map >> ''AmbientA3''.
Line 13: Line 17:
* '''Testing circle''' - A circle with a defined radius. Every testing circle belongs to the main spawn circle. The center of a testing circle is placed on a border of the defined main spawn circle. Conditions for a creation of animals are tested in the center of this circle, animals are created in the area of whole circle.
* '''Testing circle''' - A circle with a defined radius. Every testing circle belongs to the main spawn circle. The center of a testing circle is placed on a border of the defined main spawn circle. Conditions for a creation of animals are tested in the center of this circle, animals are created in the area of whole circle.


===System steps===
=== System steps ===
'''Creation of animals'''
 
* 1) The system checks there are not too many animals already (if the total cost of all animals is the same or higher than the maximal cost).
==== Creation of animals ====
** <font color="grey">''Every animal has defined the'' '''cost''' ''parameter in the ambient config (see [[Arma_3_Animals:_Ambient_System#Config_Structure|Config Structure]]).''</font>
# The system checks there are not too many animals already (if the total cost of all animals is the same or higher than the maximal cost).
** <font color="grey">''Every map has defined the'' '''maxCost''' ''parameter in ambient config (see [[Arma_3_Animals:_Ambient_System#Config_Structure|Config Structure]]).''</font>
#* ''Every animal has defined the'' '''cost''' ''parameter in the ambient config (see [[Arma 3 Animals: Ambient System#Config Structure|Config Structure]]).''
** <font color="grey">''If there are too many animals present already, all following steps are skipped.''</font>
#* ''Every map has defined the'' '''maxCost''' ''parameter in ambient config (see [[Arma 3 Animals: Ambient System#Config Structure|Config Structure]]).''
* 2) Main spawn circle is processed.
#* ''If there are too many animals present already, all following steps are skipped.''
** a) The system places each testing circle on the border of the main spawn circle (with a higher probability in front of the player, see attached picture).
# Main spawn circle is processed.
** b) Conditions in the center of each testing circle are checked and evaluated, the number of missing animals for the testing circle area is counted ([how many animals should be here according to conditions] - [how many animals are already here]).
## The system places each testing circle on the border of the main spawn circle (with a higher probability in front of the player, see attached picture).
** c) One animal type for each main spawn circle is created according to the counted probability.
## Conditions in the center of each testing circle are checked and evaluated, the number of missing animals for the testing circle area is counted ([how many animals should be here according to conditions] - [how many animals are already here]).
*** <font color="grey">''Example: 4 rabbits and 2 goats are missing, probability is 2:1 for rabbits.''</font>
## One animal type for each main spawn circle is created according to the counted probability.
*** <font color="grey">''The number of created animals is dependent on the parameter'' '''spawnCount''' ''defined for each animal in the ambient config (see [[Arma_3_Animals:_Ambient_System#Config_Structure|Config Structure]]).''</font>
##* ''Example: 4 rabbits and 2 goats are missing, probability is 2:1 for rabbits.''
<br/>
##* ''The number of created animals is dependent on the parameter'' '''spawnCount''' ''defined for each animal in the ambient config (see [[Arma 3 Animals: Ambient System#Config Structure|Config Structure]]).''
'''Removing of animals'''<br/>
 
==== Removing of animals ====
An animal is removed if its position is out of the circle (the center is placed on the position of camera) which radius is defined by the parameter ''areaMaxRadius''.
An animal is removed if its position is out of the circle (the center is placed on the position of camera) which radius is defined by the parameter ''areaMaxRadius''.




==Config structure==
== Config structure ==
The ambient config is placed in ''configFile'' >> ''CfgWorlds'' >> Name_of_map >> ''AmbientA3''.
 
The ambient config is placed in ''[[configFile]]'' >> ''CfgWorlds'' >> terrainName >> ''AmbientA3''.


'''Structure:'''
'''Structure:'''
class AmbientA3
<syntaxhighlight lang="cpp">
{
class AmbientA3
    maxCost = 500;                     //max. cost of all animals spawned by the ambient system
{
   
maxCost = 500; // max. cost of all animals spawned by the ambient system
    class Main_spawn_circle_name
 
    {
class Main_spawn_circle_name
      areaSpawnRadius = 440.0;         //radius of the main spawn circle, testing circles are placed on this radius
{
      areaMaxRadius = 500.0;           //radius where animals are removed
areaSpawnRadius = 440.0; // radius of the main spawn circle, testing circles are placed on this radius
      spawnCircleRadius = 30.0;       //radius of testing circles
areaMaxRadius = 500.0; // radius where animals are removed
      spawnInterval = 4.7;             //how often is the creation process started in seconds
spawnCircleRadius = 30.0; // radius of testing circles
     
spawnInterval = 4.7; // how often is the creation process started in seconds
      class Species
 
      {
class Species
          class Animal_config_class     //class of animal from CfgVehicles
{
          {
class Animal_config_class // class of animal from CfgVehicles
            maxCircleCount = 5;       //expression - max. number of a given kind in testing circle
{
            maxWorldCount = 8;         //max. number of animals on map
maxCircleCount = 5; // expression - max. number of a given kind in testing circle
            cost = 3;                 //cost of animal
maxWorldCount = 8; // max. number of animals on map
            spawnCount = 1;           //how many animals should be spawned at once
cost = 3; // cost of animal
            groupSpawnRadius = 10;     //radius for spawning of animal group
spawnCount = 1; // how many animals should be spawned at once
            maxAlt = 200;             //if defined, an animal can be created only if [camera height above/under water/ground] < maxAlt
groupSpawnRadius = 10; // radius for spawning of animal group
            minAlt = -10;             //if defined, an animal can be created only if [camera height above/under water/ground] > minAlt
maxAlt = 200; // if defined, an animal can be created only if [camera height above/under water/ground] < maxAlt
          };
minAlt = -10; // if defined, an animal can be created only if [camera height above/under water/ground] > minAlt
      };
};
    };
};
};
};
};
</syntaxhighlight>


In parameter ''maxCircleCount'' can be used:
In parameter ''maxCircleCount'' can be used:
Line 75: Line 83:
* '''camDepth''' [0-max.Depth] - depth of camera position in water in meters
* '''camDepth''' [0-max.Depth] - depth of camera position in water in meters


=== Stratis Example ===
<syntaxhighlight lang="cpp">
class CfgWorlds
{
class Stratis
{
class AmbientA3
{
maxCost = 500;
class Radius440_500
{
areaSpawnRadius = 440.0;
areaMaxRadius = 500.0;
spawnCircleRadius = 30.0;
spawnInterval = 4.7;
class Species
{
class Seagull
{
maxCircleCount = ((sea * (1 - night)) + (2 * houses * sea)) * (1 - night);
maxWorldCount = 8;
cost = 3;
spawnCount = 1;
groupSpawnRadius = 10;
maxAlt = 200;
minAlt = -10;
};
class Rabbit_F
{
maxCircleCount = (20 * (0.1 - houses)) * (1 - sea);
maxWorldCount = 4;
cost = 5;
spawnCount = 1;
groupSpawnRadius = 10;
maxAlt = 80;
minAlt = -5;
};
};
};
class Radius40_60
{
areaSpawnRadius = 50.0;
areaMaxRadius = 83.0;
spawnCircleRadius = 10.0;
spawnInterval = 1.5;
class Species
{
class CatShark_F
{
maxCircleCount = (4 * (WaterDepth interpolate [1,30,0,1]));
maxWorldCount = 10;
cost = 6;
spawnCount = 1;
groupSpawnRadius = 10;
maxAlt = 10;
minAlt = -80;
};
class Turtle_F
{
maxCircleCount = (2 * (waterDepth interpolate [1,16,0,1]) * ((1-houses) * (1-houses)));
maxWorldCount = 6;
cost = 5;
spawnCount = 1;
groupSpawnRadius = 10;
maxAlt = 10;
minAlt = -80;
};
};
};
};
};
};
</syntaxhighlight>


'''Complete example for Stratis map:'''
class CfgWorlds
{
    class Stratis
    {
      class AmbientA3
      {
          maxCost = 500;
         
          class Radius440_500
          {
            areaSpawnRadius = 440.0;
            areaMaxRadius = 500.0;
            spawnCircleRadius = 30.0;
            spawnInterval = 4.7;
           
            class Species
            {
                class Seagull
                {
                  maxCircleCount = ((sea * (1 - night)) + (2 * houses * sea)) * (1 - night);
                  maxWorldCount = 8;
                  cost = 3;
                  spawnCount = 1;
                  groupSpawnRadius = 10;
                  maxAlt = 200;
                  minAlt = -10;
                };
                class Rabbit_F
                {
                  maxCircleCount = (20 * (0.1 - houses)) * (1 - sea);
                  maxWorldCount = 4;
                  cost = 5;
                  spawnCount = 1;
                  groupSpawnRadius = 10;
                  maxAlt = 80;
                  minAlt = -5;
                };
            };
          };
          class Radius40_60
          {
            areaSpawnRadius = 50.0;
            areaMaxRadius = 83.0;
            spawnCircleRadius = 10.0;
            spawnInterval = 1.5;
     
            class Species
            {
                class CatShark_F
                {
                  maxCircleCount = (4 * (WaterDepth interpolate [1,30,0,1]));
                  maxWorldCount = 10;
                  cost = 6;
                  spawnCount = 1;
                  groupSpawnRadius = 10;
                  maxAlt = 10;
                  minAlt = -80;
                };
                class Turtle_F
                {
                  maxCircleCount = (2 * (waterDepth interpolate [1,16,0,1]) * ((1-houses) * (1-houses)));
                  maxWorldCount = 6;
                  cost = 5;
                  spawnCount = 1;
                  groupSpawnRadius = 10;
                  maxAlt = 10;
                  minAlt = -80;
                };
            };
          };
      };
    };
};


[[Category:Arma 3: Editing|Animals Ambient System]]
{{GameCategory|arma3|Editing}}

Latest revision as of 14:01, 19 March 2024

Animals can be placed in Arma 3 either directly by the mission designer (scripting command createAgent, animal sites in modules) or created by the Ambient System. This page is only about the Ambient System presented in Arma 3, which is not the same as the Ambient System implemented in Arma 2.

Animals placed by the mission designer are global and every player in a multiplayer mission can see them. Animals created by the Ambient System are only local and every player in multiplayer mission has his own ambient animals.


System description

Basic terms

Working of the Ambient System in Arma 3.
  • Ambient animal - An animal created by the automatic Ambient System.
  • Ambient config - A config class placed in configFile >> CfgWorlds >> Name_of_map >> AmbientA3.
  • Main spawn circle - A circle with defined radius (parameter areaSpawnRadius) on which border are testing circles being created. The center is placed on a camera position. Main spawn circles are marked by green, red and blue colors on the attached image.
  • Testing circle - A circle with a defined radius. Every testing circle belongs to the main spawn circle. The center of a testing circle is placed on a border of the defined main spawn circle. Conditions for a creation of animals are tested in the center of this circle, animals are created in the area of whole circle.

System steps

Creation of animals

  1. The system checks there are not too many animals already (if the total cost of all animals is the same or higher than the maximal cost).
    • Every animal has defined the cost parameter in the ambient config (see Config Structure).
    • Every map has defined the maxCost parameter in ambient config (see Config Structure).
    • If there are too many animals present already, all following steps are skipped.
  2. Main spawn circle is processed.
    1. The system places each testing circle on the border of the main spawn circle (with a higher probability in front of the player, see attached picture).
    2. Conditions in the center of each testing circle are checked and evaluated, the number of missing animals for the testing circle area is counted ([how many animals should be here according to conditions] - [how many animals are already here]).
    3. One animal type for each main spawn circle is created according to the counted probability.
      • Example: 4 rabbits and 2 goats are missing, probability is 2:1 for rabbits.
      • The number of created animals is dependent on the parameter spawnCount defined for each animal in the ambient config (see Config Structure).

Removing of animals

An animal is removed if its position is out of the circle (the center is placed on the position of camera) which radius is defined by the parameter areaMaxRadius.


Config structure

The ambient config is placed in configFile >> CfgWorlds >> terrainName >> AmbientA3.

Structure:

class AmbientA3
{
	maxCost = 500;						// max. cost of all animals spawned by the ambient system

	class Main_spawn_circle_name
	{
		areaSpawnRadius = 440.0;		// radius of the main spawn circle, testing circles are placed on this radius
		areaMaxRadius = 500.0;			// radius where animals are removed
		spawnCircleRadius = 30.0;		// radius of testing circles
		spawnInterval = 4.7;			// how often is the creation process started in seconds

		class Species
		{
			class Animal_config_class	// class of animal from CfgVehicles
			{
				maxCircleCount = 5;		// expression - max. number of a given kind in testing circle
				maxWorldCount = 8;		// max. number of animals on map
				cost = 3;				// cost of animal
				spawnCount = 1;			// how many animals should be spawned at once
				groupSpawnRadius = 10;	// radius for spawning of animal group
				maxAlt = 200;			// if defined, an animal can be created only if [camera height above/under water/ground] < maxAlt
				minAlt = -10;			// if defined, an animal can be created only if [camera height above/under water/ground] > minAlt
			};
		};
	};
};

In parameter maxCircleCount can be used:

  • rain [0-1] - intensity of rain
  • night [0-1] - intensity of night
  • meadow [0-1] - how much it seems here like meadow
  • trees [0-1] - how much trees is around
  • hills [0-1] - 160 m above sea level -> 0; 400 m above sea level -> 1
  • houses [0-1] - how many houses is around
  • windy [0-1] - intensity of wind
  • forest [0-1] - how much it seems here like forest
  • deadBody [0-1] - how far is corpse (1 for corpse very close)
  • sea [0-1] - how far is sea (1 for position in sea)
  • waterDepth [0-max.Depth] - depth of water in meters
  • camDepth [0-max.Depth] - depth of camera position in water in meters

Stratis Example

class CfgWorlds
{
	class Stratis
	{
		class AmbientA3
		{
			maxCost = 500;

			class Radius440_500
			{
				areaSpawnRadius = 440.0;
				areaMaxRadius = 500.0;
				spawnCircleRadius = 30.0;
				spawnInterval = 4.7;

				class Species
				{
					class Seagull
					{
						maxCircleCount = ((sea * (1 - night)) + (2 * houses * sea)) * (1 - night);
						maxWorldCount = 8;
						cost = 3;
						spawnCount = 1;
						groupSpawnRadius = 10;
						maxAlt = 200;
						minAlt = -10;
					};
					class Rabbit_F
					{
						maxCircleCount = (20 * (0.1 - houses)) * (1 - sea);
						maxWorldCount = 4;
						cost = 5;
						spawnCount = 1;
						groupSpawnRadius = 10;
						maxAlt = 80;
						minAlt = -5;
					};
				};
			};
			class Radius40_60
			{
				areaSpawnRadius = 50.0;
				areaMaxRadius = 83.0;
				spawnCircleRadius = 10.0;
				spawnInterval = 1.5;

				class Species
				{
					class CatShark_F
					{
						maxCircleCount = (4 * (WaterDepth interpolate [1,30,0,1]));
						maxWorldCount = 10;
						cost = 6;
						spawnCount = 1;
						groupSpawnRadius = 10;
						maxAlt = 10;
						minAlt = -80;
					};
					class Turtle_F
					{
						maxCircleCount = (2 * (waterDepth interpolate [1,16,0,1]) * ((1-houses) * (1-houses)));
						maxWorldCount = 6;
						cost = 5;
						spawnCount = 1;
						groupSpawnRadius = 10;
						maxAlt = 10;
						minAlt = -80;
					};
				};
			};
		};
	};
};