Files @ r5469:9c38e5ce3f50
Branch filter:

Location: cpp/openttd-patchpack/source/player_gui.c - annotation

rubidium
(svn r7751) -Codechange: move network_* to a new network map. Furthermore move the low level network functions to network/core, so they can be reused by the masterserver and website-serverlist-updater.
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
r2186:5ee653b1b5e1
r2186:5ee653b1b5e1
r0:d63b455452f6
r1891:c5c5466afa35
r1363:a54abce83b4b
r507:b1b0a0a3c313
r2163:ae001e2aa5b0
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r186:d94944c1735d
r5469:9c38e5ce3f50
r2159:2c706fe6b0a7
r2676:cfc81c07cc6a
r4261:8c2d0c75e37a
r4742:86db0d90bcdc
r5469:9c38e5ce3f50
r5469:9c38e5ce3f50
r0:d63b455452f6
r2475:8ceca0de932b
r0:d63b455452f6
r2436:963efe8b84cc
r0:d63b455452f6
r0:d63b455452f6
r2436:963efe8b84cc
r2436:963efe8b84cc
r0:d63b455452f6
r0:d63b455452f6
r186:d94944c1735d
r0:d63b455452f6
r0:d63b455452f6
r2952:e97f823d2dbe
r0:d63b455452f6
r0:d63b455452f6
r200:f379a875a5a7
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4329:7372b441f7d8
r4293:cbb984a32af5
r4314:b44be03a57b9
r0:d63b455452f6
r2952:e97f823d2dbe
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r200:f379a875a5a7
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r0:d63b455452f6
r200:f379a875a5a7
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r186:d94944c1735d
r186:d94944c1735d
r534:46e9db8de483
r186:d94944c1735d
r4077:259c4c4aacad
r0:d63b455452f6
r4077:259c4c4aacad
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4938:ccfdb2e58d04
r4938:ccfdb2e58d04
r4937:3124578cbfd9
r4937:3124578cbfd9
r176:7d9100f64c27
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4938:ccfdb2e58d04
r4938:ccfdb2e58d04
r176:7d9100f64c27
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4938:ccfdb2e58d04
r176:7d9100f64c27
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r4937:3124578cbfd9
r176:7d9100f64c27
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2952:e97f823d2dbe
r0:d63b455452f6
r2475:8ceca0de932b
r4171:bf306290d87e
r200:f379a875a5a7
r4805:be84469ea20d
r4805:be84469ea20d
r4805:be84469ea20d
r4805:be84469ea20d
r0:d63b455452f6
r534:46e9db8de483
r534:46e9db8de483
r2475:8ceca0de932b
r534:46e9db8de483
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4634:c040de534aac
r0:d63b455452f6
r0:d63b455452f6
r888:bd1886cf93e6
r2475:8ceca0de932b
r0:d63b455452f6
r1003:75cd38f8b8e9
r0:d63b455452f6
r0:d63b455452f6
r888:bd1886cf93e6
r1767:1d580c3ce8dc
r0:d63b455452f6
r0:d63b455452f6
r888:bd1886cf93e6
r1767:1d580c3ce8dc
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r5070:6da414a78d0e
r0:d63b455452f6
r2064:5f15fe050577
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r5070:6da414a78d0e
r0:d63b455452f6
r2064:5f15fe050577
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r5070:6da414a78d0e
r0:d63b455452f6
r2064:5f15fe050577
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r5070:6da414a78d0e
r0:d63b455452f6
r2064:5f15fe050577
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2475:8ceca0de932b
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r5005:5aaa15bfda17
r5005:5aaa15bfda17
r5005:5aaa15bfda17
r5005:5aaa15bfda17
r5005:5aaa15bfda17
r5005:5aaa15bfda17
r5005:5aaa15bfda17
r2475:8ceca0de932b
r2549:1549d4b2ba28
r2549:1549d4b2ba28
r0:d63b455452f6
r0:d63b455452f6
r5005:5aaa15bfda17
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2475:8ceca0de932b
r0:d63b455452f6
r888:bd1886cf93e6
r0:d63b455452f6
r0:d63b455452f6
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4604:56d029090928
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4604:56d029090928
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r0:d63b455452f6
r2952:e97f823d2dbe
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4719:e1d2222eb9fb
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4709:fa407dc35407
r4709:fa407dc35407
r4709:fa407dc35407
r4709:fa407dc35407
r4709:fa407dc35407
r4709:fa407dc35407
r4709:fa407dc35407
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r0:d63b455452f6
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r200:f379a875a5a7
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4742:86db0d90bcdc
r0:d63b455452f6
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r0:d63b455452f6
r4603:3b159d0db197
r0:d63b455452f6
r200:f379a875a5a7
r4603:3b159d0db197
r4634:c040de534aac
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4719:e1d2222eb9fb
r4634:c040de534aac
r4603:3b159d0db197
r4719:e1d2222eb9fb
r0:d63b455452f6
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r0:d63b455452f6
r0:d63b455452f6
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4634:c040de534aac
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4634:c040de534aac
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r0:d63b455452f6
r4603:3b159d0db197
r0:d63b455452f6
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4634:c040de534aac
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r4603:3b159d0db197
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4742:86db0d90bcdc
r4603:3b159d0db197
r4603:3b159d0db197
r4647:ffb355e702bf
r4647:ffb355e702bf
r4647:ffb355e702bf
r4647:ffb355e702bf
r4647:ffb355e702bf
r4603:3b159d0db197
r4603:3b159d0db197
r4647:ffb355e702bf
r4647:ffb355e702bf
r4647:ffb355e702bf
r4647:ffb355e702bf
r4647:ffb355e702bf
r4603:3b159d0db197
r0:d63b455452f6
r0:d63b455452f6
r4742:86db0d90bcdc
r5070:6da414a78d0e
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4742:86db0d90bcdc
r4603:3b159d0db197
r5070:6da414a78d0e
r4603:3b159d0db197
r0:d63b455452f6
r4603:3b159d0db197
r4603:3b159d0db197
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2952:e97f823d2dbe
r0:d63b455452f6
r0:d63b455452f6
r4744:de43d6f157c1
r0:d63b455452f6
r1962:cc4c06e3f6b5
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4634:c040de534aac
r0:d63b455452f6
r200:f379a875a5a7
r1767:1d580c3ce8dc
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4719:e1d2222eb9fb
r4719:e1d2222eb9fb
r4719:e1d2222eb9fb
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2642:9b5b716920be
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4344:bff007ae1fd1
r4344:bff007ae1fd1
r4938:ccfdb2e58d04
r4344:bff007ae1fd1
r4344:bff007ae1fd1
r4344:bff007ae1fd1
r4344:bff007ae1fd1
r4344:bff007ae1fd1
r176:7d9100f64c27
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r5070:6da414a78d0e
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4746:de1039e1cafa
r5273:6960a710403e
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r5273:6960a710403e
r0:d63b455452f6
r4746:de1039e1cafa
r4344:bff007ae1fd1
r4344:bff007ae1fd1
r4938:ccfdb2e58d04
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4808:0ef4478c5786
r4808:0ef4478c5786
r4344:bff007ae1fd1
r4344:bff007ae1fd1
r4746:de1039e1cafa
r176:7d9100f64c27
r0:d63b455452f6
r0:d63b455452f6
r2436:963efe8b84cc
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4171:bf306290d87e
r2631:d39f0cdd1c56
r2631:d39f0cdd1c56
r2631:d39f0cdd1c56
r2631:d39f0cdd1c56
r200:f379a875a5a7
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2631:d39f0cdd1c56
r2676:cfc81c07cc6a
r2631:d39f0cdd1c56
r2631:d39f0cdd1c56
r2631:d39f0cdd1c56
r2631:d39f0cdd1c56
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r2246:fd364c018500
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r2246:fd364c018500
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r2246:fd364c018500
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r2246:fd364c018500
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2436:963efe8b84cc
r0:d63b455452f6
r200:f379a875a5a7
r200:f379a875a5a7
r200:f379a875a5a7
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2436:963efe8b84cc
r0:d63b455452f6
r4171:bf306290d87e
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2549:1549d4b2ba28
r2549:1549d4b2ba28
r0:d63b455452f6
r0:d63b455452f6
r2549:1549d4b2ba28
r2549:1549d4b2ba28
r2549:1549d4b2ba28
r0:d63b455452f6
r2549:1549d4b2ba28
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2549:1549d4b2ba28
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2549:1549d4b2ba28
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4808:0ef4478c5786
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r867:c270355a1b34
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4848:23347d73ba8f
r4746:de1039e1cafa
r4848:23347d73ba8f
r4746:de1039e1cafa
r4848:23347d73ba8f
r1811:64bc1d2d023c
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4848:23347d73ba8f
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r930:5f452407167a
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r773:522f1f87e9c6
r200:f379a875a5a7
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r5431:2abf239227ce
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r5431:2abf239227ce
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4808:0ef4478c5786
r4808:0ef4478c5786
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4808:0ef4478c5786
r4808:0ef4478c5786
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4830:b1b68e7108e7
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r5431:2abf239227ce
r4746:de1039e1cafa
r4746:de1039e1cafa
r4830:b1b68e7108e7
r200:f379a875a5a7
r917:d74bc94efd2e
r917:d74bc94efd2e
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r917:d74bc94efd2e
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4808:0ef4478c5786
r4808:0ef4478c5786
r4808:0ef4478c5786
r4808:0ef4478c5786
r4808:0ef4478c5786
r4808:0ef4478c5786
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r0:d63b455452f6
r4746:de1039e1cafa
r4746:de1039e1cafa
r773:522f1f87e9c6
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4830:b1b68e7108e7
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4746:de1039e1cafa
r4830:b1b68e7108e7
r4746:de1039e1cafa
r773:522f1f87e9c6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4746:de1039e1cafa
r5070:6da414a78d0e
r2549:1549d4b2ba28
r0:d63b455452f6
r4746:de1039e1cafa
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2475:8ceca0de932b
r0:d63b455452f6
r4171:bf306290d87e
r2639:e298192a7c03
r5005:5aaa15bfda17
r5005:5aaa15bfda17
r4746:de1039e1cafa
r2639:e298192a7c03
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r2952:e97f823d2dbe
r0:d63b455452f6
r1962:cc4c06e3f6b5
r534:46e9db8de483
r534:46e9db8de483
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r534:46e9db8de483
r534:46e9db8de483
r534:46e9db8de483
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r4634:c040de534aac
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r3326:d3b33ffce47d
r3326:d3b33ffce47d
r4938:ccfdb2e58d04
r3326:d3b33ffce47d
r3326:d3b33ffce47d
r176:7d9100f64c27
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r5070:6da414a78d0e
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r0:d63b455452f6
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r998:60ce1309b99c
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r4998:697f4b449ed3
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r4998:697f4b449ed3
r4998:697f4b449ed3
r4998:697f4b449ed3
r983:9c58202c20d1
r983:9c58202c20d1
r998:60ce1309b99c
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r1017:81e26141fac3
r1839:b3fe06db737e
r1016:838b27ea72fe
r1875:9ffff2a5d1a2
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r998:60ce1309b99c
r998:60ce1309b99c
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r4285:8d597bba823e
r998:60ce1309b99c
r998:60ce1309b99c
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r998:60ce1309b99c
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r1019:90da3857ff29
r983:9c58202c20d1
r1839:b3fe06db737e
r983:9c58202c20d1
r983:9c58202c20d1
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r983:9c58202c20d1
r1839:b3fe06db737e
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r1875:9ffff2a5d1a2
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r1875:9ffff2a5d1a2
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r998:60ce1309b99c
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r2639:e298192a7c03
r983:9c58202c20d1
r1875:9ffff2a5d1a2
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r998:60ce1309b99c
r998:60ce1309b99c
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r1839:b3fe06db737e
r983:9c58202c20d1
r1839:b3fe06db737e
r1875:9ffff2a5d1a2
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r983:9c58202c20d1
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r4848:23347d73ba8f
r1962:cc4c06e3f6b5
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r998:60ce1309b99c
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r1962:cc4c06e3f6b5
r1077:6d67672487e8
r1077:6d67672487e8
r1077:6d67672487e8
r1109:6c0cc4a443a2
r983:9c58202c20d1
/* $Id$ */

