12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- class HuntingOptic extends ItemOptics
- {
- EntityAI m_Parent;
-
- void HuntingOptic()
- {
- HideSelection("rings_ris");
- HideSelection("rings_ris_pilot");
- }
-
- override void OnWasAttached( EntityAI parent, int slot_id )
- {
- super.OnWasAttached(parent, slot_id);
- m_Parent = parent;
- if (!ParentUsesWinchesterTypeMount())
- {
- HideSelection("rings_winchester");
- HideSelection("rings_winchester_pilot");
- ShowSelection("rings_ris");
- ShowSelection("rings_ris_pilot");
- }
- }
-
- override void OnWasDetached( EntityAI parent, int slot_id )
- {
- super.OnWasDetached(parent, slot_id);
- m_Parent = null;
- HideSelection("rings_ris");
- HideSelection("rings_ris_pilot");
- ShowSelection("rings_winchester");
- ShowSelection("rings_winchester_pilot");
- }
-
- override void HideSelection( string selection_name )
- {
- super.HideSelection( selection_name );
- if (selection_name == "hide") //hides pilotview selections in order not to obstruct view
- {
- HideSelection("rings_ris_pilot");
- HideSelection("rings_winchester_pilot");
- }
- }
-
- override void ShowSelection( string selection_name )
- {
- super.ShowSelection( selection_name );
- if (selection_name == "hide")
- {
- if (!ParentUsesWinchesterTypeMount())
- {
- HideSelection("rings_winchester");
- HideSelection("rings_winchester_pilot");
- ShowSelection("rings_ris");
- ShowSelection("rings_ris_pilot");
- }
- else
- {
- HideSelection("rings_ris");
- HideSelection("rings_ris_pilot");
- ShowSelection("rings_winchester");
- ShowSelection("rings_winchester_pilot");
- }
- }
- }
-
- bool ParentUsesWinchesterTypeMount()
- {
- if (m_Parent && m_Parent.ConfigIsExisting("winchesterTypeOpticsMount"))
- return m_Parent.ConfigGetBool("winchesterTypeOpticsMount");
-
- return false;
- }
- }
|