File size: 48,266 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 |
/**
* Game Class provide most "world" or global engine API functions.
*/
static int GAME_STORAGE_VERSION = 135;
class CGame
{
// enableDebugMonitor in server config
int m_DebugMonitorEnabled;
ScriptModule GameScript;
private ref array<ref Param> m_ParamCache;
//analytics
ref AnalyticsManagerServer m_AnalyticsManagerServer;
ref AnalyticsManagerClient m_AnalyticsManagerClient;
ref MenuDefaultCharacterData m_CharacterData;
#ifdef DIAG_DEVELOPER
ref array<ComponentEnergyManager> m_EnergyManagerArray;
void EnableEMPlugs(bool enable)
{
for (int i = 0; i < GetGame().m_EnergyManagerArray.Count(); ++i)
{
if (GetGame().m_EnergyManagerArray[i])
GetGame().m_EnergyManagerArray[i].SetDebugPlugs(enable);
}
}
#endif
void CGame()
{
Math.Randomize(-1);
LogManager.Init();
m_ParamCache = new array<ref Param>;
m_ParamCache.Insert(null);
//analytics
m_AnalyticsManagerServer = new AnalyticsManagerServer;
m_AnalyticsManagerClient = new AnalyticsManagerClient;
//m_CharacterData = new MenuCharacrerData;
// actual script version - increase by one when you make changes
StorageVersion(GAME_STORAGE_VERSION);
#ifdef DIAG_DEVELOPER
m_EnergyManagerArray = new array<ComponentEnergyManager>;
#endif
if (!IsDedicatedServer())
{
SEffectManager.Init();
AmmoEffects.Init();
VONManager.Init();
}
}
private void ~CGame()
{
// Clean these up even if it is dedicated server, just to be safe
SEffectManager.Cleanup();
AmmoEffects.Cleanup();
VONManager.CleanupInstance();
// Is initialized in StartupEvent
ParticleManager.CleanupInstance();
}
proto native WorkspaceWidget GetWorkspace();
proto native WorkspaceWidget GetLoadingWorkspace();
//!
/**
\brief Called when some system event occur.
@param eventTypeId event type.
@param params Param object, cast to specific param class to get parameters for particular event.
*/
void OnEvent(EventType eventTypeId, Param params)
{
}
//PLM Type: 0 == RESUMED, 1 == SUSPENDED
void OnProcessLifetimeChanged(int plmtype)
{
}
void OnLicenseChanged()
{
}
/**
\brief Called after creating of CGame instance
*/
void OnAfterCreate()
{
}
/**
\brief Called when recieving focus (windows)
*/
void OnActivateMessage()
{
}
/**
\brief Called when loosing focus (windows)
*/
void OnDeactivateMessage()
{
}
/**
\brief Called once before game update loop starts, ret value indicates if init was done in scripts, otherwise it is done in the engine
*/
bool OnInitialize()
{
return false;
}
/**
\brief Called when inputs is not possible (Steam overlay active or something), all internal script variables should be reset here!
*/
void OnDeviceReset()
{
}
/**
\brief Called on World update
@param doSim False when simulation is paused, True otherwise
@param timeslice time elapsed from last call
*/
void OnUpdate(bool doSim, float timeslice)
{
}
/**
\brief Called on World update after simulation of entities
@param doSim False when simulation is paused, True otherwise
@param timeslice time elapsed from last call
*/
void OnPostUpdate(bool doSim, float timeslice)
{
}
/**
\brief Called when key is pressed
@param key direct input key code (DIK)
*/
void OnKeyPress(int key)
{
}
/**
\brief Called when key is released
@param key direct input key code (DIK)
*/
void OnKeyRelease(int key)
{
}
/**
\brief Called when mouse button is pressed
@param button - number of button \ref Mouse
*/
void OnMouseButtonPress(int button)
{
}
/**
\brief Called when mouse button is released
@param button - number of button \ref Mouse
*/
void OnMouseButtonRelease(int button)
{
}
/**
\brief create custom main menu part (submenu)
*/
UIScriptedMenu CreateScriptedMenu( int id ) { }
/**
\brief create custom window part
*/
UIScriptedWindow CreateScriptedWindow( int id ) { }
/**
\brief Called after remote procedure call is recieved for this object
@param target object on which remote procedure is called, when NULL, RPC is evaluated by CGame as global
@param rpc_type user defined identification of RPC
@param ctx read context for params
*/
void OnRPC(PlayerIdentity sender, Object target, int rpc_type, ParamsReadContext ctx)
{
}
/**
\brief Sets exit code and quits in the right moment
*/
proto native void RequestExit( int code );
/**
\brief Sets exit code and restart in the right moment
*/
proto native void RequestRestart(int code);
/**
\brief Returns if the application is focused on PC, returns true always on console
*/
proto native bool IsAppActive();
/**
\brief Gets the server address. (from client)
*/
proto bool GetHostAddress( out string address, out int port );
/**
\brief Gets the server name. (from client)
*/
proto owned string GetHostName();
/**
\brief Gets the server data. (from client)
*/
proto GetServersResultRow GetHostData();
/**
\brief Connects to IsServer
@param IpAddress of the server
@param port of the server set to 0 for default port
@param password of the server
\return 0 on success, error code from ErrorModuleHandler on not success
*/
proto native int Connect( UIScriptedMenu parent , string IpAddress, int port, string password );
/**
\brief Connects to last success network session
\return 0 on success, error code from ErrorModuleHandler on not success
*/
proto native int ConnectLastSession( UIScriptedMenu parent , int selectedCharacter = -1 );
/**
\brief Disconnects from current multiplayer session
*/
proto native void DisconnectSession();
/**
\brief Forces disconnect from current multiplayer session even if not yet in the game
*/
proto native void DisconnectSessionForce();
// profile functions
/**
\brief Gets array of strings from profile variable
@param name of the variable
@param values output values
\n usage:
@code
TStringArray lastInventoryArray = new TStringArray;
GetGame().GetProfileStringList("lastInventory", lastInventoryArray);
@endcode
*/
proto native void GetProfileStringList(string name, out TStringArray values);
/**
\brief Gets string from profile variable
@param name of the variable
@param value output value
\return true when successful
*/
proto bool GetProfileString(string name, out string value);
/**
\brief Sets array of strings to profile variable
@param name of the variable
@param values to set
*/
proto native void SetProfileStringList(string name, TStringArray values);
/**
\brief Sets string to profile variable
@param name of the variable
@param value to set
*/
proto native void SetProfileString(string name, string value);
/**
\brief Saves profile on disk.
*/
proto native void SaveProfile();
/**
\brief Gets current player name
@param name output value
*/
proto void GetPlayerName(out string name);
/**
\brief Gets current player name. If length of player name is grater than maxLength, then it is omitted and append ellipsis
@param maxLength - max chars in name
@param name - output value of player name with 'maxLength' characters and then ellipsis "..."
*/
proto void GetPlayerNameShort(int maxLength, out string name);
/**
\brief Sets current player name
@param name
*/
proto native void SetPlayerName(string name);
/**
\brief Assign player entity to client (in multiplayer)
\note Works only on server
@param name
*/
proto native Entity CreatePlayer(PlayerIdentity identity, string name, vector pos, float radius, string spec);
/**
\brief Selects player's controlled object
@param identity identity used in MP (use NULL in singleplayer)
@param player object which should be controlled by player
\note We can use only instances of DayZPlayer now
*/
proto native void SelectPlayer(PlayerIdentity identity, Object player);
/**
\brief returns player's network id from identity id in out parameters
@param identity PlayerIdentity.id used in MP (use NULL in singleplayer)
@param networkIdLowBits lower bits of 64bit network id
@param networkIdHighBits higher bits of 64bit network id
\note Usable only on server
*/
proto void GetPlayerNetworkIDByIdentityID( int playerIdentityID, out int networkIdLowBits, out int networkIdHightBits );
/**
\brief Returns entity identified by network id
@param networkIdLowBits identity used in MP (use NULL in singleplayer)
@param networkIdHighBits object which should be controlled by player
*/
proto native Object GetObjectByNetworkId( int networkIdLowBits, int networkIdHighBits );
/**
\brief Static objects cannot be replicated by default (there are too many objects on the map). Use this method when you want to replicate some scripted variables. Cannot be called in object's constructor, because networking is not initialized yet
@param object static object to replicate
@return false, if registration wasn't successful or when object is already registered
*/
proto native bool RegisterNetworkStaticObject(Object object);
/**
\brief Creates spectator object (mostly cameras)
@param identity identity used in MP (use NULL in singleplayer)
@param spectatorObjType classname for spectator object (like cameras)
@param position where to create spectator instance
*/
proto native void SelectSpectator(PlayerIdentity identity, string spectatorObjType, vector position);
/**
\brief Updates spectator position on server = position of network bubble
@param position
*/
proto native void UpdateSpectatorPosition(vector position);
/**
\brief Inform client about logout time (creates logout screen on specified client)
\note Works only on server
@param player object which is logging out
@param time length of logout
*/
proto native void SendLogoutTime(Object player, int time);
/**
\brief Destroy player info and disconnect
\note Works only on server
*/
proto native void DisconnectPlayer(PlayerIdentity identity, string uid = "");
/**
\brief Add player to reconnect cache to be able to rejoin character still existing in the world
\note Works only on server and no database requests are sent
@param identity of player
*/
proto native void AddToReconnectCache(PlayerIdentity identity);
/**
\brief Remove player from reconnect cache
\note Works only on server
@param uid of the player
*/
proto native void RemoveFromReconnectCache(string uid);
/**
\brief Remove all player from reconnect cache
\note Works only on server
*/
proto native void ClearReconnectCache();
/**
\brief Set actual storage version - for next save
*/
proto native void StorageVersion( int iVersion );
/**
\brief Returns actual storage version - loading
*/
proto native int LoadVersion();
/**
\brief Returns actual storage version - saving
*/
proto native int SaveVersion();
/**
\brief Returns current daytime on server
*/
proto native float GetDayTime();
// config functions
/**
\brief Get string value from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param value output
\return true on success
*/
proto bool ConfigGetText(string path, out string value);
/**
\brief Get raw string value from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param value output in raw format (localization keys '$STR_' are not translated)
\return true on success
\note use 'FormatRawConfigStringKeys' method to change localization keys to script-friendly
*/
proto bool ConfigGetTextRaw(string path, out string value);
/**
\brief Get string value from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
\return value output string
*/
string ConfigGetTextOut(string path)
{
string ret_s;
ConfigGetText(path, ret_s);
return ret_s;
}
/**
\brief Changes localization key format to script-friendly format.
@param original config string.
\return value output string with '$' substituted to script-friendly '#'. If not found, does nothing.
*/
bool FormatRawConfigStringKeys(inout string value)
{
int ret;
ret = value.Replace("$STR_","#STR_");
return ret > 0;
}
/**
\brief Get name of the p3d file of the given class name.
@param class name of the desired object
\return Name of the object's p3d file (without the '.p3d' suffix)
*/
string GetModelName(string class_name)
{
if ( class_name != "" )
{
string cfg = "CfgVehicles " + class_name + " model";
string model_path;
if ( GetGame().ConfigGetText(cfg, model_path) )
{
int to_substring_end = model_path.Length() - 4; // -4 to leave out the '.p3d' suffix
int to_substring_start = 0;
// Currently we have model path. To get the name out of it we need to parse this string from the end and stop at the first found '\' sign
for (int i = to_substring_end; i > 0; i--)
{
string sign = model_path.Get(i);
if ( sign == "\\" )
{
to_substring_start = i + 1;
break
}
}
string model_name = model_path.Substring(to_substring_start, to_substring_end - to_substring_start);
return model_name;
}
}
return "UNKNOWN_P3D_FILE";
}
/**
\brief Get float value from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
\return value
*/
proto native float ConfigGetFloat(string path);
/**
\brief Get vector value from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
\return value
*/
proto native vector ConfigGetVector(string path);
/**
\brief Get int value from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
\return value
*/
proto native int ConfigGetInt(string path);
/**
\brief Returns type of config value
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
\return one of constants CT_INT, CT_FLOAT, CT_STRING, CT_ARRAY, CT_CLASS, CT_OTHER
*/
proto native int ConfigGetType(string path);
/**
\brief Get array of strings from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param value output
\n usage :
@code
TStringArray characterAnimations = new TStringArray;
GetGame().ConfigGetTextArray("CfgMovesMaleSdr2 States menu_idleUnarmed0 variantsPlayer", characterAnimations);
@endcode
*/
proto native void ConfigGetTextArray(string path, out TStringArray values);
/**
\brief Get array of raw strings from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param value output in raw format (localization keys '$STR_' are not translated)
\n usage :
@code
TStringArray characterAnimations = new TStringArray;
GetGame().ConfigGetTextArrayRaw("CfgMovesMaleSdr2 States menu_idleUnarmed0 variantsPlayer", characterAnimations);
@endcode
\note use 'FormatRawConfigStringKeys' method to change localization keys to script-friendly
*/
proto native void ConfigGetTextArrayRaw(string path, out TStringArray values);
/**
\brief Get array of floats from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param value output
*/
proto native void ConfigGetFloatArray(string path, out TFloatArray values);
/**
\brief Get array of integers from config on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param value output
*/
proto native void ConfigGetIntArray(string path, out TIntArray values);
/**
\brief Get name of subclass in config class on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param index of subclass in class
@param name output
\return true on success, false if path or child is not found
*/
proto bool ConfigGetChildName(string path, int index, out string name);
/**
\brief Get name of base class of config class on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param name output
\return true on success, false if path or base is not exists
*/
proto bool ConfigGetBaseName(string path, out string base_name);
/**
\brief Get count of subclasses in config class on path.
@param path of value, classes are delimited by empty space. You can specify config file by using "configFile" or "missionConfigFile" as a first class name.
@param index of parameter in class
@param name output
\return true on success, false if path or child is not found
*/
proto native int ConfigGetChildrenCount(string path);
proto native bool ConfigIsExisting(string path);
proto native void ConfigGetFullPath(string path, out TStringArray full_path);
proto native void ConfigGetObjectFullPath(Object obj, out TStringArray full_path);
proto native void GetModInfos(notnull out array<ref ModInfo> modArray);
proto native bool GetModToBeReported();
/**
\brief Converts array of strings into single string.
\param Array of strings like {"All", "AllVehicles", "Land"}
\return Converts given array into something lile "All AllVehicles Land".
@code
???
@endcode
*/
string ConfigPathToString(TStringArray array_path)
{
string return_path = "";
int count = array_path.Count();
for (int i = 0; i < count; i++)
{
return_path += array_path.Get(i);
if ( i < count - 1 )
{
return_path += " ";
}
}
return return_path;
}
/**
\brief Get command line parameter value.
@param name of parameter
@param value output
\return true when parameter exists, false otherwise
\n usage :
@code
// you run e.g.: DayZInt.exe -scriptDebug=true
string value;
if (GetGame().CommandlineGetParam("scriptDebug", value) && value == "true")
{
Print("Script debugging on!");
}
@endcode
*/
proto bool CommandlineGetParam(string name, out string value);
proto native void CopyToClipboard(string text);
proto void CopyFromClipboard(out string text);
proto native void BeginOptionsVideo();
proto native void EndOptionsVideo();
proto native void AdminLog(string text);
// entity functions
/**
\brief Preload objects with certain type in certain distance from camera.
@param type of objects which should be preloaded
@param distance from camera in which objects should be preloaded
\return true on success
*/
proto native bool PreloadObject( string type, float distance );
proto native Object CreateStaticObjectUsingP3D(string p3dFilename, vector position, vector orientation, float scale = 1.0, bool createLocal = false);
/**
\brief Creates object of certain type
@param type of objects to create
@param pos position where to create object
@param create_local if True, object is not spawned on clients only on server
@param init_ai if creating object is LightAI class, by this param is initialised AI or not
\return new Object
*/
proto native Object CreateObject( string type, vector pos, bool create_local = false, bool init_ai = false, bool create_physics = true );
proto native SoundOnVehicle CreateSoundOnObject(Object source, string sound_name, float distance, bool looped, bool create_local = false);
proto native SoundWaveOnVehicle CreateSoundWaveOnObject(Object source, SoundObject soundObject, AbstractWave soundWave);
/**
\brief Creates object of certain type
@param type of objects to create
@param pos position where to create object
@param iFlags are used to setup object and/ or spawn behavior
@param iRotation are used to setup object rotation on spawn (or default if not specified)
\return new Object
*/
proto native Object CreateObjectEx( string type, vector pos, int iFlags, int iRotation = RF_DEFAULT );
proto native void ObjectDelete( Object obj );
proto native void ObjectDeleteOnClient( Object obj );
proto native void RemoteObjectDelete( Object obj ); /// RemoteObjectDelete - deletes only remote object (unregisters from network). do not use if not sure what you do
proto native void RemoteObjectTreeDelete( Object obj ); /// RemoteObjectDelete - deletes only remote object tree (unregisters from network). do not use if not sure what you do
proto native void RemoteObjectCreate( Object obj ); /// RemoteObjectCreate - postponed registration of network object (and creation of remote object). do not use if not sure what you do
proto native void RemoteObjectTreeCreate( Object obj ); /// RemoteObjectTreeCreate - postponed registration of network object tree (and creation of remote objects). do not use if not sure what you do
proto native int ObjectRelease( Object obj );
proto void ObjectGetType( Object obj, out string type );
proto void ObjectGetDisplayName( Object obj, out string name );
proto native vector ObjectGetSelectionPosition(Object obj, string name);
proto native vector ObjectGetSelectionPositionLS(Object obj, string name);
proto native vector ObjectGetSelectionPositionMS(Object obj, string name);
proto native vector ObjectGetSelectionPositionWS(Object obj, string name);
proto native vector ObjectModelToWorld(Object obj, vector modelPos);
proto native vector ObjectWorldToModel(Object obj, vector worldPos);
//! returns true if player can access item's cargo/attachments (check only distance)
proto native bool IsObjectAccesible(EntityAI item, Man player);
// input
proto native Input GetInput();
// camera
proto native vector GetCurrentCameraPosition();
proto native vector GetCurrentCameraDirection();
// sound
proto native AbstractSoundScene GetSoundScene();
// noise
proto native NoiseSystem GetNoiseSystem();
// inventory
proto native bool AddInventoryJuncture(Man player, notnull EntityAI item, InventoryLocation dst, bool test_dst_occupancy, int timeout_ms);
bool AddInventoryJunctureEx(Man player, notnull EntityAI item, InventoryLocation dst, bool test_dst_occupancy, int timeout_ms)
{
bool result = AddInventoryJuncture(player, item, dst, test_dst_occupancy, timeout_ms/*10000000*/);
#ifdef DEVELOPER
if ( LogManager.IsInventoryReservationLogEnable() )
{
Debug.InventoryReservationLog("STS = " + player.GetSimulationTimeStamp() + " result: " + result + " item:" + item + " dst: " + InventoryLocation.DumpToStringNullSafe(dst), "n/a" , "n/a", "AddInventoryJuncture",player.ToString() );
}
#endif
//Print("Juncture - STS = " + player.GetSimulationTimeStamp() + " item:" + item + " dst: " + InventoryLocation.DumpToStringNullSafe(dst));
return result;
}
//Has inventory juncture for any player
proto native bool HasInventoryJunctureItem(notnull EntityAI item);
proto native bool HasInventoryJunctureDestination(Man player, notnull InventoryLocation dst);
proto native bool AddActionJuncture(Man player, notnull EntityAI item, int timeout_ms);
proto native bool ExtendActionJuncture(Man player, notnull EntityAI item, int timeout_ms);
proto native bool ClearJuncture(Man player, notnull EntityAI item);
bool ClearJunctureEx(Man player, notnull EntityAI item)
{
#ifdef DEVELOPER
if ( LogManager.IsInventoryReservationLogEnable() )
{
Debug.InventoryReservationLog("STS = " + player.GetSimulationTimeStamp()+ " item:" + item, "n/a" , "n/a", "ClearJuncture",player.ToString() );
}
#endif
return ClearJuncture( player, item);
}
// support
//! Delevoper only: Executes Enforce Script expression, if there is an error, is printed into the script console
proto native bool ExecuteEnforceScript(string expression, string mainFnName);
//! Delevoper only: Dump all script allocations
proto native void DumpInstances(bool csvFormatting);
proto native bool ScriptTest();
//! Get list of all debug modes
proto native void GetDiagModeNames(out TStringArray diag_names);
//! Set specific debug mode
proto native void SetDiagModeEnable(int diag_mode, bool enabled);
//! Gets state of specific debug mode
proto native bool GetDiagModeEnable(int diag_mode);
//! Get list of all debug draw modes
proto native void GetDiagDrawModeNames(out TStringArray diag_names);
//! Set debug draw mode
proto native void SetDiagDrawMode(int diag_draw_mode);
//! Gets current debug draw mode
proto native int GetDiagDrawMode();
//! If physics extrapolation is enabled, always true on retail release builds
proto native bool IsPhysicsExtrapolationEnabled();
/**
\brief Returns average FPS of last 16 frames
@return fps in milliseconds
*/
proto native float GetFps();
/**
\brief Returns current time from start of the game
@return time in seconds
*/
proto native float GetTickTime();
proto void GetInventoryItemSize(InventoryItem item, out int width, out int height);
/**
\brief Returns list of all objects in circle "radius" around position "pos"
@param pos
@param radius
@param objects output array
*/
proto native void GetObjectsAtPosition(vector pos, float radius, out array<Object> objects, out array<CargoBase> proxyCargos);
/**
\brief Returns list of all objects in sphere "radius" around position "pos"
@param pos
@param radius
@param objects output array
*/
proto native void GetObjectsAtPosition3D(vector pos, float radius, out array<Object> objects, out array<CargoBase> proxyCargos);
proto native World GetWorld();
proto void GetWorldName( out string world_name );
string GetWorldName()
{
string world_name;
g_Game.GetWorldName(world_name);
return world_name;
}
proto native bool VerifyWorldOwnership( string sWorldName );
proto native bool GoBuyWorldDLC( string sWorldName );
proto void FormatString( string format, string params[], out string output);
proto void GetVersion( out string version );
proto native UIManager GetUIManager();
proto native DayZPlayer GetPlayer();
proto native void GetPlayers( out array<Man> players );
DayZPlayer GetPlayerByIndex(int index = 0)
{
array<Man> players();
GetPlayers(players);
if (index >= players.Count())
return null;
return DayZPlayer.Cast(players[index]);
}
//! Stores login userdata as parameters which are sent to server
proto native void StoreLoginData(ParamsWriteContext ctx);
//! Returns the direction where the mouse points, from the camera view
proto native vector GetPointerDirection();
//! Transforms position in world to position in screen in pixels as x, y component of vector, z parameter represents distance between camera and world_pos
proto native vector GetWorldDirectionFromScreen(vector world_pos);
//! Transforms position in world to position in screen in pixels as x, y component of vector, z parameter represents distance between camera and world_pos
proto native vector GetScreenPos(vector world_pos);
//! Transforms position in world to position in screen in percentage (0.0 - 1.0) as x, y component of vector, z parameter represents distance between camera and world_pos
proto native vector GetScreenPosRelative(vector world_pos);
//! Return singleton of MenuData class - at main menu contains characters played with current profile.
proto native MenuData GetMenuData();
/**
\brief Initiate remote procedure call. When called on client, RPC is evaluated on server; When called on server, RPC is executed on all clients
@param target object on which remote procedure is called, when NULL, RPC is evaluated by CGame as global
@param rpc_type user defined identification of RPC
@param params custom params array
@param recipient specified client to send RPC to. If NULL, RPC will be send to all clients (specifying recipient increase security and decrease network traffic)
@code
const int RPC_LOW_BLOOD_PRESSURE_EFFECT = 0;
...
// on server side, after blood pressure of player is low...
Param1<float> p = new Param1<float>(m_blood_pressure);
array<param> params = new array<param>;
params.Insert(p);
GetGame().RPC(player, RPC_LOW_BLOOD_PRESSURE_EFFECT, params);
// or shortcut
GetGame().RPCSingleParam(player, RPC_LOW_BLOOD_PRESSURE_EFFECT, p);
...
// on client
class PlayerBase
{
// override OnRPC function
void OnRPC(PlayerIdentity sender, int rpc_type, ParamsReadContext ctx)
{
// dont forget to propagate this call trough class hierarchy!
super.OnRPC(rpc_type, ctx);
switch(rpc_type)
{
case RPC_LOW_BLOOD_PRESSURE_EFFECT:
Param1<float> p = Param1<float>(0);
if (ctx.Read(p))
{
float blood_pressure = p.param1;
float effect_intensity = 1.0 - blood_pressure;
ShowFancyScreenEffect(effect_intensity);
}
break;
}
}
}
@endcode
*/
proto native void RPC(Object target, int rpcType, notnull array<ref Param> params, bool guaranteed,PlayerIdentity recipient = null);
//! see CGame.RPC
void RPCSingleParam(Object target, int rpc_type, Param param, bool guaranteed, PlayerIdentity recipient = null)
{
m_ParamCache.Set(0, param);
RPC(target, rpc_type, m_ParamCache, guaranteed, recipient);
}
//! Not actually an RPC, as it will send it only to yourself
proto native void RPCSelf(Object target, int rpcType, notnull array<ref Param> params);
void RPCSelfSingleParam(Object target, int rpcType, Param param)
{
m_ParamCache.Set(0, param);
RPCSelf(target, rpcType, m_ParamCache);
}
//! Use for profiling code from start to stop, they must match have same name, look wiki pages for more info: https://confluence.bistudio.com/display/EN/Profiler
proto native void ProfilerStart(string name);
//! Use for profiling code from start to stop, they must match have same name, look wiki pages for more info: https://confluence.bistudio.com/display/EN/Profiler
proto native void ProfilerStop(string name);
/**
\brief Prints text into game chat.
\param text to print
\param colorClass ??
\n usage :
@code
GetGame().Chat("Item splitted", "colorAction");
@endcode
*/
proto native void Chat(string text, string colorClass);
proto native void ChatMP(Man recipient, string text, string colorClass);
proto native void ChatPlayer(string text);
/**
\brief Mutes voice of source player to target player
@param muteUID uid of player you want to mute
@param playerUID uid of player that (doesnt't) want to hear muteUID
*/
proto native void MutePlayer(string muteUID, string playerUID, bool mute);
/**
\brief Mute all players for listenerId
@param listenerId uid of player
@param mute true, if player can not listen anybody. Otherwise false.
*/
proto native void MuteAllPlayers(string listenerId, bool mute);
/**
\brief Enable/disable VoN for target player
@param player in question
@param enable sets if player can use VoN
*/
proto native void EnableVoN(Object player, bool enable);
/**
\brief Enable/disable VoN effect (only on server)
@param player in question
@param voice effect (VoiceEffectMumbling = 1, VoiceEffectExtortion = 2, VoiceEffectObstruction = 4)
@param enable or disable effect
*/
proto native void SetVoiceEffect(Object player, int effect, bool enable);
/**
\brief Set voice level of VoN (only on client) (VoiceLevelWhisper = 0, VoiceLevelNormal = 1, VoiceLevelShout = 2)
@param level of voice
*/
proto native void SetVoiceLevel(int level);
/**
\brief Get voice level of VoN (on both client and server) (VoiceLevelWhisper = 0, VoiceLevelNormal = 1, VoiceLevelShout = 2)
*/
proto native int GetVoiceLevel(Object player = null);
/**
\brief Enable microphone to locally capture audio from user. Audio heard does NOT automatically get transmitted over network
@param enable enables or disabled listening
*/
proto native void EnableMicCapture(bool enable);
/**
\brief Returns whether mic is currently capturing audio from user
*/
proto native bool IsMicCapturing();
/**
\brief Returns whether user is currently in a voice party (currently only supported on xbox)
*/
proto native bool IsInPartyChat();
// mission
proto native Mission GetMission();
proto native void SetMission(Mission mission);
//! Starts intro
proto native void StartRandomCutscene(string world);
//! Starts mission (equivalent for SQF playMission). You MUST use double slash \\
proto native void PlayMission(string path);
//! Create only enforce script mission, used for mission script reloading
proto protected native void CreateMission(string path);
proto native void RestartMission();
//! Returns to main menu, leave world empty for using last mission world
proto native void AbortMission();
proto native void RespawnPlayer();
proto native bool CanRespawnPlayer();
proto native void SetLoginTimerFinished();
proto native void SetMainMenuWorld(string world);
proto native owned string GetMainMenuWorld();
//! Logout methods
proto native void LogoutRequestTime();
proto native void LogoutRequestCancel();
proto native bool IsMultiplayer();
proto native bool IsClient();
proto native bool IsServer();
/**
\brief Robust check which is preferred than the above, as it is valid much sooner
\note You may want to use #ifdef SERVER instead for slight performance gain...
*/
proto native bool IsDedicatedServer();
//! Server config parsing. Returns 0 if not found.
proto native int ServerConfigGetInt(string name);
// Internal build
proto native bool IsDebug();
//#ifdef PLATFORM_XBOX
static bool IsDigitalCopy()
{
return OnlineServices.IsGameActive(false);
}
//#endif
/*bool IsNewMenu()
{
return m_ParamNewMenu;
}*/
void SetDebugMonitorEnabled(int value)
{
m_DebugMonitorEnabled = value;
}
bool IsDebugMonitor()
{
return IsServer() && m_DebugMonitorEnabled;
}
proto native void GetPlayerIndentities( out array<PlayerIdentity> identities );
proto native float SurfaceY(float x, float z);
proto native float SurfaceRoadY(float x, float z, RoadSurfaceDetection rsd = RoadSurfaceDetection.LEGACY);
proto native float SurfaceRoadY3D(float x, float y, float z, RoadSurfaceDetection rsd);
proto void SurfaceGetType(float x, float z, out string type);
proto void SurfaceGetType3D(float x, float y, float z, out string type);
proto void SurfaceUnderObject(notnull Object object, out string type, out int liquidType);
proto void SurfaceUnderObjectEx(notnull Object object, out string type, out string impact, out int liquidType);
proto void SurfaceUnderObjectByBone(notnull Object object, int boneType, out string type, out int liquidType);
proto native float SurfaceGetNoiseMultiplier(Object directHit, vector pos, int componentIndex);
proto native vector SurfaceGetNormal(float x, float z);
proto native float SurfaceGetSeaLevel();
proto native bool SurfaceIsSea(float x, float z);
proto native bool SurfaceIsPond(float x, float z);
proto native float GetWaterDepth(vector posWS);
proto native void UpdatePathgraphRegion(vector regionMin, vector regionMax);
//! Returns the largest height difference between the given positions
float GetHighestSurfaceYDifference( array<vector> positions)
{
float high = -9999999;
float low = 99999999;
for (int i = 0; i < positions.Count(); i++)
{
vector pos = positions.Get(i);
pos[1] = SurfaceRoadY( pos[0], pos[2]);
float y = pos[1];
if ( y > high )
high = y;
if ( y < low )
low = y;
;
}
return high - low;
}
//! Returns tilt of the ground on the given position in degrees, so you can use this value to rotate any item according to terrain.
vector GetSurfaceOrientation(float x, float z)
{
vector normal = GetGame().SurfaceGetNormal(x, z);
vector angles = normal.VectorToAngles();
angles[1] = angles[1]+270; // This fixes rotation of item so it stands vertically. Feel free to change, but fix existing use cases.
//Hack because setorientation and similar functions break and flip stuff upside down when using exactly this vector ¯\_(ツ)_/¯ (note: happens when surface is flat)
if (angles == "0 540 0")
angles = "0 0 0";
return angles;
}
//! Checks if the surface is digable
bool IsSurfaceDigable(string surface)
{
return ConfigGetInt("CfgSurfaces " + surface + " isDigable");
}
//! Checks if the surface is fertile
bool IsSurfaceFertile(string surface)
{
return ConfigGetInt("CfgSurfaces " + surface + " isFertile");
}
void UpdatePathgraphRegionByObject(Object object)
{
if ( object )
{
vector pos = object.GetPosition();
vector min_max[2];
float radius = object.ClippingInfo ( min_max );
vector min = Vector ( pos[0] - radius, pos[1], pos[2] - radius );
vector max = Vector ( pos[0] + radius, pos[1], pos[2] + radius );
UpdatePathgraphRegion( min, max );
}
}
/**
\brief Finds all objects that are in choosen oriented bounding box (OBB)
\param center \p vector, center of OBB
\param orientation \p vector, direction (front vector), used for calculation of OBB rotation
\param edgeLength \p vector, sizes of whole box
\param excludeObjects \p array<Object>, objects that should be excluded from collision check
\param collidedObjects \p array<Object>, out parameter, objects that collided with OBB
\returns \p bool, \p true if at least one object collided with OBB, \p false otherwise
\note Object that doesn't have collision geometry will be ignored, as this only uses geometry
@code
vector pos = GetPosition();
vector orientation = GetOrientation();
vector size = "10 4 8";
array<Object> excluded_objects = new array<Object>;
excluded_objects.Insert(this);
array<Object> nearby_objects = new array<Object>;
if(GetGame().IsBoxColliding( pos, orientation, size, excluded_objects, nearby_objects))
{
for (int i = 0, c = nearby_objects.Count(); i < c; ++i)
{
PrintString("object " + i.ToString());
}
}
@endcode
*/
proto native bool IsBoxColliding(vector center, vector orientation, vector edgeLength, array<Object> excludeObjects, array<Object> collidedObjects = NULL);
/**
\brief Finds all objects with geometry iType that are in choosen oriented bounding box (OBB)
\param center \p vector, center of OBB
\param orientation \p vector, direction (front vector), used for calculation of OBB rotation
\param edgeLength \p vector, sizes of whole box
\param iPrimaryType \p int, type of intersection, possible values ObjIntersectFire(0), ObjIntersectView(1), ObjIntersectGeom(2), ObjIntersectIFire(3),
ObjIntersectNone(4)
\param iSecondaryType \p int, type of intersection, possible values ObjIntersectFire(0), ObjIntersectView(1), ObjIntersectGeom(2), ObjIntersectIFire(3),
ObjIntersectNone(4)
\param excludeObjects \p array<Object>, objects that should be excluded from collision check
\param collidedObjects \p array<Object>, out parameter, objects that collided with OBB
\returns \p bool, \p true if at least one object collided with OBB, \p false otherwise
@code
vector pos = GetPosition();
vector orientation = GetOrientation();
vector size = "10 4 8";
array<Object> excluded_objects = new array<Object>;
excluded_objects.Insert(this);
array<Object> nearby_objects = new array<Object>;
if(GetGame().IsBoxCollidingGeometry( pos, orientation, size, ObjIntersectView, ObjIntersectGeom, excluded_objects, nearby_objects))
{
for (int i = 0, c = nearby_objects.Count(); i < c; ++i)
{
PrintString("object " + i.ToString());
}
}
@endcode
*/
proto native bool IsBoxCollidingGeometry(vector center, vector orientation, vector edgeLength, int iPrimaryType, int iSecondaryType, array<Object> excludeObjects, array<Object> collidedObjects = NULL);
proto native bool IsBoxCollidingGeometryProxy(notnull BoxCollidingParams params, array<Object> excludeObjects, array<ref BoxCollidingResult> collidedObjects = NULL);
//! Returns weather controller object.
proto native Weather GetWeather();
//! Sets custom camera camera EV. range: -50.0..50.0? //TODO
proto native void SetEVUser(float value);
proto native void OverrideDOF(bool enable, float focusDistance, float focusLength, float focusLengthNear, float blur, float focusDepthOffset);
proto native void AddPPMask(float ndcX, float ndcY, float ndcRadius, float ndcBlur);
proto native void ResetPPMask();
/*!
override inventory light
\param diffuse directional light
\param ambient ambient light
\param ground ground light
\param dir direction of light, Vector(0,0,1) is from camera
*/
proto native void OverrideInventoryLights(vector diffuse, vector ambient, vector ground, vector dir);
/*!
set night vission parameters (set to zero when to disable it)
\param lightIntensityMul multiplicator of lights intensity
\param noiseIntensity intensity of noise PP
*/
proto native void NightVissionLightParams(float lightIntensityMul, float noiseIntensity);
proto native void OpenURL(string url);
//! Initialization of damage effects
proto native void InitDamageEffects(Object effect);
//-----------------------------------------------------------------------------
// persitence
//-----------------------------------------------------------------------------
//! Returns EntityAI by its persistent ID parts
//! or null if entity with given persistent ID does not exists.
/*!
This function returns valid data only inside AfterLoad event.
Do not use this in anywhere else.
Its main purpose is only for keep track on object connections
after server restarts, all data related to this function are deleted
when server initialization is done.
*/
proto native EntityAI GetEntityByPersitentID( int b1, int b2, int b3, int b4 );
//-----------------------------------------------------------------------------
/**
\brief Returns is class name inherited from parent class name
\param cfg_class_name \p Config Class name ("Animal_CervusElaphus")
\param cfg_parent_name \p Parent Config Class name ("DZ_LightAI")
\returns \p bool is class name inherited from parent class name
@code
bool is_kind = GetGame().IsKindOf( "Animal_CervusElaphus", "DZ_LightAI");
PrintString(ToString(is_kind));
>> 1
@endcode
*/
bool IsKindOf(string cfg_class_name, string cfg_parent_name)
{
TStringArray full_path = new TStringArray;
ConfigGetFullPath("CfgVehicles " + cfg_class_name, full_path);
if (full_path.Count() == 0)
{
ConfigGetFullPath("CfgAmmo " + cfg_class_name, full_path);
}
if (full_path.Count() == 0)
{
ConfigGetFullPath("CfgMagazines " + cfg_class_name, full_path);
}
if (full_path.Count() == 0)
{
ConfigGetFullPath("cfgWeapons " + cfg_class_name, full_path);
}
if (full_path.Count() == 0)
{
ConfigGetFullPath("CfgNonAIVehicles " + cfg_class_name, full_path);
}
cfg_parent_name.ToLower();
for (int i = 0; i < full_path.Count(); i++)
{
string tmp = full_path.Get(i);
tmp.ToLower();
if (tmp == cfg_parent_name)
{
return true;
}
}
return false;
}
/**
\brief Returns is object inherited from parent class name
\param object \p Object
\param cfg_parent_name \p Parent Config Class name ("DZ_LightAI")
\returns \p bool is object inherited from parent class name
@code
bool is_kind = GetGame().IsKindOf( my_animal, "DZ_LightAI");
PrintString(ToString(is_kind));
>> 1
@endcode
*/
bool ObjectIsKindOf(Object object, string cfg_parent_name)
{
TStringArray full_path = new TStringArray;
ConfigGetObjectFullPath(object, full_path);
cfg_parent_name.ToLower();
for (int i = 0; i < full_path.Count(); i++)
{
string tmp = full_path.Get(i);
tmp.ToLower();
if (tmp == cfg_parent_name)
{
return true;
}
}
return false;
}
/**
Searches given config path (config_path) for the given member (searched_member) and returns its index.
\nReturns -1 if not found.
\n usage:
* @code
* int skinning_class_index = g_Game.ConfigFindClassIndex(cfgPath_animal, "Skinning");
* @endcode
*/
int ConfigFindClassIndex(string config_path, string searched_member)
{
int class_count = ConfigGetChildrenCount(config_path);
for (int index = 0; index < class_count; index++)
{
string found_class = "";
ConfigGetChildName(config_path, index, found_class);
if (found_class == searched_member)
{
return index;
}
}
return -1;
}
//!returns mission time in milliseconds
proto int GetTime();
/**
Returns CallQueue for certain category
@param call_category call category, valid values are:
\n CALL_CATEGORY_SYSTEM - calls & timers in this queue are processed every time without any restrictions
\n CALL_CATEGORY_GUI - calls & timers in this queue are processed when GUI is enabled (even during pase game)
\n CALL_CATEGORY_GAMEPLAY - calls & timers in this queue are processed only during mission, when game is not paused
\n usage:
* @code
* GetGame().GetCallQueue(CALL_CATEGORY_GUI).Call(this, "Refresh"); // calls "Refresh" function on "this" with no arguments
* GetGame().GetCallQueue(CALL_CATEGORY_GUI).Call(this, "Show", new Param1<bool>(true)); // calls "Show" function on "this" with one bool argument
* GetGame().GetCallQueue(CALL_CATEGORY_GUI).Call(this, "SetPos", new Param2<float, float>(0.2, 0.5)); // calls "SetPos" function on "this" with two float arguments
* @endcode
*/
ScriptCallQueue GetCallQueue(int call_category) {}
ScriptInvoker GetUpdateQueue(int call_category) {}
ScriptInvoker GetPostUpdateQueue(int call_category) {}
/**
Returns TimerQueue for certain category
@param call_category call category, valid values are:
\n CALL_CATEGORY_SYSTEM - calls & timers in this queue are processed every time without any restrictions
\n CALL_CATEGORY_GUI - calls & timers in this queue are processed when GUI is enabled (even during pase game)
\n CALL_CATEGORY_GAMEPLAY - calls & timers in this queue are processed only during mission, when game is not paused
*/
TimerQueue GetTimerQueue(int call_category) {}
/**
Returns DragQueue. Callbacks are called on mouse move until mouse button is released, then the queue is cleaned.
*/
DragQueue GetDragQueue() {}
//!returns class name of first valid survivor (TODO address confusing naming?)
string CreateDefaultPlayer() {}
//!returns class name of random survivor (TODO address confusing naming?)
string CreateRandomPlayer() {}
//!outputs array of all valid survivor class names
TStringArray ListAvailableCharacters() {}
bool IsInventoryOpen()
{
}
proto native BiosUserManager GetUserManager();
//! Return DLC service (service for entitlement keys for unlock content)
proto native ContentDLC GetContentDLCService();
//! Returns true when current mission is Main Menu
bool IsMissionMainMenu()
{
return (g_Game.GetMissionState() == DayZGame.MISSION_STATE_MAINMENU);
}
MenuDefaultCharacterData GetMenuDefaultCharacterData(bool fill_data = true)
{
//Print("GetMenuDefaultCharacterData");
//DumpStack();
//if used on server, creates an empty container to be filled by received data
if (!m_CharacterData)
{
m_CharacterData = new MenuDefaultCharacterData;
if (fill_data)
GetGame().GetMenuData().RequestGetDefaultCharacterData(); //fills the structure
}
return m_CharacterData;
}
//Analytics Manager
AnalyticsManagerServer GetAnalyticsServer()
{
return m_AnalyticsManagerServer;
}
AnalyticsManagerClient GetAnalyticsClient()
{
return m_AnalyticsManagerClient;
}
};
|