#include "stdafx.h"
#include "openttd.h"
#include "table/sprites.h"
#include "table/strings.h"
#include "functions.h"
#include "window.h"
#include "gui.h"
#include "viewport.h"
#include "gfx.h"
#include "player.h"
#include "command.h"
#include "vehicle.h"
#include "economy.h"
#include "network/network.h"
#include "variables.h"
#include "train.h"
#include "date.h"
#include "newgrf.h"
#include "network/network_data.h"
#include "network/network_client.h"

static void DoShowPlayerFinances(PlayerID player, bool show_small, bool show_stickied);

static void DrawPlayerEconomyStats(const Player *p, byte mode)
{
	int x,y,i,j,year;
	const int64 (*tbl)[13];
	int64 sum, cost;
	StringID str;

	if (!(mode & 1)) { // normal sized economics window (mode&1) is minimized status
		/* draw categories */
		DrawStringCenterUnderline(61, 15, STR_700F_EXPENDITURE_INCOME, 0);
		for (i = 0; i != 13; i++)
			DrawString(2, 27 + i*10, STR_7011_CONSTRUCTION + i, 0);
		DrawStringRightAligned(111, 27 + 10*13 + 2, STR_7020_TOTAL, 0);

		/* draw the price columns */
		year = _cur_year - 2;
		j = 3;
		x = 215;
		tbl = p->yearly_expenses + 2;
		do {
			if (year >= p->inaugurated_year) {
				SetDParam(0, year);
				DrawStringRightAlignedUnderline(x, 15, STR_7010, 0);
				sum = 0;
				for (i = 0; i != 13; i++) {
					/* draw one row in the price column */
					cost = (*tbl)[i];
					if (cost != 0) {
						sum += cost;

						str = STR_701E;
						if (cost < 0) { cost = -cost; str++; }
						SetDParam64(0, cost);
						DrawStringRightAligned(x, 27+i*10, str, 0);
					}
				}

				str = STR_701E;
				if (sum < 0) { sum = -sum; str++; }
				SetDParam64(0, sum);
				DrawStringRightAligned(x, 27 + 13*10 + 2, str, 0);

				GfxFillRect(x - 75, 27 + 10*13, x, 27 + 10*13, 215);
				x += 95;
			}
			year++;
			tbl--;
		} while (--j != 0);

		y = 171;

		// draw max loan aligned to loan below (y += 10)
		SetDParam64(0, (uint64)_economy.max_loan);
		DrawString(202, y+10, STR_MAX_LOAN, 0);
	} else {
		y = 15;
	}

	DrawString(2, y, STR_7026_BANK_BALANCE, 0);
	SetDParam64(0, p->money64);
	DrawStringRightAligned(182, y, STR_7028, 0);

	y += 10;

	DrawString(2, y, STR_7027_LOAN, 0);
	SetDParam64(0, p->current_loan);
	DrawStringRightAligned(182, y, STR_7028, 0);

	y += 12;

	GfxFillRect(182 - 75, y-2, 182, y-2, 215);

	SetDParam64(0, p->money64 - p->current_loan);
	DrawStringRightAligned(182, y, STR_7028, 0);
}

