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
|
//
//
#include "player.h"
#include "gamesequence/gamesequence.h"
#include "menuui/mainhallmenu.h"
#include "menuui/readyroom.h"
#include "menuui/techmenu.h"
#include "mission/missioncampaign.h"
#include "pilotfile/pilotfile.h"
#include "playerman/player.h"
#include "stats/medals.h"
#include "scripting/api/objs/rank.h"
#include "scripting/api/objs/shipclass.h"
#include "scripting/lua/LuaTable.h"
#include "ship/ship.h"
namespace scripting {
namespace api {
player_h::player_h() = default;
player_h::player_h(player* plr)
{
_plr = plr;
_owned = false;
}
player_h::player_h(const player& plr)
{
_plr = new player();
_plr->assign(&plr);
_owned = true;
}
bool player_h::isValid() const { return _plr != nullptr; }
player* player_h::get() { return _plr; }
player_h::~player_h()
{
if (_owned)
{
delete _plr;
}
_plr = nullptr;
}
player_h::player_h(player_h&& other) noexcept { *this = std::move(other); }
player_h& player_h::operator=(player_h&& other) noexcept
{
std::swap(_plr, other._plr);
return *this;
}
//**********HANDLE: Player
ADE_OBJ(l_Player, player_h, "player", "Player handle");
ADE_VIRTVAR(Stats, l_Player, "scoring_stats stats", "The scoring stats of this player (read-only)", "scoring_stats", "The player stats or invalid handle") {
player_h* plr;
if (!ade_get_args(L, "o", l_Player.GetPtr(&plr)))
return ade_set_error(L, "o", l_ScoringStats.Set(scoring_stats_h()));
if (!plr->isValid())
return ade_set_error(L, "o", l_ScoringStats.Set(scoring_stats_h()));
return ade_set_args(L, "o", l_ScoringStats.Set(scoring_stats_h(plr->get()->stats, plr->get())));
}
ADE_VIRTVAR(ImageFilename, l_Player, "string name", "The image filename of this pilot", "string",
"Player image filename, or empty string if handle is invalid")
{
player_h* plr;
const char* filename = nullptr;
if (!ade_get_args(L, "o|s", l_Player.GetPtr(&plr), &filename))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
if (ADE_SETTING_VAR && filename != nullptr) {
strcpy_s(plr->get()->image_filename, filename);
}
return ade_set_args(L, "s", plr->get()->image_filename);
}
ADE_VIRTVAR(SingleSquadFilename, l_Player, "string name", "The singleplayer squad filename of this pilot", "string",
"singleplayer squad image filename, or empty string if handle is invalid")
{
player_h* plr;
const char* filename = nullptr;
if (!ade_get_args(L, "o|s", l_Player.GetPtr(&plr), &filename))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
if (ADE_SETTING_VAR && filename != nullptr) {
strcpy_s(plr->get()->s_squad_filename, filename);
}
return ade_set_args(L, "s", plr->get()->s_squad_filename);
}
ADE_VIRTVAR(MultiSquadFilename, l_Player, "string name", "The multiplayer squad filename of this pilot", "string",
"Multiplayer squad image filename, or empty string if handle is invalid")
{
player_h* plr;
const char* filename = nullptr;
if (!ade_get_args(L, "o|s", l_Player.GetPtr(&plr), &filename))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
if (ADE_SETTING_VAR && filename != nullptr) {
strcpy_s(plr->get()->m_squad_filename, filename);
}
return ade_set_args(L, "s", plr->get()->m_squad_filename);
}
ADE_VIRTVAR(IsMultiplayer, l_Player, "boolean value", "Determines if this player is currently configured for multiplayer.", "boolean", "true if this is a multiplayer pilot, false otherwise or if the handle is invalid") {
player_h* plr;
bool value = false;
if (!ade_get_args(L, "o|b", l_Player.GetPtr(&plr), &value))
return ADE_RETURN_FALSE;
if (!plr->isValid())
return ADE_RETURN_FALSE;
if (ADE_SETTING_VAR) {
if (value) {
plr->get()->flags |= PLAYER_FLAGS_IS_MULTI;
} else {
plr->get()->flags &= ~PLAYER_FLAGS_IS_MULTI;
}
}
return ade_set_args(L, "b", (plr->get()->flags & PLAYER_FLAGS_IS_MULTI) != 0);
}
ADE_VIRTVAR(WasMultiplayer, l_Player, "boolean value", "Determines if this player is currently configured for multiplayer.", "boolean", "true if this is a multiplayer pilot, false otherwise or if the handle is invalid") {
player_h* plr;
bool value = false;
if (!ade_get_args(L, "o|b", l_Player.GetPtr(&plr), &value))
return ADE_RETURN_FALSE;
if (!plr->isValid())
return ADE_RETURN_FALSE;
if (ADE_SETTING_VAR) {
plr->get()->player_was_multi = value ? 1 : 0;
}
return ade_set_args(L, "b", plr->get()->player_was_multi != 0);
}
ADE_VIRTVAR(AutoAdvance,
l_Player,
"boolean value",
"Determines if briefing stages should be auto advanced.",
"boolean",
"true if auto advance is enabled, false otherwise or if the handle is invalid")
{
player_h* plr;
bool value = false;
if (!ade_get_args(L, "o|b", l_Player.GetPtr(&plr), &value))
return ADE_RETURN_FALSE;
if (!plr->isValid())
return ADE_RETURN_FALSE;
if (ADE_SETTING_VAR) {
plr->get()->auto_advance = value ? 1 : 0;
}
return ade_set_args(L, "b", plr->get()->auto_advance != 0);
}
ADE_VIRTVAR(ShowSkipPopup,
l_Player,
"boolean value",
"Determines if the skip mission popup is shown for the current mission.",
"boolean",
"true if it should be shown, false otherwise or if the handle is invalid")
{
player_h* plr;
bool value = false;
if (!ade_get_args(L, "o|b", l_Player.GetPtr(&plr), &value))
return ADE_RETURN_FALSE;
if (!plr->isValid())
return ADE_RETURN_FALSE;
if (ADE_SETTING_VAR) {
plr->get()->show_skip_popup = value ? 1 : 0;
}
return ade_set_args(L, "b", plr->get()->show_skip_popup != 0);
}
ADE_FUNC(isValid, l_Player, NULL, "Detects whether handle is valid", "boolean", "true if valid, false if handle is invalid, nil if a syntax/type error occurs")
{
player_h* plr;
if (!ade_get_args(L, "o", l_Player.GetPtr(&plr)))
return ADE_RETURN_NIL;
if (!plr->isValid())
return ADE_RETURN_FALSE;
return ADE_RETURN_TRUE;
}
ADE_FUNC(getName, l_Player, NULL, "Gets current player name", "string", "Player name, or empty string if handle is invalid")
{
player_h* plr;
if (!ade_get_args(L, "o", l_Player.GetPtr(&plr)))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
return ade_set_args(L, "s", plr->get()->callsign);
}
ADE_FUNC(getCampaignFilename, l_Player, NULL, "Gets current player campaign filename", "string", "Campaign name, or empty string if handle is invalid")
{
player_h* plr;
if (!ade_get_args(L, "o", l_Player.GetPtr(&plr)))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
return ade_set_args(L, "s", plr->get()->current_campaign);
}
ADE_FUNC(getImageFilename, l_Player, NULL, "Gets current player image filename", "string", "Player image filename, or empty string if handle is invalid")
{
player_h* plr;
if (!ade_get_args(L, "o", l_Player.GetPtr(&plr)))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
return ade_set_args(L, "s", plr->get()->image_filename);
}
ADE_FUNC(getMainHallName, l_Player, NULL, "Gets player's current main hall name", "string", "Main hall name, or name of first mainhall in campaign if something goes wrong")
{
SCP_string hallname;
// FS2-->Lua
if (Campaign.next_mission == -1) {
hallname = Campaign.missions[0].main_hall;
} else {
hallname = Campaign.missions[Campaign.next_mission].main_hall;
}
return ade_set_args(L, "s", hallname.c_str());
}
// use getMainHallName if at all possible.
ADE_FUNC(getMainHallIndex, l_Player, NULL, "Gets player's current main hall number", "number", "Main hall index, or index of first mainhall in campaign if something goes wrong")
{
int hallnum = 0;
//FS2-->Lua
if (Campaign.next_mission == -1) {
hallnum = main_hall_get_index(Campaign.missions[0].main_hall);
} else {
hallnum = main_hall_get_index(Campaign.missions[Campaign.next_mission].main_hall);
}
return ade_set_args(L, "i", hallnum);
}
ADE_FUNC(getSquadronName, l_Player, NULL, "Gets current player squad name", "string", "Squadron name, or empty string if handle is invalid")
{
player_h* plr;
if (!ade_get_args(L, "o", l_Player.GetPtr(&plr)))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
return ade_set_args(L, "s", plr->get()->s_squad_name);
}
ADE_FUNC(getMultiSquadronName, l_Player, NULL, "Gets current player multi squad name", "string", "Squadron name, or empty string if handle is invalid")
{
player_h* plr;
if (!ade_get_args(L, "o", l_Player.GetPtr(&plr)))
return ade_set_error(L, "s", "");
if (!plr->isValid())
return ade_set_error(L, "s", "");
return ade_set_args(L, "s", plr->get()->m_squad_name);
}
ADE_FUNC(loadCampaignSavefile, l_Player, "string campaign = \"<current>\"", "Loads the specified campaign save file.",
"boolean", "true on success, false otherwise")
{
player_h* plh;
const char* savefile = nullptr;
if (!ade_get_args(L, "o|s", l_Player.GetPtr(&plh), &savefile)) {
return ADE_RETURN_FALSE;
}
if (!plh->isValid()) {
return ADE_RETURN_FALSE;
}
if (savefile == nullptr) {
savefile = plh->get()->current_campaign;
}
pilotfile loader;
if (!loader.load_savefile(plh->get(), savefile)) {
return ADE_RETURN_FALSE;
}
return ADE_RETURN_TRUE;
}
ADE_FUNC(loadCampaign, l_Player, "string campaign", "Loads the specified campaign file and return to it's mainhall.", "boolean", "true on success, false otherwise")
{
player_h* plh;
const char* filename = nullptr;
if (!ade_get_args(L, "os", l_Player.GetPtr(&plh), &filename)) {
return ADE_RETURN_FALSE;
}
if (!plh->isValid()) {
return ADE_RETURN_FALSE;
}
player* pl = plh->get();
strcpy_s(pl->current_campaign, filename); // track new campaign for player
// attempt to load the campaign
const int load_status = mission_campaign_load(filename, nullptr, pl);
// see if we successfully loaded this campaign and it's at the beginning
if (load_status == 0 && Campaign.prev_mission < 0) {
// Goober5000 - reinitialize tech database if needed
if ((Campaign.flags & CF_CUSTOM_TECH_DATABASE) || !stricmp(Campaign.filename, "freespace2")) {
// reset tech database to what's in the tables
tech_reset_to_default();
// write the savefile so that we don't later load a stale techroom
Pilot.save_savefile();
}
if (OnCampaignBeginHook->isActive()) {
OnCampaignBeginHook->run(scripting::hook_param_list(scripting::hook_param("Campaign", 's', Campaign.filename)));
}
}
// that's all we need to do for now; the campaign loading status will be checked again when we try to load the
// campaign in the ready room
gameseq_post_event(GS_EVENT_MAIN_MENU);
return ADE_RETURN_TRUE;
}
scoring_stats_h::scoring_stats_h() = default;
scoring_stats_h::scoring_stats_h(const scoring_struct& stats, player *player)
{
_score.assign(stats);
_valid = true;
_plr = player;
}
bool scoring_stats_h::isValid() const { return _valid; }
scoring_struct* scoring_stats_h::get() { return &_score; }
player* scoring_stats_h::getPlayer() { return _plr; }
ADE_OBJ(l_ScoringStats, scoring_stats_h, "scoring_stats", "Player related scoring stats.");
ADE_VIRTVAR(Score, l_ScoringStats, "number", "The current score.", "number", "The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->score);
}
ADE_VIRTVAR(PrimaryShotsFired, l_ScoringStats, "number", "The number of primary shots that have been fired.", "number",
"The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->p_shots_fired);
}
ADE_VIRTVAR(PrimaryShotsHit, l_ScoringStats, "number", "The number of primary shots that have hit.", "number",
"The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->p_shots_hit);
}
ADE_VIRTVAR(PrimaryFriendlyHit, l_ScoringStats, "number", "The number of primary friendly fire hits.", "number",
"The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->p_bonehead_hits);
}
ADE_VIRTVAR(SecondaryShotsFired, l_ScoringStats, "number", "The number of secondary shots that have been fired.",
"number", "The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->s_shots_fired);
}
ADE_VIRTVAR(SecondaryShotsHit, l_ScoringStats, "number", "The number of secondary shots that have hit.", "number",
"The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->s_shots_hit);
}
ADE_VIRTVAR(SecondaryFriendlyHit, l_ScoringStats, "number", "The number of secondary friendly fire hits.", "number",
"The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->s_bonehead_hits);
}
ADE_VIRTVAR(TotalKills, l_ScoringStats, "number", "The total number of kills.", "number", "The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->kill_count_ok);
}
ADE_VIRTVAR(Assists, l_ScoringStats, "number", "The total number of assists.", "number", "The score value")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->assists);
}
ADE_FUNC(getShipclassKills, l_ScoringStats, "shipclass class",
"Returns the number of kills of a specific ship class recorded in this statistics structure.", "number",
"The kills for that specific ship class")
{
using namespace luacpp;
scoring_stats_h* ssh;
int ship_idx;
if (!ade_get_args(L, "oo", l_ScoringStats.GetPtr(&ssh), l_Shipclass.Get(&ship_idx))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
if (ship_idx < 0 || ship_idx >= (int)Ship_info.size()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->kills[ship_idx]);
}
//This is per mission stats
ADE_VIRTVAR(MissionPrimaryShotsFired,
l_ScoringStats,
"number",
"The number of primary shots that have been fired in the current mission.",
"number",
"The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->mp_shots_fired;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.mp_shots_fired = setv;
r_val = ssh->getPlayer()->stats.mp_shots_fired;
}
return ade_set_args(L, "i", r_val);
}
ADE_VIRTVAR(MissionPrimaryShotsHit,
l_ScoringStats,
"number",
"The number of primary shots that have hit in the current mission.",
"number",
"The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->mp_shots_hit;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.mp_shots_hit = setv;
r_val = ssh->getPlayer()->stats.mp_shots_hit;
}
return ade_set_args(L, "i", r_val);
}
ADE_VIRTVAR(MissionPrimaryFriendlyHit,
l_ScoringStats,
"number",
"The number of primary friendly fire hits in the current mission.",
"number",
"The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->mp_bonehead_hits;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.mp_bonehead_hits = setv;
r_val = ssh->getPlayer()->stats.mp_bonehead_hits;
}
return ade_set_args(L, "i", r_val);
}
ADE_VIRTVAR(MissionSecondaryShotsFired,
l_ScoringStats,
"number",
"The number of secondary shots that have been fired in the current mission.",
"number",
"The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->ms_shots_fired;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.ms_shots_fired = setv;
r_val = ssh->getPlayer()->stats.ms_shots_fired;
}
return ade_set_args(L, "i", r_val);
}
ADE_VIRTVAR(MissionSecondaryShotsHit,
l_ScoringStats,
"number",
"The number of secondary shots that have hit in the current mission.",
"number",
"The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->ms_shots_hit;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.ms_shots_hit = setv;
r_val = ssh->getPlayer()->stats.ms_shots_hit;
}
return ade_set_args(L, "i", r_val);
}
ADE_VIRTVAR(MissionSecondaryFriendlyHit,
l_ScoringStats,
"number",
"The number of secondary friendly fire hits in the current mission.",
"number",
"The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->ms_bonehead_hits;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.ms_bonehead_hits = setv;
r_val = ssh->getPlayer()->stats.ms_bonehead_hits;
}
return ade_set_args(L, "i", r_val);
}
ADE_VIRTVAR(MissionTotalKills, l_ScoringStats, "number", "The total number of kills in the current mission.", "number", "The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->m_kill_count_ok;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.m_kill_count_ok = setv;
r_val = ssh->getPlayer()->stats.m_kill_count_ok;
}
return ade_set_args(L, "i", r_val);
}
ADE_VIRTVAR(MissionAssists, l_ScoringStats, "number", "The total number of assists in the current mission.", "number", "The score value")
{
scoring_stats_h* ssh;
int setv;
if (!ade_get_args(L, "o|i", l_ScoringStats.GetPtr(&ssh), &setv)) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
int r_val = ssh->get()->m_assists;
if (ADE_SETTING_VAR) {
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.m_assists = setv;
r_val = ssh->getPlayer()->stats.m_assists;
}
return ade_set_args(L, "i", r_val);
}
ADE_FUNC(getMissionShipclassKills,
l_ScoringStats,
"shipclass class",
"Returns the number of kills of a specific ship class recorded in this statistics structure for the current mission.",
"number",
"The kills for that specific ship class")
{
using namespace luacpp;
scoring_stats_h* ssh;
int ship_idx;
if (!ade_get_args(L, "oo", l_ScoringStats.GetPtr(&ssh), l_Shipclass.Get(&ship_idx))) {
return ade_set_error(L, "i", -1);
}
if (!ssh->isValid()) {
return ade_set_error(L, "i", -1);
}
if (ship_idx < 0 || ship_idx >= (int)Ship_info.size()) {
return ade_set_error(L, "i", -1);
}
return ade_set_args(L, "i", ssh->get()->m_kills[ship_idx]);
}
ADE_FUNC(setMissionShipclassKills,
l_ScoringStats,
"shipclass class, number kills",
"Sets the number of kills of a specific ship class recorded in this statistics structure for the current "
"mission. Returns true if successful.",
"boolean",
"True if successful")
{
using namespace luacpp;
scoring_stats_h* ssh;
int ship_idx;
int setv;
if (!ade_get_args(L, "ooi", l_ScoringStats.GetPtr(&ssh), l_Shipclass.Get(&ship_idx), &setv)) {
return ADE_RETURN_FALSE;
}
if (!ssh->isValid()) {
return ADE_RETURN_FALSE;
}
if (ship_idx < 0 || ship_idx >= (int)Ship_info.size()) {
return ADE_RETURN_FALSE;
}
if (setv < 0) {
setv = 0;
}
ssh->getPlayer()->stats.m_kills[ship_idx] = setv;
return ADE_RETURN_TRUE;
}
ADE_VIRTVAR(Medals,
l_ScoringStats,
nullptr,
"Gets a table of medals that the player has earned. The number returned is the number of times the player has won that medal. "
"The index position in the table is an index into Medals.",
"{ number => number ... }",
"The medals table")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ADE_RETURN_NIL;
}
auto table = luacpp::LuaTable::create(L);
if (!ssh->isValid()) {
return ade_set_error(L, "t", &table);
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
for (int i = 0; i < (int)Medals.size(); i++) {
table.addValue(i + 1, ssh->get()->medal_counts[i]); // translate to Lua index
}
return ade_set_args(L, "t", &table);
}
ADE_VIRTVAR(Rank,
l_ScoringStats,
nullptr,
"Returns the player's current rank",
"rank",
"The current rank")
{
scoring_stats_h* ssh;
if (!ade_get_args(L, "o", l_ScoringStats.GetPtr(&ssh))) {
return ADE_RETURN_NIL;
}
if (!ssh->isValid()) {
return ade_set_error(L, "o", l_Rank.Set(rank_h()));
}
if (ADE_SETTING_VAR) {
LuaError(L, "This property is read only.");
}
int rank_index = verify_rank(ssh->get()->rank);
return ade_set_args(L, "o", l_Rank.Set(rank_h(rank_index)));
}
}
}
|