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
|
/* ScummVM - Graphic Adventure Engine
*
* ScummVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
#include "bladerunner/script/kia_script.h"
#include "bladerunner/bladerunner.h"
#include "bladerunner/mouse.h"
#include "bladerunner/ui/kia.h"
namespace BladeRunner {
KIAScript::KIAScript(BladeRunnerEngine *vm) : ScriptBase(vm) {}
void KIAScript::playClueAssetScript(int notUsed, int clueId) {
_vm->_kia->playerReset();
_vm->_mouse->disable();
SCRIPT_KIA_DLL_Play_Clue_Asset_Script(notUsed, clueId);
_vm->_mouse->enable();
}
void KIAScript::SCRIPT_KIA_DLL_Play_Clue_Asset_Script(int notUsed, int clueId) {
switch (clueId) {
case kClueOfficersStatement:
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 40);
break;
case kClueDoorForced2:
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 0);
break;
case kClueDoorForced1:
if (_vm->_cutContent || _vm->_gameVars[kVariableChapter] == 1) {
// keep in mind, this line in only available in Act 1 (1.TLK) unless _vm->_cutContent is selected (provided that cut content now loads all TLKs)
// Without cut content it will be silent in subsequent Acts
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1870);
}
break;
case kClueLimpingFootprints:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1970);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1980);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1990);
break;
case kClueGracefulFootprints:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1970);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1980);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1990);
break;
case kClueShellCasings:
KIA_Play_Slice_Model(kModelAnimationShellCasings);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1960);
break;
case kClueCandy:
KIA_Play_Slice_Model(kModelAnimationCandy);
break;
case kClueToyDog:
KIA_Play_Slice_Model(kModelAnimationToyDog);
break;
case kClueChopstickWrapper:
KIA_Play_Slice_Model(kModelAnimationChopstickWrapper);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2010);
break;
case kClueSushiMenu:
KIA_Play_Photograph(6);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2020);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2030);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2040);
break;
case kClueLabCorpses:
KIA_Play_Actor_Dialogue(kActorKlein, 140);
// Similar fix to PS07:
// quote 150 is *boop* in ENG version
// it is redundant in DEU and FRA versions (identical to second half of quote 140)
// it is required in ESP and ITA versions. It is the missing second half of quote 140.
if (_vm->_cutContent
&& (_vm->_language == Common::ES_ESP
|| _vm->_language == Common::IT_ITA)
) {
KIA_Play_Actor_Dialogue(kActorKlein, 150);
}
break;
case kClueLabShellCasings:
KIA_Play_Actor_Dialogue(kActorKlein, 50);
KIA_Play_Actor_Dialogue(kActorKlein, 60);
KIA_Play_Actor_Dialogue(kActorKlein, 70);
KIA_Play_Actor_Dialogue(kActorKlein, 80);
KIA_Play_Actor_Dialogue(kActorKlein, 90);
break;
case kClueRuncitersVideo:
KIA_Play_Slice_Model(kModelAnimationVideoDisc);
break;
case kClueLucy:
KIA_Play_Photograph(5);
break;
case kClueDragonflyAnklet:
KIA_Play_Photograph(4);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4050);
break;
case kClueReferenceLetter:
KIA_Play_Slice_Model(kModelAnimationReferenceLetter);
KIA_Play_Actor_Dialogue(kActorRunciter, 280);
KIA_Play_Actor_Dialogue(kActorRunciter, 290);
break;
case kClueCrowdInterviewA:
if (_vm->_cutContent
&& (_vm->_language == Common::ES_ESP
|| _vm->_language == Common::IT_ITA)
) {
// Same fix as in RC01:
// Quote 110 is the second half of the sentence about Lucy hanging around with Zuben ("a fat guy")
// in ENG, DEU and FRA it is redundant, but it's needed in ESP and ITA
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 100);
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 110);
} else {
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 100);
}
break;
case kClueCrowdInterviewB:
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 120);
KIA_Play_Actor_Dialogue(kActorOfficerLeary, 130);
break;
case kClueZubenInterview:
KIA_Play_Actor_Dialogue(kActorMcCoy, 380);
KIA_Play_Actor_Dialogue(kActorZuben, 30);
KIA_Play_Actor_Dialogue(kActorZuben, 40);
KIA_Play_Actor_Dialogue(kActorMcCoy, 410);
KIA_Play_Actor_Dialogue(kActorZuben, 50);
break;
case kClueZubenSquadPhoto:
KIA_Play_Photograph(33);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 350);
break;
case kClueBigManLimping:
KIA_Play_Actor_Dialogue(kActorTransient, 10);
break;
case kClueRunciterInterviewA:
KIA_Play_Actor_Dialogue(kActorRunciter, 40);
KIA_Play_Actor_Dialogue(kActorRunciter, 50);
KIA_Play_Actor_Dialogue(kActorMcCoy, 4565);
KIA_Play_Actor_Dialogue(kActorRunciter, 60);
break;
case kClueRunciterInterviewB1:
KIA_Play_Actor_Dialogue(kActorRunciter, 250);
KIA_Play_Actor_Dialogue(kActorRunciter, 270);
break;
case kClueRunciterInterviewB2:
KIA_Play_Actor_Dialogue(kActorRunciter, 260);
KIA_Play_Actor_Dialogue(kActorRunciter, 270);
break;
case kClueHowieLeeInterview:
KIA_Play_Actor_Dialogue(kActorMcCoy, 295);
KIA_Play_Actor_Dialogue(kActorHowieLee, 90);
KIA_Play_Actor_Dialogue(kActorHowieLee, 100);
break;
case kCluePaintTransfer:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1880);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1890);
break;
case kClueChromeDebris:
KIA_Play_Slice_Model(kModelAnimationChromeDebris);
break;
case kClueRuncitersViewA:
KIA_Play_Photograph(11);
break;
case kClueRuncitersViewB:
KIA_Play_Photograph(12);
break;
case kClueCarColorAndMake:
KIA_Play_Photograph(10);
break;
case kCluePartialLicenseNumber:
KIA_Play_Photograph(9);
break;
case kClueBriefcase:
KIA_Play_Slice_Model(kModelAnimationBriefcase);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5870);
KIA_Play_Actor_Dialogue(kActorGuzza, 810);
KIA_Play_Actor_Dialogue(kActorGuzza, 820);
break;
case kClueGaffsInformation:
KIA_Play_Actor_Dialogue(kActorGaff, 20);
KIA_Play_Actor_Dialogue(kActorMcCoy, 680);
KIA_Play_Actor_Dialogue(kActorGaff, 30);
break;
case kClueLicensePlate:
KIA_Play_Slice_Model(kModelAnimationLicensePlate);
break;
case kClueLabPaintTransfer:
KIA_Play_Actor_Dialogue(kActorKlein, 170);
KIA_Play_Actor_Dialogue(kActorKlein, 180);
KIA_Play_Actor_Dialogue(kActorKlein, 190);
KIA_Play_Actor_Dialogue(kActorKlein, 200);
break;
case kClueDispatchHitAndRun:
KIA_Play_Actor_Dialogue(kActorDispatcher, 90);
KIA_Play_Actor_Dialogue(kActorDispatcher, 100);
KIA_Play_Actor_Dialogue(kActorDispatcher, 110);
KIA_Play_Actor_Dialogue(kActorDispatcher, 120);
KIA_Play_Actor_Dialogue(kActorDispatcher, 130);
KIA_Play_Actor_Dialogue(kActorDispatcher, 140);
KIA_Play_Actor_Dialogue(kActorDispatcher, 150);
break;
case kCluePhoneCallGuzza:
KIA_Play_Actor_Dialogue(kActorGuzza, 30);
KIA_Play_Actor_Dialogue(kActorGuzza, 50);
KIA_Play_Actor_Dialogue(kActorGuzza, 70);
break;
case kClueDragonflyEarring:
KIA_Play_Slice_Model(kModelAnimationDragonflyEarring);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2140);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2150);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2160);
break;
case kClueTyrellSecurity:
KIA_Play_Slice_Model(kModelAnimationVideoDisc);
break;
case kClueTyrellGuardInterview:
KIA_Play_Actor_Dialogue(kActorMcCoy, 5140);
KIA_Play_Actor_Dialogue(kActorTyrellGuard, 30);
KIA_Play_Actor_Dialogue(kActorTyrellGuard, 40);
break;
case kClueBombingSuspect:
KIA_Play_Photograph(31);
if (_vm->_cutContent
&& (Query_Difficulty_Level() != kGameDifficultyEasy || Actor_Clue_Query(kActorMcCoy, kClueDragonflyEarring))) {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4130); // TLKA
} else {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2140);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2150);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2160);
}
break;
case kClueDetonatorWire:
KIA_Play_Slice_Model(kModelAnimationDetonatorWire);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2320);
if (Game_Flag_Query(kFlagSadikIsReplicant)) {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2330);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2340);
}
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2350);
break;
case kClueVictimInformation:
KIA_Play_Actor_Dialogue(kActorTyrellGuard, 100);
KIA_Play_Actor_Dialogue(kActorTyrellGuard, 110);
KIA_Play_Actor_Dialogue(kActorTyrellGuard, 120);
KIA_Play_Actor_Dialogue(kActorTyrellGuard, 130);
break;
case kClueAttemptedFileAccess:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2170);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2180);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2190);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2200);
break;
case kClueCrystalsCase:
KIA_Play_Actor_Dialogue(kActorSteele, 2230);
KIA_Play_Actor_Dialogue(kActorSteele, 2260);
KIA_Play_Actor_Dialogue(kActorSteele, 2270);
KIA_Play_Actor_Dialogue(kActorSteele, 2280);
break;
case kClueKingstonKitchenBox1:
KIA_Play_Slice_Model(kModelAnimationKingstonKitchenBox);
if (Query_Difficulty_Level() == kGameDifficultyEasy) {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4140);
} else {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4150);
}
break;
case kClueTyrellSalesPamphletEntertainModel:
KIA_Play_Slice_Model(kModelAnimationTyrellSalesPamphletKIA);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4280);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4290);
break;
case kClueTyrellSalesPamphletLolita:
KIA_Play_Slice_Model(kModelAnimationTyrellSalesPamphletKIA);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4280);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4300);
break;
case kCluePeruvianLadyInterview:
KIA_Play_Actor_Dialogue(kActorInsectDealer, 90);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 100);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 110);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 120);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 130);
break;
case kClueHasanInterview:
KIA_Play_Actor_Dialogue(kActorHasan, 90);
KIA_Play_Actor_Dialogue(kActorHasan, 100);
break;
case kClueBobInterview1:
KIA_Play_Actor_Dialogue(kActorBulletBob, 320);
KIA_Play_Actor_Dialogue(kActorBulletBob, 330);
KIA_Play_Actor_Dialogue(kActorBulletBob, 340);
KIA_Play_Actor_Dialogue(kActorBulletBob, 380);
KIA_Play_Actor_Dialogue(kActorBulletBob, 390);
KIA_Play_Actor_Dialogue(kActorBulletBob, 400);
break;
case kClueBobInterview2:
KIA_Play_Actor_Dialogue(kActorBulletBob, 320);
KIA_Play_Actor_Dialogue(kActorBulletBob, 330);
KIA_Play_Actor_Dialogue(kActorBulletBob, 410);
KIA_Play_Actor_Dialogue(kActorBulletBob, 420);
KIA_Play_Actor_Dialogue(kActorBulletBob, 440);
KIA_Play_Actor_Dialogue(kActorBulletBob, 450);
break;
case kClueIzoInterview:
KIA_Play_Actor_Dialogue(kActorIzo, 210);
KIA_Play_Actor_Dialogue(kActorIzo, 220);
KIA_Play_Actor_Dialogue(kActorIzo, 240);
KIA_Play_Actor_Dialogue(kActorIzo, 250);
break;
case kClueIzosWarning:
KIA_Play_Actor_Dialogue(kActorIzo, 750);
KIA_Play_Actor_Dialogue(kActorIzo, 760);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5500);
KIA_Play_Actor_Dialogue(kActorIzo, 780);
KIA_Play_Actor_Dialogue(kActorIzo, 790);
break;
case kClueRadiationGoggles:
KIA_Play_Slice_Model(kModelAnimationRadiationGoggles);
break;
case kClueGogglesReplicantIssue:
KIA_Play_Actor_Dialogue(kActorBulletBob, 560);
KIA_Play_Actor_Dialogue(kActorBulletBob, 570);
KIA_Play_Actor_Dialogue(kActorBulletBob, 580);
break;
case kClueFishLadyInterview:
KIA_Play_Actor_Dialogue(kActorFishDealer, 120);
KIA_Play_Actor_Dialogue(kActorFishDealer, 130);
break;
case kClueDogCollar1:
KIA_Play_Slice_Model(kModelAnimationDogCollar);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4160);
break;
case kClueWeaponsCache:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2430);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2440);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2450);
break;
case kClueChewInterview:
KIA_Play_Actor_Dialogue(kActorChew, 140);
KIA_Play_Actor_Dialogue(kActorChew, 150);
KIA_Play_Actor_Dialogue(kActorChew, 170);
KIA_Play_Actor_Dialogue(kActorChew, 180);
KIA_Play_Actor_Dialogue(kActorChew, 190);
break;
case kClueMorajiInterview:
KIA_Play_Actor_Dialogue(kActorMoraji, 20);
KIA_Play_Actor_Dialogue(kActorMoraji, 30);
KIA_Play_Actor_Dialogue(kActorMoraji, 40);
KIA_Play_Actor_Dialogue(kActorMoraji, 50);
break;
case kClueGordoInterview1:
KIA_Play_Actor_Dialogue(kActorGordo, 1010);
KIA_Play_Actor_Dialogue(kActorMcCoy, 6495);
KIA_Play_Actor_Dialogue(kActorGordo, 1020);
KIA_Play_Actor_Dialogue(kActorMcCoy, 6500);
KIA_Play_Actor_Dialogue(kActorGordo, 1030);
break;
case kClueGordoInterview2:
KIA_Play_Actor_Dialogue(kActorGordo, 1040);
KIA_Play_Actor_Dialogue(kActorGordo, 1050);
KIA_Play_Actor_Dialogue(kActorMcCoy, 6505);
KIA_Play_Actor_Dialogue(kActorGordo, 1060);
KIA_Play_Actor_Dialogue(kActorGordo, 1070);
KIA_Play_Actor_Dialogue(kActorMcCoy, 6510);
KIA_Play_Actor_Dialogue(kActorGordo, 1080);
break;
case kClueAnsweringMachineMessage:
KIA_Play_Actor_Dialogue(kActorSebastian, 0);
KIA_Play_Actor_Dialogue(kActorSebastian, 10);
KIA_Play_Actor_Dialogue(kActorSebastian, 20);
KIA_Play_Actor_Dialogue(kActorSebastian, 30);
KIA_Play_Actor_Dialogue(kActorSebastian, 40);
KIA_Play_Actor_Dialogue(kActorSebastian, 50);
break;
case kClueChessTable:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 80);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 90);
break;
case kClueStaggeredbyPunches:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4370);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4380);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4390);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4400);
break;
case kClueMaggieBracelet:
KIA_Play_Slice_Model(kModelAnimationMaggieBracelet);
if (_vm->_cutContent) {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4030);
}
break;
case kClueEnvelope:
KIA_Play_Slice_Model(kModelAnimationEnvelope);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 850);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 860);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 870);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 880);
break;
case kClueIzosFriend:
KIA_Play_Photograph(25);
break;
case kClueChinaBarSecurityPhoto:
KIA_Play_Photograph(20);
break;
case kCluePurchasedScorpions:
KIA_Play_Actor_Dialogue(kActorMcCoy, 220);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 320);
KIA_Play_Actor_Dialogue(kActorMcCoy, 225);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 330);
KIA_Play_Actor_Dialogue(kActorMcCoy, 230);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 340);
break;
case kClueWeaponsOrderForm:
KIA_Play_Slice_Model(kModelAnimationWeaponsOrderForm);
break;
case kClueShippingForm:
KIA_Play_Slice_Model(kModelAnimationWeaponsOrderForm);
break;
case kClueGuzzasCash:
KIA_Play_Actor_Dialogue(kActorGuzza, 520);
KIA_Play_Actor_Dialogue(kActorGuzza, 530);
KIA_Play_Actor_Dialogue(kActorGuzza, 540);
KIA_Play_Actor_Dialogue(kActorGuzza, 550);
break;
case kClueHysteriaToken:
KIA_Play_Slice_Model(kModelAnimationHysteriaToken);
break;
case kClueRagDoll:
KIA_Play_Slice_Model(kModelAnimationRagDoll);
break;
case kClueMoonbus1:
KIA_Play_Photograph(34);
break;
case kClueCheese:
KIA_Play_Slice_Model(kModelAnimationCheese);
break;
case kClueDektorasDressingRoom:
KIA_Play_Photograph(16);
break;
case kClueEarlyQsClub:
KIA_Play_Slice_Model(kModelAnimationVideoDisc);
break;
case kClueDragonflyCollection:
KIA_Play_Actor_Dialogue(kActorInsectDealer, 290);
KIA_Play_Actor_Dialogue(kActorInsectDealer, 300);
break;
case kClueDragonflyBelt:
KIA_Play_Slice_Model(kModelAnimationDragonflyBelt);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4050);
break;
case kClueEarlyQInterview:
KIA_Play_Actor_Dialogue(kActorEarlyQ, 140);
KIA_Play_Actor_Dialogue(kActorEarlyQ, 150);
break;
case kClueStrangeScale1:
KIA_Play_Slice_Model(kModelAnimationStrangeScale);
break;
case kClueDektoraInterview1:
KIA_Play_Actor_Dialogue(kActorDektora, 650);
KIA_Play_Actor_Dialogue(kActorDektora, 660);
KIA_Play_Actor_Dialogue(kActorMcCoy, 3665);
KIA_Play_Actor_Dialogue(kActorDektora, 670);
KIA_Play_Actor_Dialogue(kActorDektora, 680);
KIA_Play_Actor_Dialogue(kActorDektora, 690);
break;
case kClueDektoraInterview2:
KIA_Play_Actor_Dialogue(kActorDektora, 580);
break;
case kClueDektoraInterview3:
KIA_Play_Actor_Dialogue(kActorMcCoy, 3600);
KIA_Play_Actor_Dialogue(kActorDektora, 550);
break;
case kClueDektorasCard:
KIA_Play_Slice_Model(kModelAnimationDektorasCard);
break;
case kClueCrazysInvolvement:
// RESTORED CONTENT
KIA_Play_Slice_Model(kModelAnimationLetter);
break;
case kClueGrigoriansNote:
KIA_Play_Slice_Model(kModelAnimationGrigoriansNote);
break;
case kClueCollectionReceipt:
KIA_Play_Slice_Model(kModelAnimationCollectionReceipt);
break;
case kClueSpecialIngredient:
KIA_Play_Actor_Dialogue(kActorMurray, 210);
KIA_Play_Actor_Dialogue(kActorMurray, 220);
KIA_Play_Actor_Dialogue(kActorMia, 140);
KIA_Play_Actor_Dialogue(kActorMurray, 230);
break;
case kClueStolenCheese:
KIA_Play_Actor_Dialogue(kActorIsabella, 210);
KIA_Play_Actor_Dialogue(kActorIsabella, 260);
KIA_Play_Actor_Dialogue(kActorMcCoy, 1390);
KIA_Play_Actor_Dialogue(kActorIsabella, 300);
break;
case kClueGordoInterview3:
KIA_Play_Actor_Dialogue(kActorGordo, 450);
KIA_Play_Actor_Dialogue(kActorMcCoy, 3280);
break;
case kClueGordoConfession:
KIA_Play_Actor_Dialogue(kActorMcCoy, 3250);
KIA_Play_Actor_Dialogue(kActorGordo, 540);
KIA_Play_Actor_Dialogue(kActorGordo, 550);
break;
case kClueGordosLighterReplicant:
KIA_Play_Slice_Model(kModelAnimationGordosLighterReplicant);
if (_vm->_cutContent) {
// Indicates Gordo is a Replicant.
if (Actor_Clue_Query(kActorMcCoy, kClueZubenSquadPhoto)
&& (Global_Variable_Query(kVariableChapter) == 2 || Global_Variable_Query(kVariableChapter) == 3)) {
// NOTE this is only in TLK02
// so it should be for Act 2 and 3 only (The lighter is normally spawned in Act 3)
// NOTE 2 As of yet, we load all TLK resources in cut content mode (see Chapters::enterChapter()),
// so the check for specific chapters is redundantly restrictive here.
// TODO maybe we can remove it, if we're not concerned about minimum resource usage in cut content mode
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1450);
} else {
// TLK0A
// Re-use quote from Zuben's death (picking up his photo from the Rep Squad)
KIA_Play_Actor_Dialogue(kActorVoiceOver, 350);
}
// NOTE this is only in TLK02
// so it should be for Act 2 and 3 only (The lighter is normally spawned in Act 3)
// NOTE 2 As of yet, we load all TLK resources in cut content mode (see Chapters::enterChapter()),
// so the check for specific chapters is redundantly restrictive here.
// TODO maybe we can remove it, if we're not concerned about minimum resource usage in cut content mode
if (Global_Variable_Query(kVariableChapter) == 2 || Global_Variable_Query(kVariableChapter) == 3) {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1460);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1470);
}
} else {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 350);
}
break;
case kClueGordosLighterHuman:
KIA_Play_Slice_Model(kModelAnimationGordosLighterHuman);
break;
case kClueDektoraInterview4:
KIA_Play_Actor_Dialogue(kActorMcCoy, 3860);
KIA_Play_Actor_Dialogue(kActorDektora, 1030);
KIA_Play_Actor_Dialogue(kActorDektora, 1040);
KIA_Play_Actor_Dialogue(kActorMcCoy, 3865);
KIA_Play_Actor_Dialogue(kActorDektora, 1050);
KIA_Play_Actor_Dialogue(kActorDektora, 1060);
break;
case kClueHollowayInterview:
KIA_Play_Actor_Dialogue(kActorHolloway, 0);
KIA_Play_Actor_Dialogue(kActorHolloway, 10);
break;
case kClueBakersBadge:
KIA_Play_Slice_Model(kModelAnimationBadge);
break;
case kClueHoldensBadge:
KIA_Play_Slice_Model(kModelAnimationBadge);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4420);
break;
case kClueCarIdentified:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3780);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3790);
break;
case kClueCarRegistration1:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3800);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3810);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3820);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3830);
break;
case kClueCarRegistration2:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3840);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3850);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3860);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3870);
break;
case kClueCarRegistration3:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3880);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3890);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3900);
break;
case kClueCrazylegsInterview1:
KIA_Play_Actor_Dialogue(kActorCrazylegs, 830);
KIA_Play_Actor_Dialogue(kActorCrazylegs, 840);
KIA_Play_Actor_Dialogue(kActorCrazylegs, 850);
break;
case kClueLichenDogWrapper:
KIA_Play_Slice_Model(kModelAnimationLichenDogWrapper);
break;
case kClueRequisitionForm:
KIA_Play_Slice_Model(kModelAnimationRequisitionForm);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3930);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3940);
break;
case kClueScaryChair:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2550);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2560);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2570);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2580);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2590);
break;
case kClueIzosStashRaided:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2470);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2480);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2490);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2500);
break;
case kClueHomelessManInterview1:
KIA_Play_Actor_Dialogue(kActorMcCoy, 5615);
KIA_Play_Actor_Dialogue(kActorTransient, 170);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5625);
KIA_Play_Actor_Dialogue(kActorTransient, 180);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5630);
KIA_Play_Actor_Dialogue(kActorTransient, 190);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5635);
KIA_Play_Actor_Dialogue(kActorTransient, 200);
break;
case kClueHomelessManInterview2:
KIA_Play_Actor_Dialogue(kActorMcCoy, 5640);
KIA_Play_Actor_Dialogue(kActorTransient, 230);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5645);
KIA_Play_Actor_Dialogue(kActorTransient, 240);
KIA_Play_Actor_Dialogue(kActorTransient, 250);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5650);
KIA_Play_Actor_Dialogue(kActorTransient, 260);
break;
case kClueHomelessManKid:
KIA_Play_Actor_Dialogue(kActorTransient, 340);
KIA_Play_Actor_Dialogue(kActorTransient, 350);
KIA_Play_Actor_Dialogue(kActorTransient, 360);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2710);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2730);
break;
case kClueFolder:
KIA_Play_Slice_Model(kModelAnimationFolder);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2740);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2750);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2760);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 2770);
break;
case kClueGuzzaFramedMcCoy:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 3320);
break;
case kClueOriginalShippingForm:
KIA_Play_Slice_Model(kModelAnimationOriginalShippingForm);
break;
case kClueOriginalRequisitionForm:
KIA_Play_Slice_Model(kModelAnimationOriginalRequisitionForm);
break;
case kClueCandyWrapper:
KIA_Play_Slice_Model(kModelAnimationCandyWrapper);
break;
case kClueFlaskOfAbsinthe:
KIA_Play_Slice_Model(kModelAnimationFlaskOfAbsinthe);
break;
case kClueLutherLanceInterview:
KIA_Play_Actor_Dialogue(kActorLuther, 240);
KIA_Play_Actor_Dialogue(kActorLance, 200);
KIA_Play_Actor_Dialogue(kActorLance, 210);
KIA_Play_Actor_Dialogue(kActorLuther, 260);
KIA_Play_Actor_Dialogue(kActorLuther, 270);
break;
case kCluePhoneCallDektora1:
KIA_Play_Actor_Dialogue(kActorDektora, 360);
KIA_Play_Actor_Dialogue(kActorDektora, 380);
break;
case kCluePhoneCallDektora2:
KIA_Play_Actor_Dialogue(kActorMcCoy, 2505);
KIA_Play_Actor_Dialogue(kActorDektora, 430);
KIA_Play_Actor_Dialogue(kActorDektora, 440);
KIA_Play_Actor_Dialogue(kActorMcCoy, 2530);
KIA_Play_Actor_Dialogue(kActorDektora, 450);
KIA_Play_Actor_Dialogue(kActorMcCoy, 2535);
KIA_Play_Actor_Dialogue(kActorDektora, 460);
KIA_Play_Actor_Dialogue(kActorDektora, 470);
break;
case kCluePhoneCallLucy1:
KIA_Play_Actor_Dialogue(kActorLucy, 590);
KIA_Play_Actor_Dialogue(kActorLucy, 630);
break;
case kCluePhoneCallLucy2:
KIA_Play_Actor_Dialogue(kActorLucy, 540);
KIA_Play_Actor_Dialogue(kActorLucy, 550);
KIA_Play_Actor_Dialogue(kActorMcCoy, 2550);
KIA_Play_Actor_Dialogue(kActorLucy, 560);
break;
case kCluePhoneCallClovis:
KIA_Play_Actor_Dialogue(kActorClovis, 530);
KIA_Play_Actor_Dialogue(kActorClovis, 540);
break;
case kCluePhoneCallCrystal:
KIA_Play_Actor_Dialogue(kActorSteele, 700);
KIA_Play_Actor_Dialogue(kActorSteele, 750);
KIA_Play_Actor_Dialogue(kActorSteele, 760);
break;
case kCluePowerSource:
KIA_Play_Slice_Model(kModelAnimationPowerSource);
break;
case kClueBomb:
KIA_Play_Slice_Model(kModelAnimationBomb);
break;
case kClueDNATyrell:
case kClueDNASebastian:
case kClueDNAChew:
case kClueDNAMoraji:
case kClueDNALutherLance:
case kClueDNAMarcus:
{
int dnaEvidences = Global_Variable_Query(kVariableDNAEvidence);
if (dnaEvidences == 1) {
KIA_Play_Slice_Model(kModelAnimationDNAEvidence01OutOf6);
} else if (dnaEvidences == 2) {
KIA_Play_Slice_Model(kModelAnimationDNAEvidence03OutOf6);
} else if (dnaEvidences == 3) {
KIA_Play_Slice_Model(kModelAnimationDNAEvidence04OutOf6);
} else if (dnaEvidences >= 4) {
KIA_Play_Slice_Model(kModelAnimationDNAEvidenceComplete);
}
}
break;
case kClueGarterSnake:
KIA_Play_Slice_Model(kModelAnimationGarterSnake);
break;
case kClueSlug:
KIA_Play_Slice_Model(kModelAnimationSlug);
break;
case kClueGoldfish:
KIA_Play_Slice_Model(kModelAnimationGoldfish);
break;
case kClueZubenTalksAboutLucy1:
KIA_Play_Actor_Dialogue(kActorZuben, 230);
KIA_Play_Actor_Dialogue(kActorZuben, 240);
break;
case kClueZubenTalksAboutLucy2:
KIA_Play_Actor_Dialogue(kActorZuben, 250);
KIA_Play_Actor_Dialogue(kActorZuben, 260);
break;
case kClueZubensMotive:
#if BLADERUNNER_ORIGINAL_BUGS
// Original KIA dialogue is inconsistent with in-game here.
// In the actual in-game dialogue in vanilla version
// McCoy's quote 7350 ("Runciter?") is not used
// and, after Zuben's quote 280 ("He not pay..."),
// McCoy's quote 7355 ("All those animals died") quote is used.
// Also McCoy asks quote 7360 ("Did he do bad things to Lucy?")
// before Zubern's quote 300 ("Girl was forced to do bad things Off-World...").
KIA_Play_Actor_Dialogue(kActorZuben, 280);
KIA_Play_Actor_Dialogue(kActorMcCoy, 7350);
KIA_Play_Actor_Dialogue(kActorZuben, 290);
#else
// Be consistent with the actual spoken dialogue
if (_vm->_cutContent) {
KIA_Play_Actor_Dialogue(kActorZuben, 270);
KIA_Play_Actor_Dialogue(kActorMcCoy, 7350);
}
KIA_Play_Actor_Dialogue(kActorZuben, 280);
KIA_Play_Actor_Dialogue(kActorMcCoy, 7355);
KIA_Play_Actor_Dialogue(kActorZuben, 290);
KIA_Play_Actor_Dialogue(kActorMcCoy, 7360);
#endif // BLADERUNNER_ORIGINAL_BUGS
KIA_Play_Actor_Dialogue(kActorZuben, 300);
KIA_Play_Actor_Dialogue(kActorZuben, 310);
break;
case kClueVKDektoraReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKDektoraHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueVKBobGorskyReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKBobGorskyHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueVKLutherLanceReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKLutherLanceHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueVKGrigorianReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKGrigorianHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueVKIzoReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKIzoHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueVKCrazylegsReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKCrazylegsHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueVKRunciterReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKRunciterHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueVKEarlyQReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKEarlyQHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueCrimeSceneNotes:
KIA_Play_Actor_Dialogue(kActorSteele, 3310);
KIA_Play_Actor_Dialogue(kActorSteele, 3320);
if (_vm->_cutContent
&& (_vm->_language == Common::ES_ESP
|| _vm->_language == Common::IT_ITA)
) {
//
// in ITA and ESP the 3340 quote is the second half of the sentence starting in previous quote (3330)
KIA_Play_Actor_Dialogue(kActorSteele, 3330);
KIA_Play_Actor_Dialogue(kActorSteele, 3340);
} else if (_vm->_cutContent
&& _vm->_language == Common::FR_FRA
) {
// in FRA the 3340 quote has the full sentence rendering the previous quote (3330) redundant
// FRA (Restored Content) version needs only 3340
KIA_Play_Actor_Dialogue(kActorSteele, 3340);
} else {
// ENG and DEU and non-restored content versions need only 3330
// the 3340 quote is *BOOP* in the ENG and DEU versions
KIA_Play_Actor_Dialogue(kActorSteele, 3330);
}
KIA_Play_Actor_Dialogue(kActorSteele, 3350);
KIA_Play_Actor_Dialogue(kActorSteele, 3360);
KIA_Play_Actor_Dialogue(kActorSteele, 3370);
KIA_Play_Actor_Dialogue(kActorSteele, 3380);
break;
case kClueGrigorianInterviewA:
KIA_Play_Actor_Dialogue(kActorSteele, 3390);
KIA_Play_Actor_Dialogue(kActorSteele, 3400);
KIA_Play_Actor_Dialogue(kActorSteele, 3410);
// TODO this line of Grigorian is supposedly interrupted by Steele's following line
// maybe implement a way to not wait before the next line is played, similar to Actor_Says_With_Pause()
// (look into tick() for kia.cpp)
KIA_Play_Actor_Dialogue(kActorGrigorian, 1260);
KIA_Play_Actor_Dialogue(kActorSteele, 3420);
KIA_Play_Actor_Dialogue(kActorSteele, 3430);
KIA_Play_Actor_Dialogue(kActorSteele, 3440);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1270);
KIA_Play_Actor_Dialogue(kActorSteele, 3450);
KIA_Play_Actor_Dialogue(kActorSteele, 3460);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1280);
KIA_Play_Actor_Dialogue(kActorSteele, 3470);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1300);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1310);
if (_vm->_cutContent) {
KIA_Play_Actor_Dialogue(kActorSteele, 3260); // And eliminating the glitches...
KIA_Play_Actor_Dialogue(kActorSteele, 3480);
if (_vm->_language == Common::ES_ESP
|| _vm->_language == Common::IT_ITA) {
//
// in ITA and ESP the 3490 quote is the second half of the sentence starting in previous quote (3480)
KIA_Play_Actor_Dialogue(kActorSteele, 3490);
}
} else {
// the 3490 quote is *BOOP* in the ENG and DEU versions
// the 3490 quote is also redundant in FRA version, since it's only the first half of the previous quote (3480)
KIA_Play_Actor_Dialogue(kActorSteele, 3480);
}
KIA_Play_Actor_Dialogue(kActorSteele, 3500);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1320);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1330);
KIA_Play_Actor_Dialogue(kActorSteele, 3510);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1340);
KIA_Play_Actor_Dialogue(kActorSteele, 3520);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1350);
KIA_Play_Actor_Dialogue(kActorSteele, 3530);
KIA_Play_Actor_Dialogue(kActorSteele, 3540);
break;
case kClueGrigorianInterviewB1:
// Izo is a Replicant
KIA_Play_Actor_Dialogue(kActorSteele, 3550); // Describe them to me again.
KIA_Play_Actor_Dialogue(kActorGrigorian, 1360); // Just the Rastafarian fellow. And that-- that friend of his. A slim blond man, Asian. With-- with a ponytail.
KIA_Play_Actor_Dialogue(kActorGrigorian, 1370);
if (_vm->_cutContent) {
KIA_Play_Actor_Dialogue(kActorSteele, 3620); // Let me ask you a question.
KIA_Play_Actor_Dialogue(kActorSteele, 3630);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1380);
KIA_Play_Actor_Dialogue(kActorSteele, 3640); // such as
KIA_Play_Actor_Dialogue(kActorGrigorian, 1390);
}
KIA_Play_Actor_Dialogue(kActorSteele, 3560); // Bravo, Spencer.
KIA_Play_Actor_Dialogue(kActorSteele, 3570);
break;
case kClueGrigorianInterviewB2:
// Izo is a human
KIA_Play_Actor_Dialogue(kActorSteele, 3580); // Describe them for me again.
KIA_Play_Actor_Dialogue(kActorGrigorian, 1400); // There was that Rastafarian fellow and one of our ex members showed up.
KIA_Play_Actor_Dialogue(kActorSteele, 3590);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1410); // A Japanese man named Izo.
KIA_Play_Actor_Dialogue(kActorSteele, 3600);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1420); // We're a pacifist organization and we have rules
KIA_Play_Actor_Dialogue(kActorGrigorian, 1430); // Izo refused to check in his samurai sword
KIA_Play_Actor_Dialogue(kActorSteele, 3610);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1440);
KIA_Play_Actor_Dialogue(kActorSteele, 3620); // Let me ask you a question.
KIA_Play_Actor_Dialogue(kActorSteele, 3630);
KIA_Play_Actor_Dialogue(kActorGrigorian, 1450);
KIA_Play_Actor_Dialogue(kActorSteele, 3640); // such as
KIA_Play_Actor_Dialogue(kActorGrigorian, 1460);
KIA_Play_Actor_Dialogue(kActorSteele, 3650);
break;
case kClueAnimalMurderSuspect:
KIA_Play_Photograph(7);
break;
case kClueMilitaryBoots:
KIA_Play_Photograph(8);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4110);
break;
case kClueOuterDressingRoom:
KIA_Play_Photograph(15);
break;
case kCluePhotoOfMcCoy1:
KIA_Play_Photograph(17);
break;
case kCluePhotoOfMcCoy2:
KIA_Play_Photograph(18);
break;
case kClueEarlyQAndLucy:
KIA_Play_Photograph(1);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4260);
break;
case kClueClovisFlowers:
KIA_Play_Photograph(3);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4230);
break;
case kClueLucyWithDektora:
KIA_Play_Photograph(2);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4040);
break;
case kClueWomanInAnimoidRow:
KIA_Play_Photograph(21);
break;
case kClueScorpions:
KIA_Play_Photograph(22);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4180);
break;
case kClueStrangeScale2:
KIA_Play_Photograph(23);
break;
case kClueChinaBarSecurityCamera:
KIA_Play_Photograph(24);
break;
case kClueIzo:
KIA_Play_Photograph(26);
break;
case kClueGuzza:
KIA_Play_Photograph(27);
break;
case kClueChinaBarSecurityDisc:
KIA_Play_Slice_Model(kModelAnimationVideoDisc);
break;
case kClueScorpionbox:
KIA_Play_Photograph(0);
break;
case kClueTyrellSecurityPhoto:
KIA_Play_Photograph(28);
break;
case kClueChinaBar:
KIA_Play_Photograph(19);
break;
case kCluePlasticExplosive:
KIA_Play_Photograph(32);
break;
case kClueDogCollar2:
KIA_Play_Photograph(30);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4160);
break;
case kClueKingstonKitchenBox2:
KIA_Play_Photograph(29);
if (Query_Difficulty_Level() == kGameDifficultyEasy) {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4140);
} else {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4150);
}
break;
case kClueCrystalsCigarette:
KIA_Play_Slice_Model(kModelAnimationCrystalsCigarette);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1770);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1150);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1180);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 1190);
break;
case kClueSpinnerKeys:
KIA_Play_Slice_Model(kModelAnimationSpinnerKeys);
break;
case kClueExpertBomber:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 730);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 740);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 750);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 760);
break;
case kClueAmateurBomber:
KIA_Play_Actor_Dialogue(kActorVoiceOver, 670);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 680);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 700);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 710);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 720);
break;
case kClueVKLucyReplicant:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 430);
break;
case kClueVKLucyHuman:
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 420);
KIA_Play_Actor_Dialogue(kActorAnsweringMachine, 440);
break;
case kClueLucyInterview:
KIA_Play_Actor_Dialogue(kActorMcCoy, 1645);
KIA_Play_Actor_Dialogue(kActorLucy, 240);
KIA_Play_Actor_Dialogue(kActorLucy, 250);
KIA_Play_Actor_Dialogue(kActorMcCoy, 1675);
KIA_Play_Actor_Dialogue(kActorLucy, 260);
KIA_Play_Actor_Dialogue(kActorLucy, 270);
break;
case kClueMoonbusReflection:
KIA_Play_Photograph(35);
break;
case kClueMcCoyAtMoonbus:
KIA_Play_Photograph(36);
if (_vm->_cutContent) {
if (Actor_Clue_Query(kActorMcCoy, kClueMoonbusReflection)) {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4250);
} else {
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4010);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4020);
}
} else {
// original re-uses the "That can't be me" from the ESPER
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4240);
}
break;
case kClueClovisAtMoonbus:
KIA_Play_Photograph(37);
KIA_Play_Actor_Dialogue(kActorVoiceOver, 4220);
break;
case kClueSadikAtMoonbus:
KIA_Play_Photograph(38);
break;
case kClueRachaelInterview:
KIA_Play_Actor_Dialogue(kActorMcCoy, 5365);
KIA_Play_Actor_Dialogue(kActorRachael, 600);
KIA_Play_Actor_Dialogue(kActorMcCoy, 5370);
KIA_Play_Actor_Dialogue(kActorRachael, 610);
break;
case kClueTyrellInterview:
KIA_Play_Actor_Dialogue(kActorTyrell, 0);
KIA_Play_Actor_Dialogue(kActorTyrell, 10);
KIA_Play_Actor_Dialogue(kActorTyrell, 20);
KIA_Play_Actor_Dialogue(kActorTyrell, 30);
break;
case kClueRuncitersConfession1:
KIA_Play_Actor_Dialogue(kActorRunciter, 630);
KIA_Play_Actor_Dialogue(kActorRunciter, 640);
KIA_Play_Actor_Dialogue(kActorRunciter, 650);
break;
default:
break;
}
}
} // End of namespace BladeRunner
|