static const Widget _player_finances_widgets[] = {
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,               STR_018B_CLOSE_WINDOW},
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   379,     0,    13, STR_700E_FINANCES,      STR_018C_WINDOW_TITLE_DRAG_THIS},
{     WWT_IMGBTN,   RESIZE_NONE,    14,   380,   394,     0,    13, SPR_LARGE_SMALL_WINDOW, STR_7075_TOGGLE_LARGE_SMALL_WINDOW},
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   395,   406,     0,    13, 0x0,                    STR_STICKY_BUTTON},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   406,    14,   169, 0x0,                    STR_NULL},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   406,   170,   203, 0x0,                    STR_NULL},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,   202,   204,   215, STR_7029_BORROW,        STR_7035_INCREASE_SIZE_OF_LOAN},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   203,   406,   204,   215, STR_702A_REPAY,         STR_7036_REPAY_PART_OF_LOAN},
{   WIDGETS_END},
};

static const Widget _other_player_finances_widgets[] = {
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,               STR_018B_CLOSE_WINDOW},
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   379,     0,    13, STR_700E_FINANCES,      STR_018C_WINDOW_TITLE_DRAG_THIS},
{     WWT_IMGBTN,   RESIZE_NONE,    14,   380,   394,     0,    13, SPR_LARGE_SMALL_WINDOW, STR_7075_TOGGLE_LARGE_SMALL_WINDOW},
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   395,   406,     0,    13, 0x0,                    STR_STICKY_BUTTON},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   406,    14,   169, 0x0,                    STR_NULL},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   406,   170,   203, 0x0,                    STR_NULL},
{   WIDGETS_END},
};

static const Widget _other_player_finances_small_widgets[] = {
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,               STR_018B_CLOSE_WINDOW},
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   253,     0,    13, STR_700E_FINANCES,      STR_018C_WINDOW_TITLE_DRAG_THIS},
{     WWT_IMGBTN,   RESIZE_NONE,    14,   254,   267,     0,    13, SPR_LARGE_SMALL_WINDOW, STR_7075_TOGGLE_LARGE_SMALL_WINDOW},
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   268,   279,     0,    13, 0x0,                    STR_STICKY_BUTTON},
{      WWT_EMPTY,   RESIZE_NONE,     0,     0,     0,     0,     0, 0x0,                    STR_NULL},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   279,    14,    47, 0x0,                    STR_NULL},
{   WIDGETS_END},
};

static const Widget _player_finances_small_widgets[] = {
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,               STR_018B_CLOSE_WINDOW},
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   253,     0,    13, STR_700E_FINANCES,      STR_018C_WINDOW_TITLE_DRAG_THIS},
{     WWT_IMGBTN,   RESIZE_NONE,    14,   254,   267,     0,    13, SPR_LARGE_SMALL_WINDOW, STR_7075_TOGGLE_LARGE_SMALL_WINDOW},
{  WWT_STICKYBOX,   RESIZE_NONE,    14,   268,   279,     0,    13, 0x0,                    STR_STICKY_BUTTON},
{      WWT_EMPTY,   RESIZE_NONE,     0,     0,     0,     0,     0, 0x0,                    STR_NULL},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   279,    14,    47, STR_NULL,               STR_NULL},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,   139,    48,    59, STR_7029_BORROW,        STR_7035_INCREASE_SIZE_OF_LOAN},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   140,   279,    48,    59, STR_702A_REPAY,         STR_7036_REPAY_PART_OF_LOAN},
{   WIDGETS_END},
};


static void PlayerFinancesWndProc(Window *w, WindowEvent *e)
{
	switch (e->event) {
	case WE_PAINT: {
		PlayerID player = w->window_number;
		const Player *p = GetPlayer(player);

		if (player == _local_player) {
			/* borrow/repay buttons only exist for local player */
			SetWindowWidgetDisabledState(w, 7, p->current_loan == 0);
		}

		SetDParam(0, p->name_1);
		SetDParam(1, p->name_2);
		SetDParam(2, GetPlayerNameString(player, 3));
		SetDParam(4, 10000);
		DrawWindowWidgets(w);

		DrawPlayerEconomyStats(p, (byte)WP(w,def_d).data_1);
	} break;

	case WE_CLICK:
		switch (e->we.click.widget) {
		case 2: {/* toggle size */
			byte mode = (byte)WP(w,def_d).data_1;
			bool stickied = !!(w->flags4 & WF_STICKY);
			PlayerID player = w->window_number;
			DeleteWindow(w);
			DoShowPlayerFinances(player, !HASBIT(mode, 0), stickied);
		} break;

		case 6: /* increase loan */
			DoCommandP(0, 0, _ctrl_pressed, NULL, CMD_INCREASE_LOAN | CMD_MSG(STR_702C_CAN_T_BORROW_ANY_MORE_MONEY));
			break;

		case 7: /* repay loan */
			DoCommandP(0, 0, _ctrl_pressed, NULL, CMD_DECREASE_LOAN | CMD_MSG(STR_702F_CAN_T_REPAY_LOAN));
			break;
		}
		break;
	}
}

static const WindowDesc _player_finances_desc = {
	WDP_AUTO, WDP_AUTO, 407, 216,
	WC_FINANCES,0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
	_player_finances_widgets,
	PlayerFinancesWndProc
};

static const WindowDesc _player_finances_small_desc = {
	WDP_AUTO, WDP_AUTO, 280, 60,
	WC_FINANCES,0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
	_player_finances_small_widgets,
	PlayerFinancesWndProc
};

static const WindowDesc _other_player_finances_desc = {
	WDP_AUTO, WDP_AUTO, 407, 204,
	WC_FINANCES,0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
	_other_player_finances_widgets,
	PlayerFinancesWndProc
};

static const WindowDesc _other_player_finances_small_desc = {
	WDP_AUTO, WDP_AUTO, 280, 48,
	WC_FINANCES,0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS | WDF_STICKY_BUTTON,
	_other_player_finances_small_widgets,
	PlayerFinancesWndProc
};

static void DoShowPlayerFinances(PlayerID player, bool show_small, bool show_stickied)
{
	Window *w;
	int mode;

	static const WindowDesc * const desc_table[2 * 2] = {
		&_player_finances_desc, &_player_finances_small_desc,
		&_other_player_finances_desc, &_other_player_finances_small_desc,
	};

	if (!IsValidPlayer(player)) return;

	mode = (player != _local_player) * 2 + show_small;
	w = AllocateWindowDescFront(desc_table[mode], player);
	if (w != NULL) {
		w->caption_color = w->window_number;
		WP(w,def_d).data_1 = mode;
		if (show_stickied) w->flags4 |= WF_STICKY;
	}
}

void ShowPlayerFinances(PlayerID player)
{
	DoShowPlayerFinances(player, false, false);
}

/* List of colours for the livery window */
static const StringID _colour_dropdown[] = {
	STR_00D1_DARK_BLUE,
	STR_00D2_PALE_GREEN,
	STR_00D3_PINK,
	STR_00D4_YELLOW,
	STR_00D5_RED,
	STR_00D6_LIGHT_BLUE,
	STR_00D7_GREEN,
	STR_00D8_DARK_GREEN,
	STR_00D9_BLUE,
	STR_00DA_CREAM,
	STR_00DB_MAUVE,
	STR_00DC_PURPLE,
	STR_00DD_ORANGE,
	STR_00DE_BROWN,
	STR_00DF_GREY,
	STR_00E0_WHITE,
	INVALID_STRING_ID
};

/* Association of liveries to livery classes */
static const LiveryClass livery_class[LS_END] = {
	LC_OTHER,
	LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL, LC_RAIL,
	LC_ROAD, LC_ROAD,
	LC_SHIP, LC_SHIP,
	LC_AIRCRAFT, LC_AIRCRAFT, LC_AIRCRAFT,
};

