Files
@ r28475:11127afc698f
Branch filter:
Location: cpp/openttd-patchpack/source/src/newgrf_text.cpp - annotation
r28475:11127afc698f
33.9 KiB
text/x-c
Fix #11785, cf16f45: when bumping aircraft into the air, remove them from the loading vehicle list again
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 | r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r12768:980ae0491352 r15610:623a23fb6560 r15610:623a23fb6560 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r23838:bfeaabaa7b1d r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r23841:9d73d286a074 r5584:545d748cc681 r27594:fd5f658fe30f r8213:466402e95092 r16473:ab4ba67dd531 r21158:ca0e73acc573 r8214:9a3935f9ef4e r27884:803962be0328 r13074:af9a4ec75dd0 r16477:0f1fcd3c927b r16475:65a52dcc7b07 r24211:16bc9477a90c r5584:545d748cc681 r8264:d493cb51fe8a r8264:d493cb51fe8a r8264:d493cb51fe8a r21383:942c32fb8b0e r21383:942c32fb8b0e r5584:545d748cc681 r13946:bef584affb32 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r11341:5f61a8391e15 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r6248:b940b09d7ab8 r5584:545d748cc681 r11341:5f61a8391e15 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r6248:b940b09d7ab8 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r6248:b940b09d7ab8 r27859:6bcc242489a3 r27859:6bcc242489a3 r27737:728d55b97775 r27737:728d55b97775 r6248:b940b09d7ab8 r5584:545d748cc681 r5584:545d748cc681 r27859:6bcc242489a3 r6348:a905c3e6d8fa r5584:545d748cc681 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r23538:8df50944b27a r23536:ce42deb0b32d r23536:ce42deb0b32d r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r5584:545d748cc681 r16452:b5802941976b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r23538:8df50944b27a r23536:ce42deb0b32d r23536:ce42deb0b32d r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16481:61e8cb639444 r16477:0f1fcd3c927b r24211:16bc9477a90c r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16481:61e8cb639444 r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r27119:18b3e09ea8be r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r24211:16bc9477a90c r23607:36c15679007d r17920:9b20f829c53e r17920:9b20f829c53e r17920:9b20f829c53e r24211:16bc9477a90c r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r27737:728d55b97775 r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r27737:728d55b97775 r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16587:f4481d4592ac r16477:0f1fcd3c927b r24211:16bc9477a90c r24597:afde5721a3b6 r24211:16bc9477a90c r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r16481:61e8cb639444 r16481:61e8cb639444 r16481:61e8cb639444 r16481:61e8cb639444 r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16481:61e8cb639444 r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16481:61e8cb639444 r24211:16bc9477a90c r24211:16bc9477a90c r27119:18b3e09ea8be r16492:d477cc0703a4 r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16481:61e8cb639444 r24211:16bc9477a90c r18117:e131567ef758 r18117:e131567ef758 r24597:afde5721a3b6 r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16452:b5802941976b r18135:506fefd4fc51 r18135:506fefd4fc51 r18135:506fefd4fc51 r18135:506fefd4fc51 r18947:4f70a151c5a8 r16452:b5802941976b r16452:b5802941976b r27737:728d55b97775 r5584:545d748cc681 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r27737:728d55b97775 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r16477:0f1fcd3c927b r23607:36c15679007d r16477:0f1fcd3c927b r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r27737:728d55b97775 r5584:545d748cc681 r24211:16bc9477a90c r24211:16bc9477a90c r8061:fac8ff995ca5 r11963:3900948ab8b0 r11963:3900948ab8b0 r11963:3900948ab8b0 r11963:3900948ab8b0 r24211:16bc9477a90c r11963:3900948ab8b0 r11963:3900948ab8b0 r8061:fac8ff995ca5 r24211:16bc9477a90c r8061:fac8ff995ca5 r24211:16bc9477a90c r16691:1305f82fcf89 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r5584:545d748cc681 r18135:506fefd4fc51 r18135:506fefd4fc51 r18135:506fefd4fc51 r18135:506fefd4fc51 r27119:18b3e09ea8be r18135:506fefd4fc51 r18135:506fefd4fc51 r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r7616:d6611d4fd004 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r27737:728d55b97775 r27737:728d55b97775 r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r5584:545d748cc681 r7616:d6611d4fd004 r7616:d6611d4fd004 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r16475:65a52dcc7b07 r16691:1305f82fcf89 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r27737:728d55b97775 r27737:728d55b97775 r24211:16bc9477a90c r24211:16bc9477a90c r15608:7b580ec7448a r15608:7b580ec7448a r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r16470:5fc6db4a67ff r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r16475:65a52dcc7b07 r24211:16bc9477a90c r24211:16bc9477a90c r16691:1305f82fcf89 r16475:65a52dcc7b07 r24211:16bc9477a90c r23607:36c15679007d r16475:65a52dcc7b07 r24211:16bc9477a90c r24211:16bc9477a90c r16475:65a52dcc7b07 r16475:65a52dcc7b07 r16475:65a52dcc7b07 r10135:de3b4e59727f r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16691:1305f82fcf89 r23607:36c15679007d r24211:16bc9477a90c r27119:18b3e09ea8be r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r24211:16bc9477a90c r27119:18b3e09ea8be r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r23607:36c15679007d r27119:18b3e09ea8be r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r16477:0f1fcd3c927b r23607:36c15679007d r24211:16bc9477a90c r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16481:61e8cb639444 r24211:16bc9477a90c r23607:36c15679007d r27119:18b3e09ea8be r24211:16bc9477a90c r16477:0f1fcd3c927b r16481:61e8cb639444 r24211:16bc9477a90c r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r17959:3333394afc38 r17960:a60ba6bbac24 r18217:d95f7ce78487 r18217:d95f7ce78487 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r22499:52b2a22ff6c1 r24211:16bc9477a90c r21158:ca0e73acc573 r17959:3333394afc38 r24211:16bc9477a90c r24211:16bc9477a90c r23637:81473ad87850 r27322:150e199e081f r27322:150e199e081f r9932:726a31405883 r27119:18b3e09ea8be r9932:726a31405883 r7616:d6611d4fd004 r7616:d6611d4fd004 r16475:65a52dcc7b07 r7616:d6611d4fd004 r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r24211:16bc9477a90c r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r24211:16bc9477a90c r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r16691:1305f82fcf89 r23607:36c15679007d r27119:18b3e09ea8be r16477:0f1fcd3c927b r16477:0f1fcd3c927b r16477:0f1fcd3c927b r24211:16bc9477a90c r5584:545d748cc681 r5584:545d748cc681 r14665:3e40198321ce r24209:155ba259d4af r14665:3e40198321ce r24209:155ba259d4af r24209:155ba259d4af r14665:3e40198321ce r24209:155ba259d4af r14665:3e40198321ce r14665:3e40198321ce r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r24209:155ba259d4af r14665:3e40198321ce r5584:545d748cc681 r5584:545d748cc681 r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r18135:506fefd4fc51 r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r27737:728d55b97775 r15579:ec523aee641f r24211:16bc9477a90c r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r27737:728d55b97775 r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r25621:b453557b6e79 r15579:ec523aee641f r24209:155ba259d4af r25621:b453557b6e79 r15579:ec523aee641f r15579:ec523aee641f r15579:ec523aee641f r5584:545d748cc681 r5584:545d748cc681 r27737:728d55b97775 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r12084:850e45fd8022 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r18135:506fefd4fc51 r18135:506fefd4fc51 r18135:506fefd4fc51 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r5584:545d748cc681 r27859:6bcc242489a3 r5584:545d748cc681 r24211:16bc9477a90c r27859:6bcc242489a3 r5584:545d748cc681 r27585:ba57a9a2dd40 r5584:545d748cc681 r22551:c6bc232b7c99 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r27737:728d55b97775 r5584:545d748cc681 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r27859:6bcc242489a3 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r23607:36c15679007d r24209:155ba259d4af r14665:3e40198321ce r24209:155ba259d4af r14665:3e40198321ce r23607:36c15679007d r14665:3e40198321ce r14665:3e40198321ce r24209:155ba259d4af r24209:155ba259d4af r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r24209:155ba259d4af r24209:155ba259d4af r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r14665:3e40198321ce r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r24209:155ba259d4af r14665:3e40198321ce r14665:3e40198321ce r27860:3ca05c7d16b5 r5584:545d748cc681 r27859:6bcc242489a3 r5584:545d748cc681 r5584:545d748cc681 r14665:3e40198321ce r23607:36c15679007d r5584:545d748cc681 r5584:545d748cc681 r8445:07810e0b20bf r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r5584:545d748cc681 r6481:534c9f0317ec r13060:e57594b0ca84 r5584:545d748cc681 r11341:5f61a8391e15 r5584:545d748cc681 r11341:5f61a8391e15 r5584:545d748cc681 r5584:545d748cc681 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r6873:011bb2269607 r5584:545d748cc681 r5584:545d748cc681 r27859:6bcc242489a3 r5584:545d748cc681 r6247:96e840dbefcc r5584:545d748cc681 r27859:6bcc242489a3 r5584:545d748cc681 r7616:d6611d4fd004 r7616:d6611d4fd004 r23841:9d73d286a074 r7616:d6611d4fd004 r21155:4f83de14e882 r7616:d6611d4fd004 r7616:d6611d4fd004 r23607:36c15679007d r7616:d6611d4fd004 r27737:728d55b97775 r27737:728d55b97775 r7616:d6611d4fd004 r27737:728d55b97775 r8066:92e4ea58eb0f r27737:728d55b97775 r8066:92e4ea58eb0f r8066:92e4ea58eb0f r27737:728d55b97775 r7616:d6611d4fd004 r27737:728d55b97775 r8066:92e4ea58eb0f r27737:728d55b97775 r8066:92e4ea58eb0f r8066:92e4ea58eb0f r27737:728d55b97775 r7616:d6611d4fd004 r27737:728d55b97775 r8066:92e4ea58eb0f r27737:728d55b97775 r27737:728d55b97775 r8066:92e4ea58eb0f r27737:728d55b97775 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r27737:728d55b97775 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r23841:9d73d286a074 r23841:9d73d286a074 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r21155:4f83de14e882 r21155:4f83de14e882 r23607:36c15679007d r21155:4f83de14e882 r21155:4f83de14e882 r21155:4f83de14e882 r21155:4f83de14e882 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r17829:e81b15f97500 r7616:d6611d4fd004 r7750:5f71f85fde96 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r17829:e81b15f97500 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r17829:e81b15f97500 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r17829:e81b15f97500 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r16692:f5d38cba4303 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r17826:e881883992f4 r21155:4f83de14e882 r7750:5f71f85fde96 r23607:36c15679007d r7750:5f71f85fde96 r27737:728d55b97775 r7616:d6611d4fd004 r27737:728d55b97775 r7616:d6611d4fd004 r21155:4f83de14e882 r7616:d6611d4fd004 r23841:9d73d286a074 r7750:5f71f85fde96 r27737:728d55b97775 r7616:d6611d4fd004 r23841:9d73d286a074 r23841:9d73d286a074 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r15366:981e1d95560b r15366:981e1d95560b r17829:e81b15f97500 r7750:5f71f85fde96 r7750:5f71f85fde96 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r13060:e57594b0ca84 r27574:c90aa6815e53 r27574:c90aa6815e53 r7616:d6611d4fd004 r7616:d6611d4fd004 r27574:c90aa6815e53 r7616:d6611d4fd004 r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r26909:0ab6391d0a9e r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r27322:150e199e081f r21153:2d47234494cd r22499:52b2a22ff6c1 r27574:c90aa6815e53 r25655:1030dcb7eb52 r21153:2d47234494cd r21153:2d47234494cd r21153:2d47234494cd r21158:ca0e73acc573 r26909:0ab6391d0a9e r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r27574:c90aa6815e53 r25655:1030dcb7eb52 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21153:2d47234494cd r21153:2d47234494cd r27574:c90aa6815e53 r26909:0ab6391d0a9e r27574:c90aa6815e53 r7616:d6611d4fd004 r7616:d6611d4fd004 r27574:c90aa6815e53 r27574:c90aa6815e53 r7616:d6611d4fd004 r7616:d6611d4fd004 r27574:c90aa6815e53 r7616:d6611d4fd004 r27574:c90aa6815e53 r27574:c90aa6815e53 r10135:de3b4e59727f r7616:d6611d4fd004 r18217:d95f7ce78487 r18217:d95f7ce78487 r27574:c90aa6815e53 r17961:6e0f68705b4a r17961:6e0f68705b4a r18217:d95f7ce78487 r18217:d95f7ce78487 r17960:a60ba6bbac24 r16359:223fd7c7ddcd r27574:c90aa6815e53 r7616:d6611d4fd004 r27322:150e199e081f r17959:3333394afc38 r17959:3333394afc38 r27574:c90aa6815e53 r17959:3333394afc38 r26909:0ab6391d0a9e r17957:225ed72957fa r27884:803962be0328 r7616:d6611d4fd004 r17957:225ed72957fa r7616:d6611d4fd004 r17957:225ed72957fa r17957:225ed72957fa r7616:d6611d4fd004 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r27574:c90aa6815e53 r27574:c90aa6815e53 r21158:ca0e73acc573 r21158:ca0e73acc573 r17957:225ed72957fa r27574:c90aa6815e53 r7616:d6611d4fd004 r22499:52b2a22ff6c1 r22500:c8b85352121b r22500:c8b85352121b r27574:c90aa6815e53 r22499:52b2a22ff6c1 r22500:c8b85352121b r7616:d6611d4fd004 r21588:937e75283c6b r26909:0ab6391d0a9e r21588:937e75283c6b r21588:937e75283c6b r21588:937e75283c6b r21588:937e75283c6b r21588:937e75283c6b r21588:937e75283c6b r21588:937e75283c6b r7616:d6611d4fd004 r7616:d6611d4fd004 r26909:0ab6391d0a9e r7616:d6611d4fd004 r7616:d6611d4fd004 r17957:225ed72957fa r17957:225ed72957fa r17957:225ed72957fa r17957:225ed72957fa r8784:f3d6ba8eb078 r7616:d6611d4fd004 r17957:225ed72957fa r17957:225ed72957fa r17957:225ed72957fa r17957:225ed72957fa r10135:de3b4e59727f r10135:de3b4e59727f r7616:d6611d4fd004 r7616:d6611d4fd004 r18417:d063e7cb7d51 r7616:d6611d4fd004 r17957:225ed72957fa r17957:225ed72957fa r7616:d6611d4fd004 r17957:225ed72957fa r17959:3333394afc38 r7616:d6611d4fd004 r7616:d6611d4fd004 r17957:225ed72957fa r17959:3333394afc38 r17956:7f6e5b2426ea r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r18217:d95f7ce78487 r18417:d063e7cb7d51 r7616:d6611d4fd004 r18217:d95f7ce78487 r18217:d95f7ce78487 r18217:d95f7ce78487 r18217:d95f7ce78487 r18417:d063e7cb7d51 r16360:0facacb31e2b r18217:d95f7ce78487 r18217:d95f7ce78487 r18217:d95f7ce78487 r17960:a60ba6bbac24 r17960:a60ba6bbac24 r17960:a60ba6bbac24 r27322:150e199e081f r27322:150e199e081f r27322:150e199e081f r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r21158:ca0e73acc573 r22499:52b2a22ff6c1 r22499:52b2a22ff6c1 r22499:52b2a22ff6c1 r16359:223fd7c7ddcd r16359:223fd7c7ddcd r16359:223fd7c7ddcd r26909:0ab6391d0a9e r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 r7616:d6611d4fd004 | /*
* This file is part of OpenTTD.
* OpenTTD 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, version 2.
* OpenTTD 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 OpenTTD. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @file newgrf_text.cpp
* Implementation of Action 04 "universal holder" structure and functions.
* This file implements a linked-lists of strings,
* holding everything that the newgrf action 04 will send over to OpenTTD.
* One of the biggest problems is that Dynamic lang Array uses ISO codes
* as way to identifying current user lang, while newgrf uses bit shift codes
* not related to ISO. So equivalence functionality had to be set.
*/
#include "stdafx.h"
#include "newgrf.h"
#include "strings_internal.h"
#include "newgrf_storage.h"
#include "newgrf_text.h"
#include "newgrf_cargo.h"
#include "string_func.h"
#include "timer/timer_game_calendar.h"
#include "debug.h"
#include "core/alloc_type.hpp"
#include "language.h"
#include <sstream>
#include "table/strings.h"
#include "table/control_codes.h"
#include "safeguards.h"
/**
* Explains the newgrf shift bit positioning.
* the grf base will not be used in order to find the string, but rather for
* jumping from standard langID scheme to the new one.
*/
enum GRFBaseLanguages {
GRFLB_AMERICAN = 0x01,
GRFLB_ENGLISH = 0x02,
GRFLB_GERMAN = 0x04,
GRFLB_FRENCH = 0x08,
GRFLB_SPANISH = 0x10,
GRFLB_GENERIC = 0x80,
};
enum GRFExtendedLanguages {
GRFLX_AMERICAN = 0x00,
GRFLX_ENGLISH = 0x01,
GRFLX_GERMAN = 0x02,
GRFLX_FRENCH = 0x03,
GRFLX_SPANISH = 0x04,
GRFLX_UNSPECIFIED = 0x7F,
};
/**
* Holder of the above structure.
* Putting both grfid and stringid together allows us to avoid duplicates,
* since it is NOT SUPPOSED to happen.
*/
struct GRFTextEntry {
GRFTextList textholder;
StringID def_string;
uint32_t grfid;
uint16_t stringid;
};
static std::vector<GRFTextEntry> _grf_text;
static byte _currentLangID = GRFLX_ENGLISH; ///< by default, english is used.
/**
* Get the mapping from the NewGRF supplied ID to OpenTTD's internal ID.
* @param newgrf_id The NewGRF ID to map.
* @param gender Whether to map genders or cases.
* @return The, to OpenTTD's internal ID, mapped index, or -1 if there is no mapping.
*/
int LanguageMap::GetMapping(int newgrf_id, bool gender) const
{
const std::vector<Mapping> &map = gender ? this->gender_map : this->case_map;
for (const Mapping &m : map) {
if (m.newgrf_id == newgrf_id) return m.openttd_id;
}
return -1;
}
/**
* Get the mapping from OpenTTD's internal ID to the NewGRF supplied ID.
* @param openttd_id The OpenTTD ID to map.
* @param gender Whether to map genders or cases.
* @return The, to the NewGRF supplied ID, mapped index, or -1 if there is no mapping.
*/
int LanguageMap::GetReverseMapping(int openttd_id, bool gender) const
{
const std::vector<Mapping> &map = gender ? this->gender_map : this->case_map;
for (const Mapping &m : map) {
if (m.openttd_id == openttd_id) return m.newgrf_id;
}
return -1;
}
/** Helper structure for mapping choice lists. */
struct UnmappedChoiceList {
/**
* Initialise the mapping.
* @param type The type of mapping.
* @param offset The offset to get the plural/gender from.
*/
UnmappedChoiceList(StringControlCode type, int offset) :
type(type), offset(offset)
{
}
StringControlCode type; ///< The type of choice list.
int offset; ///< The offset for the plural/gender form.
/** Mapping of NewGRF supplied ID to the different strings in the choice list. */
std::map<byte, std::stringstream> strings;
/**
* Flush this choice list into the destination string.
* @param lm The current language mapping.
* @param dest Target to write to.
*/
void Flush(const LanguageMap *lm, std::ostringstream &dest)
{
if (this->strings.find(0) == this->strings.end()) {
/* In case of a (broken) NewGRF without a default,
* assume an empty string. */
GrfMsg(1, "choice list misses default value");
this->strings[0] = std::stringstream();
}
std::ostreambuf_iterator<char> d(dest);
if (lm == nullptr) {
/* In case there is no mapping, just ignore everything but the default.
* A probable cause for this happening is when the language file has
* been removed by the user and as such no mapping could be made. */
dest << this->strings[0].rdbuf();
return;
}
Utf8Encode(d, this->type);
if (this->type == SCC_SWITCH_CASE) {
/*
* Format for case switch:
* <NUM CASES> <CASE1> <LEN1> <STRING1> <CASE2> <LEN2> <STRING2> <CASE3> <LEN3> <STRING3> <STRINGDEFAULT>
* Each LEN is printed using 2 bytes in big endian order.
*/
/* "<NUM CASES>" */
int count = 0;
for (uint8_t i = 0; i < _current_language->num_cases; i++) {
/* Count the ones we have a mapped string for. */
if (this->strings.find(lm->GetReverseMapping(i, false)) != this->strings.end()) count++;
}
*d++ = count;
for (uint8_t i = 0; i < _current_language->num_cases; i++) {
/* Resolve the string we're looking for. */
int idx = lm->GetReverseMapping(i, false);
if (this->strings.find(idx) == this->strings.end()) continue;
auto str = this->strings[idx].str();
/* "<CASEn>" */
*d++ = i + 1;
/* "<LENn>": Limit the length of the string to 0xFFFE to leave space for the '\0'. */
size_t len = std::min<size_t>(0xFFFE, str.size());
*d++ = GB(len + 1, 8, 8);
*d++ = GB(len + 1, 0, 8);
/* "<STRINGn>" */
dest.write(str.c_str(), len);
*d++ = '\0';
}
/* "<STRINGDEFAULT>" */
dest << this->strings[0].rdbuf() << '\0';
} else {
if (this->type == SCC_PLURAL_LIST) {
*d++ = lm->plural_form;
}
/*
* Format for choice list:
* <OFFSET> <NUM CHOICES> <LENs> <STRINGs>
*/
/* "<OFFSET>" */
*d++ = this->offset - 0x80;
/* "<NUM CHOICES>" */
int count = (this->type == SCC_GENDER_LIST ? _current_language->num_genders : LANGUAGE_MAX_PLURAL_FORMS);
*d++ = count;
/* "<LENs>" */
for (int i = 0; i < count; i++) {
int idx = (this->type == SCC_GENDER_LIST ? lm->GetReverseMapping(i, true) : i + 1);
const auto &str = this->strings[this->strings.find(idx) != this->strings.end() ? idx : 0].str();
size_t len = str.size() + 1;
if (len > 0xFF) GrfMsg(1, "choice list string is too long");
*d++ = GB(len, 0, 8);
}
/* "<STRINGs>" */
for (int i = 0; i < count; i++) {
int idx = (this->type == SCC_GENDER_LIST ? lm->GetReverseMapping(i, true) : i + 1);
const auto &str = this->strings[this->strings.find(idx) != this->strings.end() ? idx : 0].str();
/* Limit the length of the string we copy to 0xFE. The length is written above
* as a byte and we need room for the final '\0'. */
size_t len = std::min<size_t>(0xFE, str.size());
dest.write(str.c_str(), len);
*d++ = '\0';
}
}
}
};
/**
* Translate TTDPatch string codes into something OpenTTD can handle (better).
* @param grfid The (NewGRF) ID associated with this string
* @param language_id The (NewGRF) language ID associated with this string.
* @param allow_newlines Whether newlines are allowed in the string or not.
* @param str The string to translate.
* @param byte80 The control code to use as replacement for the 0x80-value.
* @return The translated string.
*/
std::string TranslateTTDPatchCodes(uint32_t grfid, uint8_t language_id, bool allow_newlines, const std::string &str, StringControlCode byte80)
{
/* Empty input string? Nothing to do here. */
if (str.empty()) return str;
std::string::const_iterator src = str.cbegin();
/* Is this an unicode string? */
bool unicode = false;
char32_t marker;
size_t len = Utf8Decode(&marker, &*src);
if (marker == NFO_UTF8_IDENTIFIER) {
unicode = true;
src += len;
}
/* Helper variable for a possible (string) mapping. */
UnmappedChoiceList *mapping = nullptr;
std::ostringstream dest;
std::ostreambuf_iterator<char> d(dest);
while (src != str.cend()) {
char32_t c;
if (unicode && Utf8EncodedCharLen(*src) != 0) {
c = Utf8Consume(src);
/* 'Magic' range of control codes. */
if (GB(c, 8, 8) == 0xE0) {
c = GB(c, 0, 8);
} else if (c >= 0x20) {
if (!IsValidChar(c, CS_ALPHANUMERAL)) c = '?';
Utf8Encode(d, c);
continue;
}
} else {
c = (byte)*src++;
}
if (c == '\0') break;
switch (c) {
case 0x01:
if (*src == '\0') goto string_end;
Utf8Encode(d, ' ');
src++;
break;
case 0x0A: break;
case 0x0D:
if (allow_newlines) {
*d++ = 0x0A;
} else {
GrfMsg(1, "Detected newline in string that does not allow one");
}
break;
case 0x0E: Utf8Encode(d, SCC_TINYFONT); break;
case 0x0F: Utf8Encode(d, SCC_BIGFONT); break;
case 0x1F:
if (src[0] == '\0' || src[1] == '\0') goto string_end;
Utf8Encode(d, ' ');
src += 2;
break;
case 0x7B:
case 0x7C:
case 0x7D:
case 0x7E:
case 0x7F: Utf8Encode(d, SCC_NEWGRF_PRINT_DWORD_SIGNED + c - 0x7B); break;
case 0x80: Utf8Encode(d, byte80); break;
case 0x81:
{
if (src[0] == '\0' || src[1] == '\0') goto string_end;
StringID string;
string = ((uint8_t)* src++);
string |= ((uint8_t)* src++) << 8;
Utf8Encode(d, SCC_NEWGRF_STRINL);
Utf8Encode(d, MapGRFStringID(grfid, string));
break;
}
case 0x82:
case 0x83:
case 0x84: Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_DATE_LONG + c - 0x82); break;
case 0x85: Utf8Encode(d, SCC_NEWGRF_DISCARD_WORD); break;
case 0x86: Utf8Encode(d, SCC_NEWGRF_ROTATE_TOP_4_WORDS); break;
case 0x87: Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_VOLUME_LONG); break;
case 0x88: Utf8Encode(d, SCC_BLUE); break;
case 0x89: Utf8Encode(d, SCC_SILVER); break;
case 0x8A: Utf8Encode(d, SCC_GOLD); break;
case 0x8B: Utf8Encode(d, SCC_RED); break;
case 0x8C: Utf8Encode(d, SCC_PURPLE); break;
case 0x8D: Utf8Encode(d, SCC_LTBROWN); break;
case 0x8E: Utf8Encode(d, SCC_ORANGE); break;
case 0x8F: Utf8Encode(d, SCC_GREEN); break;
case 0x90: Utf8Encode(d, SCC_YELLOW); break;
case 0x91: Utf8Encode(d, SCC_DKGREEN); break;
case 0x92: Utf8Encode(d, SCC_CREAM); break;
case 0x93: Utf8Encode(d, SCC_BROWN); break;
case 0x94: Utf8Encode(d, SCC_WHITE); break;
case 0x95: Utf8Encode(d, SCC_LTBLUE); break;
case 0x96: Utf8Encode(d, SCC_GRAY); break;
case 0x97: Utf8Encode(d, SCC_DKBLUE); break;
case 0x98: Utf8Encode(d, SCC_BLACK); break;
case 0x9A:
{
int code = *src++;
switch (code) {
case 0x00: goto string_end;
case 0x01: Utf8Encode(d, SCC_NEWGRF_PRINT_QWORD_CURRENCY); break;
/* 0x02: ignore next colour byte is not supported. It works on the final
* string and as such hooks into the string drawing routine. At that
* point many things already happened, such as splitting up of strings
* when drawn over multiple lines or right-to-left translations, which
* make the behaviour peculiar, e.g. only happening at specific width
* of windows. Or we need to add another pass over the string to just
* support this. As such it is not implemented in OpenTTD. */
case 0x03:
{
if (src[0] == '\0' || src[1] == '\0') goto string_end;
uint16_t tmp = ((uint8_t)* src++);
tmp |= ((uint8_t)* src++) << 8;
Utf8Encode(d, SCC_NEWGRF_PUSH_WORD);
Utf8Encode(d, tmp);
break;
}
case 0x06: Utf8Encode(d, SCC_NEWGRF_PRINT_BYTE_HEX); break;
case 0x07: Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_HEX); break;
case 0x08: Utf8Encode(d, SCC_NEWGRF_PRINT_DWORD_HEX); break;
/* 0x09, 0x0A are TTDPatch internal use only string codes. */
case 0x0B: Utf8Encode(d, SCC_NEWGRF_PRINT_QWORD_HEX); break;
case 0x0C: Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_STATION_NAME); break;
case 0x0D: Utf8Encode(d, SCC_NEWGRF_PRINT_WORD_WEIGHT_LONG); break;
case 0x0E:
case 0x0F:
{
if (str[0] == '\0') goto string_end;
const LanguageMap *lm = LanguageMap::GetLanguageMap(grfid, language_id);
int index = *src++;
int mapped = lm != nullptr ? lm->GetMapping(index, code == 0x0E) : -1;
if (mapped >= 0) {
Utf8Encode(d, code == 0x0E ? SCC_GENDER_INDEX : SCC_SET_CASE);
Utf8Encode(d, code == 0x0E ? mapped : mapped + 1);
}
break;
}
case 0x10:
case 0x11:
if (str[0] == '\0') goto string_end;
if (mapping == nullptr) {
if (code == 0x10) src++; // Skip the index
GrfMsg(1, "choice list {} marker found when not expected", code == 0x10 ? "next" : "default");
break;
} else {
int index = (code == 0x10 ? *src++ : 0);
if (mapping->strings.find(index) != mapping->strings.end()) {
GrfMsg(1, "duplicate choice list string, ignoring");
} else {
d = std::ostreambuf_iterator<char>(mapping->strings[index]);
}
}
break;
case 0x12:
if (mapping == nullptr) {
GrfMsg(1, "choice list end marker found when not expected");
} else {
/* Now we can start flushing everything and clean everything up. */
mapping->Flush(LanguageMap::GetLanguageMap(grfid, language_id), dest);
delete mapping;
mapping = nullptr;
d = std::ostreambuf_iterator<char>(dest);
}
break;
case 0x13:
case 0x14:
case 0x15:
if (src[0] == '\0') goto string_end;
if (mapping != nullptr) {
GrfMsg(1, "choice lists can't be stacked, it's going to get messy now...");
if (code != 0x14) src++;
} else {
static const StringControlCode mp[] = { SCC_GENDER_LIST, SCC_SWITCH_CASE, SCC_PLURAL_LIST };
mapping = new UnmappedChoiceList(mp[code - 0x13], code == 0x14 ? 0 : *src++);
}
break;
case 0x16:
case 0x17:
case 0x18:
case 0x19:
case 0x1A:
case 0x1B:
case 0x1C:
case 0x1D:
case 0x1E:
Utf8Encode(d, SCC_NEWGRF_PRINT_DWORD_DATE_LONG + code - 0x16);
break;
case 0x1F: Utf8Encode(d, SCC_PUSH_COLOUR); break;
case 0x20: Utf8Encode(d, SCC_POP_COLOUR); break;
case 0x21: Utf8Encode(d, SCC_NEWGRF_PRINT_DWORD_FORCE); break;
default:
GrfMsg(1, "missing handler for extended format code");
break;
}
break;
}
case 0x9E: Utf8Encode(d, 0x20AC); break; // Euro
case 0x9F: Utf8Encode(d, 0x0178); break; // Y with diaeresis
case 0xA0: Utf8Encode(d, SCC_UP_ARROW); break;
case 0xAA: Utf8Encode(d, SCC_DOWN_ARROW); break;
case 0xAC: Utf8Encode(d, SCC_CHECKMARK); break;
case 0xAD: Utf8Encode(d, SCC_CROSS); break;
case 0xAF: Utf8Encode(d, SCC_RIGHT_ARROW); break;
case 0xB4: Utf8Encode(d, SCC_TRAIN); break;
case 0xB5: Utf8Encode(d, SCC_LORRY); break;
case 0xB6: Utf8Encode(d, SCC_BUS); break;
case 0xB7: Utf8Encode(d, SCC_PLANE); break;
case 0xB8: Utf8Encode(d, SCC_SHIP); break;
case 0xB9: Utf8Encode(d, SCC_SUPERSCRIPT_M1); break;
case 0xBC: Utf8Encode(d, SCC_SMALL_UP_ARROW); break;
case 0xBD: Utf8Encode(d, SCC_SMALL_DOWN_ARROW); break;
default:
/* Validate any unhandled character */
if (!IsValidChar(c, CS_ALPHANUMERAL)) c = '?';
Utf8Encode(d, c);
break;
}
}
string_end:
if (mapping != nullptr) {
GrfMsg(1, "choice list was incomplete, the whole list is ignored");
delete mapping;
}
return dest.str();
}
/**
* Add a new text to a GRFText list.
* @param list The list where the text should be added to.
* @param langid The The language of the new text.
* @param text_to_add The text to add to the list.
*/
static void AddGRFTextToList(GRFTextList &list, byte langid, const std::string &text_to_add)
{
/* Loop through all languages and see if we can replace a string */
for (auto &text : list) {
if (text.langid == langid) {
text.text = text_to_add;
return;
}
}
/* If a string wasn't replaced, then we must append the new string */
list.push_back(GRFText{ langid, text_to_add });
}
/**
* Add a string to a GRFText list.
* @param list The list where the text should be added to.
* @param langid The language of the new text.
* @param grfid The grfid where this string is defined.
* @param allow_newlines Whether newlines are allowed in this string.
* @param text_to_add The text to add to the list.
* @note All text-codes will be translated.
*/
void AddGRFTextToList(GRFTextList &list, byte langid, uint32_t grfid, bool allow_newlines, const char *text_to_add)
{
AddGRFTextToList(list, langid, TranslateTTDPatchCodes(grfid, langid, allow_newlines, text_to_add));
}
/**
* Add a string to a GRFText list.
* @param list The list where the text should be added to.
* @param langid The language of the new text.
* @param grfid The grfid where this string is defined.
* @param allow_newlines Whether newlines are allowed in this string.
* @param text_to_add The text to add to the list.
* @note All text-codes will be translated.
*/
void AddGRFTextToList(GRFTextWrapper &list, byte langid, uint32_t grfid, bool allow_newlines, const char *text_to_add)
{
if (!list) list.reset(new GRFTextList());
AddGRFTextToList(*list, langid, grfid, allow_newlines, text_to_add);
}
/**
* Add a GRFText to a GRFText list. The text should not contain any text-codes.
* The text will be added as a 'default language'-text.
* @param list The list where the text should be added to.
* @param text_to_add The text to add to the list.
*/
void AddGRFTextToList(GRFTextWrapper &list, const std::string &text_to_add)
{
if (!list) list.reset(new GRFTextList());
AddGRFTextToList(*list, GRFLX_UNSPECIFIED, text_to_add);
}
/**
* Add the new read string into our structure.
*/
StringID AddGRFString(uint32_t grfid, uint16_t stringid, byte langid_to_add, bool new_scheme, bool allow_newlines, const char *text_to_add, StringID def_string)
{
/* When working with the old language scheme (grf_version is less than 7) and
* English or American is among the set bits, simply add it as English in
* the new scheme, i.e. as langid = 1.
* If English is set, it is pretty safe to assume the translations are not
* actually translated.
*/
if (!new_scheme) {
if (langid_to_add & (GRFLB_AMERICAN | GRFLB_ENGLISH)) {
langid_to_add = GRFLX_ENGLISH;
} else {
StringID ret = STR_EMPTY;
if (langid_to_add & GRFLB_GERMAN) ret = AddGRFString(grfid, stringid, GRFLX_GERMAN, true, allow_newlines, text_to_add, def_string);
if (langid_to_add & GRFLB_FRENCH) ret = AddGRFString(grfid, stringid, GRFLX_FRENCH, true, allow_newlines, text_to_add, def_string);
if (langid_to_add & GRFLB_SPANISH) ret = AddGRFString(grfid, stringid, GRFLX_SPANISH, true, allow_newlines, text_to_add, def_string);
return ret;
}
}
auto it = std::find_if(std::begin(_grf_text), std::end(_grf_text), [&grfid, &stringid](const GRFTextEntry &grf_text) { return grf_text.grfid == grfid && grf_text.stringid == stringid; });
if (it == std::end(_grf_text)) {
/* Too many strings allocated, return empty. */
if (_grf_text.size() == TAB_SIZE_NEWGRF) return STR_EMPTY;
/* We didn't find our stringid and grfid in the list, allocate a new id. */
it = _grf_text.emplace(std::end(_grf_text));
it->grfid = grfid;
it->stringid = stringid;
it->def_string = def_string;
}
uint id = static_cast<uint>(it - std::begin(_grf_text));
std::string newtext = TranslateTTDPatchCodes(grfid, langid_to_add, allow_newlines, text_to_add);
AddGRFTextToList(it->textholder, langid_to_add, newtext);
GrfMsg(3, "Added 0x{:X} grfid {:08X} string 0x{:X} lang 0x{:X} string '{}' ({:X})", id, grfid, stringid, langid_to_add, newtext, MakeStringID(TEXT_TAB_NEWGRF_START, id));
return MakeStringID(TEXT_TAB_NEWGRF_START, id);
}
/**
* Returns the index for this stringid associated with its grfID
*/
StringID GetGRFStringID(uint32_t grfid, StringID stringid)
{
auto it = std::find_if(std::begin(_grf_text), std::end(_grf_text), [&grfid, &stringid](const GRFTextEntry &grf_text) { return grf_text.grfid == grfid && grf_text.stringid == stringid; });
if (it != std::end(_grf_text)) {
uint id = static_cast<uint>(it - std::begin(_grf_text));
return MakeStringID(TEXT_TAB_NEWGRF_START, id);
}
return STR_UNDEFINED;
}
/**
* Get a C-string from a GRFText-list. If there is a translation for the
* current language it is returned, otherwise the default translation
* is returned. If there is neither a default nor a translation for the
* current language nullptr is returned.
* @param text_list The GRFTextList to get the string from.
*/
const char *GetGRFStringFromGRFText(const GRFTextList &text_list)
{
const char *default_text = nullptr;
/* Search the list of lang-strings of this stringid for current lang */
for (const auto &text : text_list) {
if (text.langid == _currentLangID) return text.text.c_str();
/* If the current string is English or American, set it as the
* fallback language if the specific language isn't available. */
if (text.langid == GRFLX_UNSPECIFIED || (default_text == nullptr && (text.langid == GRFLX_ENGLISH || text.langid == GRFLX_AMERICAN))) {
default_text = text.text.c_str();
}
}
return default_text;
}
/**
* Get a C-string from a GRFText-list. If there is a translation for the
* current language it is returned, otherwise the default translation
* is returned. If there is neither a default nor a translation for the
* current language nullptr is returned.
* @param text The GRFTextList to get the string from.
*/
const char *GetGRFStringFromGRFText(const GRFTextWrapper &text)
{
return text ? GetGRFStringFromGRFText(*text) : nullptr;
}
/**
* Get a C-string from a stringid set by a newgrf.
*/
const char *GetGRFStringPtr(uint32_t stringid)
{
assert(stringid < _grf_text.size());
assert(_grf_text[stringid].grfid != 0);
const char *str = GetGRFStringFromGRFText(_grf_text[stringid].textholder);
if (str != nullptr) return str;
/* Use the default string ID if the fallback string isn't available */
return GetStringPtr(_grf_text[stringid].def_string);
}
/**
* Equivalence Setter function between game and newgrf langID.
* This function will adjust _currentLangID as to what is the LangID
* of the current language set by the user.
* This function is called after the user changed language,
* from strings.cpp:ReadLanguagePack
* @param language_id iso code of current selection
*/
void SetCurrentGrfLangID(byte language_id)
{
_currentLangID = language_id;
}
bool CheckGrfLangID(byte lang_id, byte grf_version)
{
if (grf_version < 7) {
switch (_currentLangID) {
case GRFLX_GERMAN: return (lang_id & GRFLB_GERMAN) != 0;
case GRFLX_FRENCH: return (lang_id & GRFLB_FRENCH) != 0;
case GRFLX_SPANISH: return (lang_id & GRFLB_SPANISH) != 0;
default: return (lang_id & (GRFLB_ENGLISH | GRFLB_AMERICAN)) != 0;
}
}
return (lang_id == _currentLangID || lang_id == GRFLX_UNSPECIFIED);
}
/**
* House cleaning.
* Remove all strings.
*/
void CleanUpStrings()
{
_grf_text.clear();
}
struct TextRefStack {
std::array<byte, 0x30> stack;
byte position;
const GRFFile *grffile;
bool used;
TextRefStack() : position(0), grffile(nullptr), used(false) {}
uint8_t PopUnsignedByte() { assert(this->position < this->stack.size()); return this->stack[this->position++]; }
int8_t PopSignedByte() { return (int8_t)this->PopUnsignedByte(); }
uint16_t PopUnsignedWord()
{
uint16_t val = this->PopUnsignedByte();
return val | (this->PopUnsignedByte() << 8);
}
int16_t PopSignedWord() { return (int32_t)this->PopUnsignedWord(); }
uint32_t PopUnsignedDWord()
{
uint32_t val = this->PopUnsignedWord();
return val | (this->PopUnsignedWord() << 16);
}
int32_t PopSignedDWord() { return (int32_t)this->PopUnsignedDWord(); }
uint64_t PopUnsignedQWord()
{
uint64_t val = this->PopUnsignedDWord();
return val | (((uint64_t)this->PopUnsignedDWord()) << 32);
}
int64_t PopSignedQWord() { return (int64_t)this->PopUnsignedQWord(); }
/** Rotate the top four words down: W1, W2, W3, W4 -> W4, W1, W2, W3 */
void RotateTop4Words()
{
byte tmp[2];
for (int i = 0; i < 2; i++) tmp[i] = this->stack[this->position + i + 6];
for (int i = 5; i >= 0; i--) this->stack[this->position + i + 2] = this->stack[this->position + i];
for (int i = 0; i < 2; i++) this->stack[this->position + i] = tmp[i];
}
void PushWord(uint16_t word)
{
if (this->position >= 2) {
this->position -= 2;
} else {
// Rotate right 2 positions
std::rotate(this->stack.rbegin(), this->stack.rbegin() + 2, this->stack.rend());
}
this->stack[this->position] = GB(word, 0, 8);
this->stack[this->position + 1] = GB(word, 8, 8);
}
void ResetStack(const GRFFile *grffile)
{
assert(grffile != nullptr);
this->position = 0;
this->grffile = grffile;
this->used = true;
}
};
/** The stack that is used for TTDP compatible string code parsing */
static TextRefStack _newgrf_textrefstack;
/**
* Check whether the NewGRF text stack is in use.
* @return True iff the NewGRF text stack is used.
*/
bool UsingNewGRFTextStack()
{
return _newgrf_textrefstack.used;
}
/**
* Create a backup of the current NewGRF text stack.
* @return A copy of the current text stack.
*/
struct TextRefStack *CreateTextRefStackBackup()
{
return new TextRefStack(_newgrf_textrefstack);
}
/**
* Restore a copy of the text stack to the used stack.
* @param backup The copy to restore.
*/
void RestoreTextRefStackBackup(struct TextRefStack *backup)
{
_newgrf_textrefstack = *backup;
delete backup;
}
/**
* Start using the TTDP compatible string code parsing.
*
* On start a number of values is copied on the #TextRefStack.
* You can then use #GetString() and the normal string drawing functions,
* and they will use the #TextRefStack for NewGRF string codes.
*
* However, when you want to draw a string multiple times using the same stack,
* you have to call #RewindTextRefStack() between draws.
*
* After you are done with drawing, you must disable usage of the #TextRefStack
* by calling #StopTextRefStackUsage(), so NewGRF string codes operate on the
* normal string parameters again.
*
* @param grffile the NewGRF providing the stack data
* @param numEntries number of entries to copy from the registers
* @param values values to copy onto the stack; if nullptr the temporary NewGRF registers will be used instead
*/
void StartTextRefStackUsage(const GRFFile *grffile, byte numEntries, const uint32_t *values)
{
extern TemporaryStorageArray<int32_t, 0x110> _temp_store;
_newgrf_textrefstack.ResetStack(grffile);
auto stack_it = _newgrf_textrefstack.stack.begin();
for (uint i = 0; i < numEntries; i++) {
uint32_t value = values != nullptr ? values[i] : _temp_store.GetValue(0x100 + i);
for (uint j = 0; j < 32; j += 8) {
*stack_it = GB(value, j, 8);
stack_it++;
}
}
}
/** Stop using the TTDP compatible string code parsing */
void StopTextRefStackUsage()
{
_newgrf_textrefstack.used = false;
}
/**
* FormatString for NewGRF specific "magic" string control codes
* @param scc the string control code that has been read
* @param str the string that we need to write
* @param parameters the OpenTTD string formatting parameters
* @param modify_parameters When true, modify the OpenTTD string formatting parameters.
* @return the string control code to "execute" now
*/
uint RemapNewGRFStringControlCode(uint scc, const char **str, StringParameters ¶meters, bool modify_parameters)
{
switch (scc) {
default: break;
/* These control codes take one string parameter, check there are at least that many available. */
case SCC_NEWGRF_PRINT_DWORD_SIGNED:
case SCC_NEWGRF_PRINT_WORD_SIGNED:
case SCC_NEWGRF_PRINT_BYTE_SIGNED:
case SCC_NEWGRF_PRINT_WORD_UNSIGNED:
case SCC_NEWGRF_PRINT_BYTE_HEX:
case SCC_NEWGRF_PRINT_WORD_HEX:
case SCC_NEWGRF_PRINT_DWORD_HEX:
case SCC_NEWGRF_PRINT_QWORD_HEX:
case SCC_NEWGRF_PRINT_DWORD_CURRENCY:
case SCC_NEWGRF_PRINT_QWORD_CURRENCY:
case SCC_NEWGRF_PRINT_WORD_STRING_ID:
case SCC_NEWGRF_PRINT_WORD_DATE_LONG:
case SCC_NEWGRF_PRINT_DWORD_DATE_LONG:
case SCC_NEWGRF_PRINT_WORD_DATE_SHORT:
case SCC_NEWGRF_PRINT_DWORD_DATE_SHORT:
case SCC_NEWGRF_PRINT_WORD_SPEED:
case SCC_NEWGRF_PRINT_WORD_VOLUME_LONG:
case SCC_NEWGRF_PRINT_WORD_VOLUME_SHORT:
case SCC_NEWGRF_PRINT_WORD_WEIGHT_LONG:
case SCC_NEWGRF_PRINT_WORD_WEIGHT_SHORT:
case SCC_NEWGRF_PRINT_WORD_POWER:
case SCC_NEWGRF_PRINT_DWORD_FORCE:
case SCC_NEWGRF_PRINT_WORD_STATION_NAME:
case SCC_NEWGRF_PRINT_WORD_CARGO_NAME:
if (parameters.GetDataLeft() < 1) {
Debug(misc, 0, "Too many NewGRF string parameters.");
return 0;
}
break;
/* These string code take two string parameters, check there are at least that many available. */
case SCC_NEWGRF_PRINT_WORD_CARGO_LONG:
case SCC_NEWGRF_PRINT_WORD_CARGO_SHORT:
case SCC_NEWGRF_PRINT_WORD_CARGO_TINY:
if (parameters.GetDataLeft() < 2) {
Debug(misc, 0, "Too many NewGRF string parameters.");
return 0;
}
break;
}
if (_newgrf_textrefstack.used && modify_parameters) {
/* There is data on the NewGRF text stack, and we want to move them to OpenTTD's string stack.
* After this call, a new call is made with `modify_parameters` set to false when the string is finally formatted. */
switch (scc) {
default: NOT_REACHED();
case SCC_NEWGRF_PRINT_BYTE_SIGNED: parameters.SetParam(0, _newgrf_textrefstack.PopSignedByte()); break;
case SCC_NEWGRF_PRINT_QWORD_CURRENCY: parameters.SetParam(0, _newgrf_textrefstack.PopSignedQWord()); break;
case SCC_NEWGRF_PRINT_DWORD_CURRENCY:
case SCC_NEWGRF_PRINT_DWORD_SIGNED: parameters.SetParam(0, _newgrf_textrefstack.PopSignedDWord()); break;
case SCC_NEWGRF_PRINT_BYTE_HEX: parameters.SetParam(0, _newgrf_textrefstack.PopUnsignedByte()); break;
case SCC_NEWGRF_PRINT_QWORD_HEX: parameters.SetParam(0, _newgrf_textrefstack.PopUnsignedQWord()); break;
case SCC_NEWGRF_PRINT_WORD_SPEED:
case SCC_NEWGRF_PRINT_WORD_VOLUME_LONG:
case SCC_NEWGRF_PRINT_WORD_VOLUME_SHORT:
case SCC_NEWGRF_PRINT_WORD_SIGNED: parameters.SetParam(0, _newgrf_textrefstack.PopSignedWord()); break;
case SCC_NEWGRF_PRINT_WORD_HEX:
case SCC_NEWGRF_PRINT_WORD_WEIGHT_LONG:
case SCC_NEWGRF_PRINT_WORD_WEIGHT_SHORT:
case SCC_NEWGRF_PRINT_WORD_POWER:
case SCC_NEWGRF_PRINT_WORD_STATION_NAME:
case SCC_NEWGRF_PRINT_WORD_UNSIGNED: parameters.SetParam(0, _newgrf_textrefstack.PopUnsignedWord()); break;
case SCC_NEWGRF_PRINT_DWORD_FORCE:
case SCC_NEWGRF_PRINT_DWORD_DATE_LONG:
case SCC_NEWGRF_PRINT_DWORD_DATE_SHORT:
case SCC_NEWGRF_PRINT_DWORD_HEX: parameters.SetParam(0, _newgrf_textrefstack.PopUnsignedDWord()); break;
/* Dates from NewGRFs have 1920-01-01 as their zero point, convert it to OpenTTD's epoch. */
case SCC_NEWGRF_PRINT_WORD_DATE_LONG:
case SCC_NEWGRF_PRINT_WORD_DATE_SHORT: parameters.SetParam(0, _newgrf_textrefstack.PopUnsignedWord() + CalendarTime::DAYS_TILL_ORIGINAL_BASE_YEAR); break;
case SCC_NEWGRF_DISCARD_WORD: _newgrf_textrefstack.PopUnsignedWord(); break;
case SCC_NEWGRF_ROTATE_TOP_4_WORDS: _newgrf_textrefstack.RotateTop4Words(); break;
case SCC_NEWGRF_PUSH_WORD: _newgrf_textrefstack.PushWord(Utf8Consume(str)); break;
case SCC_NEWGRF_PRINT_WORD_CARGO_LONG:
case SCC_NEWGRF_PRINT_WORD_CARGO_SHORT:
case SCC_NEWGRF_PRINT_WORD_CARGO_TINY:
parameters.SetParam(0, GetCargoTranslation(_newgrf_textrefstack.PopUnsignedWord(), _newgrf_textrefstack.grffile));
parameters.SetParam(1, _newgrf_textrefstack.PopUnsignedWord());
break;
case SCC_NEWGRF_PRINT_WORD_STRING_ID:
parameters.SetParam(0, MapGRFStringID(_newgrf_textrefstack.grffile->grfid, _newgrf_textrefstack.PopUnsignedWord()));
break;
case SCC_NEWGRF_PRINT_WORD_CARGO_NAME: {
CargoID cargo = GetCargoTranslation(_newgrf_textrefstack.PopUnsignedWord(), _newgrf_textrefstack.grffile);
parameters.SetParam(0, cargo < NUM_CARGO ? 1ULL << cargo : 0);
break;
}
}
} else {
/* Consume additional parameter characters that follow the NewGRF string code. */
switch (scc) {
default: break;
case SCC_NEWGRF_PUSH_WORD:
Utf8Consume(str);
break;
}
}
/* Emit OpenTTD's internal string code for the different NewGRF variants. */
switch (scc) {
default: NOT_REACHED();
case SCC_NEWGRF_PRINT_DWORD_SIGNED:
case SCC_NEWGRF_PRINT_WORD_SIGNED:
case SCC_NEWGRF_PRINT_BYTE_SIGNED:
case SCC_NEWGRF_PRINT_WORD_UNSIGNED:
return SCC_COMMA;
case SCC_NEWGRF_PRINT_BYTE_HEX:
case SCC_NEWGRF_PRINT_WORD_HEX:
case SCC_NEWGRF_PRINT_DWORD_HEX:
case SCC_NEWGRF_PRINT_QWORD_HEX:
return SCC_HEX;
case SCC_NEWGRF_PRINT_DWORD_CURRENCY:
case SCC_NEWGRF_PRINT_QWORD_CURRENCY:
return SCC_CURRENCY_LONG;
case SCC_NEWGRF_PRINT_WORD_STRING_ID:
return SCC_NEWGRF_PRINT_WORD_STRING_ID;
case SCC_NEWGRF_PRINT_WORD_DATE_LONG:
case SCC_NEWGRF_PRINT_DWORD_DATE_LONG:
return SCC_DATE_LONG;
case SCC_NEWGRF_PRINT_WORD_DATE_SHORT:
case SCC_NEWGRF_PRINT_DWORD_DATE_SHORT:
return SCC_DATE_SHORT;
case SCC_NEWGRF_PRINT_WORD_SPEED:
return SCC_VELOCITY;
case SCC_NEWGRF_PRINT_WORD_VOLUME_LONG:
return SCC_VOLUME_LONG;
case SCC_NEWGRF_PRINT_WORD_VOLUME_SHORT:
return SCC_VOLUME_SHORT;
case SCC_NEWGRF_PRINT_WORD_WEIGHT_LONG:
return SCC_WEIGHT_LONG;
case SCC_NEWGRF_PRINT_WORD_WEIGHT_SHORT:
return SCC_WEIGHT_SHORT;
case SCC_NEWGRF_PRINT_WORD_POWER:
return SCC_POWER;
case SCC_NEWGRF_PRINT_DWORD_FORCE:
return SCC_FORCE;
case SCC_NEWGRF_PRINT_WORD_CARGO_LONG:
return SCC_CARGO_LONG;
case SCC_NEWGRF_PRINT_WORD_CARGO_SHORT:
return SCC_CARGO_SHORT;
case SCC_NEWGRF_PRINT_WORD_CARGO_TINY:
return SCC_CARGO_TINY;
case SCC_NEWGRF_PRINT_WORD_CARGO_NAME:
return SCC_CARGO_LIST;
case SCC_NEWGRF_PRINT_WORD_STATION_NAME:
return SCC_STATION_NAME;
/* These NewGRF string codes modify the NewGRF stack or otherwise do not map to OpenTTD string codes. */
case SCC_NEWGRF_DISCARD_WORD:
case SCC_NEWGRF_ROTATE_TOP_4_WORDS:
case SCC_NEWGRF_PUSH_WORD:
return 0;
}
}
|