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 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717
|
#include "multi_objects.h"
#include "enums.h"
#include "network/multi_dogfight.h"
#include "network/multi_pxo.h"
#include "network/multiui.h"
#include "network/multi.h"
#include "network/multi_kick.h"
#include "network/multi_team.h"
#include "network/multimsgs.h"
#include "network/multi_ingame.h"
#include "network/multiteamselect.h"
#include "mission/missionparse.h"
#include "pilotfile/pilotfile.h"
#include "ship/ship.h"
#include "object/objectshield.h"
#include "weapon/weapon.h"
#include "scripting/lua/LuaTable.h"
#include "scripting/api/objs/player.h"
namespace scripting {
namespace api {
channel_h::channel_h() : channel(-1) {}
channel_h::channel_h(int l_channel) : channel(l_channel) {}
pxo_channel* channel_h::getChannel() const
{
if (!isValid())
return nullptr;
return &Multi_pxo_channels[channel];
}
bool channel_h::isCurrent() const
{
return !stricmp(Multi_pxo_channels[channel].name, Multi_pxo_channel_current.name);
}
bool channel_h::isValid() const
{
return channel >= 0 && channel < static_cast<int>(Multi_pxo_channels.size());
}
net_player_h::net_player_h() : player(-1) {}
net_player_h::net_player_h(int l_player) : player(l_player) {}
net_player* net_player_h::getPlayer() const
{
if (!isValid())
return nullptr;
return &Net_players[player];
}
int net_player_h::getIndex() const
{
return player;
}
bool net_player_h::isValid() const
{
//If we're not in multiplayer mode then there will be no players!
if (!(Game_mode & GM_MULTIPLAYER)) {
return false;
}
if (player < 0 || player >= MAX_PLAYERS) {
return false;
}
//disconnected players and servers are not valid for the UI!
if (!MULTI_CONNECTED(Net_players[player]) || MULTI_STANDALONE(Net_players[player])) {
return false;
}
return true;
}
net_mission_h::net_mission_h() : mission(-1) {}
net_mission_h::net_mission_h(int l_mission) : mission(l_mission) {}
multi_create_info* net_mission_h::getMission() const
{
if (!isValid())
return nullptr;
return &Multi_create_mission_list[mission];
}
int net_mission_h::getIndex() const
{
return mission;
}
bool net_mission_h::isValid() const
{
return SCP_vector_inbounds(Multi_create_mission_list, mission);
}
net_campaign_h::net_campaign_h() : campaign(-1) {}
net_campaign_h::net_campaign_h(int l_campaign) : campaign(l_campaign) {}
multi_create_info* net_campaign_h::getCampaign() const
{
if (!isValid())
return nullptr;
return &Multi_create_campaign_list[campaign];
}
int net_campaign_h::getIndex() const
{
return campaign;
}
bool net_campaign_h::isValid() const
{
return SCP_vector_inbounds(Multi_create_campaign_list, campaign);
}
net_game_h::net_game_h() {}
netgame_info* net_game_h::getNetgame() const
{
return &Netgame;
}
bool net_game_h::isValid() const
{
if ((Game_mode & GM_MULTIPLAYER) && (Netgame.name[0] != '\0')) {
return true;
} else {
return false;
}
}
active_game_h::active_game_h() : game(-1) {}
active_game_h::active_game_h(int l_game) : game(l_game) {}
active_game* active_game_h::getGame() const
{
if (!isValid())
return nullptr;
auto it = Active_games.begin();
std::advance(it, game);
return &(*it);
}
bool active_game_h::isValid() const
{
return game >= 0 && game < static_cast<int>(Active_games.size());
}
dogfight_scores_h::dogfight_scores_h() : scores(-1) {}
dogfight_scores_h::dogfight_scores_h(int l_scores) : scores(l_scores) {}
multi_df_score* dogfight_scores_h::getScores() const
{
if (!isValid())
return nullptr;
return &Multi_df_score[scores];
}
bool dogfight_scores_h::isValid() const
{
return scores >= 0 && scores < Multi_df_score_count;
}
join_ship_choices_h::join_ship_choices_h() : choice(-1) {}
join_ship_choices_h::join_ship_choices_h(int l_choice) : choice(l_choice) {}
object* join_ship_choices_h::getObject() const
{
if (!isValid())
return nullptr;
//This is kind of a roundabout way of doing this but it ensures we get
//read-only access to just the information we need for this UI rather
//than exposing the entire object itself
return &Objects[Ingame_ship_choices[choice]];
}
int join_ship_choices_h::getIndex() const
{
return choice;
}
bool join_ship_choices_h::isValid() const
{
return SCP_vector_inbounds(Ingame_ship_choices, choice);
}
//**********HANDLE: channel section
ADE_OBJ(l_Channel, channel_h, "pxo_channel", "Channel Section handle");
ADE_FUNC(isValid,
l_Channel,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
channel_h current;
if (!ade_get_args(L, "o", l_Channel.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Name, l_Channel, nullptr, "The name of the channel", "string", "The name")
{
channel_h current;
if (!ade_get_args(L, "o", l_Channel.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getChannel()->name);
}
ADE_VIRTVAR(Description, l_Channel, nullptr, "The description of the channel", "string", "The description")
{
channel_h current;
if (!ade_get_args(L, "o", l_Channel.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getChannel()->desc);
}
ADE_VIRTVAR(NumPlayers, l_Channel, nullptr, "The number of players in the channel", "string", "The number of players")
{
channel_h current;
if (!ade_get_args(L, "o", l_Channel.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", static_cast<int>(current.getChannel()->num_users));
}
ADE_VIRTVAR(NumGames, l_Channel, nullptr, "The number of games the channel", "string", "The number of games")
{
channel_h current;
if (!ade_get_args(L, "o", l_Channel.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", static_cast<int>(current.getChannel()->num_servers));
}
ADE_FUNC(isCurrent, l_Channel, nullptr, "Returns whether this is the current channel", "boolean", "true for current, false otherwise. Nil if invalid.")
{
channel_h current;
if (!ade_get_args(L, "o", l_Channel.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isCurrent());
}
ADE_FUNC(joinChannel, l_Channel, nullptr, "Joins the specified channel", nullptr, nullptr)
{
channel_h current;
if (!ade_get_args(L, "o", l_Channel.Get(¤t)))
return ADE_RETURN_NIL;
multi_pxo_maybe_join_channel(current.getChannel());
return ADE_RETURN_NIL;
}
//**********HANDLE: net player section
ADE_OBJ(l_NetPlayer, net_player_h, "net_player", "Net Player handle");
ADE_FUNC(isValid,
l_NetPlayer,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Name, l_NetPlayer, nullptr, "The player's callsign", "string", "The player callsign")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getPlayer()->m_player->callsign);
}
ADE_VIRTVAR(Team, l_NetPlayer, "number Team", "The player's team as an integer", "number", "The team")
{
net_player_h current;
int team;
if (!ade_get_args(L, "o|i", l_NetPlayer.Get(¤t), &team)) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "i", -1);
}
if (ADE_SETTING_VAR) {
if (team < 0 || team > 1) {
LuaError(L, "Team must be either 0 or 1!");
}
multi_team_set_team(current.getPlayer(), team);
}
return ade_set_args(L, "i", current.getPlayer()->p_info.team);
}
ADE_VIRTVAR(State, l_NetPlayer, nullptr, "The player's current state string", "string", "The state")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", multi_sync_get_state_string(current.getPlayer()).c_str());
}
ADE_FUNC(isSelf, l_NetPlayer, nullptr, "Whether or not the player is the current game instance's player", "boolean", "The self value")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
if (current.getPlayer()->player_id == Net_player->player_id) {
return ADE_RETURN_TRUE;
}
return ADE_RETURN_FALSE;
}
ADE_VIRTVAR(Master, l_NetPlayer, nullptr, "Whether or not the player is the game master", "boolean", "The master value")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getPlayer()->flags & NETINFO_FLAG_AM_MASTER) {
return ADE_RETURN_TRUE;
}
return ADE_RETURN_FALSE;
}
ADE_VIRTVAR(Host, l_NetPlayer, nullptr, "Whether or not the player is the game host", "boolean", "The host value")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getPlayer()->flags & NETINFO_FLAG_GAME_HOST) {
return ADE_RETURN_TRUE;
}
return ADE_RETURN_FALSE;
}
ADE_VIRTVAR(Observer, l_NetPlayer, nullptr, "Whether or not the player is an observer", "boolean", "The observer value")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getPlayer()->flags & NETINFO_FLAG_OBSERVER) {
return ADE_RETURN_TRUE;
}
return ADE_RETURN_FALSE;
}
ADE_VIRTVAR(Captain, l_NetPlayer, nullptr, "Whether or not the player is the team captain", "boolean", "The captain value")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getPlayer()->flags & NETINFO_FLAG_TEAM_CAPTAIN) {
return ADE_RETURN_TRUE;
}
return ADE_RETURN_FALSE;
}
ADE_FUNC(getStats,
l_NetPlayer,
nullptr,
"Gets a handle of the player stats by player name or invalid handle if the name is invalid",
"scoring_stats",
"Player stats handle")
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
return ade_set_args(L, "o", l_ScoringStats.Set(scoring_stats_h(current.getPlayer()->m_player->stats, current.getPlayer()->m_player)));
}
ADE_FUNC(kickPlayer, l_NetPlayer, nullptr, "Kicks the player from the game", nullptr, nullptr)
{
net_player_h current;
if (!ade_get_args(L, "o", l_NetPlayer.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
multi_kick_player(current.getIndex(), 0);
return ADE_RETURN_NIL;
}
//**********HANDLE: mission section
ADE_OBJ(l_NetMission, net_mission_h, "net_mission", "Net Mission handle");
ADE_FUNC(isValid,
l_NetMission,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
net_mission_h current;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Name, l_NetMission, nullptr, "The name of the mission", "string", "The name")
{
net_mission_h current;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getMission()->name);
}
ADE_VIRTVAR(Filename, l_NetMission, nullptr, "The filename of the mission", "string", "The filename")
{
net_mission_h current;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getMission()->filename);
}
ADE_VIRTVAR(Players, l_NetMission, nullptr, "The max players for the mission", "number", "The max number of players")
{
net_mission_h current;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "i", 0);
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", current.getMission()->max_players);
}
ADE_VIRTVAR(Respawn, l_NetMission, nullptr, "The mission specified respawn count", "number", "The respawn count")
{
net_mission_h current;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", current.getMission()->respawn);
}
ADE_VIRTVAR(Tracker,
l_NetMission,
nullptr,
"The validity status of the mission tracker",
"boolean",
"true if valid, false if invalid, nil if unknown or handle is invalid")
{
net_mission_h current;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_NIL;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getMission()->valid_status == MVALID_STATUS_UNKNOWN) {
return ADE_RETURN_NIL;
}
if (current.getMission()->valid_status == MVALID_STATUS_VALID) {
return ADE_RETURN_TRUE;
}
if (current.getMission()->valid_status == MVALID_STATUS_INVALID) {
return ADE_RETURN_FALSE;
}
//catch all
return ADE_RETURN_NIL;
}
ADE_VIRTVAR(Type,
l_NetMission,
nullptr,
"The type of mission. Can be MULTI_TYPE_COOP, MULTI_TYPE_TEAM, or MULTI_TYPE_DOGFIGHT",
"enumeration",
"the type")
{
net_mission_h current;
lua_enum eh_idx = ENUM_INVALID;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(eh_idx)));
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getMission()->flags & MISSION_TYPE_MULTI_COOP) {
eh_idx = LE_MULTI_TYPE_COOP;
}
if (current.getMission()->flags & MISSION_TYPE_MULTI_TEAMS) {
eh_idx = LE_MULTI_TYPE_TEAM;
}
if (current.getMission()->flags & MISSION_TYPE_MULTI_DOGFIGHT) {
eh_idx = LE_MULTI_TYPE_DOGFIGHT;
}
return ade_set_args(L, "o", l_Enum.Set(enum_h(eh_idx)));
}
ADE_VIRTVAR(Builtin,
l_NetMission,
nullptr,
"Is true if the mission is a built-in Volition mission. False otherwise",
"boolean",
"builtin")
{
net_mission_h current;
if (!ade_get_args(L, "o", l_NetMission.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "b", multi_is_item_builtin_volition(current.getMission()->filename));
}
//**********HANDLE: campaign section
ADE_OBJ(l_NetCampaign, net_campaign_h, "net_campaign", "Net Campaign handle");
ADE_FUNC(isValid,
l_NetCampaign,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
net_campaign_h current;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Name, l_NetCampaign, nullptr, "The name of the mission", "string", "The name")
{
net_campaign_h current;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getCampaign()->name);
}
ADE_VIRTVAR(Filename, l_NetCampaign, nullptr, "The filename of the mission", "string", "The filename")
{
net_campaign_h current;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getCampaign()->filename);
}
ADE_VIRTVAR(Players, l_NetCampaign, nullptr, "The max players for the mission", "number", "The max number of players")
{
net_campaign_h current;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "i", 0);
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", current.getCampaign()->max_players);
}
ADE_VIRTVAR(Respawn, l_NetCampaign, nullptr, "The mission specified respawn count", "number", "The respawn count")
{
net_campaign_h current;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", current.getCampaign()->respawn);
}
ADE_VIRTVAR(Tracker,
l_NetCampaign,
nullptr,
"The validity status of the mission tracker",
"boolean",
"true if valid, false if invalid, nil if unknown or handle is invalid")
{
net_campaign_h current;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_NIL;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getCampaign()->valid_status == MVALID_STATUS_UNKNOWN) {
return ADE_RETURN_NIL;
}
if (current.getCampaign()->valid_status == MVALID_STATUS_VALID) {
return ADE_RETURN_TRUE;
}
if (current.getCampaign()->valid_status == MVALID_STATUS_INVALID) {
return ADE_RETURN_FALSE;
}
// catch all
return ADE_RETURN_NIL;
}
ADE_VIRTVAR(Type,
l_NetCampaign,
nullptr,
"The type of mission. Can be MULTI_TYPE_COOP, MULTI_TYPE_TEAM, or MULTI_TYPE_DOGFIGHT",
"enumeration",
"the type")
{
net_campaign_h current;
lua_enum eh_idx = ENUM_INVALID;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(eh_idx)));
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
if (current.getCampaign()->flags & MISSION_TYPE_MULTI_COOP) {
eh_idx = LE_MULTI_TYPE_COOP;
}
if (current.getCampaign()->flags & MISSION_TYPE_MULTI_TEAMS) {
eh_idx = LE_MULTI_TYPE_TEAM;
}
if (current.getCampaign()->flags & MISSION_TYPE_MULTI_DOGFIGHT) {
eh_idx = LE_MULTI_TYPE_DOGFIGHT;
}
return ade_set_args(L, "o", l_Enum.Set(enum_h(eh_idx)));
}
ADE_VIRTVAR(Builtin,
l_NetCampaign,
nullptr,
"Is true if the mission is a built-in Volition mission. False otherwise",
"boolean",
"builtin")
{
net_campaign_h current;
if (!ade_get_args(L, "o", l_NetCampaign.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "b", multi_is_item_builtin_volition(current.getCampaign()->filename));
}
//**********HANDLE: netgame section
ADE_OBJ(l_NetGame, net_game_h, "netgame", "Netgame handle");
ADE_FUNC(isValid,
l_NetGame,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
net_game_h current;
if (!ade_get_args(L, "o", l_NetGame.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Name,
l_NetGame,
nullptr,
"The name of the game",
"string",
"the name")
{
net_game_h current;
if (!ade_get_args(L, "o", l_NetGame.Get(¤t)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getNetgame()->name);
}
ADE_VIRTVAR(MissionFilename, l_NetGame, nullptr, "The filename of the currently selected mission", "string", "the mission filename")
{
net_game_h current;
if (!ade_get_args(L, "o", l_NetGame.Get(¤t)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getNetgame()->mission_name);
}
ADE_VIRTVAR(MissionTitle, l_NetGame, nullptr, "The title of the currently selected mission", "string", "the mission title")
{
net_game_h current;
if (!ade_get_args(L, "o", l_NetGame.Get(¤t)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getNetgame()->title);
}
ADE_VIRTVAR(CampaignName, l_NetGame, nullptr, "The name of the currently selected campaign", "string", "the campaign name")
{
net_game_h current;
if (!ade_get_args(L, "o", l_NetGame.Get(¤t)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getNetgame()->campaign_name);
}
ADE_VIRTVAR(Password, l_NetGame, nullptr, "The current password for the game", "string", "the password")
{
net_game_h current;
if (!ade_get_args(L, "o", l_NetGame.Get(¤t)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getNetgame()->passwd);
}
ADE_VIRTVAR(Closed, l_NetGame, "boolean Closed", "Whether or not the game is closed", "boolean", "true for closed, false otherwise")
{
net_game_h current;
bool closed;
if (!ade_get_args(L, "o|b", l_NetGame.Get(¤t), &closed))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (Net_player->flags & NETINFO_FLAG_AM_MASTER) {
if (closed) {
current.getNetgame()->flags |= NG_FLAG_TEMP_CLOSED;
} else {
current.getNetgame()->flags &= ~NG_FLAG_TEMP_CLOSED;
}
} else if (Net_player->flags & NETINFO_FLAG_GAME_HOST) {
if (closed) {
current.getNetgame()->options.flags |= MLO_FLAG_TEMP_CLOSED;
} else {
current.getNetgame()->options.flags &= ~MLO_FLAG_TEMP_CLOSED;
}
multi_options_update_netgame();
}
// It can take the server time to process the change, so return the input choice for now.
return (ade_set_args(L, "b", closed));
}
if (current.getNetgame()->flags & NG_FLAG_TEMP_CLOSED) {
return ADE_RETURN_TRUE;
} else {
return ADE_RETURN_FALSE;
}
}
ADE_VIRTVAR(HostModifiesShips, l_NetGame, "boolean HostModifies", "Whether or not the only the host can modify ships", "boolean", "true if enabled, false otherwise")
{
net_game_h current;
bool enabled;
if (!ade_get_args(L, "o|b", l_NetGame.Get(¤t), &enabled))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (enabled) {
current.getNetgame()->options.flags |= MSO_FLAG_SS_LEADERS;
} else {
current.getNetgame()->options.flags &= ~MSO_FLAG_SS_LEADERS;
}
multi_options_update_netgame();
}
if (current.getNetgame()->options.flags & MSO_FLAG_SS_LEADERS) {
return ADE_RETURN_TRUE;
} else {
return ADE_RETURN_FALSE;
}
}
ADE_VIRTVAR(Orders,
l_NetGame,
"enumeration Type",
"Who can give orders during the game. Will be one of the MULTI_OPTION enums. Returns nil if there's an error.",
"enumeration",
"the option type")
{
net_game_h current;
enum_h* eh_idx = nullptr;
if (!ade_get_args(L, "o|o", l_NetGame.Get(¤t), l_Enum.GetPtr(&eh_idx)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (eh_idx != nullptr) {
if (eh_idx->index == LE_MULTI_OPTION_RANK) {
current.getNetgame()->options.squad_set = MSO_SQUAD_RANK;
} else if (eh_idx->index == LE_MULTI_OPTION_LEAD) {
current.getNetgame()->options.squad_set = MSO_SQUAD_LEADER;
} else if (eh_idx->index == LE_MULTI_OPTION_ANY) {
current.getNetgame()->options.squad_set = MSO_SQUAD_ANY;
} else if (eh_idx->index == LE_MULTI_OPTION_HOST) {
current.getNetgame()->options.squad_set = MSO_SQUAD_HOST;
}
}
send_netgame_update_packet();
multi_options_update_netgame();
}
if (current.getNetgame()->options.squad_set == MSO_SQUAD_RANK) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_RANK)));
} else if (current.getNetgame()->options.squad_set == MSO_SQUAD_LEADER) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_LEAD)));
} else if (current.getNetgame()->options.squad_set == MSO_SQUAD_ANY) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_ANY)));
} else if (current.getNetgame()->options.squad_set == MSO_SQUAD_HOST) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_HOST)));
}
// catch all
return ADE_RETURN_NIL;
}
ADE_VIRTVAR(EndMission,
l_NetGame,
"enumeration Type",
"Who can end the game. Will be one of the MULTI_OPTION enums. Returns nil if there's an error.",
"enumeration",
"the option type")
{
net_game_h current;
enum_h* eh_idx = nullptr;
if (!ade_get_args(L, "o|o", l_NetGame.Get(¤t), l_Enum.GetPtr(&eh_idx)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (eh_idx != nullptr) {
if (eh_idx->index == LE_MULTI_OPTION_RANK) {
current.getNetgame()->options.endgame_set = MSO_END_RANK;
} else if (eh_idx->index == LE_MULTI_OPTION_LEAD) {
current.getNetgame()->options.endgame_set = MSO_END_LEADER;
} else if (eh_idx->index == LE_MULTI_OPTION_ANY) {
current.getNetgame()->options.endgame_set = MSO_END_ANY;
} else if (eh_idx->index == LE_MULTI_OPTION_HOST) {
current.getNetgame()->options.endgame_set = MSO_END_HOST;
}
}
send_netgame_update_packet();
multi_options_update_netgame();
}
if (current.getNetgame()->options.endgame_set == MSO_END_RANK) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_RANK)));
} else if (current.getNetgame()->options.endgame_set == MSO_END_LEADER) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_LEAD)));
} else if (current.getNetgame()->options.endgame_set == MSO_END_ANY) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_ANY)));
} else if (current.getNetgame()->options.endgame_set == MSO_END_HOST) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_OPTION_HOST)));
}
// catch all
return ADE_RETURN_NIL;
}
ADE_VIRTVAR(SkillLevel, l_NetGame, nullptr, "The current skill level the game, 0-4", "number", "the skill level")
{
net_game_h current;
int skill = 0;
if (!ade_get_args(L, "o|i", l_NetGame.Get(¤t), &skill))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
multi_ho_set_skill_level(skill);
current.getNetgame()->options.skill_level = static_cast<ubyte>(multi_ho_get_skill_level());
}
return ade_set_args(L, "i", multi_ho_get_skill_level());
}
ADE_VIRTVAR(RespawnLimit, l_NetGame, nullptr, "The current respawn limit", "number", "the respawn limit")
{
net_game_h current;
int respawn = 0;
if (!ade_get_args(L, "o|i", l_NetGame.Get(¤t), &respawn))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (respawn < 0) {
respawn = 0;
}
current.getNetgame()->options.respawn = respawn;
current.getNetgame()->respawn = respawn;
}
return ade_set_args(L, "i", current.getNetgame()->options.respawn);
}
ADE_VIRTVAR(TimeLimit, l_NetGame, nullptr, "The current time limit in minutes. -1 means no limit.", "number", "the time limit")
{
net_game_h current;
int time = 0;
if (!ade_get_args(L, "o|i", l_NetGame.Get(¤t), &time))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (time < 0) {
current.getNetgame()->options.mission_time_limit = fl2f(-1.0f);
} else if (time >= MULTI_HO_MAX_TIME_LIMIT) {
current.getNetgame()->options.mission_time_limit = MULTI_HO_MAX_TIME_LIMIT;
} else {
current.getNetgame()->options.mission_time_limit = fl2f(60.0f * (float)time);
}
}
return ade_set_args(L, "i", current.getNetgame()->options.mission_time_limit);
}
ADE_VIRTVAR(KillLimit, l_NetGame, nullptr, "The current kill limit", "number", "the kill limit")
{
net_game_h current;
int kill = 0;
if (!ade_get_args(L, "o|i", l_NetGame.Get(¤t), &kill))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (kill < 0) {
current.getNetgame()->options.kill_limit = 0;
} else if (kill >= MULTI_HO_MAX_KILL_LIMIT) {
current.getNetgame()->options.kill_limit = MULTI_HO_MAX_KILL_LIMIT;
} else {
current.getNetgame()->options.kill_limit = kill;
}
}
return ade_set_args(L, "i", current.getNetgame()->options.kill_limit);
}
ADE_VIRTVAR(ObserverLimit, l_NetGame, nullptr, "The current observer limit", "number", "the observer limit")
{
net_game_h current;
int observer = 0;
if (!ade_get_args(L, "o|i", l_NetGame.Get(¤t), &observer))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (observer < 0) {
current.getNetgame()->options.max_observers = 0;
} else if (observer >= MULTI_HO_MAX_OBS) {
current.getNetgame()->options.max_observers = MULTI_HO_MAX_OBS;
} else {
current.getNetgame()->options.max_observers = static_cast<ubyte>(observer);
}
}
return ade_set_args(L, "i", current.getNetgame()->options.max_observers);
}
ADE_VIRTVAR(Locked, l_NetGame, nullptr, "Whether or not the loadouts have been locked for the current team. Can be set only by the host or team captain.", "number", "the locked status")
{
net_game_h current;
bool locked = false;
if (!ade_get_args(L, "o|b", l_NetGame.Get(¤t), &locked))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (locked) {
multi_ts_lock_pressed();
}
return locked;
}
return ade_set_args(L, "b", static_cast<bool>(multi_ts_is_locked()));
}
ADE_VIRTVAR(Type, l_NetGame, "enumeration Type", "The current game type. Will be one of the MULTI_TYPE enums. Returns nil if there's an error.", "enumeration", "the game type")
{
net_game_h current;
enum_h *eh_idx = nullptr;
if (!ade_get_args(L, "o|o", l_NetGame.Get(¤t), l_Enum.GetPtr(&eh_idx)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
if (Net_player->flags & NETINFO_FLAG_AM_MASTER) {
if (eh_idx != nullptr) {
if (eh_idx->index == LE_MULTI_TYPE_COOP) {
current.getNetgame()->type_flags = NG_TYPE_COOP;
} else if (eh_idx->index == LE_MULTI_TYPE_TEAM) {
current.getNetgame()->type_flags = NG_TYPE_TVT;
} else if (eh_idx->index == LE_MULTI_TYPE_DOGFIGHT) {
current.getNetgame()->type_flags = NG_TYPE_DOGFIGHT;
} else if (eh_idx->index == LE_MULTI_TYPE_SQUADWAR) {
current.getNetgame()->type_flags = NG_TYPE_SW;
}
}
send_netgame_update_packet();
multi_options_update_netgame();
}
}
if (current.getNetgame()->type_flags == NG_TYPE_COOP) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_TYPE_COOP)));
} else if (current.getNetgame()->type_flags == NG_TYPE_TVT) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_TYPE_TEAM)));
} else if (current.getNetgame()->type_flags == NG_TYPE_DOGFIGHT) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_TYPE_DOGFIGHT)));
} else if (current.getNetgame()->type_flags == NG_TYPE_SW) {
return ade_set_args(L, "o", l_Enum.Set(enum_h(LE_MULTI_TYPE_SQUADWAR)));
}
//catch all
return ADE_RETURN_NIL;
}
ADE_FUNC(acceptOptions,
l_NetGame,
nullptr,
"Accepts the current game options and pushes them to the the network.",
"boolean",
"returns true if successful, false otherwise")
{
net_game_h current;
if (!ade_get_args(L, "o", l_NetGame.Get(¤t)))
return ADE_RETURN_FALSE;
// set default options
current.getNetgame()->options.flags = (MSO_FLAG_INGAME_XFER | MSO_FLAG_ACCEPT_PIX);
// store these values locally
memcpy(&Player->m_local_options, &Net_player->p_info.options, sizeof(multi_local_options));
memcpy(&Player->m_server_options, &Netgame.options, sizeof(multi_server_options));
Pilot.save_player(Player);
// apply any changes in settings (notify everyone of voice qos changes, etc)
multi_ho_apply_options();
return ADE_RETURN_TRUE;
}
ADE_FUNC(setMission,
l_NetGame,
"[net_mission | net_campaign]",
"Sets the mission or campaign for the Netgame. Handles changing all netgame values and updating the server.",
"boolean",
"returns true if successful, false otherwise")
{
net_game_h current;
net_mission_h mission;
net_campaign_h campaign;
int abs_index = -1;
int mode = -1;
if (luacpp::convert::ade_odata_is_userdata_type(L, 2, l_NetMission)) {
if (!ade_get_args(L, "oo", l_NetGame.Get(¤t), l_NetMission.Get(&mission))) {
return ADE_RETURN_FALSE;
}
mode = MULTI_CREATE_SHOW_MISSIONS;
abs_index = mission.getIndex();
current.getNetgame()->campaign_mode = MP_SINGLE_MISSION;
} else {
if (!ade_get_args(L, "oo", l_NetGame.Get(¤t), l_NetCampaign.Get(&campaign))) {
return ADE_RETURN_FALSE;
}
mode = MULTI_CREATE_SHOW_CAMPAIGNS;
abs_index = campaign.getIndex();
current.getNetgame()->campaign_mode = MP_CAMPAIGN;
}
multi_create_list_set_item(abs_index, mode);
return ADE_RETURN_TRUE;
}
//**********HANDLE: channel section
ADE_OBJ(l_Active_Game, active_game_h, "active_game", "Active Game handle");
ADE_FUNC(isValid,
l_Active_Game,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Status, l_Active_Game, nullptr, "The status of the game", "string", "The status")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
SCP_string status_text;
multi_join_game_set_status_text(current.getGame(), status_text);
return ade_set_args(L, "s", status_text.c_str());
}
ADE_VIRTVAR(Type, l_Active_Game, nullptr, "The type of the game", "string", "The type")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
SCP_string game_type;
switch (current.getGame()->flags & AG_FLAG_TYPE_MASK) {
case AG_FLAG_COOP:
game_type = "coop";
break;
case AG_FLAG_TEAMS:
game_type = "team";
break;
case AG_FLAG_DOGFIGHT:
game_type = "dogfight";
break;
default:
game_type = "";
break;
}
return ade_set_args(L, "s", game_type.c_str());
}
ADE_VIRTVAR(Speed, l_Active_Game, nullptr, "The speed of the game", "string", "The speed")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
SCP_string speed_text;
int con_type;
multi_join_game_set_speed_text(current.getGame(), con_type, speed_text);
return ade_set_args(L, "s", speed_text.c_str());
}
ADE_VIRTVAR(Standalone, l_Active_Game, nullptr, "Whether or not the game is standalone", "boolean", "True for standalone, false otherwise")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
bool standalone = false;
if (current.getGame()->flags & AG_FLAG_STANDALONE) {
standalone = true;
}
return ade_set_args(L, "b", standalone);
}
ADE_VIRTVAR(Campaign, l_Active_Game, nullptr, "Whether or not the game is campaign", "boolean", "True for campaign, false otherwise")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
bool campaign = false;
if (current.getGame()->flags & AG_FLAG_CAMPAIGN) {
campaign = true;
}
return ade_set_args(L, "b", campaign);
}
ADE_VIRTVAR(Server, l_Active_Game, nullptr, "The server name of the game", "string", "The server")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getGame()->name);
}
ADE_VIRTVAR(Mission, l_Active_Game, nullptr, "The mission name of the game", "string", "The mission")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getGame()->mission_name);
}
ADE_VIRTVAR(Ping, l_Active_Game, nullptr, "The ping average of the game", "number", "The ping")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", current.getGame()->ping.ping_avg);
}
ADE_VIRTVAR(Players, l_Active_Game, nullptr, "The number of players in the game", "number", "The number of players")
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t))) {
return ADE_RETURN_NIL;
}
if (!current.isValid()) {
return ade_set_error(L, "s", "");
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", current.getGame()->num_players);
}
ADE_FUNC(setSelected, l_Active_Game, nullptr, "Sets the specified game as the selected game to possibly join. Must be used before sendJoinRequest will work.", nullptr, nullptr)
{
active_game_h current;
if (!ade_get_args(L, "o", l_Active_Game.Get(¤t)))
return ADE_RETURN_NIL;
Multi_join_selected_item = current.getGame();
return ADE_RETURN_NIL;
}
//**********HANDLE: channel section
ADE_OBJ(l_Dogfight_Scores, dogfight_scores_h, "dogfight_scores", "Dogfight scores handle");
ADE_FUNC(isValid,
l_Dogfight_Scores,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
dogfight_scores_h current;
if (!ade_get_args(L, "o", l_Dogfight_Scores.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Callsign,
l_Dogfight_Scores,
nullptr,
"Gets the callsign for the player who's scores these are",
"string",
"the callsign or nil if invalid")
{
dogfight_scores_h current;
if (!ade_get_args(L, "o", l_Dogfight_Scores.Get(¤t)))
return ADE_RETURN_NIL;
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", current.getScores()->callsign);
}
ADE_FUNC(getKillsOnPlayer,
l_Dogfight_Scores,
"net_player",
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
dogfight_scores_h current;
net_player_h player;
if (!ade_get_args(L, "oo", l_Dogfight_Scores.Get(¤t), l_NetPlayer.Get(&player)))
return ADE_RETURN_NIL;
return ade_set_args(L, "i", current.getScores()->stats.m_dogfight_kills[player.getIndex()]);
}
//**********HANDLE: join choice section
ADE_OBJ(l_Join_Ship_Choice, join_ship_choices_h, "net_join_choice", "Join Choice handle");
ADE_FUNC(isValid,
l_Join_Ship_Choice,
nullptr,
"Detects whether handle is valid",
"boolean",
"true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
join_ship_choices_h current;
if (!ade_get_args(L, "o", l_Join_Ship_Choice.Get(¤t)))
return ADE_RETURN_NIL;
return ade_set_args(L, "b", current.isValid());
}
ADE_VIRTVAR(Name, l_Join_Ship_Choice,
nullptr,
"Gets the name of the ship",
"string",
"the name or nil if invalid")
{
join_ship_choices_h current;
if (!ade_get_args(L, "o", l_Join_Ship_Choice.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_NIL;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "s", Ships[current.getObject()->instance].ship_name);
}
ADE_VIRTVAR(ShipIndex,
l_Join_Ship_Choice,
nullptr,
"Gets the index of the ship class",
"string",
"the index or nil if invalid")
{
join_ship_choices_h current;
if (!ade_get_args(L, "o", l_Join_Ship_Choice.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_NIL;
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
return ade_set_args(L, "i", Ships[current.getObject()->instance].ship_info_index);
}
ADE_FUNC(getPrimaryWeaponsList,
l_Join_Ship_Choice,
nullptr,
"Gets the table of primary weapon indexes on the ship",
"table",
"the table of indexes or nil if invalid")
{
join_ship_choices_h current;
if (!ade_get_args(L, "o", l_Join_Ship_Choice.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_NIL;
}
luacpp::LuaTable weapons = luacpp::LuaTable::create(L);
auto wp = &Ships[current.getObject()->instance].weapons;
for (int idx = 0; idx < wp->num_primary_banks; idx++) {
weapons.addValue(idx, wp->primary_bank_weapons[idx]);
}
return ade_set_args(L, "t", weapons);
}
ADE_FUNC(getSecondaryWeaponsList,
l_Join_Ship_Choice,
nullptr,
"Gets the table of secondary weapon indexes on the ship",
"table",
"the table of indexes or nil if invalid")
{
join_ship_choices_h current;
if (!ade_get_args(L, "o", l_Join_Ship_Choice.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_NIL;
}
luacpp::LuaTable weapons = luacpp::LuaTable::create(L);
auto wp = &Ships[current.getObject()->instance].weapons;
for (int idx = 0; idx < wp->num_secondary_banks; idx++) {
weapons.addValue(idx, wp->secondary_bank_weapons[idx]);
}
return ade_set_args(L, "t", weapons);
}
ADE_FUNC(getStatus,
l_Join_Ship_Choice,
nullptr,
"Gets the status of the ship's hull and shields",
"number table",
"The hull health and then a table of shield quadrant healths")
{
join_ship_choices_h current;
if (!ade_get_args(L, "o", l_Join_Ship_Choice.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_NIL;
}
float hull = get_hull_pct(current.getObject());
float max_shield = shield_get_max_quad(current.getObject());
luacpp::LuaTable shields = luacpp::LuaTable::create(L);
for (int i = 0; i < current.getObject()->n_quadrants; i++) {
float temp_float = (current.getObject()->shield_quadrant[i] / max_shield);
shields.addValue(i + 1, temp_float);
}
return ade_set_args(L, "ft", hull, shields);
}
ADE_FUNC(setChoice,
l_Join_Ship_Choice,
nullptr,
"Sets the current ship as chosen when Accept is clicked", "boolean",
"returns true if successful, Nil if there's handle error.")
{
join_ship_choices_h current;
if (!ade_get_args(L, "o", l_Join_Ship_Choice.Get(¤t)))
return ADE_RETURN_NIL;
if (!current.isValid()) {
return ADE_RETURN_FALSE;
}
multi_ingame_set_selected(current.getIndex());
return ADE_RETURN_TRUE;
}
} // namespace api
} // namespace scripting
|