/* Number of liveries in each class, used to determine the height of the livery window */
static const byte livery_height[] = {
	1,
	11,
	2,
	2,
	3,
};

typedef struct livery_d {
	uint32 sel;
	LiveryClass livery_class;
} livery_d;
assert_compile(WINDOW_CUSTOM_SIZE >= sizeof(livery_d));

static void ShowColourDropDownMenu(Window *w, uint32 widget)
{
	uint32 used_colours = 0;
	const Livery *livery;
	LiveryScheme scheme;

	/* Disallow other player colours for the primary colour */
	if (HASBIT(WP(w, livery_d).sel, LS_DEFAULT) && widget == 10) {
		const Player *p;
		FOR_ALL_PLAYERS(p) {
			if (p->is_active && p->index != _local_player) SETBIT(used_colours, p->player_color);
		}
	}

	/* Get the first selected livery to use as the default dropdown item */
	for (scheme = 0; scheme < LS_END; scheme++) {
		if (HASBIT(WP(w, livery_d).sel, scheme)) break;
	}
	if (scheme == LS_END) scheme = LS_DEFAULT;
	livery = &GetPlayer(w->window_number)->livery[scheme];

	ShowDropDownMenu(w, _colour_dropdown, widget == 10 ? livery->colour1 : livery->colour2, widget, used_colours, 0);
}

static void SelectPlayerLiveryWndProc(Window *w, WindowEvent *e)
{
	switch (e->event) {
		case WE_CREATE:
			LowerWindowWidget(w, WP(w, livery_d).livery_class + 2);
			if (!_have_2cc) {
				HideWindowWidget(w, 11);
				HideWindowWidget(w, 12);
			}
			break;

		case WE_PAINT: {
			const Player *p = GetPlayer(w->window_number);
			LiveryScheme scheme = LS_DEFAULT;
			int y = 51;

			/* Disable dropdown controls if no scheme is selected */
			SetWindowWidgetDisabledState(w,  9, (WP(w, livery_d).sel == 0));
			SetWindowWidgetDisabledState(w, 10, (WP(w, livery_d).sel == 0));
			SetWindowWidgetDisabledState(w, 11, (WP(w, livery_d).sel == 0));
			SetWindowWidgetDisabledState(w, 12, (WP(w, livery_d).sel == 0));

			if (!(WP(w, livery_d).sel == 0)) {
				for (scheme = 0; scheme < LS_END; scheme++) {
					if (HASBIT(WP(w, livery_d).sel, scheme)) break;
				}
				if (scheme == LS_END) scheme = LS_DEFAULT;
			}

			SetDParam(0, STR_00D1_DARK_BLUE + p->livery[scheme].colour1);
			SetDParam(1, STR_00D1_DARK_BLUE + p->livery[scheme].colour2);

			DrawWindowWidgets(w);

			for (scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
				if (livery_class[scheme] == WP(w, livery_d).livery_class) {
					bool sel = HASBIT(WP(w, livery_d).sel, scheme) != 0;

					if (scheme != LS_DEFAULT) {
						DrawSprite(p->livery[scheme].in_use ? SPR_BOX_CHECKED : SPR_BOX_EMPTY, 2, y);
					}

					DrawString(15, y, STR_LIVERY_DEFAULT + scheme, sel ? 0xC : 0x10);

					DrawSprite(SPR_SQUARE | GENERAL_SPRITE_COLOR(p->livery[scheme].colour1) | PALETTE_MODIFIER_COLOR, 152, y);
					DrawString(165, y, STR_00D1_DARK_BLUE + p->livery[scheme].colour1, sel ? 0xC : 2);

					if (_have_2cc) {
						DrawSprite(SPR_SQUARE | GENERAL_SPRITE_COLOR(p->livery[scheme].colour2) | PALETTE_MODIFIER_COLOR, 277, y);
						DrawString(290, y, STR_00D1_DARK_BLUE + p->livery[scheme].colour2, sel ? 0xC : 2);
					}

					y += 14;
				}
			}
			break;
		}

		case WE_CLICK: {
			switch (e->we.click.widget) {
				/* Livery Class buttons */
				case 2:
				case 3:
				case 4:
				case 5:
				case 6: {
					LiveryScheme scheme;

					RaiseWindowWidget(w, WP(w, livery_d).livery_class + 2);
					WP(w, livery_d).livery_class = e->we.click.widget - 2;
					WP(w, livery_d).sel = 0;
					LowerWindowWidget(w, WP(w, livery_d).livery_class + 2);

					/* Select the first item in the list */
					for (scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
						if (livery_class[scheme] == WP(w, livery_d).livery_class) {
							WP(w, livery_d).sel = 1 << scheme;
							break;
						}
					}
					w->height = 49 + livery_height[WP(w, livery_d).livery_class] * 14;
					w->widget[13].bottom = w->height - 1;
					w->widget[13].data = livery_height[WP(w, livery_d).livery_class] << 8 | 1;
					MarkWholeScreenDirty();
					break;
				}

				case 9:
				case 10: // First colour dropdown
					ShowColourDropDownMenu(w, 10);
					break;

				case 11:
				case 12: // Second colour dropdown
					ShowColourDropDownMenu(w, 12);
					break;

				case 13: {
					LiveryScheme scheme;
					LiveryScheme j = (e->we.click.pt.y - 48) / 14;

					for (scheme = 0; scheme <= j; scheme++) {
						if (livery_class[scheme] != WP(w, livery_d).livery_class) j++;
						if (scheme >= LS_END) return;
					}
					if (j >= LS_END) return;

					/* If clicking on the left edge, toggle using the livery */
					if (e->we.click.pt.x < 10) {
						DoCommandP(0, j | (2 << 8), !GetPlayer(w->window_number)->livery[j].in_use, NULL, CMD_SET_PLAYER_COLOR);
					}

					if (_ctrl_pressed) {
						TOGGLEBIT(WP(w, livery_d).sel, j);
					} else {
						WP(w, livery_d).sel = 1 << j;
					}
					SetWindowDirty(w);
					break;
				}
			}
			break;
		}

		case WE_DROPDOWN_SELECT: {
			LiveryScheme scheme;

			for (scheme = LS_DEFAULT; scheme < LS_END; scheme++) {
				if (HASBIT(WP(w, livery_d).sel, scheme)) {
					DoCommandP(0, scheme | (e->we.dropdown.button == 10 ? 0 : 256), e->we.dropdown.index, NULL, CMD_SET_PLAYER_COLOR);
				}
			}
			break;
		}
	}
}

static const Widget _select_player_livery_2cc_widgets[] = {
{ WWT_CLOSEBOX, RESIZE_NONE, 14,   0,  10,   0,  13, STR_00C5,                  STR_018B_CLOSE_WINDOW },
{  WWT_CAPTION, RESIZE_NONE, 14,  11, 399,   0,  13, STR_7007_NEW_COLOR_SCHEME, STR_018C_WINDOW_TITLE_DRAG_THIS },
{   WWT_IMGBTN, RESIZE_NONE, 14,   0,  21,  14,  35, SPR_IMG_COMPANY_GENERAL,   STR_LIVERY_GENERAL_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  22,  43,  14,  35, SPR_IMG_TRAINLIST,         STR_LIVERY_TRAIN_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  44,  65,  14,  35, SPR_IMG_TRUCKLIST,         STR_LIVERY_ROADVEH_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  66,  87,  14,  35, SPR_IMG_SHIPLIST,          STR_LIVERY_SHIP_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  88, 109,  14,  35, SPR_IMG_AIRPLANESLIST,     STR_LIVERY_AIRCRAFT_TIP },
{    WWT_PANEL, RESIZE_NONE, 14, 110, 399,  14,  35, 0x0,                       STR_NULL },
{    WWT_PANEL, RESIZE_NONE, 14,   0, 149,  36,  47, 0x0,                       STR_NULL },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 150, 262,  36,  47, STR_02BD,                  STR_LIVERY_PRIMARY_TIP },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 263, 274,  36,  47, STR_0225,                  STR_LIVERY_PRIMARY_TIP },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 275, 387,  36,  47, STR_02E1,                  STR_LIVERY_SECONDARY_TIP },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 388, 399,  36,  47, STR_0225,                  STR_LIVERY_SECONDARY_TIP },
{   WWT_MATRIX, RESIZE_NONE, 14,   0, 399,  48,  48 + 1 * 14, (1 << 8) | 1,     STR_LIVERY_PANEL_TIP },
{ WIDGETS_END },
};

