File size: 39,308 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 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 |
enum ProcessDirectDamageFlags
{
ALL_TRANSFER,
NO_ATTACHMENT_TRANSFER, //!< Do not transfer damage to attachments
NO_GLOBAL_TRANSFER, //!< Do not transfer damage to global
NO_TRANSFER, //!< NO_ATTACHMENT_TRANSFER | NO_GLOBAL_TRANSFER
}
class ObjectSnapCallback
{
Object m_Owner; //! The owner performing the snap callback
vector m_OwnerPosition; //! The position of the owner in world space
vector m_OwnerDirection; //! The direction of the owner in world space
vector m_Offset; //! The true center of the bounding box of the object to be dropped in model space
vector m_Extents; //! The size of the boundig box, centered
vector m_DirectionFunc; //! How much should the direction be favoured.
bool m_DebugEnabled; //! If 'OnDebug' is to be called
vector m_Transform[4]; //! The transformation currently being debugged
/**@brief Initialization of script variables
*
**/
void OnSetup()
{
}
/**@brief Debug callback for rendering on the screen
**/
void OnDebug(vector p0, vector p1, bool hasHit, bool found)
{
}
/**@brief Called for first layer contacts to determine if this object should be snapped around or default rv raycast placement is fine
* @return True if bounding snap is to be used
*
**/
bool OnFirstContact(Object other)
{
return false;
}
/**@brief Initial query around the owner position to see if an object should be processed in contact testing
* @return True if the object should be counted
*
**/
bool OnQuery(Object other)
{
return true;
}
/**@brief Ray cast line test from owner to a tested position
* @return True if the line test should be broken and make the transformation invalid
*
**/
bool OnCollide(Object other)
{
return true;
}
};
class Object extends IEntity
{
private void ~Object();
private void Object();
bool CanBeSkinned()
{
return false;
}
/**@brief Delete this object in next frame
* @return \p void
*
* @code
* ItemBase item = GetGame().GetPlayer().CreateInInventory("GrenadeRGD5");
* item.Delete();
* @endcode
**/
void Delete()
{
GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).Call(GetGame().ObjectDelete, this);
}
proto native void AddProxyPhysics(string proxySelectionName);
proto native void RemoveProxyPhysics(string proxySelectionName);
//! Object entered trigger
void OnEnterTrigger(ScriptedEntity trigger) {}
//! Object left trigger
void OnLeaveTrigger(ScriptedEntity trigger) {}
//! Retrieve all LODS
proto native bool GetLODS(notnull out array<LOD> lods);
//! Retrieve LOD name
proto native owned string GetLODName(LOD lod);
proto native vector GetBoundingCenter();
//! Retrieve LOD by given name
LOD GetLODByName( string name )
{
array<LOD> lods = new array<LOD>;
GetLODS( lods );
for ( int i = 0; i < lods.Count(); ++i )
{
string lod_name = GetLODName( lods.Get( i ) );
lod_name.ToLower();
name.ToLower();
if ( lod_name == name )
{
return lods.Get( i );
}
}
return NULL;
}
//! Returns the hiddenSelections array from the object's config
TStringArray GetHiddenSelections()
{
return HiddenSelectionsData.GetHiddenSelectionsConfig(GetType());
}
//! Returns the hiddenSelectionsTextures array from the object's config
TStringArray GetHiddenSelectionsTextures()
{
return HiddenSelectionsData.GetHiddenSelectionsTexturesConfig(GetType());
}
//! Returns the hiddenSelectionsMaterials array from the object's config
TStringArray GetHiddenSelectionsMaterials()
{
return HiddenSelectionsData.GetHiddenSelectionsMaterialsConfig(GetType());
}
//! Creates an explosion on this object by its ammoType in config.
void Explode(int damageType, string ammoType = "")
{
if (ammoType == "")
ammoType = ConfigGetString("ammoType");
if (ammoType == "")
ammoType = "Dummy_Heavy";
if ( GetGame().IsServer() )
{
SynchExplosion();
DamageSystem.ExplosionDamage(EntityAI.Cast(this), null, ammoType, GetPosition(), damageType);
}
}
void SynchExplosion()
{
if ( GetGame().IsDedicatedServer() ) // Multiplayer server
{
Param1<EntityAI> p = new Param1<EntityAI>(null);
GetGame().RPCSingleParam( this, ERPCs.RPC_EXPLODE_EVENT, p, true);
}
else if ( !GetGame().IsMultiplayer() ) // Singleplayer
{
OnExplodeClient();
}
}
//! Called on clients when this object explodes
void OnExplodeClient()
{
string ammoType = ConfigGetString("ammoType");
if (ammoType == "")
ammoType = "Dummy_Heavy";
vector pos = GetPosition();
// Handle spawn of particle if one is configured in config
AmmoEffects.PlayAmmoParticle(ammoType, pos);
// Handle spawn of Effect if one is configured in config
AmmoEffects.PlayAmmoEffect(ammoType, pos);
}
void OnExplosionEffects(Object source, Object directHit, int componentIndex, string surface, vector pos, vector surfNormal, float energyFactor, float explosionFactor, bool isWater, string ammoType) { }
//! returns action component name by given component index, 'geometry' can be "fire" or "view" (default "" for mixed/legacy mode)
proto native owned string GetActionComponentName(int componentIndex, string geometry = "");
//! returns action component position by given component index, 'geometry' can be "fire" or "view" (default "" for mixed/legacy mode)
proto native owned vector GetActionComponentPosition(int componentIndex, string geometry = "");
//! outputs action component name list by given component index, 'geometry' can be "fire" or "view" (default "" for mixed/legacy mode). Returns -1 (not found), 0 (found default component only), or 1 (found named component)
proto native owned int GetActionComponentNameList(int componentIndex, TStringArray nameList, string geometry = "");
//! return true if selection containts action component, 'geometry' can be "fire" or "view" (default "" for mixed/legacy mode)
proto native bool IsActionComponentPartOfSelection(int componentIndex, string selectionName, string geometry = "");
//! outputs action component index list by given selection, 'geometry' can be "fire" or "view" (default "" for mixed/legacy mode)
proto void GetActionComponentsForSelectionName(int level, string selectionName, TIntArray componentIndices);
//! The center of the component, in model space
proto vector GetActionComponentCenter(int level, int componentIndex);
//! The center of the component, in model space
proto vector GetActionComponentCenterOOB(int level, int componentIndex);
//! The AABB of the component
proto void GetActionComponentMinMax(int level, int componentIndex, out vector min, out vector max);
//! Flag to determine this object is marked to be deleted soon
proto native bool ToDelete();
//! Determine whether this object is in the deletion ProcessDirectDamage
//! Is useful in the case where a parent is being deleted, since the children will be deleted first
//! So to know if something was removed or detached from it's parent, use this check to see if it is because the parent is being deleted
proto native bool IsPendingDeletion();
//! Native functions for getting the level used for calculating the pivot
proto native int GetGeometryLevel();
proto native int GetFireGeometryLevel();
proto native int GetViewGeometryLevel();
proto native int GetMemoryLevel();
#ifdef DEVELOPER
//! Conversion between enfusion and RV bone formats for hierarchy
proto bool ToBonePivot(out int pivot, int level, int bone);
proto bool FromBonePivot(int pivot, out int level, out int bone);
#endif
//! Get the pivot point of the bone from the component index in the LOD, level can be geometry, fire, view or memory
proto int GetBonePivot(int level, int component);
//! Get the pivots assigned to the animation source at the specified LOD
proto native void GetBonePivotsForAnimationSource(int level, string animationSource, out TIntArray pivots);
//! returns local space, model space, world space position of the bone
proto native vector GetBonePositionLS(int pivot);
proto native vector GetBonePositionMS(int pivot);
proto native vector GetBonePositionWS(int pivot);
//! returns local space, model space, world space orientation (quaternion) of a bone
proto native void GetBoneRotationLS(int pivot, out float quaternion[4]);
proto native void GetBoneRotationMS(int pivot, out float quaternion[4]);
proto native void GetBoneRotationWS(int pivot, out float quaternion[4]);
//! returns local space, model space, world space transformations of a bone
proto native void GetBoneTransformLS(int pivot, out vector transform[4]);
proto native void GetBoneTransformMS(int pivot, out vector transform[4]);
proto native void GetBoneTransformWS(int pivot, out vector transform[4]);
/**
\brief Get corner positions in worldspace aligned to the orientation of the object (currently only TOP/BOTTOM supported)
@param axis The axis the object is aligned to
@param corners array[4] of vector, each a corner aligned to the axis ({0,0}, {0,1}, {1,0}, {1,1})
\return true if collision box exists, false otherwise
*/
proto native void GetTightlyPackedCorners(ETransformationAxis axis, out vector corners[4]);
#ifdef DIAG_DEVELOPER
void DebugDrawTightlyPackedCorners(ETransformationAxis axis, int color)
{
#ifndef SERVER
vector points[2];
vector corners[4];
GetTightlyPackedCorners(axis, corners);
points[0] = corners[0];
points[1] = corners[1];
Shape.CreateLines(color, ShapeFlags.TRANSP | ShapeFlags.ONCE | ShapeFlags.NOOUTLINE | ShapeFlags.NOZBUFFER, points, 2);
points[0] = corners[1];
points[1] = corners[3];
Shape.CreateLines(color, ShapeFlags.TRANSP | ShapeFlags.ONCE | ShapeFlags.NOOUTLINE | ShapeFlags.NOZBUFFER, points, 2);
points[0] = corners[3];
points[1] = corners[2];
Shape.CreateLines(color, ShapeFlags.TRANSP | ShapeFlags.ONCE | ShapeFlags.NOOUTLINE | ShapeFlags.NOZBUFFER, points, 2);
points[0] = corners[2];
points[1] = corners[0];
Shape.CreateLines(color, ShapeFlags.TRANSP | ShapeFlags.ONCE | ShapeFlags.NOOUTLINE | ShapeFlags.NOZBUFFER, points, 2);
#endif
}
#endif
//! Retrieve position
proto native vector GetPosition();
//! Returns world position.
//! This function takes proxy transformation into account.
proto native vector GetWorldPosition();
//! Set position
proto native void SetPosition(vector vPos);
/**
\brief Place object on surface
*/
proto native void PlaceOnSurface();
/**
\brief Retrieve orientation (yaw, pitch, roll) in <b>degrees</b>
\return vector of yaw, pitch and roll angles (x = yaw, y = pitch, z = roll)
*/
proto native vector GetOrientation();
/**
\brief Set orientation (yaw, pitch, roll) in <b>degrees</b>
@param vOrientation, vector of yaw, pitch and roll angles (x = yaw, y = pitch, z = roll)
*/
proto native void SetOrientation(vector vOrientation);
//! Retrieve direction vector
proto native vector GetDirection();
/**
\brief Set direction of object
@param vDirection, direction vector
\note object up vector is always y-axis
*/
proto native void SetDirection(vector vPos);
//! Retrieve direction up vector
proto native vector GetDirectionUp();
//! Retrieve direction aside vector
proto native vector GetDirectionAside();
//! Calculate local position of other entity to this entity
proto native vector GetLocalPos(vector vPos);
//! Calculate global position to this entity from local position
proto native vector GetGlobalPos(vector vPos);
//! Retrieve object's speed in global space
proto native vector GetSpeed();
//! Retrieve object's speed in local space
proto native vector GetModelSpeed();
//! Returns true if object's geometry can affect pathgraph generation
proto native bool CanAffectPathgraph();
//! Sets if object's geometry affects pathgraph generation. If first parameter is true, it ignores second parameter and sets affecting pathgraph by parameter set in object's config
proto native void SetAffectPathgraph(bool fromConfig, bool affect);
/**
\brief Get Clipping info
@param minMax array[2] of vectors, into minMax[0] is returned min, into minMax[1] is returned max
\return radius of bounding box
@code
vector minMax[2];
float radius = GetGame().GetPlayer().ClippingInfo(minMax);
Print(minMax);
Print(radius);
@endcode
*/
proto float ClippingInfo(out vector minMax[2]);
/**
\brief Gets collision bounding box
@param minMax array[2] of vectors, into minMax[0] is returned min, into minMax[1] is returned max
\return true if collision box exists, false otherwise
@code
vector minMax[2];
if(GetGame().GetPlayer().GetCollisionBox(minMax))
Print("has box");
@endcode
*/
proto native bool GetCollisionBox(out vector minMax[2]);
/**
\brief Gets collision radius (bounding sphere)
\return bounding sphere radius
*/
proto native float GetCollisionRadius();
//! Get total damage (clipped to range 0..1)
proto native float GetDamage();
proto native void GetSelectionList(out TStringArray selectionList);
//! Returns noise multiplier of surface under object
float GetSurfaceNoise()
{
vector position = GetPosition();
return GetGame().SurfaceGetNoiseMultiplier(NULL, position, -1);
}
//! Returns type of surface under object
string GetSurfaceType()
{
string surface_type;
int liquid_type;
GetGame().SurfaceUnderObject(this, surface_type,liquid_type);
// Print(surface_type);
// Print(liquid_type);
return surface_type;
}
//! Returns true if the given selection was found in the p3d file. False if otherwise.
bool HasSelection( string selection )
{
TStringArray selections = new TStringArray;
GetSelectionList( selections );
for ( int i = 0; i < selections.Count(); ++i )
{
if ( selections.Get( i ) == selection )
{
return true;
}
}
return false;
}
//! Searches object's config for the given animation name. Returns true if it was found, or false if not.
bool HasAnimation( string anim_name )
{
string cfg_path_vehicles = "CfgVehicles " + GetType() + " ";
if ( GetGame().ConfigIsExisting (cfg_path_vehicles) && GetGame().ConfigIsExisting (cfg_path_vehicles + "AnimationSources " + anim_name) )
{
return true;
}
string cfg_path_weapons = "CfgWeapons " + GetType() + " ";
if ( GetGame().ConfigIsExisting (cfg_path_weapons) && GetGame().ConfigIsExisting (cfg_path_weapons + "AnimationSources " + anim_name) )
{
return true;
}
string cfg_path_magazines = "CfgMagazines " + GetType() + " ";
if ( GetGame().ConfigIsExisting (cfg_path_magazines) && GetGame().ConfigIsExisting (cfg_path_magazines + "AnimationSources " + anim_name) )
{
return true;
}
return false;
}
//! If Returns true if this item has EnergyManager in its config. Otherwise returns false.
/*bool HasEnergyManager()
{
return false;
}*/
proto native int GetMemoryPointIndex(string memoryPointName);
proto native vector GetMemoryPointPos(string memoryPointName);
proto native vector GetMemoryPointPosByIndex(int pointIndex);
proto native bool MemoryPointExists(string memoryPoint);
proto native void CreateDynamicPhysics(int interactionLayers);
proto native void EnableDynamicCCD(bool state);
proto native void SetDynamicPhysicsLifeTime(float lifeTime);
//! Called when tree is chopped down. 'cutting_entity' can be tool, or player, if cutting bush with bare hands
void OnTreeCutDown(EntityAI cutting_entity);
//! Get config class of object
string GetType()
{
string ret;
GetGame().ObjectGetType(this, ret);
return ret;
}
//! Get display name of entity
string GetDisplayName()
{
string tmp;
if (NameOverride(tmp))
{
tmp = Widget.TranslateString(tmp);
}
else
{
GetGame().ObjectGetDisplayName(this, tmp);
}
return tmp;
}
//Used to specify this object will always display it's own name when attached to another object
bool DisplayNameRuinAttach()
{
return false;
}
//! Returns name of the model of this object without the '.p3d' suffix
string GetModelName()
{
return GetGame().GetModelName(GetType());
}
//! Return path and name of the model
proto native owned string GetShapeName();
int Release()
{
return GetGame().ObjectRelease(this);
}
//! Check config class name of the object
bool IsKindOf(string type)
{
return GetGame().ObjectIsKindOf(this, type);
}
// Check alive state
bool IsAlive()
{
return !IsDamageDestroyed();
}
//! Returns if this entity is Man
bool IsMan()
{
return false;
}
//! Checks if this instance is of type DayZCreature
bool IsDayZCreature()
{
return false;
}
//! Returns if this entity is EntityAI
bool IsEntityAI()
{
return false;
}
//! Returns if this entity is Static Transmitter
bool IsStaticTransmitter()
{
return false;
}
//! Returns if this entity is a non-static Transmitter
bool IsTransmitter()
{
return false;
}
//! Returns if this entity is ItemBase
bool IsItemBase()
{
return false;
}
//Returns true for protector cases and similar items. Usually can be nested in other cargo while full, unlike clothing..
bool IsContainer()
{
return false;
}
//! Returns if this entity is Magazine
bool IsMagazine()
{
return false;
}
//! Returns if this entity is Ammo Pile
bool IsAmmoPile()
{
return false;
}
//! Returns if this entity is InventoryItem
bool IsInventoryItem()
{
return false;
}
//! Returns if this entity is Clothing
bool IsClothing()
{
return false;
}
//! Returns if this entity is fireplacebase
bool IsFireplace()
{
return false;
}
//! Returns if this entity is tree
bool IsTree()
{
return false;
}
//! Returns if this entity is rock
bool IsRock()
{
return false;
}
//! Returns whether object is PlanBase
bool IsWoodBase()
{
return false;
}
//! Returns if this entity is bush
bool IsBush()
{
return false;
}
bool IsCuttable()
{
return false;
}
//! Returns if this entity is Pelt_Base
bool IsPeltBase()
{
return false;
}
//! Returns if this entity is Weapon
bool IsWeapon()
{
return false;
}
//! returns if this entity is Melee Weapon
bool IsMeleeWeapon()
{
return false;
}
//! Returns if this entity is Building
bool IsBuilding()
{
return false;
}
EWaterSourceObjectType GetWaterSourceObjectType()
{
return EWaterSourceObjectType.NONE;
}
//! Returns if this entity is Well (extends Building)
//! DEPRECATED by GetWaterSourceObjectType
bool IsWell()
{
return false;
}
//! Returns if this entity is a weapon which can shoot explosive ammo
bool ShootsExplosiveAmmo()//placed on Object so that we can optimize early checks in DayZGame without casting
{
return false;
}
//! Returns if this entity is Fuel Station (extends Building)
bool IsFuelStation()
{
return false;
}
//! Returns if this entity is transport
bool IsTransport()
{
return false;
}
//! Returns if this is an appliance, that can be plugged into electric circuit (== not energy source)
bool IsElectricAppliance()
{
return false;
}
//! Returns if this entity can be constucted,deconstructed (e.g. fence,watchtower)
bool CanUseConstruction()
{
return false;
}
//! Returns if this entity can be built, specifically.
bool CanUseConstructionBuild()
{
return false;
}
//! Returns if this entity can be constructed without tools
bool CanUseHandConstruction()
{
return false;
}
bool IsBeingBackstabbed()
{
return false;
}
void SetBeingBackstabbed(int backstabType){}
//! Returns if this entity if a food item
bool IsFood()
{
return ( IsFruit() || IsMeat() || IsCorpse() || IsMushroom() );
}
bool IsFruit()
{
return false;
}
bool IsMeat()
{
return false;
}
bool IsCorpse()
{
return false;
}
bool IsMushroom()
{
return false;
}
//! Returns if the health of this entity should be displayed (widgets, inventory)
bool IsHealthVisible()
{
return true;
}
//! Returns true if the health of damage zones should be displayed (instead of global HP of the entity) ( action widgets)
bool ShowZonesHealth()
{
return false;
}
bool IsParticle()
{
return false;
}
bool IsItemTent()
{
return false;
}
bool IsScriptedLight()
{
return false;
}
bool IsHologram()
{
return false;
}
bool HasProxyParts()
{
return false;
}
bool CanObstruct()
{
return IsPlainObject() && !IsScenery();
}
bool CanProxyObstruct()
{
return HasProxyParts() || CanUseConstruction();
}
//! can the object's own proxy geometry obstruct it? Currently checking 'ObjIntersectView'
bool CanProxyObstructSelf()
{
return false;
}
bool CanBeIgnoredByDroppedItem()
{
return IsBush() || IsTree() || IsMan() || IsDayZCreature() || IsItemBase();
}
bool CanBeAutoDeleted()
{
return true;
}
//! Disables icon in the vicinity, useful for large, immovable items, that are not buildings
bool DisableVicinityIcon()
{
return false;
}
//! Returns low and high bits of networkID.
//! This id is shared between client and server for whole server-client session.
proto void GetNetworkID( out int lowBits, out int highBits );
string GetNetworkIDString()
{
int low, high;
GetNetworkID( low, high );
return high.ToString() + low.ToString();
}
override string GetDebugName()
{
return GetDebugNameNative();
}
static string GetDebugName(Object o)
{
if (o)
return o.GetDebugName();
return "null";
}
//! native GetDebugName which is internally overloaded where needed
proto string GetDebugNameNative();
//! Remote procedure call shortcut, see CGame.RPC / CGame.RPCSingleParam
void RPC(int rpc_type, array<ref Param> params, bool guaranteed, PlayerIdentity recipient = NULL)
{
GetGame().RPC(this, rpc_type, params, guaranteed, recipient);
}
//! Remote procedure call shortcut, see CGame.RPCSingleParam / CGame.RPC
void RPCSingleParam(int rpc_type, Param param, bool guaranteed, PlayerIdentity recipient = NULL)
{
GetGame().RPCSingleParam(this, rpc_type, param, guaranteed, recipient);
}
/**
\brief Called after remote procedure call is recieved for this object
@param rpc_type user defined identification of RPC
@param ctx read context for params
*/
void OnRPC(PlayerIdentity sender, int rpc_type, ParamsReadContext ctx);
vector GetSelectionPositionOld(string name)
{
return GetGame().ObjectGetSelectionPosition(this, name);
}
vector GetSelectionPositionLS(string name)
{
return GetGame().ObjectGetSelectionPositionLS(this, name);
}
vector GetSelectionPositionMS(string name)
{
return GetGame().ObjectGetSelectionPositionMS(this, name);
}
vector GetSelectionPositionWS(string name)
{
return GetGame().ObjectGetSelectionPositionWS(this, name);
}
vector ModelToWorld(vector modelPos)
{
return GetGame().ObjectModelToWorld(this, modelPos);
}
vector WorldToModel(vector worldPos)
{
return GetGame().ObjectWorldToModel(this, worldPos);
}
// config class API
proto string ConfigGetString(string entryName);
/**
\brief Get a raw strings from config entry.
@param entryName
\return value output string
\note use 'FormatRawConfigStringKeys' method to change localization keys to script-friendly
*/
proto string ConfigGetStringRaw(string entryName);
proto int ConfigGetInt(string entryName);
bool ConfigGetBool(string entryName)
{
return (ConfigGetInt(entryName) == 1);
}
proto float ConfigGetFloat(string entryName);
proto vector ConfigGetVector(string entryName);
//proto ParamEntry ConfigGetEntry(string entryName);
/**
\brief Get array of strings from config entry.
@param entryName
@param value output
*/
proto native void ConfigGetTextArray(string entryName, out TStringArray values);
/**
\brief Get array of raw strings from config entry.
@param entryName
@param value output in raw format (localization keys '$STR_' are not translated).
\note use 'FormatRawConfigStringKeys' method to change localization keys to script-friendly
*/
proto native void ConfigGetTextArrayRaw(string entryName, out TStringArray values);
/**
\brief Get array of floats from config entry.
@param entryName
@param value output
*/
proto native void ConfigGetFloatArray(string entryName, out TFloatArray values);
/**
\brief Get array of integers from config entry.
@param entryName
@param value output
*/
proto native void ConfigGetIntArray(string entryName, out TIntArray values);
/**
\brief Checks if given entry exists.
@param entryName
*/
proto native bool ConfigIsExisting(string entryName);
//! Compares config class name to given string
bool KindOf( string tag )
{
bool found = false;
string item_name = this.GetType();
TStringArray item_tag_array = new TStringArray;
ConfigGetTextArray("cfgVehicles " + item_name + " itemInfo", item_tag_array);
int array_size = item_tag_array.Count();
for (int i = 0; i < array_size; i++)
{
if ( item_tag_array.Get(i) == tag )
{
found = true;
break;
}
}
return found;
}
bool IsAnyInherited( array<typename> typenames )
{
bool ret;
for( int i = 0; i < typenames.Count(); i++ )
{
ret = ret || this.IsInherited( typenames.Get(i) );
}
return ret;
}
/**
\brief Is this just static object without config? So we can avoid calling unnecessary methods
*/
proto native bool IsPlainObject();
/**
\brief Is this Scenery? (handy for excluding terain when it is not needed)
*/
proto native bool IsScenery();
// Damage system
/**
\brief Checks if object's DamageSystem has been initialized(despite the name, does not really reliably answer the question whether the object is configured to have damage system or not)
*/
proto native bool HasDamageSystem();
/**
\brief Checks if object is destroyed.
*/
proto native bool IsDamageDestroyed();
/**
\brief Sets the time over which to perform DestructTent/DestructTree
@param time time over which to perform DestructTent/DestructTree
*/
proto native void SetDestructTime(float time);
/**
\brief Returns current state of health.
@param zoneName if empty string, returns state of global health
@param healthType if empty string, returns state of main health
*/
proto native float GetHealth(string zoneName, string healthType);
/**
\brief Returns current state of health in range <0, 1>.
@param zoneName if empty string, returns state of global health
@param healthType if empty string, returns state of main health
*/
proto native float GetHealth01(string zoneName, string healthType);
/**
\brief Returns maximum value of health.
@param zoneName if empty string, returns state of global health
@param healthType if empty string, returns state of main health
*/
proto native float GetMaxHealth(string zoneName, string healthType);
/**
\brief Sets current state of health.
@param zoneName if empty string, sets state of global health
@param healthType if empty string, sets state of main health
*/
proto native void SetHealth(string zoneName, string healthType, float value);
/**
\brief Sets full health to all zones and removes fatal damage when applicable
*/
proto native void SetFullHealth();
/**
\brief Adds health.
@param zoneName if empty string, sets state of global health
@param healthType if empty string, sets state of main health
*/
proto native void AddHealth(string zoneName, string healthType, float value);
/**
\brief Decreases health.
@param zoneName if empty string, sets state of global health
@param healthType if empty string, sets state of main health
*/
proto native void DecreaseHealth(string zoneName, string healthType, float value);
/**
\brief Decreases health with the option of auto-deleting the object if its ruined.
@param zoneName if empty string, sets state of global health
@param healthType if empty string, sets state of main health
*/
void DecreaseHealth(string zoneName, string healthType, float value, bool auto_delete)
{
DecreaseHealth( zoneName, healthType, value);
float result_health = GetHealth(zoneName, healthType);
if ( auto_delete && result_health <= 0 )
{
GetGame().GetCallQueue(CALL_CATEGORY_SYSTEM).Call(GetGame().ObjectDelete, this);
}
}
//! Equivalent of GetHealth("", "");
float GetHealth()
{
return GetHealth("", "");
}
//! Equivalent of GetHealth01("", "");
float GetHealth01()
{
return GetHealth01("", "");
}
//! Equivalent of GetMaxHealth("", "");
float GetMaxHealth()
{
return GetMaxHealth("", "");
}
//! Equivalent of SetHealth("", "", float value);
void SetHealth(float health)
{
SetHealth("", "", health);
}
//! Equivalent of SetHealth("", "", float value);
void SetGlobalHealth(float health)
{
SetHealth("", "", health);
}
//! Sets specific health level. It will use the cutoff value as returned by 'GetHealthLevelValue' as the health value for the given health level, which means it will always be set to the max health as allowed by the given health level.
void SetHealthLevel(int healthLevel, string zone = "")
{
SetHealth01(zone,"", GetHealthLevelValue(healthLevel, zone));
}
//! Similar to 'SetHealthLevel', but allows to jump up/down 'healthLevelDelta' amount of health levels from the current one. Positive values cause health level increase, therefore damage the item, and vice-versa.
void AddHealthLevel(int healthLevelDelta, string zone = "")
{
int maxHealthLevel = GetNumberOfHealthLevels(zone) - 1;
int newHealthLevel = Math.Clamp(GetHealthLevel(zone) + healthLevelDelta,0,maxHealthLevel);
SetHealthLevel(newHealthLevel,zone);
}
//! Sets health relative to its maximum
void SetHealth01(string zoneName, string healthType, float coef)
{
SetHealth(zoneName,healthType,(GetMaxHealth(zoneName,healthType)*coef));
}
//! Sets health to its maximum (zone or global)
void SetHealthMax(string zoneName = "", string healthType = "")
{
SetHealth(zoneName,healthType,GetMaxHealth(zoneName,healthType));
}
//! Equivalent of AddHealth("", "", float value);
void AddHealth( float add_health)
{
AddHealth("", "", add_health);
}
//! Equivalent of DecreaseHealth("", "", float value, bool auto_delete);
void DecreaseHealth(float dec_health, bool auto_delete = true)
{
DecreaseHealth("", "", dec_health, auto_delete);
}
//! Decreases health by the given coeficient.
void DecreaseHealthCoef(float dec_health_coef, bool auto_delete = true)
{
float current_health = GetHealth();
float final_health_coef = GetHealth01() - dec_health_coef;
float final_health = GetMaxHealth() * final_health_coef;
DecreaseHealth("", "", current_health - final_health);
}
/**
\brief Applies damage on object.
@param damageType DT_CLOSE_COMBAT/DT_FIRE_ARM/DT_EXPLOSION/DT_CUSTOM
@param source source of damage
@param componentName which 'DamageZone' was hit (NOT a component name, actually!)
@param ammoName ammoType, which defines how much damage should be applied
@param directHitModelPos local position of hit
@param damageCoef multiplier of applied damage
@param flags enables/disables special behaviour depending on the flags used (ProcessDirectDamageFlags type)
*/
proto native void ProcessDirectDamage(int damageType, EntityAI source, string componentName, string ammoName, vector modelPos, float damageCoef = 1.0, int flags = 0);
/**
\brief Event called from C++ right before damage is applied
@return whether to apply the damage or not
*/
bool EEOnDamageCalculated(TotalDamageResult damageResult, int damageType, EntityAI source, int component, string dmgZone, string ammo, vector modelPos, float speedCoef)
{
return true;
}
/**
\brief Obtains a list of nammes of all object's damage zones
@param list of names
*/
proto native void GetDamageZones(out TStringArray dmgZones);
/**
\brief Obtains middle position of damage zone based on it's name
@param name of the damage zone
*/
proto native vector GetDamageZonePos(string zoneName);
/**
\brief Obtains name of damage zone based on index of specific component
@param index of the component
*/
proto native owned string GetDamageZoneNameByComponentIndex(int componentIndex);
/**
\brief Returns global health level specified in object's config class parameter healthLevels
(range is usually 0..4, 0 = pristine, 1 = worn, 2 = damaged, 3 = badly damaged, 4 = ruined but can be changed).
@param zoneName if empty string, returns state of global health level
*/
proto native int GetHealthLevel(string zone = "");
/**
\brief Returns global number of health levels specified in object's config class parameter healthLevels
(range is usually 0..4, 0 = pristine, 1 = worn, 2 = damaged, 3 = badly damaged, 4 = ruined but can be changed).
@param zoneName if empty string, returns number of global health levels
*/
proto native int GetNumberOfHealthLevels(string zone = "");
/**
\brief Returns cutoff value for health level specified in object's config class parameter healthLevels
@param zoneName if empty string, returns number of global health levels
@param healthLevel the health level to get the value from
*/
proto native float GetHealthLevelValue(int healthLevel, string zone = "");
/**
\brief Returns if object can receive damage
*/
proto native bool GetAllowDamage();
/**
\brief Enable or disable object to receive damage
@param enable or disable
*/
proto native void SetAllowDamage(bool val);
/**
\brief Returns if object is destroyable
*/
proto native bool GetCanBeDestroyed();
/**
\brief Enable or disable destruction of object (after health is depleated)
@param enable or disable
*/
proto native void SetCanBeDestroyed(bool val);
/**
\brief Returns whether the object is ruined (0 Health).
\return \p bool true = item has 0 Health or less
@code
if ( item.IsRuined() )
{
Print("Object is ruined!");
}
@endcode
*/
bool IsRuined()
{
return IsDamageDestroyed();
}
//! Event called from C++ when simulation is enabled
void OnSimulationEnabled() {}
//! Event called from C++ when simulation is disabled
void OnSimulationDisabled() {}
void GetActions(typename action_input_type, out array<ActionBase_Basic> actions)
{
}
//! Plays the given sound once on this object's instance. Range is in meters. Created sound is only local, unless create_local is set to false. Returns the sound itself.
SoundOnVehicle PlaySound(string sound_name, float range, bool create_local = true)
{
return GetGame().CreateSoundOnObject(this, sound_name, range, false, create_local);
}
//! Plays the given sound in loop on this object's instance. Range is in meters. Created sound is only local, unless create_local is set to false. Returns the sound itself.
SoundOnVehicle PlaySoundLoop(string sound_name, float range, bool create_local = true)
{
return GetGame().CreateSoundOnObject(this, sound_name, range, true, create_local);
}
//! EffectSound - plays soundset on this object and returns state of the sound (true - played, false - not played)
bool PlaySoundSet( out EffectSound sound, string sound_set, float fade_in, float fade_out, bool loop = false )
{
if ( GetGame() && !GetGame().IsDedicatedServer() )
{
if ( sound )
{
if ( loop )
{
return true;
}
else
{
StopSoundSet( sound ); //auto stop for non-looped sounds
}
}
sound = SEffectManager.PlaySoundOnObject( sound_set, this, fade_in, fade_out, loop );
sound.SetAutodestroy( true );
return true;
}
return false;
}
//! EffectSound - plays soundset on this object in loop and returns state of the sound (true - played, false - not played)
bool PlaySoundSetLoop( out EffectSound sound, string sound_set, float fade_in, float fade_out )
{
return PlaySoundSet( sound, sound_set, fade_in, fade_out, true );
}
//! Same as PlaySoundSetAtMemoryPointLooped, only requests stoppage of the currently playing EffectSound if it already exists and playing, before playing the new sound
bool PlaySoundSetAtMemoryPointLoopedSafe(out EffectSound sound, string soundSet, string memoryPoint,float play_fade_in = 0, float stop_fade_out = 0)
{
if (sound && sound.IsPlaying())
{
sound.SoundStop();
}
return PlaySoundSetAtMemoryPointLooped(sound, soundSet, memoryPoint, play_fade_in, stop_fade_out);
}
bool PlaySoundSetAtMemoryPointLooped(out EffectSound sound, string soundSet, string memoryPoint, float play_fade_in = 0, float stop_fade_out = 0)
{
return PlaySoundSetAtMemoryPoint(sound, soundSet, memoryPoint, true, play_fade_in, stop_fade_out);
}
bool PlaySoundSetAtMemoryPoint(out EffectSound sound, string soundSet, string memoryPoint, bool looped = false, float play_fade_in = 0, float stop_fade_out = 0)
{
vector pos;
if (MemoryPointExists(memoryPoint))
{
pos = GetMemoryPointPos(memoryPoint);
pos = ModelToWorld(pos);
}
else
{
ErrorEx(string.Format("Memory point %1 not found when playing soundset %2 at memory point location", memoryPoint, soundSet));
return false;
}
sound = SEffectManager.PlaySoundEnviroment(soundSet, pos, play_fade_in, stop_fade_out, looped);
return true;
}
//! EffectSound - stops soundset and returns state of the sound (true - stopped, false - not playing)
bool StopSoundSet( out EffectSound sound )
{
if ( sound && GetGame() && ( !GetGame().IsDedicatedServer() ) )
{
sound.SoundStop();
sound = null;
return true;
}
return false;
}
void PostAreaDamageActions();
void PreAreaDamageActions();
void SpawnDamageDealtEffect();
void OnReceivedHit(ImpactEffectsData hitData);
//! DEPRECATED
void OnPlayerRecievedHit();
bool HasNetworkID()
{
int lo = 0;
int hi = 0;
GetNetworkID(lo, hi);
return lo | hi;
}
bool NameOverride(out string output)
{
return false;
}
bool DescriptionOverride(out string output)
{
return false;
}
EntityAI ProcessMeleeItemDamage(int mode = 0) {}
bool CanBeRepairedToPristine()
{
return false;
}
vector GetCenter()
{
if ( MemoryPointExists("ce_center") )
{
//Print("CE_CENTER found");
return ModelToWorld( GetMemoryPointPos("ce_center") );
}
else
{
//Print("CE_CENTER DOING A BAMBOOZLE => not found");
return GetPosition() + Vector(0, 0.2, 0);
}
}
#ifdef DEVELOPER
void SetDebugItem();
#endif
void AddArrow(Object arrow, int componentIndex, vector closeBonePosWS, vector closeBoneRotWS)
{
int pivot = GetBonePivot(GetFireGeometryLevel(), componentIndex);
vector parentTransMat[4];
vector arrowTransMat[4];
if (pivot == -1)
{
GetTransform(parentTransMat);
}
else
{
GetBoneTransformWS(pivot, parentTransMat);
}
float scale = GetScale();
scale = 1 / (scale * scale);
arrow.GetTransform(arrowTransMat);
Math3D.MatrixInvMultiply4(parentTransMat, arrowTransMat, arrowTransMat);
// orthogonalize matrix - parent might be skewed
Math3D.MatrixOrthogonalize4(arrowTransMat);
arrowTransMat[3] = arrowTransMat[3] * scale;
arrow.SetTransform(arrowTransMat);
AddChild(arrow, pivot);
}
bool CanBeActionTarget()
{
return !IsHologram();
}
bool HasFixedActionTargetCursorPosition()
{
return false;
}
//Debug
//----------------------------------------------
/*void DbgAddPxyPhy(string slot)
{
Print("AddProxyPhysics slot: " + slot);
AddProxyPhysics(slot);
}*/
};
|