User Tools

Site Tools


arma:terrain:ground_clutter

Ground Clutter

Ground clutter is the small stones, grass, etc which is displayed on the ground around players position.

Ground clutter does not have geometry, bullets cannot stop on the clutter.

Clutter is defined in several files.

The layers.cfg is where you tell the engine what RGB value you wish to assign your clutter too it in the mask_lco.png file. Remember that each time you edit layers.cfg file, you need to import satellite map into Visitor 3 all over again.

Then the config.cpp is where what does most of the work, here you define the types of foliage as clutter class. It also tells the engine what class of clutter will lay on the texture you want. Then lastly it also allows you too specify how much clutter you want on a texture.

Example My layers.cfg:

class Layers
{
	class Dirta
	{
		texture = "<addon>\data\Dirta_mco.paa";
		material="<addon>\data\Dirta.rvmat";
	};
 
	class Dirtb
	{
		texture = "<addon>\data\Dirtb_mco.paa";
		material="<addon>\data\Dirtb.rvmat";
	};
 
	class Dirtc
	{
		texture = "<addon>\data\Dirtc_mco.paa";
		material="<addon>\data\Dirtc.rvmat";
	};
 
	class Dirtd
	{
		texture = "<addon>\data\Dirtd_mco.paa";
		material="<addon>\data\Dirtd.rvmat";
	};
 
	class travajih
	{
		texture = "<addon>\data\travajih_mco.png";
		material="<addon>\data\travajih.rvmat";
	};
 
	class mesto
	{
		texture = "<addon>\data\mesto_mco.paa";
		material="<addon>\data\mesto.rvmat";
	};
 
	class lesjeh
	{
		texture = "<addon>\data\lesjeh_mco.png";
		material="<addon>\data\lesjeh.rvmat";
	};
 
	class eastskalakam
	{
		texture = "<addon>\data\eastskalakam_mco.paa ";
		material="<addon>\data\eastskalakam.rv mat";
	};
 
	class swamp
	{
		texture = "<addon>\data\oldjunglegrass_mco.p ng";
		material="<addon>\data\oldjunglegrass. rvmat";
	};
 
	class desertrock
	{
		texture = "<addon>\data\desertrock_mco.paa";
		material="<addon>\data\desertrock.rvma t";
	};
 
	class dgrass
	{
		texture = "<addon>\data\dgrass_mco.paa";
		material="<addon>\data\dgrass.rvmat";
	};
 
	class sand
	{
		texture = "<addon>\data\sand_mco.paa";
		material="<addon>\data\sand.rvmat";
	};
};
 
class Legend
{
	picture="<addon>\Source\mapLegend.png" ;
	class Colors
	{
		/// color names should correspond to surface layer names
		Dirta[] = {{ 220, 200, 120 }};
		Dirtb[] = {{ 220, 180, 100 }};
		Dirtc[] = {{ 210, 150, 80 }};
		Dirtd[] = {{ 200, 130, 70 }};
		travajih[] = {{ 14, 189, 26 }};
		mesto[] = {{ 100, 100, 100 }};
		lesjeh[] = {{ 100, 120, 0 }};
		eastskalakam[] = {{ 150, 150, 150 }};
		swamp[] = {{ 83, 83, 28 }};
		desertrock[] = {{ 200, 150, 100 }};
		dgrass[] = {{ 200, 200, 100 }};
		sand[] = {{ 230, 230, 150 }};
	};
};

You can see what classes I have defined and the their matching RGB value. Then below are several sections of my config.cpp.

Defining the objects I want as clutter

class clutter
{
	class ForestFern : GrassGeneral
	{
		model = "ca\plants\clutter_forest_fern.p3d";
		affectedByWind = 0.1;
		scaleMin = 0.9;
		scaleMax = 1.2;
	};

Next I define the files in cfgsurfaces and assign it too a suface

class lesjeh : Default
{
	access = ReadOnly;
	files = "lesjeh_*";
	rough = 0.1;
	dust = 0.9;
	soundEnviron = "grass";
	character = "ausforestclutter";
};

Then lastly I define the cfgsurfacecharacters

class ausforestclutter
{
	probability[] = { 0.2, 0.15, 0.1, 0.1, 0.019, 0.012, 0.011 };
	names[] =
	{
		"ForestFern", "GrassLong", "GrassFlowers",
		"SmallRoc ks", "MushroomsHorcak", "MushroomsPrasivka",
		"Mushroo msMuchomurka"
	};
};

In the last section you can see I have added quite a few objects to that ausforestclutter, and the probability tells the engine how much to lay. Once you understand how clutter works you can then have some fun experimenting with different textures colors etc.

arma/terrain/ground_clutter.txt · Last modified: 2015-08-22 01:40 by snakeman