static const WindowDesc _select_player_livery_2cc_desc = {
	WDP_AUTO, WDP_AUTO, 400, 49 + 1 * 14,
	WC_PLAYER_COLOR, 0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
	_select_player_livery_2cc_widgets,
	SelectPlayerLiveryWndProc
};


static const Widget _select_player_livery_widgets[] = {
{ WWT_CLOSEBOX, RESIZE_NONE, 14,   0,  10,   0,  13, STR_00C5,                  STR_018B_CLOSE_WINDOW },
{  WWT_CAPTION, RESIZE_NONE, 14,  11, 274,   0,  13, STR_7007_NEW_COLOR_SCHEME, STR_018C_WINDOW_TITLE_DRAG_THIS },
{   WWT_IMGBTN, RESIZE_NONE, 14,   0,  21,  14,  35, SPR_IMG_COMPANY_GENERAL,   STR_LIVERY_GENERAL_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  22,  43,  14,  35, SPR_IMG_TRAINLIST,         STR_LIVERY_TRAIN_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  44,  65,  14,  35, SPR_IMG_TRUCKLIST,         STR_LIVERY_ROADVEH_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  66,  87,  14,  35, SPR_IMG_SHIPLIST,          STR_LIVERY_SHIP_TIP },
{   WWT_IMGBTN, RESIZE_NONE, 14,  88, 109,  14,  35, SPR_IMG_AIRPLANESLIST,     STR_LIVERY_AIRCRAFT_TIP },
{    WWT_PANEL, RESIZE_NONE, 14, 110, 274,  14,  35, 0x0,                       STR_NULL },
{    WWT_PANEL, RESIZE_NONE, 14,   0, 149,  36,  47, 0x0,                       STR_NULL },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 150, 262,  36,  47, STR_02BD,                  STR_LIVERY_PRIMARY_TIP },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 263, 274,  36,  47, STR_0225,                  STR_LIVERY_PRIMARY_TIP },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 275, 275,  36,  47, STR_02E1,                  STR_LIVERY_SECONDARY_TIP },
{  WWT_TEXTBTN, RESIZE_NONE, 14, 275, 275,  36,  47, STR_0225,                  STR_LIVERY_SECONDARY_TIP },
{   WWT_MATRIX, RESIZE_NONE, 14,   0, 274,  48,  48 + 1 * 14, (1 << 8) | 1,     STR_LIVERY_PANEL_TIP },
{ WIDGETS_END },
};

static const WindowDesc _select_player_livery_desc = {
	WDP_AUTO, WDP_AUTO, 275, 49 + 1 * 14,
	WC_PLAYER_COLOR, 0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
	_select_player_livery_widgets,
	SelectPlayerLiveryWndProc
};

static void SelectPlayerFaceWndProc(Window *w, WindowEvent *e)
{
	switch (e->event) {
	case WE_PAINT: {
		Player *p;
		LowerWindowWidget(w, WP(w, facesel_d).gender + 5);
		DrawWindowWidgets(w);
		p = GetPlayer(w->window_number);
		DrawPlayerFace(WP(w,facesel_d).face, p->player_color, 2, 16);
	} break;

	case WE_CLICK:
		switch (e->we.click.widget) {
		case 3: DeleteWindow(w); break;
		case 4: /* ok click */
			DoCommandP(0, 0, WP(w,facesel_d).face, NULL, CMD_SET_PLAYER_FACE);
			DeleteWindow(w);
			break;
		case 5: /* male click */
		case 6: /* female click */
			RaiseWindowWidget(w, WP(w, facesel_d).gender + 5);
			WP(w, facesel_d).gender = e->we.click.widget - 5;
			LowerWindowWidget(w, WP(w, facesel_d).gender + 5);
			SetWindowDirty(w);
			break;
		case 7:
			WP(w,facesel_d).face = (WP(w,facesel_d).gender << 31) + GB(InteractiveRandom(), 0, 31);
			SetWindowDirty(w);
			break;
		}
		break;
	}
}

static const Widget _select_player_face_widgets[] = {
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                STR_018B_CLOSE_WINDOW},
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   189,     0,    13, STR_7043_FACE_SELECTION, STR_018C_WINDOW_TITLE_DRAG_THIS},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   189,    14,   136, 0x0,                     STR_NULL},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,    94,   137,   148, STR_012E_CANCEL,         STR_7047_CANCEL_NEW_FACE_SELECTION},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,    95,   189,   137,   148, STR_012F_OK,             STR_7048_ACCEPT_NEW_FACE_SELECTION},
{    WWT_TEXTBTN,   RESIZE_NONE,    14,    95,   187,    25,    36, STR_7044_MALE,           STR_7049_SELECT_MALE_FACES},
{    WWT_TEXTBTN,   RESIZE_NONE,    14,    95,   187,    37,    48, STR_7045_FEMALE,         STR_704A_SELECT_FEMALE_FACES},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,    95,   187,    79,    90, STR_7046_NEW_FACE,       STR_704B_GENERATE_RANDOM_NEW_FACE},
{   WIDGETS_END},
};

static const WindowDesc _select_player_face_desc = {
	WDP_AUTO, WDP_AUTO, 190, 149,
	WC_PLAYER_FACE,0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
	_select_player_face_widgets,
	SelectPlayerFaceWndProc
};

/* Names of the widgets. Keep them in the same order as in the widget array */
enum PlayerCompanyWindowWidgets {
	PCW_WIDGET_CLOSEBOX = 0,
	PCW_WIDGET_CAPTION,
	PCW_WIDGET_FACE,
	PCW_WIDGET_NEW_FACE,
	PCW_WIDGET_COLOR_SCHEME,
	PCW_WIDGET_PRESIDENT_NAME,
	PCW_WIDGET_COMPANY_NAME,
	PCW_WIDGET_BUILD_VIEW_HQ,
	PCW_WIDGET_RELOCATE_HQ,
	PCW_WIDGET_BUY_SHARE,
	PCW_WIDGET_SELL_SHARE,
	PCW_WIDGET_COMPANY_PASSWORD,
};

