createSoundSource: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
(add. classification)
m (Text replacement - "|= Game name" to "|Game name=")
(18 intermediate revisions by 6 users not shown)
Line 1: Line 1:
{{Command|= Comments
{{Command|Comments=
____________________________________________________________________________________________
____________________________________________________________________________________________


| arma |= Game name
| arma |Game name=
http://community.bistudio.com/wiki?title=createSoundSource&action=edit
http://community.bistudio.com/wiki?title=createSoundSource&action=edit
|1.00|= Game version
|1.00|Game version=
 
|arg= global |Multiplayer Arguments=
 
|eff= global |Multiplayer Effects=
____________________________________________________________________________________________
____________________________________________________________________________________________


| Creates a sound source of the given type (type is the name of the subclass of [[ArmA:_CfgVehicles|CfgVehicles]]). If the markers array contains several marker names, the position of a random one is used, otherwise, the given position is used. The sound source is placed inside a circle with this position as its center and placement as its radius. |= Description
| Creates a sound source of the given type (type is the name of the subclass of [[ArmA:_CfgVehicles|CfgVehicles]] which is pointing to the sound defined in [[CfgSFX]]). The actual sound object created is of type <tt>"#dynamicsound"</tt> and could be detected with [[allMissionObjects]]. If the markers array contains several marker names, the position of a random one is used, otherwise, the given position is used. The sound source is placed inside a circle with this position as its center and placement as its radius. Some of the vanilla classes pre-configured in Arma 3:
* <tt>"Sound_Alarm"</tt>
* <tt>"Sound_Alarm2"</tt>
* <tt>"Sound_BattlefieldExplosions"</tt>
* <tt>"Sound_BattlefieldFirefight"</tt>
* <tt>"Sound_Fire"</tt>
* <tt>"Sound_SmokeWreck1"</tt>
* <tt>"Sound_SparklesWreck1"</tt>
* <tt>"Sound_SparklesWreck2"</tt>
* <tt>"Sound_Stream"</tt>
Since Arma 3 v1.69.141183 it is possible to define sounds for use with [[createSoundSource]] in mission config. As mentioned earlier, the sounds needed for this command should be defined inside [[CfgVehicles]] class, which itself references [[CfgSFX]] class. If given class searched in main config and is not found, the search will continue in [[description.ext]]. Here is an example of suitable mission config definition:
 
<syntaxhighlight lang=php>
// description.ext
 
class CfgSFX
{
class MyOwl
{
sound0[] = {"@A3\Sounds_F\environment\animals\birds\owl1", db-10, 1.0, 1000, 0.2, 0, 15, 30};  // path to addon sound
sound1[] = {"@A3\Sounds_F\environment\animals\birds\owl2", db-10, 1.0, 1000, 0.2, 0, 15, 30};  // path to addon sound
sound2[] = {"@A3\Sounds_F\environment\animals\birds\owl3", db-10, 1.0, 1000, 0.2, 0, 15, 30};  // path to addon sound
sounds[] = {sound0, sound1, sound2};
empty[] = {"", 0, 0, 0, 0, 0, 0, 0};
};
};
 
class CfgVehicles
{
class MyOwlSound // class name to be used with createSoundSource
{
sound = "MyOwl"; // reference to CfgSFX class
};
};
</syntaxhighlight>
 
<code>_owl <nowiki>=</nowiki> [[createSoundSource]] ["MyOwlSound", [[position]] [[player]], [], 0];</code>
 
Note that the sound created by [[createSoundSource]] will always be looping. Also when [[CfgSFX]] sound definition contains more than 1 sound, there is no guarantee that the sound played will be the same on every PC in Multiplayer.
 
{{Important| For some unknown reason if at the moment of command execution the player is in first person view and is inside a vehicle, the sound created is greatly attenuated}}|DESCRIPTION=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[Object]] <nowiki>=</nowiki> '''createSoundSource''' [type, position, markers, placement] |= Syntax
|'''createSoundSource''' [type, position, markers, placement] |SYNTAX=


|p1= [type, position, markers, placement]: [[Array]] |= Parameter 1
|p1= [type, position, markers, placement]: [[Array]] |PARAMETER1=
|p2= type: [[String]] as per CfgVehicles |= Parameter 2
|p2= type: [[String]] - [[CfgVehicles]] class |PARAMETER2=
|p3= position: [[Position]] |= Parameter 3
|p3= position: [[PositionAGL]], [[Position2D]] or [[Object]] - Desired placement position|PARAMETER3=
|p4= markers: [[Array]] |= Parameter 4
|p4= markers: [[Array]] - If the markers array contains any markers, the position is randomly picked from array of given markers plus desired placement position. If any of the markers were given z coordinate with [[setMarkerPos]], the sound will also be created at given z coordinate|PARAMETER4=
|p5= placement: [[Number]]. radius |= Parameter 5
|p5= placement: [[Number]] - The sound is placed inside a circle with given position as center and placement as its radius |PARAMETER5=
| [[Object]] |= Return value
| [[Object]] |RETURNVALUE=
____________________________________________________________________________________________
____________________________________________________________________________________________
   
   
|x1= <code>_soundSource<nowiki> =</nowiki> createSoundSource ["LittleDog", [[position]] [[player]], [], 0]</code> |= Example 1
|x1= <code>_soundSource = [[createSoundSource]] ["LittleDog", [[position]] [[player]], [], 0]</code> |EXAMPLE1=
|x2= <code>[] spawn
{
_alarm = [[createSoundSource]] ["Sound_Alarm", [[position]] [[player]], [], 0]; //starts alarm
[[sleep]] 10;
[[deleteVehicle]] _alarm; //stops alarm
};</code> |EXAMPLE2=
____________________________________________________________________________________________
____________________________________________________________________________________________


| [[playSound]], [[say]], [[say string]], [[playMusic]] |= See also
| [[playSound]], [[playSound3D]], [[sideRadio]], [[say]], [[say2D]], [[say3D]], [[playMusic]]|SEEALSO=


}}
}}
Line 42: Line 92:
[[Category:Command_Group:_Sounds|{{uc:{{PAGENAME}}}}]]
[[Category:Command_Group:_Sounds|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands ArmA2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands VBS2|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting Commands Arma 3|{{uc:{{PAGENAME}}}}]]
[[Category:Scripting_Commands_Take_On_Helicopters|{{uc:{{PAGENAME}}}}]]
[[Category:Broken Scripting Commands|{{uc:{{PAGENAME}}}}]]

