File size: 13,384 Bytes
24b81cb |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 |
/*
Author: Boris Vacula
For documentation go to: DayZ Confluence -> How-to articles -> Weapon muzzle flash particle system configuration
This system plays effect(s) on any weapon that is fired/jammed/ruined/...
*/
class WeaponParticlesBase // This class represents every particle effect you see in config within OnFire or OnOverheating events
{
bool m_IlluminateWorld;
bool m_IgnoreIfSuppressed;
bool m_OnlyIfBoltIsOpen;
int m_MuzzleIndex;
int m_OverrideParticle;
int m_OnlyWithinHealthLabelMin;
int m_OnlyWithinHealthLabelMax;
float m_OnlyWithinOverheatLimitsMin;
float m_OnlyWithinOverheatLimitsMax;
float m_OnlyWithinRainLimitsMin;
float m_OnlyWithinRainLimitsMax;
string m_OverrideDirectionPoint;
string m_OnlyIfBulletIs;
string m_OnlyIfWeaponIs;
string m_OverridePoint;
vector m_OverrideDirectionVector;
vector m_PositionOffset;
string m_Name;
//======================================
// PRELOAD EVERYTHING
//======================================
void WeaponParticlesBase(ItemBase muzzle_owner, string config_OnFire_entry)
{
m_Name = config_OnFire_entry;
// ignoreIfSuppressed
m_IgnoreIfSuppressed = GetGame().ConfigGetFloat(string.Format("%1 ignoreIfSuppressed", m_Name));
// onlyIfBoltIsOpen
m_OnlyIfBoltIsOpen = GetGame().ConfigGetFloat(string.Format("%1 onlyIfBoltIsOpen", m_Name));
// illuminateWorld
m_IlluminateWorld = GetGame().ConfigGetFloat(string.Format("%1 illuminateWorld", m_Name));
m_MuzzleIndex = -1;
if (GetGame().ConfigIsExisting(string.Format("%1 muzzleIndex", m_Name)))
{
m_MuzzleIndex = GetGame().ConfigGetInt(string.Format("%1 muzzleIndex", m_Name));
}
// onlyIfWeaponIs
m_OnlyIfWeaponIs = "";
GetGame().ConfigGetText(string.Format("%1 onlyIfWeaponIs", m_Name), m_OnlyIfWeaponIs);
// onlyIfBulletIs
m_OnlyIfBulletIs = "";
GetGame().ConfigGetText(string.Format("%1 onlyIfBulletIs", m_Name), m_OnlyIfBulletIs);
// onlyWithinHealthLabel[]
array<float> health_limit = new array<float>;
GetGame().ConfigGetFloatArray(string.Format("%1 onlyWithinHealthLabel", m_Name), health_limit);
if (health_limit.Count() == 2)
{
m_OnlyWithinHealthLabelMin = health_limit.Get(0);
m_OnlyWithinHealthLabelMax = health_limit.Get(1);
}
else
{
// Disable this filter
m_OnlyWithinHealthLabelMin = -1;
m_OnlyWithinHealthLabelMax = 99;
}
// onlyWithinOverheatLimits[]
array<float> overheat_limit = new array<float>;
GetGame().ConfigGetFloatArray(string.Format("%1 onlyWithinOverheatLimits", m_Name), overheat_limit);
if (overheat_limit.Count() == 2)
{
m_OnlyWithinOverheatLimitsMin = overheat_limit.Get(0);
m_OnlyWithinOverheatLimitsMax = overheat_limit.Get(1);
}
else
{
// Disable this filter
m_OnlyWithinOverheatLimitsMin = -1;
m_OnlyWithinOverheatLimitsMax = 2;
}
// onlyWithinRainLimits[]
array<float> rain_limit = new array<float>;
GetGame().ConfigGetFloatArray(string.Format("%1 onlyWithinRainLimits", m_Name), rain_limit);
if (rain_limit.Count() == 2)
{
m_OnlyWithinRainLimitsMin = rain_limit.Get(0);
m_OnlyWithinRainLimitsMax = rain_limit.Get(1);
}
else
{
// Disable this filter
m_OnlyWithinRainLimitsMin = -1;
m_OnlyWithinRainLimitsMax = 2;
}
// overridePoint
m_OverridePoint = "";
GetGame().ConfigGetText(string.Format("%1 overridePoint", m_Name), m_OverridePoint);
if (m_OverridePoint == "")
m_OverridePoint = "Usti hlavne"; // default memory point name
// overrideParticle
string particle_name = "";
GetGame().ConfigGetText( string.Format("%1 overrideParticle", m_Name), particle_name);
if (particle_name != "")
{
m_OverrideParticle = ParticleList.GetParticleIDByName(particle_name);
}
else
{
m_OverrideParticle = -1;
ErrorEx(string.Format("'%1' does not contain a definition for 'overrideparticle'",
config_OnFire_entry), ErrorExSeverity.INFO);
}
// overrideDirectionPoint
m_OverrideDirectionPoint = "";
GetGame().ConfigGetText(string.Format("%1 overrideDirectionPoint", m_Name), m_OverrideDirectionPoint);
if (m_OverrideDirectionPoint == "")
{
// overrideDirectionVector
vector test_ori = GetGame().ConfigGetVector(string.Format("%1 overrideDirectionVector", m_Name));
if (test_ori != vector.Zero)
{
m_OverrideDirectionVector = test_ori;
}
}
// positionOffset[]
array<float> v = new array<float>;
GetGame().ConfigGetFloatArray(string.Format("%1 positionOffset", m_Name), v);
if (v.Count() == 3)
{
float v1 = v.Get(0);
float v2 = v.Get(1);
float v3 = v.Get(2);
m_PositionOffset = Vector(v1, v2, v3);
}
}
//======================================
// PLAY PARTICLES
//======================================
// It is important to know that this block of script is called for weapons and muzzle attachments alike.
// Thus weapon == muzzle_owner when this is called for a weapon, and weapon != muzzle_owner when this is called for a suppressor.
void OnActivate(ItemBase weapon, int muzzle_index, string ammoType, ItemBase muzzle_owner, ItemBase suppressor, string config_to_search)
{
if ( !GetGame().IsServer() || !GetGame().IsMultiplayer() )
{
// Handle effect's parameters
if ( PrtTest.m_GunParticlesState ) // Check if particles are enabled by debug
{
if ( m_MuzzleIndex == -1 || m_MuzzleIndex == muzzle_index )
{
if ( CheckBoltStateCondition(weapon) ) // onlyIfBoltIsOpen
{
if ( !suppressor || suppressor.IsRuined() || !(m_IgnoreIfSuppressed) ) // ignoreIfSuppressed
{
if ( CheckHealthCondition( muzzle_owner.GetHealthLevel() ) ) // onlyWithinHealthLabel
{
if ( CheckOverheatingCondition( muzzle_owner.GetOverheatingCoef() ) ) // onlyWithinOverheatLimits
{
if ( CheckRainCondition( GetGame().GetWeather().GetRain().GetActual() ) ) // onlyWithinRainLimits
{
if ( m_OnlyIfBulletIs == "" || m_OnlyIfBulletIs == ammoType ) // onlyIfBulletIs
{
if ( m_OnlyIfWeaponIs == "" || m_OnlyIfWeaponIs == weapon.GetType() ) // onlyIfWeaponIs
{
// Get particle ID
int particle_id = CheckParticleOverride(ammoType);
if (ParticleList.IsValidId(particle_id))
{
// Get position of the particle
vector local_pos = muzzle_owner.GetSelectionPositionLS(m_OverridePoint);
local_pos += m_PositionOffset;
// Set orientation of the particle
vector particle_ori = CheckOrientationOverride(local_pos, muzzle_owner);
// Create particle
Particle p = ParticleManager.GetInstance().PlayOnObject( particle_id, muzzle_owner, local_pos, particle_ori );
OnParticleCreated(weapon, ammoType, muzzle_owner, suppressor, config_to_search, p);
}
else
{
ErrorEx(string.Format("No valid particle found for: '%1'", m_Name));
}
// Create light
if (m_IlluminateWorld)
{
vector global_pos = muzzle_owner.ModelToWorld(local_pos + Vector(-0.2, 0, 0));
int randX = Math.RandomInt( 0,10 );
if ( randX > 8 )
ScriptedLightBase.CreateLight( MuzzleFlashLight_2, global_pos );
else if ( randX > 4 )
ScriptedLightBase.CreateLight( MuzzleFlashLight_1, global_pos );
else
ScriptedLightBase.CreateLight(MuzzleFlashLight, global_pos);
}
}
}
}
}
}
}
}
}
}
}
}
void OnParticleCreated(ItemBase weapon, string ammoType, ItemBase muzzle_owner, ItemBase suppressor, string config_to_search, Particle p)
{
}
void OnDeactivate(ItemBase weapon, string ammoType, ItemBase muzzle_owner, ItemBase suppressor, string config_to_search)
{
}
void OnUpdate(ItemBase weapon, string ammoType, ItemBase muzzle_owner, ItemBase suppressor, string config_to_search)
{
}
//==============================================
// HANDLE CONFIG PARAMETERS
//==============================================
// OnlyWithinHealthLabelMin & OnlyWithinHealthLabelMax
bool CheckBoltStateCondition(ItemBase weapon)
{
if ( m_OnlyIfBoltIsOpen )
{
Weapon_Base wb = Weapon_Base.Cast( weapon );
WeaponStateBase current_state = wb.GetCurrentState();
return current_state.IsBoltOpen();
}
return true;
}
// OnlyWithinHealthLabelMin & OnlyWithinHealthLabelMax
bool CheckHealthCondition(int health_label)
{
return ( (health_label >= m_OnlyWithinHealthLabelMin) && (health_label <= m_OnlyWithinHealthLabelMax) );
}
// OnlyWithinOverheatLimitsMin & OnlyWithinOverheatLimitsMax
bool CheckOverheatingCondition(float overheating_coef)
{
return ( (overheating_coef >= m_OnlyWithinOverheatLimitsMin) && (overheating_coef <= m_OnlyWithinOverheatLimitsMax) );
}
// OnlyWithinRainLimitsMin & OnlyWithinRainLimitsMax
bool CheckRainCondition(float rain_coef)
{
return ( (rain_coef >= m_OnlyWithinRainLimitsMin) && (rain_coef <= m_OnlyWithinRainLimitsMax) );
}
// muzzleFlashParticle
int CheckParticleOverride(string ammoType)
{
int particle_id = -1;
string particle_file = "";
string cfg_path = "CfgAmmo " + ammoType + " muzzleFlashParticle";
if (GetGame().ConfigGetText( cfg_path, particle_file))
particle_id = ParticleList.GetParticleIDByName(particle_file);
// Config is accessed only once because the data is saved into a map for repeated access.
if ( particle_id > 0 || m_OverrideParticle == -1)
{
if (particle_file == "")
{
ErrorEx(string.Format("Cannot spawn particle effect because item %1 is missing config parameter muzzleFlashParticle!", ammoType), ErrorExSeverity.INFO);
}
else
{
particle_id = ParticleList.GetParticleIDByName(particle_file);
if (particle_id == 0)
{
string devStr;
#ifdef DEVELOPER
devStr = " Make sure it's registered there and then rebuild Scripts and Graphics PBOs.";
#endif
ErrorEx(string.Format("Cannot play particle effect with name %1 because no such file is registered in ParticleList.c!%2", particle_file, devStr));
m_OverrideParticle = particle_id; // Prevents another appearence of the above error.
}
}
}
else
{
particle_id = m_OverrideParticle;
}
return particle_id;
}
// OverrideDirectionPoint & OverrideDirectionVector
vector CheckOrientationOverride(vector local_pos, ItemBase muzzle_owner)
{
vector particle_ori = "0 0 0";
if (m_OverrideDirectionPoint != "")
{
vector target_pos = muzzle_owner.GetSelectionPositionLS(m_OverrideDirectionPoint);
target_pos = vector.Direction(local_pos, target_pos);
particle_ori = target_pos.VectorToAngles();
}
else
{
if (m_OverrideDirectionVector != Vector(0, 0, 0))
{
particle_ori = m_OverrideDirectionVector;
}
if (muzzle_owner.IsInherited(ItemSuppressor))
{
particle_ori = particle_ori + Vector(0,0,270); // This rotation is necesarry due to suppressors being rotated into ground in their p3d files
}
}
return particle_ori;
}
}
// FIRE particles
class WeaponParticlesOnFire : WeaponParticlesBase {}
// BULLET EJECT particles
class WeaponParticlesOnBulletCasingEject : WeaponParticlesBase {}
// OVERHEATING particles
class WeaponParticlesOnOverheating: WeaponParticlesBase
{
override void OnParticleCreated(ItemBase weapon, string ammoType, ItemBase muzzle_owner, ItemBase suppressor, string config_to_search, Particle p)
{
muzzle_owner.RegisterOverheatingParticle(p, m_OnlyWithinOverheatLimitsMin, m_OnlyWithinOverheatLimitsMax, p.GetParticleID(), muzzle_owner, p.m_DefaultPos, p.m_DefaultOri );
}
override void OnDeactivate(ItemBase weapon, string ammoType, ItemBase muzzle_owner, ItemBase suppressor, string config_to_search)
{
if ( !GetGame().IsServer() || !GetGame().IsMultiplayer() )
{
weapon.KillAllOverheatingParticles();
}
}
override void OnUpdate(ItemBase weapon, string ammoType, ItemBase muzzle_owner, ItemBase suppressor, string config_to_search)
{
OnActivate(weapon, 0, ammoType, muzzle_owner, suppressor, config_to_search);
}
}
class OverheatingParticle
{
Particle m_Particle;
int m_ParticleID;
Object m_Parent;
vector m_LocalPos;
vector m_LocalOri;
float m_OverheatingLimitMin;
float m_OverheatingLimitMax;
void RegisterParticle( Particle p)
{
m_Particle = p;
}
Particle GetParticle()
{
return m_Particle;
}
void SetOverheatingLimitMin(float min)
{
m_OverheatingLimitMin = min;
}
void SetOverheatingLimitMax(float max)
{
m_OverheatingLimitMax = max;
}
float GetOverheatingLimitMin()
{
return m_OverheatingLimitMin;
}
float GetOverheatingLimitMax()
{
return m_OverheatingLimitMax;
}
void SetParticleParams(int particle_id, Object parent, vector local_pos, vector local_ori)
{
m_ParticleID = particle_id;
m_Parent = parent;
m_LocalPos = local_pos;
m_LocalOri = local_ori;
}
int GetParticleID()
{
return m_ParticleID;
}
Object GetParticleParent()
{
return m_Parent;
}
vector GetParticlePos()
{
return m_LocalPos;
}
vector GetParticleOri()
{
return m_LocalOri;
}
} |