static const Widget _player_company_widgets[] = {
{   WWT_CLOSEBOX,   RESIZE_NONE,    14,     0,    10,     0,    13, STR_00C5,                          STR_018B_CLOSE_WINDOW},
{    WWT_CAPTION,   RESIZE_NONE,    14,    11,   359,     0,    13, STR_7001,                          STR_018C_WINDOW_TITLE_DRAG_THIS},
{      WWT_PANEL,   RESIZE_NONE,    14,     0,   359,    14,   157, 0x0,                               STR_NULL},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,    89,   158,   169, STR_7004_NEW_FACE,                 STR_7030_SELECT_NEW_FACE_FOR_PRESIDENT},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,    90,   179,   158,   169, STR_7005_COLOR_SCHEME,             STR_7031_CHANGE_THE_COMPANY_VEHICLE},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   180,   269,   158,   169, STR_7009_PRESIDENT_NAME,           STR_7032_CHANGE_THE_PRESIDENT_S},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   270,   359,   158,   169, STR_7008_COMPANY_NAME,             STR_7033_CHANGE_THE_COMPANY_NAME},
{    WWT_TEXTBTN,   RESIZE_NONE,    14,   266,   355,    18,    29, STR_7072_VIEW_HQ,                  STR_7070_BUILD_COMPANY_HEADQUARTERS},
{    WWT_TEXTBTN,   RESIZE_NONE,    14,   266,   355,    32,    43, STR_RELOCATE_HQ,                   STR_RELOCATE_COMPANY_HEADQUARTERS},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,     0,   179,   158,   169, STR_7077_BUY_25_SHARE_IN_COMPANY,  STR_7079_BUY_25_SHARE_IN_THIS_COMPANY},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   180,   359,   158,   169, STR_7078_SELL_25_SHARE_IN_COMPANY, STR_707A_SELL_25_SHARE_IN_THIS_COMPANY},
{ WWT_PUSHTXTBTN,   RESIZE_NONE,    14,   266,   355,   138,   149, STR_COMPANY_PASSWORD,              STR_COMPANY_PASSWORD_TOOLTIP},
{   WIDGETS_END},
};

static void DrawPlayerVehiclesAmount(PlayerID player)
{
	const int x = 110;
	int y = 72;
	const Vehicle *v;
	uint train = 0;
	uint road  = 0;
	uint air   = 0;
	uint ship  = 0;

	DrawString(x, y, STR_7039_VEHICLES, 0);

	FOR_ALL_VEHICLES(v) {
		if (v->owner == player) {
			switch (v->type) {
				case VEH_Train:    if (IsFrontEngine(v)) train++; break;
				case VEH_Road:     road++; break;
				case VEH_Aircraft: if (v->subtype <= 2) air++; break;
				case VEH_Ship:     ship++; break;
				default: break;
			}
		}
	}

	if (train+road+air+ship == 0) {
		DrawString(x+70, y, STR_7042_NONE, 0);
	} else {
		if (train != 0) {
			SetDParam(0, train);
			DrawString(x + 70, y, STR_TRAINS, 0);
			y += 10;
		}

		if (road != 0) {
			SetDParam(0, road);
			DrawString(x + 70, y, STR_ROAD_VEHICLES, 0);
			y += 10;
		}

		if (air != 0) {
			SetDParam(0, air);
			DrawString(x + 70, y, STR_AIRCRAFT, 0);
			y += 10;
		}

		if (ship != 0) {
			SetDParam(0, ship);
			DrawString(x + 70, y, STR_SHIPS, 0);
		}
	}
}

int GetAmountOwnedBy(const Player *p, PlayerID owner)
{
	return (p->share_owners[0] == owner) +
				 (p->share_owners[1] == owner) +
				 (p->share_owners[2] == owner) +
				 (p->share_owners[3] == owner);
}

static void DrawCompanyOwnerText(const Player *p)
{
	const Player *p2;
	int num = -1;

	FOR_ALL_PLAYERS(p2) {
		uint amt = GetAmountOwnedBy(p, p2->index);
		if (amt != 0) {
			num++;

			SetDParam(num * 3 + 0, amt * 25);
			SetDParam(num * 3 + 1, p2->name_1);
			SetDParam(num * 3 + 2, p2->name_2);

			if (num != 0) break;
		}
	}

	if (num >= 0) DrawString(120, 124, STR_707D_OWNED_BY + num, 0);
}

