Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hearing - Add Peltor-style Earpro to Headgear with a 2-Ear Headset #10469

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 25 additions & 1 deletion addons/hearing/CfgWeapons.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class CfgWeapons {

class HelmetBase;
class H_Cap_headphones: HelmetBase {
HEARING_PROTECTION_EARMUFF;
HEARING_PROTECTION_PELTOR;
};

class H_Construction_earprot_base_F: HelmetBase {
Expand Down Expand Up @@ -100,4 +100,28 @@ class CfgWeapons {
class H_HelmetHBK_headset_base_F: H_HelmetHBK_base_F {
HEARING_PROTECTION_PELTOR;
};

// Military headgear with a both-ear headset (similar to the modern INVISIO X7) should have active earpro.
class H_Watchcap_blk: HelmetBase {
HEARING_PROTECTION_PELTOR;
};
class H_Bandanna_khk;
class H_Bandanna_khk_hs: H_Bandanna_khk {
HEARING_PROTECTION_PELTOR;
};
class H_Booniehat_khk;
class H_Booniehat_khk_hs: H_Booniehat_khk {
HEARING_PROTECTION_PELTOR;
};
class H_Cap_oli;
class H_Cap_oli_hs: H_Cap_oli {
HEARING_PROTECTION_PELTOR;
};
class H_MilCap_ocamo: HelmetBase {
HEARING_PROTECTION_PELTOR;
};
class H_Shemag_olive;
class H_Shemag_olive_hs: H_Shemag_olive {
HEARING_PROTECTION_PELTOR;
};
};
11 changes: 7 additions & 4 deletions docs/wiki/feature/hearing.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,14 @@ version:
Introduces hearing damage caused by nearby explosions and large-caliber weapons.

### 1.2 Earplugs
Adds earplugs to mitigate that effect. Soldiers with high caliber weapons or
missile launchers will be equipped with those, but remember to put them in.
Adds earplugs to mitigate that effect. Soldiers with high caliber weapons or missile launchers will be automatically equipped with those, but remember to put them in.
Their drawback is that they reduce the general hearing volume.

### 1.3 Helmets
Some types of helmets can mitigate hearing damage also (ie. crewman helmet, pilot helmet etc.).
### 1.3 Active hearing protection
Some types of helmets/hats with PELTOR-like earmuffs or 2-ear headsets can mitigate hearing damage without dropping the volume.

### 1.4 Crew hearing protection
Armored vehicle crew and pilot helmets provide the best hearing protection while also dropping general volume, which can be desirable in loud vehicles as most communication happens via intercom or radios.

## 2. Usage

Expand Down