forked from Bob-Murphy/A3-Antistasi-1.4
-
-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'official-antistasi-community:unstable' into AegisAtlas
- Loading branch information
Showing
418 changed files
with
111,805 additions
and
3,098 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
//Vanilla - CfgVehicles.hpp | ||
|
||
class CfgVehicles | ||
{ | ||
#include "sfp_air.hpp" | ||
|
||
// Nose-fall tweaks to make planes turn at a semi-decent rate when flown by AI | ||
class Plane_Base_F; | ||
class CUP_A10_Base : Plane_Base_F | ||
{ | ||
draconicTorqueXCoef = 2; | ||
}; | ||
class CUP_L39_base : Plane_base_F | ||
{ | ||
draconicTorqueXCoef = 2; | ||
}; | ||
|
||
// The faster planes benefit slightly from more torque, so we use the array form | ||
class Plane; | ||
class CUP_AV8B_Base : Plane | ||
{ | ||
draconicTorqueXCoef[] = {2,3,4,5,6,7,8,9,10,10.1,10.2}; | ||
}; | ||
class CUP_Su25_base : Plane | ||
{ | ||
draconicTorqueXCoef[] = {2,3,4,5,6,7,8,9,10,10.1,10.2}; | ||
//speeds in m/s: {0, 37.5, 75, 112.5, 150, 187.5, 225, 262.5, 300, 337.5, 375m/s} | ||
}; | ||
class CUP_F35B_base : Plane | ||
{ | ||
draconicTorqueXCoef[] = {2,3.5,5,6.5,8,9,10,11,12,12.1,12.2}; | ||
//speeds in m/s: {0, 58.3, 117, 175, 233, 292, 350, 408, 467, 525, 583m/s} | ||
}; | ||
class CUP_SU34_BASE : Plane | ||
{ | ||
draconicTorqueXCoef[] = {2,3.5,5,6.5,8,9,10,11,12,12.1,12.2}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
//CUP-SFP - sfp_air.hpp | ||
|
||
class CUP_B_UH60S_USN; | ||
class CUP_MH60S_Unarmed_USN; | ||
class CUP_MH60S_Unarmed_FFV_USN; | ||
|
||
class a3a_SFP_B_UH60S_USN : CUP_B_UH60S_USN | ||
{ | ||
displayName = "UH-60M (M3M)"; | ||
textureList[] = {"Black", 1}; | ||
animationList[] = {"Navyclan_hide",1,"Navyclan2_hide",1,"Filters_Hide",1,"mainRotor_folded",1,"mainRotor_unfolded",0,"Hide_ESSS2x",1,"Hide_ESSS4x",1,"Hide_Nose",0,"Blackhawk_Hide",0,"Hide_FlirTurret",1,"Hide_Probe",1,"Doorcock_Hide",0}; | ||
}; | ||
class a3a_SFP_MH60S_Unarmed_USN : CUP_MH60S_Unarmed_USN | ||
{ | ||
displayName = "UH-60M (Unarmed)"; | ||
textureList[] = {"Black", 1}; | ||
animationList[] = {"Navyclan_hide",1,"Navyclan2_hide",1,"Filters_Hide",1,"mainRotor_folded",1,"mainRotor_unfolded",0,"Hide_ESSS2x",1,"Hide_ESSS4x",1,"Hide_Nose",0,"Blackhawk_Hide",0,"Hide_FlirTurret",0,"Hide_Probe",1,"Doorcock_Hide",0}; | ||
}; | ||
class a3a_SFP_MH60S_Unarmed_FFV_USN : CUP_MH60S_Unarmed_FFV_USN | ||
{ | ||
displayName = "UH-60M (Unarmed/FFV)"; | ||
textureList[] = {"Black", 1}; | ||
animationList[] = {"Navyclan_hide",1,"Navyclan2_hide",1,"Filters_Hide",1,"mainRotor_folded",1,"mainRotor_unfolded",0,"Hide_ESSS2x",1,"Hide_ESSS4x",1,"Hide_Nose",0,"Blackhawk_Hide",0,"Hide_FlirTurret",0,"Hide_Probe",1,"Doorcock_Hide",0}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// IFA - CfgAmmo.hpp | ||
|
||
class CfgAmmo { | ||
// Buffs to bring mortar effectiveness against unarmoured somewhere near vanilla against armoured | ||
class Sh_82mm_AMOS; | ||
class LIB_Sh_82_HE : Sh_82mm_AMOS { | ||
indirectHitRange = 13; | ||
}; | ||
class LIB_Sh_81_HE : LIB_Sh_82_HE { | ||
indirectHitRange = 12.6; | ||
}; | ||
class LIB_Sh_60_HE : LIB_Sh_82_HE { | ||
indirectHitRange = 11; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
//IFA - CfgVehicles.hpp | ||
|
||
class DefaultEventHandlers; | ||
class CfgVehicles | ||
{ | ||
class LIB_US_Willys_MB_M1919; | ||
class a3a_LIB_Willys_MB_M1919 : LIB_US_Willys_MB_M1919{ | ||
hiddenSelectionsTextures[] = {"WW2\Assets_t\Vehicles\Cars_t\IF_Willys_MB\Willys_co.paa","\WW2\Assets_t\Vehicles\Cars_t\IF_Willys_MB\Willys_Additional_co.paa"}; | ||
typicalCargo[] = {"LIB_SOV_AT_soldier"}; | ||
crew = "LIB_SOV_unequip"; | ||
faction = "LIB_RKKA"; | ||
side = 0; | ||
}; | ||
class LIB_DAK_PzKpfwIV_H; | ||
class a3a_lib_PzKpfwIV_noShield : LIB_DAK_PzKpfwIV_H{ | ||
faction = "LIB_WEHRMACHT"; | ||
hiddenSelectionsTextures[] = {"\WW2\Assets_t\Vehicles\Tanks_t\IF_PzKpfwIV_H\Body_co.paa","\WW2\Assets_t\Vehicles\Tanks_t\IF_PzKpfwIV_H\Turret_co.paa","\WW2\Assets_t\Vehicles\Tanks_t\IF_PzKpfwIV_H\Wheels_co.paa","\WW2\Assets_t\Vehicles\Tanks_t\IF_PzKpfwIV_H\Tracks_co.paa"}; | ||
}; | ||
class LIB_Zis6_Parm; | ||
class a3a_lib_Zis6_BOX : LIB_Zis6_Parm { | ||
displayName = "ZIS-5V (Box)"; | ||
transportRepair = 0; | ||
typicalCargo[] = {"LIB_FFI_LAT_Soldier"}; | ||
faction = "LIB_FFI"; | ||
side = 2; | ||
}; | ||
|
||
class B_HMG_02_high_weapon_F; | ||
class I_G_HMG_02_high_weapon_F : B_HMG_02_high_weapon_F{ | ||
class assembleInfo; | ||
}; | ||
class a3a_hmg_02_high_weapon : I_G_HMG_02_high_weapon_F{ | ||
class assembleInfo : assembleInfo { | ||
assembleTo = "a3a_hmg_02_high"; | ||
}; | ||
}; | ||
class HMG_02_high_base_F; | ||
class B_G_HMG_02_high_F : HMG_02_high_base_F{ | ||
class AnimationSources; | ||
}; | ||
class a3a_hmg_02_high : B_G_HMG_02_high_F{ | ||
displayName = ".50 M2HB (Raised)"; | ||
class AnimationSources : AnimationSources{ | ||
class Hide_Shield { | ||
animPeriod = 0.01; | ||
initPhase = 1; | ||
source = "user"; | ||
useSource = 1; | ||
}; | ||
class Hide_Rail { | ||
animPeriod = 0.01; | ||
initPhase = 1; | ||
source = "user"; | ||
useSource = 1; | ||
}; | ||
}; | ||
animationList[] ={}; | ||
}; | ||
|
||
// CBA event handlers fix | ||
class Tank; | ||
class LIB_Armored_Target_Dummy : Tank { | ||
delete EventHandlers; | ||
}; | ||
|
||
// Nose-fall tweaks to make planes turn at a semi-decent rate when flown by AI | ||
// Note: LIB_Ju87 not adjusted because planes with low maxSpeed use different AI logic | ||
class LIB_GER_Plane_base; | ||
class LIB_FW190F8 : LIB_GER_Plane_base | ||
{ | ||
draconicTorqueXCoef = 2; | ||
}; | ||
class LIB_SU_Plane_base; | ||
class LIB_P39 : LIB_SU_Plane_base | ||
{ | ||
draconicTorqueXCoef = 2; | ||
}; | ||
class LIB_Pe2 : LIB_SU_Plane_base | ||
{ | ||
draconicTorqueXCoef = 2; | ||
}; | ||
class LIB_US_Plane_base; | ||
class LIB_P47 : LIB_US_Plane_base | ||
{ | ||
draconicTorqueXCoef = 2; | ||
}; | ||
}; |
Oops, something went wrong.