static void PlayerCompanyWndProc(Window *w, WindowEvent *e)
{
	switch (e->event) {
		case WE_PAINT: {
			const Player *p = GetPlayer(w->window_number);
			bool local = w->window_number == _local_player;

			SetWindowWidgetHiddenState(w, PCW_WIDGET_NEW_FACE,       !local);
			SetWindowWidgetHiddenState(w, PCW_WIDGET_COLOR_SCHEME,   !local);
			SetWindowWidgetHiddenState(w, PCW_WIDGET_PRESIDENT_NAME, !local);
			SetWindowWidgetHiddenState(w, PCW_WIDGET_COMPANY_NAME,   !local);
			w->widget[PCW_WIDGET_BUILD_VIEW_HQ].data = (local && p->location_of_house == 0) ? STR_706F_BUILD_HQ : STR_7072_VIEW_HQ;
			if (local && p->location_of_house != 0) w->widget[PCW_WIDGET_BUILD_VIEW_HQ].type = WWT_PUSHTXTBTN; //HQ is already built.
			SetWindowWidgetDisabledState(w, PCW_WIDGET_BUILD_VIEW_HQ, !local && p->location_of_house == 0);
			SetWindowWidgetHiddenState(w, PCW_WIDGET_RELOCATE_HQ,      !local || p->location_of_house == 0);
			SetWindowWidgetHiddenState(w, PCW_WIDGET_BUY_SHARE,        local);
			SetWindowWidgetHiddenState(w, PCW_WIDGET_SELL_SHARE,       local);
			SetWindowWidgetHiddenState(w, PCW_WIDGET_COMPANY_PASSWORD, !local || !_networking);

			if (!local) {
				if (_patches.allow_shares) { // Shares are allowed
					/* If all shares are owned by someone (none by nobody), disable buy button */
					SetWindowWidgetDisabledState(w, PCW_WIDGET_BUY_SHARE, GetAmountOwnedBy(p, PLAYER_SPECTATOR) == 0 ||
							/* Only 25% left to buy. If the player is human, disable buying it up.. TODO issues! */
							(GetAmountOwnedBy(p, PLAYER_SPECTATOR) == 1 && !p->is_ai) ||
							/* Spectators cannot do anything of course */
							_local_player == PLAYER_SPECTATOR);

					/* If the player doesn't own any shares, disable sell button */
					SetWindowWidgetDisabledState(w, PCW_WIDGET_SELL_SHARE, (GetAmountOwnedBy(p, _local_player) == 0) ||
							/* Spectators cannot do anything of course */
							_local_player == PLAYER_SPECTATOR);
				} else { // Shares are not allowed, disable buy/sell buttons
					DisableWindowWidget(w, PCW_WIDGET_BUY_SHARE);
					DisableWindowWidget(w, PCW_WIDGET_SELL_SHARE);
				}
			}

			SetDParam(0, p->name_1);
			SetDParam(1, p->name_2);
			SetDParam(2, GetPlayerNameString((byte)w->window_number, 3));

			DrawWindowWidgets(w);

			SetDParam(0, p->inaugurated_year);
			DrawString(110, 25, STR_7038_INAUGURATED, 0);

			DrawPlayerVehiclesAmount(w->window_number);

			DrawString(110,48, STR_7006_COLOR_SCHEME, 0);
			// Draw company-colour bus
			DrawSprite(PLAYER_SPRITE_COLOR(p->index) + SPRITE_PALETTE(SPR_VEH_BUS_SW_VIEW), 215, 49);

			DrawPlayerFace(p->face, p->player_color, 2, 16);

			SetDParam(0, p->president_name_1);
			SetDParam(1, p->president_name_2);
			DrawStringMultiCenter(48, 141, STR_7037_PRESIDENT, 94);

			SetDParam64(0, CalculateCompanyValue(p));
			DrawString(110, 114, STR_7076_COMPANY_VALUE, 0);

			DrawCompanyOwnerText(p);

			break;
		}

		case WE_CLICK:
			switch (e->we.click.widget) {
				case PCW_WIDGET_NEW_FACE: {
					Window *wf = AllocateWindowDescFront(&_select_player_face_desc, w->window_number);
					if (wf != NULL) {
						wf->caption_color = w->window_number;
						WP(wf,facesel_d).face = GetPlayer(wf->window_number)->face;
						WP(wf,facesel_d).gender = 0;
					}
					break;
				}

				case PCW_WIDGET_COLOR_SCHEME: {
					Window *wf = AllocateWindowDescFront(_have_2cc ? &_select_player_livery_2cc_desc : &_select_player_livery_desc, w->window_number);
					if (wf != NULL) {
						wf->caption_color = wf->window_number;
						WP(wf,livery_d).livery_class = LC_OTHER;
						WP(wf,livery_d).sel = 1;
						LowerWindowWidget(wf, 2);
					}
					break;
				}

				case PCW_WIDGET_PRESIDENT_NAME: {
					const Player *p = GetPlayer(w->window_number);
					WP(w, def_d).byte_1 = 0;
					SetDParam(0, p->president_name_2);
					ShowQueryString(p->president_name_1, STR_700B_PRESIDENT_S_NAME, 31, 94, w, CS_ALPHANUMERAL);
					break;
				}

				case PCW_WIDGET_COMPANY_NAME: {
					Player *p = GetPlayer(w->window_number);
					WP(w,def_d).byte_1 = 1;
					SetDParam(0, p->name_2);
					ShowQueryString(p->name_1, STR_700A_COMPANY_NAME, 31, 150, w, CS_ALPHANUMERAL);
					break;
				}

				case PCW_WIDGET_BUILD_VIEW_HQ: {
					TileIndex tile = GetPlayer(w->window_number)->location_of_house;
					if (tile == 0) {
						if ((byte)w->window_number != _local_player)
							return;
						SetObjectToPlaceWnd(SPR_CURSOR_HQ, 1, w);
						SetTileSelectSize(2, 2);
						LowerWindowWidget(w, PCW_WIDGET_BUILD_VIEW_HQ);
						InvalidateWidget(w, PCW_WIDGET_BUILD_VIEW_HQ);
					} else {
						ScrollMainWindowToTile(tile);
					}
					break;
				}

				case PCW_WIDGET_RELOCATE_HQ:
					SetObjectToPlaceWnd(SPR_CURSOR_HQ, 1, w);
					SetTileSelectSize(2, 2);
					LowerWindowWidget(w, PCW_WIDGET_RELOCATE_HQ);
					InvalidateWidget(w, PCW_WIDGET_RELOCATE_HQ);
					break;

				case PCW_WIDGET_BUY_SHARE:
					DoCommandP(0, w->window_number, 0, NULL, CMD_BUY_SHARE_IN_COMPANY | CMD_MSG(STR_707B_CAN_T_BUY_25_SHARE_IN_THIS));
					break;

				case PCW_WIDGET_SELL_SHARE:
					DoCommandP(0, w->window_number, 0, NULL, CMD_SELL_SHARE_IN_COMPANY | CMD_MSG(STR_707C_CAN_T_SELL_25_SHARE_IN));
					break;

				#ifdef ENABLE_NETWORK
				case PCW_WIDGET_COMPANY_PASSWORD:
					if (w->window_number == _local_player) {
						WP(w,def_d).byte_1 = 2;
						ShowQueryString(BindCString(_network_player_info[_local_player].password),
							STR_SET_COMPANY_PASSWORD, sizeof(_network_player_info[_local_player].password), 250, w, CS_ALPHANUMERAL);
					}
					break;
				#endif /* ENABLE_NETWORK */
			}
			break;

		case WE_MOUSELOOP:
			/* redraw the window every now and then */
			if ((++w->vscroll.pos & 0x1F) == 0) SetWindowDirty(w);
			break;

		case WE_PLACE_OBJ:
			if (DoCommandP(e->we.place.tile, 0, 0, NULL, CMD_BUILD_COMPANY_HQ | CMD_AUTO | CMD_NO_WATER | CMD_MSG(STR_7071_CAN_T_BUILD_COMPANY_HEADQUARTERS)))
				ResetObjectToPlace();
				w->widget[PCW_WIDGET_BUILD_VIEW_HQ].type = WWT_PUSHTXTBTN; // this button can now behave as a normal push button
				RaiseWindowButtons(w);
			break;

		case WE_ABORT_PLACE_OBJ:
			RaiseWindowButtons(w);
			break;

		case WE_DESTROY:
			DeleteWindowById(WC_PLAYER_FACE, w->window_number);
			break;

		case WE_ON_EDIT_TEXT: {
			char *b = e->we.edittext.str;

			// empty string is allowed for password
			if (*b == '\0' && WP(w,def_d).byte_1 != 2) return;

			_cmd_text = b;
			switch (WP(w,def_d).byte_1) {
				case 0: /* Change president name */
					DoCommandP(0, 0, 0, NULL, CMD_CHANGE_PRESIDENT_NAME | CMD_MSG(STR_700D_CAN_T_CHANGE_PRESIDENT));
					break;
				case 1: /* Change company name */
					DoCommandP(0, 0, 0, NULL, CMD_CHANGE_COMPANY_NAME | CMD_MSG(STR_700C_CAN_T_CHANGE_COMPANY_NAME));
					break;
				#ifdef ENABLE_NETWORK
				case 2: /* Change company password */
					if (*b == '\0') *b = '*'; // empty password is a '*' because of console argument
					NetworkChangeCompanyPassword(1, &b);
					break;
				#endif /* ENABLE_NETWORK */
			}
			break;
		}
	}
}


static const WindowDesc _player_company_desc = {
	WDP_AUTO, WDP_AUTO, 360, 170,
	WC_COMPANY, 0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET | WDF_UNCLICK_BUTTONS,
	_player_company_widgets,
	PlayerCompanyWndProc
};

void ShowPlayerCompany(PlayerID player)
{
	Window *w;

	if (!IsValidPlayer(player)) return;

	w = AllocateWindowDescFront(&_player_company_desc, player);
	if (w != NULL) w->caption_color = w->window_number;
}



static void BuyCompanyWndProc(Window *w, WindowEvent *e)
{
	switch (e->event) {
	case WE_PAINT: {
		Player *p = GetPlayer(w->window_number);
		SetDParam(0, p->name_1);
		SetDParam(1, p->name_2);
		DrawWindowWidgets(w);

		DrawPlayerFace(p->face, p->player_color, 2, 16);

		SetDParam(0, p->name_1);
		SetDParam(1, p->name_2);
		SetDParam(2, p->bankrupt_value);
		DrawStringMultiCenter(214, 65, STR_705B_WE_ARE_LOOKING_FOR_A_TRANSPORT, 238);
		break;
	}

	case WE_CLICK:
		switch (e->we.click.widget) {
		case 3:
			DeleteWindow(w);
			break;
		case 4: {
			DoCommandP(0, w->window_number, 0, NULL, CMD_BUY_COMPANY | CMD_MSG(STR_7060_CAN_T_BUY_COMPANY));
			break;
		}
		}
		break;
	}
}

static const Widget _buy_company_widgets[] = {
{   WWT_CLOSEBOX,   RESIZE_NONE,     5,     0,    10,     0,    13, STR_00C5,              STR_018B_CLOSE_WINDOW},
{    WWT_CAPTION,   RESIZE_NONE,     5,    11,   333,     0,    13, STR_00B3_MESSAGE_FROM, STR_018C_WINDOW_TITLE_DRAG_THIS},
{      WWT_PANEL,   RESIZE_NONE,     5,     0,   333,    14,   136, 0x0,                   STR_NULL},
{    WWT_TEXTBTN,   RESIZE_NONE,     5,   148,   207,   117,   128, STR_00C9_NO,           STR_NULL},
{    WWT_TEXTBTN,   RESIZE_NONE,     5,   218,   277,   117,   128, STR_00C8_YES,          STR_NULL},
{   WIDGETS_END},
};