Revision as of 04:43, 31 August 2019

-wrong parameter ("Arma") defined!-1.00
Hover & click on the images for description

Description

Description:
Creates a sound source of the given type (type is the name of the subclass of CfgVehicles which is pointing to the sound defined in CfgSFX). The actual sound object created is of type "#dynamicsound" and could be detected with allMissionObjects. If the markers array contains several marker names, the position of a random one is used, otherwise, the given position is used. The sound source is placed inside a circle with this position as its center and placement as its radius. Some of the vanilla classes pre-configured in Arma 3:
  • "Sound_Alarm"
  • "Sound_Alarm2"
  • "Sound_BattlefieldExplosions"
  • "Sound_BattlefieldFirefight"
  • "Sound_Fire"
  • "Sound_SmokeWreck1"
  • "Sound_SparklesWreck1"
  • "Sound_SparklesWreck2"
  • "Sound_Stream"
Since Arma 3 v1.69.141183 it is possible to define sounds for use with createSoundSource in mission config. As mentioned earlier, the sounds needed for this command should be defined inside CfgVehicles class, which itself references CfgSFX class. If given class searched in main config and is not found, the search will continue in description.ext. Here is an example of suitable mission config definition:
// description.ext

class CfgSFX
{
	class MyOwl
	{
		sound0[] = {"@A3\Sounds_F\environment\animals\birds\owl1", db-10, 1.0, 1000, 0.2, 0, 15, 30};  // path to addon sound
		sound1[] = {"@A3\Sounds_F\environment\animals\birds\owl2", db-10, 1.0, 1000, 0.2, 0, 15, 30};  // path to addon sound
		sound2[] = {"@A3\Sounds_F\environment\animals\birds\owl3", db-10, 1.0, 1000, 0.2, 0, 15, 30};  // path to addon sound
		sounds[] = {sound0, sound1, sound2};
		empty[] = {"", 0, 0, 0, 0, 0, 0, 0};
	};
};

class CfgVehicles
{
	class MyOwlSound // class name to be used with createSoundSource
	{
		sound = "MyOwl"; // reference to CfgSFX class
	};
};

_owl = createSoundSource ["MyOwlSound", position player, [], 0];

Note that the sound created by createSoundSource will always be looping. Also when CfgSFX sound definition contains more than 1 sound, there is no guarantee that the sound played will be the same on every PC in Multiplayer.

For some unknown reason if at the moment of command execution the player is in first person view and is inside a vehicle, the sound created is greatly attenuated
Groups:
Uncategorised

Syntax

Syntax:
createSoundSource [type, position, markers, placement]
Parameters:
[type, position, markers, placement]: Array
type: String - CfgVehicles class
position: PositionAGL, Position2D or Object - Desired placement position
markers: Array - If the markers array contains any markers, the position is randomly picked from array of given markers plus desired placement position. If any of the markers were given z coordinate with setMarkerPos, the sound will also be created at given z coordinate
placement: Number - The sound is placed inside a circle with given position as center and placement as its radius
Return Value:
Object

Examples

Example 1:
_soundSource = createSoundSource ["LittleDog", position player, [], 0]
Example 2:
[] spawn { _alarm = createSoundSource ["Sound_Alarm", position player, [], 0]; //starts alarm sleep 10; deleteVehicle _alarm; //stops alarm };

Additional Information

See also:
playSoundplaySound3DsideRadiosaysay2Dsay3DplayMusic

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section