static const WindowDesc _buy_company_desc = {
	153, 171, 334, 137,
	WC_BUY_COMPANY,0,
	WDF_STD_TOOLTIPS | WDF_STD_BTN | WDF_DEF_WIDGET,
	_buy_company_widgets,
	BuyCompanyWndProc
};


void ShowBuyCompanyDialog(uint player)
{
	AllocateWindowDescFront(&_buy_company_desc, player);
}

/********** HIGHSCORE and ENDGAME windows */

/* Always draw a maximized window and within there the centered background */
static void SetupHighScoreEndWindow(Window *w, uint *x, uint *y)
{
	uint i;
	// resize window to "full-screen"
	w->width = _screen.width;
	w->height = _screen.height;
	w->widget[0].right = w->width - 1;
	w->widget[0].bottom = w->height - 1;

	DrawWindowWidgets(w);

	/* Center Highscore/Endscreen background */
	*x = max(0, (_screen.width  / 2) - (640 / 2));
	*y = max(0, (_screen.height / 2) - (480 / 2));
	for (i = 0; i < 10; i++) // the image is split into 10 50px high parts
		DrawSprite(WP(w, highscore_d).background_img + i, *x, *y + (i * 50));
}

extern StringID EndGameGetPerformanceTitleFromValue(uint value);

/* End game window shown at the end of the game */
static void EndGameWndProc(Window *w, WindowEvent *e)
{
	switch (e->event) {
	case WE_PAINT: {
		const Player *p;
		uint x, y;

		SetupHighScoreEndWindow(w, &x, &y);

		if (!IsValidPlayer(_local_player)) break;

		p = GetPlayer(_local_player);
		/* We need to get performance from last year because the image is shown
		 * at the start of the new year when these things have already been copied */
		if (WP(w, highscore_d).background_img == SPR_TYCOON_IMG2_BEGIN) { // Tycoon of the century \o/
			SetDParam(0, p->president_name_1);
			SetDParam(1, p->president_name_2);
			SetDParam(2, p->name_1);
			SetDParam(3, p->name_2);
			SetDParam(4, EndGameGetPerformanceTitleFromValue(p->old_economy[0].performance_history));
			DrawStringMultiCenter(x + (640 / 2), y + 107, STR_021C_OF_ACHIEVES_STATUS, 640);
		} else {
			SetDParam(0, p->name_1);
			SetDParam(1, p->name_2);
			SetDParam(2, EndGameGetPerformanceTitleFromValue(p->old_economy[0].performance_history));
			DrawStringMultiCenter(x + (640 / 2), y + 157, STR_021B_ACHIEVES_STATUS, 640);
		}
	} break;
	case WE_CLICK: /* Close the window (and show the highscore window) */
		DeleteWindow(w);
		break;
	case WE_DESTROY: /* Show the highscore window when this one is closed */
		if (!_networking) DoCommandP(0, 0, 0, NULL, CMD_PAUSE); // unpause
		ShowHighscoreTable(w->window_number, WP(w, highscore_d).rank);
		break;
	}
}

static void HighScoreWndProc(Window *w, WindowEvent *e)
{
	switch (e->event) {
	case WE_PAINT: {
		const HighScore *hs = _highscore_table[w->window_number];
		uint x, y;
		uint8 i;

		SetupHighScoreEndWindow(w, &x, &y);

		SetDParam(0, _patches.ending_year);
		SetDParam(1, w->window_number + STR_6801_EASY);
		DrawStringMultiCenter(x + (640 / 2), y + 62, !_networking ? STR_0211_TOP_COMPANIES_WHO_REACHED : STR_TOP_COMPANIES_NETWORK_GAME, 500);

		/* Draw Highscore peepz */
		for (i = 0; i < lengthof(_highscore_table[0]); i++) {
			SetDParam(0, i + 1);
			DrawString(x + 40, y + 140 + (i * 55), STR_0212, 0x10);

			if (hs[i].company[0] != '\0') {
				uint16 colour = (WP(w, highscore_d).rank == (int8)i) ? 0x3 : 0x10; // draw new highscore in red

				DoDrawString(hs[i].company, x + 71, y + 140 + (i * 55), colour);
				SetDParam(0, hs[i].title);
				SetDParam(1, hs[i].score);
				DrawString(x + 71, y + 160 + (i * 55), STR_HIGHSCORE_STATS, colour);
			}
		}
	} break;

	case WE_CLICK: /* Onclick to close window, and in destroy event handle the rest */
		DeleteWindow(w);
		break;

	case WE_DESTROY: /* Get back all the hidden windows */
		if (_game_mode != GM_MENU) ShowVitalWindows();

		if (!_networking) DoCommandP(0, 0, 0, NULL, CMD_PAUSE); // unpause
		break;
	}
	}

static const Widget _highscore_widgets[] = {
{      WWT_PANEL, RESIZE_NONE, 16, 0, 640, 0, 480, 0x0, STR_NULL},
{   WIDGETS_END},
};

static const WindowDesc _highscore_desc = {
	0, 0, 641, 481,
	WC_HIGHSCORE,0,
	0,
	_highscore_widgets,
	HighScoreWndProc
};

static const WindowDesc _endgame_desc = {
	0, 0, 641, 481,
	WC_ENDSCREEN,0,
	0,
	_highscore_widgets,
	EndGameWndProc
};

/* Show the highscore table for a given difficulty. When called from
 * endgame ranking is set to the top5 element that was newly added
 * and is thus highlighted */
void ShowHighscoreTable(int difficulty, int8 ranking)
{
	Window *w;

	// pause game to show the chart
	if (!_networking) DoCommandP(0, 1, 0, NULL, CMD_PAUSE);

	/* Close all always on-top windows to get a clean screen */
	if (_game_mode != GM_MENU) HideVitalWindows();

	DeleteWindowByClass(WC_HIGHSCORE);
	w = AllocateWindowDesc(&_highscore_desc);

	if (w != NULL) {
		MarkWholeScreenDirty();
		w->window_number = difficulty; // show highscore chart for difficulty...
		WP(w, highscore_d).background_img = SPR_HIGHSCORE_CHART_BEGIN; // which background to show
		WP(w, highscore_d).rank = ranking;
	}
}

/* Show the endgame victory screen in 2050. Update the new highscore
 * if it was high enough */
void ShowEndGameChart(void)
{
	Window *w;

	/* Dedicated server doesn't need the highscore window */
	if (_network_dedicated) return;
	/* Pause in single-player to have a look at the highscore at your own leisure */
	if (!_networking) DoCommandP(0, 1, 0, NULL, CMD_PAUSE);

	HideVitalWindows();
	DeleteWindowByClass(WC_ENDSCREEN);
	w = AllocateWindowDesc(&_endgame_desc);

	if (w != NULL) {
		MarkWholeScreenDirty();

		WP(w, highscore_d).background_img = SPR_TYCOON_IMG1_BEGIN;

		if (_local_player != PLAYER_SPECTATOR) {
			const Player *p = GetPlayer(_local_player);
			if (p->old_economy[0].performance_history == SCORE_MAX)
				WP(w, highscore_d).background_img = SPR_TYCOON_IMG2_BEGIN;
		}

		/* In a network game show the endscores of the custom difficulty 'network' which is the last one
		 * as well as generate a TOP5 of that game, and not an all-time top5. */
		if (_networking) {
			w->window_number = lengthof(_highscore_table) - 1;
			WP(w, highscore_d).rank = SaveHighScoreValueNetwork();
		} else {
			// in single player _local player is always valid
			const Player *p = GetPlayer(_local_player);
			w->window_number = _opt.diff_level;
			WP(w, highscore_d).rank = SaveHighScoreValue(p);
		}
	}
}