Files @ r18881:ca79a2e629a6
Branch filter:

Location: cpp/openttd-patchpack/source/src/ai/ai_gui.cpp - annotation

rubidium
(svn r23740) -Codechange: remove some 300 unneeded includes from the .cpp files
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
 151
 152
 153
 154
 155
 156
 157
 158
 159
 160
 161
 162
 163
 164
 165
 166
 167
 168
 169
 170
 171
 172
 173
 174
 175
 176
 177
 178
 179
 180
 181
 182
 183
 184
 185
 186
 187
 188
 189
 190
 191
 192
 193
 194
 195
 196
 197
 198
 199
 200
 201
 202
 203
 204
 205
 206
 207
 208
 209
 210
 211
 212
 213
 214
 215
 216
 217
 218
 219
 220
 221
 222
 223
 224
 225
 226
 227
 228
 229
 230
 231
 232
 233
 234
 235
 236
 237
 238
 239
 240
 241
 242
 243
 244
 245
 246
 247
 248
 249
 250
 251
 252
 253
 254
 255
 256
 257
 258
 259
 260
 261
 262
 263
 264
 265
 266
 267
 268
 269
 270
 271
 272
 273
 274
 275
 276
 277
 278
 279
 280
 281
 282
 283
 284
 285
 286
 287
 288
 289
 290
 291
 292
 293
 294
 295
 296
 297
 298
 299
 300
 301
 302
 303
 304
 305
 306
 307
 308
 309
 310
 311
 312
 313
 314
 315
 316
 317
 318
 319
 320
 321
 322
 323
 324
 325
 326
 327
 328
 329
 330
 331
 332
 333
 334
 335
 336
 337
 338
 339
 340
 341
 342
 343
 344
 345
 346
 347
 348
 349
 350
 351
 352
 353
 354
 355
 356
 357
 358
 359
 360
 361
 362
 363
 364
 365
 366
 367
 368
 369
 370
 371
 372
 373
 374
 375
 376
 377
 378
 379
 380
 381
 382
 383
 384
 385
 386
 387
 388
 389
 390
 391
 392
 393
 394
 395
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r18845:66bf168f1100
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r14931:fdc0797fe626
r18617:524f2e0f54dc
r10696:8dfe83e30d01
r14931:fdc0797fe626
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r11185:ac324a2379e8
r10840:7a608f4ad153
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18500:14a481bc4437
r10840:7a608f4ad153
r18510:9d33e9643f80
r12136:c9866cb76857
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r10696:8dfe83e30d01
r18670:f122c356353c
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18323:39c61b16c682
r18323:39c61b16c682
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18508:f893337ab5c7
r18508:f893337ab5c7
r10840:7a608f4ad153
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r12591:0f17c8004d0f
r10840:7a608f4ad153
r10840:7a608f4ad153
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r12591:0f17c8004d0f
r15769:4a935f419828
r18673:e5a4490b411b
r15769:4a935f419828
r12591:0f17c8004d0f
r18749:61ed9890edec
r10851:e35d63aed540
r10851:e35d63aed540
r10851:e35d63aed540
r18749:61ed9890edec
r18749:61ed9890edec
r10851:e35d63aed540
r18749:61ed9890edec
r10851:e35d63aed540
r10851:e35d63aed540
r10851:e35d63aed540
r10851:e35d63aed540
r10851:e35d63aed540
r10851:e35d63aed540
r12591:0f17c8004d0f
r10851:e35d63aed540
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r13695:e0bf1a35834a
r12591:0f17c8004d0f
r18673:e5a4490b411b
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r13062:680961bd134a
r12591:0f17c8004d0f
r10840:7a608f4ad153
r10840:7a608f4ad153
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r18673:e5a4490b411b
r12591:0f17c8004d0f
r18673:e5a4490b411b
r12591:0f17c8004d0f
r15769:4a935f419828
r18749:61ed9890edec
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r18749:61ed9890edec
r18749:61ed9890edec
r15769:4a935f419828
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r10983:bd6288c91f05
r18673:e5a4490b411b
r12591:0f17c8004d0f
r18749:61ed9890edec
r18749:61ed9890edec
r18508:f893337ab5c7
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12622:202e83a6cee7
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12622:202e83a6cee7
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12622:202e83a6cee7
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r11702:a9dd3b59c546
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18749:61ed9890edec
r10840:7a608f4ad153
r18749:61ed9890edec
r10840:7a608f4ad153
r18749:61ed9890edec
r10840:7a608f4ad153
r18809:ae9bab58f752
r18818:c58a75fff1d8
r18819:77d4c06ea7b5
r10840:7a608f4ad153
r10840:7a608f4ad153
r14399:3f819c0da60a
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r18673:e5a4490b411b
r18749:61ed9890edec
r10840:7a608f4ad153
r10840:7a608f4ad153
r14399:3f819c0da60a
r14399:3f819c0da60a
r14399:3f819c0da60a
r14399:3f819c0da60a
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r13334:52f3226937dd
r10840:7a608f4ad153
r18673:e5a4490b411b
r15769:4a935f419828
r15769:4a935f419828
r10840:7a608f4ad153
r16510:937e3d956c30
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r16510:937e3d956c30
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r17483:fc8b6fa18903
r17483:fc8b6fa18903
r18749:61ed9890edec
r16514:bf011466da17
r16514:bf011466da17
r16514:bf011466da17
r16510:937e3d956c30
r10840:7a608f4ad153
r10840:7a608f4ad153
r15620:0378519ad922
r11486:edda18b2134e
r11486:edda18b2134e
r13742:180ad925befc
r18749:61ed9890edec
r11486:edda18b2134e
r11486:edda18b2134e
r18673:e5a4490b411b
r18673:e5a4490b411b
r11486:edda18b2134e
r18673:e5a4490b411b
r11486:edda18b2134e
r15910:d159c4eed185
r13959:44bb928ae22d
r18673:e5a4490b411b
r18673:e5a4490b411b
r13959:44bb928ae22d
r13742:180ad925befc
r11486:edda18b2134e
r11486:edda18b2134e
r11486:edda18b2134e
r15620:0378519ad922
r11368:058349c3a02c
r13786:6205ecbdf2fa
r10840:7a608f4ad153
r13739:747ed1f003e3
r13554:d1964ead02ee
r11368:058349c3a02c
r10840:7a608f4ad153
r15620:0378519ad922
r15620:0378519ad922
r15620:0378519ad922
r15620:0378519ad922
r13499:0af2aac7f5aa
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18323:39c61b16c682
r18749:61ed9890edec
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18510:9d33e9643f80
r18323:39c61b16c682
r10840:7a608f4ad153
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r12591:0f17c8004d0f
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18749:61ed9890edec
r18323:39c61b16c682
r12591:0f17c8004d0f
r15769:4a935f419828
r18673:e5a4490b411b
r15769:4a935f419828
r14386:deda8721215e
r18673:e5a4490b411b
r12591:0f17c8004d0f
r18355:ae364edeb939
r18323:39c61b16c682
r18323:39c61b16c682
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18510:9d33e9643f80
r18323:39c61b16c682
r18510:9d33e9643f80
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r13695:e0bf1a35834a
r12591:0f17c8004d0f
r18673:e5a4490b411b
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r13062:680961bd134a
r12591:0f17c8004d0f
r10840:7a608f4ad153
r10840:7a608f4ad153
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r18673:e5a4490b411b
r10840:7a608f4ad153
r18749:61ed9890edec
r18323:39c61b16c682
r10840:7a608f4ad153
r15769:4a935f419828
r10840:7a608f4ad153
r16431:ec558deca9d7
r13663:00d7e8a3cc27
r15794:a94dbada8fd2
r15794:a94dbada8fd2
r13663:00d7e8a3cc27
r13663:00d7e8a3cc27
r12591:0f17c8004d0f
r18323:39c61b16c682
r18510:9d33e9643f80
r18323:39c61b16c682
r18749:61ed9890edec
r10840:7a608f4ad153
r15831:83d50b44d152
r15831:83d50b44d152
r15831:83d50b44d152
r18323:39c61b16c682
r18731:c13dfe2bb0a3
r18731:c13dfe2bb0a3
r18731:c13dfe2bb0a3
r18731:c13dfe2bb0a3
r18731:c13dfe2bb0a3
r18731:c13dfe2bb0a3
r18731:c13dfe2bb0a3
r18731:c13dfe2bb0a3
r15831:83d50b44d152
r15831:83d50b44d152
r15831:83d50b44d152
r18323:39c61b16c682
r15831:83d50b44d152
r15794:a94dbada8fd2
r18510:9d33e9643f80
r13663:00d7e8a3cc27
r15831:83d50b44d152
r10840:7a608f4ad153
r18323:39c61b16c682
r18323:39c61b16c682
r15831:83d50b44d152
r18323:39c61b16c682
r11026:6b3e7fbb46ae
r15831:83d50b44d152
r15831:83d50b44d152
r11026:6b3e7fbb46ae
r10840:7a608f4ad153
r10840:7a608f4ad153
r15831:83d50b44d152
r12591:0f17c8004d0f
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r14379:1d3f60afceb6
r14379:1d3f60afceb6
r14386:deda8721215e
r14386:deda8721215e
r14386:deda8721215e
r14635:a75264d517b7
r14386:deda8721215e
r14386:deda8721215e
r14386:deda8721215e
r14379:1d3f60afceb6
r14379:1d3f60afceb6
r14379:1d3f60afceb6
r14399:3f819c0da60a
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r18673:e5a4490b411b
r15769:4a935f419828
r18323:39c61b16c682
r10840:7a608f4ad153
r18323:39c61b16c682
r10840:7a608f4ad153
r18510:9d33e9643f80
r18749:61ed9890edec
r14386:deda8721215e
r18510:9d33e9643f80
r10840:7a608f4ad153
r13663:00d7e8a3cc27
r16431:ec558deca9d7
r13663:00d7e8a3cc27
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r17709:c6e0fbea264f
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r17709:c6e0fbea264f
r17709:c6e0fbea264f
r17709:c6e0fbea264f
r17709:c6e0fbea264f
r10840:7a608f4ad153
r17709:c6e0fbea264f
r17709:c6e0fbea264f
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r17569:79cc833a8f35
r10840:7a608f4ad153
r17759:e7e4c331e09e
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18510:9d33e9643f80
r10840:7a608f4ad153
r18749:61ed9890edec
r10840:7a608f4ad153
r10840:7a608f4ad153
r14379:1d3f60afceb6
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r13334:52f3226937dd
r10840:7a608f4ad153
r18673:e5a4490b411b
r15769:4a935f419828
r15769:4a935f419828
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10853:44b4b13121cb
r10853:44b4b13121cb
r10853:44b4b13121cb
r10840:7a608f4ad153
r10840:7a608f4ad153
r16950:9855f8364bec
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r16950:9855f8364bec
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r18323:39c61b16c682
r16950:9855f8364bec
r10840:7a608f4ad153
r10840:7a608f4ad153
r15620:0378519ad922
r11486:edda18b2134e
r11486:edda18b2134e
r13742:180ad925befc
r18749:61ed9890edec
r11486:edda18b2134e
r11486:edda18b2134e
r18673:e5a4490b411b
r18673:e5a4490b411b
r11486:edda18b2134e
r13712:0446aaa32e1c
r13712:0446aaa32e1c
r18673:e5a4490b411b
r18673:e5a4490b411b
r13712:0446aaa32e1c
r13742:180ad925befc
r11486:edda18b2134e
r11486:edda18b2134e
r11486:edda18b2134e
r15620:0378519ad922
r11368:058349c3a02c
r13786:6205ecbdf2fa
r10840:7a608f4ad153
r13739:747ed1f003e3
r13554:d1964ead02ee
r11368:058349c3a02c
r10840:7a608f4ad153
r15620:0378519ad922
r15620:0378519ad922
r15620:0378519ad922
r15620:0378519ad922
r13499:0af2aac7f5aa
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r15620:0378519ad922
r11486:edda18b2134e
r11486:edda18b2134e
r13742:180ad925befc
r13742:180ad925befc
r11486:edda18b2134e
r18673:e5a4490b411b
r13968:ef1d3e81523a
r18749:61ed9890edec
r18673:e5a4490b411b
r18673:e5a4490b411b
r13659:b0b84c1c2151
r18673:e5a4490b411b
r13659:b0b84c1c2151
r18749:61ed9890edec
r18673:e5a4490b411b
r18673:e5a4490b411b
r13968:ef1d3e81523a
r13659:b0b84c1c2151
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r11486:edda18b2134e
r11486:edda18b2134e
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18673:e5a4490b411b
r18673:e5a4490b411b
r18673:e5a4490b411b
r11486:edda18b2134e
r18749:61ed9890edec
r11486:edda18b2134e
r11486:edda18b2134e
r11486:edda18b2134e
r15620:0378519ad922
r11368:058349c3a02c
r13788:02dadd01bdbe
r10840:7a608f4ad153
r13739:747ed1f003e3
r13554:d1964ead02ee
r11368:058349c3a02c
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r15620:0378519ad922
r15620:0378519ad922
r17616:3ed8a6b01283
r10840:7a608f4ad153
r15619:c709e180d81b
r10840:7a608f4ad153
r18743:bbdd9a165607
r18673:e5a4490b411b
r12591:0f17c8004d0f
r18673:e5a4490b411b
r15769:4a935f419828
r15769:4a935f419828
r15769:4a935f419828
r12591:0f17c8004d0f
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r13659:b0b84c1c2151
r12591:0f17c8004d0f
r13567:9f40d27b2fd6
r18673:e5a4490b411b
r16950:9855f8364bec
r13567:9f40d27b2fd6
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r13659:b0b84c1c2151
r13659:b0b84c1c2151
r13567:9f40d27b2fd6
r13695:e0bf1a35834a
r13659:b0b84c1c2151
r13659:b0b84c1c2151
r18749:61ed9890edec
r18673:e5a4490b411b
r13567:9f40d27b2fd6
r13567:9f40d27b2fd6
r13567:9f40d27b2fd6
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r18749:61ed9890edec
r18749:61ed9890edec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18673:e5a4490b411b
r12591:0f17c8004d0f
r15769:4a935f419828
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r16950:9855f8364bec
r16950:9855f8364bec
r16950:9855f8364bec
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12622:202e83a6cee7
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r16950:9855f8364bec
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r14399:3f819c0da60a
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r18673:e5a4490b411b
r13659:b0b84c1c2151
r18673:e5a4490b411b
r16950:9855f8364bec
r13659:b0b84c1c2151
r16950:9855f8364bec
r10853:44b4b13121cb
r13659:b0b84c1c2151
r13659:b0b84c1c2151
r10853:44b4b13121cb
r10853:44b4b13121cb
r10853:44b4b13121cb
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18673:e5a4490b411b
r15769:4a935f419828
r13159:03d1e6e6c70a
r14399:3f819c0da60a
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r16950:9855f8364bec
r16950:9855f8364bec
r13968:ef1d3e81523a
r15769:4a935f419828
r13968:ef1d3e81523a
r13968:ef1d3e81523a
r13968:ef1d3e81523a
r13968:ef1d3e81523a
r18673:e5a4490b411b
r16950:9855f8364bec
r16950:9855f8364bec
r13968:ef1d3e81523a
r15769:4a935f419828
r13968:ef1d3e81523a
r13968:ef1d3e81523a
r13968:ef1d3e81523a
r13968:ef1d3e81523a
r18673:e5a4490b411b
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r18673:e5a4490b411b
r10840:7a608f4ad153
r10840:7a608f4ad153
r13959:44bb928ae22d
r18673:e5a4490b411b
r13959:44bb928ae22d
r14635:a75264d517b7
r13959:44bb928ae22d
r13959:44bb928ae22d
r13959:44bb928ae22d
r18795:f50d592f5c36
r13959:44bb928ae22d
r13959:44bb928ae22d
r13959:44bb928ae22d
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r10840:7a608f4ad153
r16950:9855f8364bec
r13895:009db002ff3f
r13895:009db002ff3f
r13895:009db002ff3f
r17484:696d6356f836
r17484:696d6356f836
r18673:e5a4490b411b
r18673:e5a4490b411b
r18673:e5a4490b411b
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r15620:0378519ad922
r10840:7a608f4ad153
r10840:7a608f4ad153
r18743:bbdd9a165607
r10840:7a608f4ad153
r10840:7a608f4ad153
r10840:7a608f4ad153
r11486:edda18b2134e
r18501:8e3d905ea4bc
r11486:edda18b2134e
r14931:fdc0797fe626
r18673:e5a4490b411b
r18673:e5a4490b411b
r12665:89ad4484cbd6
r17616:3ed8a6b01283
r14931:fdc0797fe626
r15620:0378519ad922
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r14931:fdc0797fe626
r14931:fdc0797fe626
r14932:86cf482b8249
r14931:fdc0797fe626
r17616:3ed8a6b01283
r10696:8dfe83e30d01
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r14931:fdc0797fe626
r10696:8dfe83e30d01
r14935:1c89e8b20a82
r18673:e5a4490b411b
r14935:1c89e8b20a82
r18673:e5a4490b411b
r14935:1c89e8b20a82
r14935:1c89e8b20a82
r14935:1c89e8b20a82
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18673:e5a4490b411b
r10696:8dfe83e30d01
r18749:61ed9890edec
r18673:e5a4490b411b
r18673:e5a4490b411b
r18673:e5a4490b411b
r10696:8dfe83e30d01
r11700:411864d6d2f4
r11700:411864d6d2f4
r14931:fdc0797fe626
r14931:fdc0797fe626
r10696:8dfe83e30d01
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18673:e5a4490b411b
r18673:e5a4490b411b
r14931:fdc0797fe626
r12591:0f17c8004d0f
r10696:8dfe83e30d01
r13695:e0bf1a35834a
r12591:0f17c8004d0f
r18673:e5a4490b411b
r12591:0f17c8004d0f
r13267:2361e589494c
r12591:0f17c8004d0f
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18749:61ed9890edec
r10696:8dfe83e30d01
r17612:43c5f4ff818e
r18673:e5a4490b411b
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r12138:e93d2e409e78
r12138:e93d2e409e78
r12138:e93d2e409e78
r10696:8dfe83e30d01
r18673:e5a4490b411b
r10696:8dfe83e30d01
r12138:e93d2e409e78
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r14386:deda8721215e
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r14035:4f06488d5a62
r14035:4f06488d5a62
r18673:e5a4490b411b
r14931:fdc0797fe626
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18673:e5a4490b411b
r13896:043c5a7b0071
r12136:c9866cb76857
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r12136:c9866cb76857
r12136:c9866cb76857
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r13896:043c5a7b0071
r10696:8dfe83e30d01
r11486:edda18b2134e
r18673:e5a4490b411b
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r17612:43c5f4ff818e
r17612:43c5f4ff818e
r17612:43c5f4ff818e
r18749:61ed9890edec
r10696:8dfe83e30d01
r11703:04e9e36e6413
r15769:4a935f419828
r15769:4a935f419828
r11703:04e9e36e6413
r11703:04e9e36e6413
r18673:e5a4490b411b
r11703:04e9e36e6413
r11703:04e9e36e6413
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r11700:411864d6d2f4
r11700:411864d6d2f4
r15769:4a935f419828
r15769:4a935f419828
r11700:411864d6d2f4
r11703:04e9e36e6413
r15769:4a935f419828
r15769:4a935f419828
r15769:4a935f419828
r11703:04e9e36e6413
r11703:04e9e36e6413
r18673:e5a4490b411b
r18673:e5a4490b411b
r11703:04e9e36e6413
r11703:04e9e36e6413
r15769:4a935f419828
r14188:2fc0e63de64a
r12591:0f17c8004d0f
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r18673:e5a4490b411b
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r14188:2fc0e63de64a
r12591:0f17c8004d0f
r11700:411864d6d2f4
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r10696:8dfe83e30d01
r12591:0f17c8004d0f
r18673:e5a4490b411b
r18749:61ed9890edec
r12591:0f17c8004d0f
r10696:8dfe83e30d01
r12665:89ad4484cbd6
r15769:4a935f419828
r14931:fdc0797fe626
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r18501:8e3d905ea4bc
r18501:8e3d905ea4bc
r18501:8e3d905ea4bc
r18501:8e3d905ea4bc
r18501:8e3d905ea4bc
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r14931:fdc0797fe626
r14931:fdc0797fe626
r17647:d4b47933b13c
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r12591:0f17c8004d0f
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r17616:3ed8a6b01283
r11353:66f3a68f1504
r11353:66f3a68f1504
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r11353:66f3a68f1504
r12864:8b2e809d462c
r18749:61ed9890edec
r15769:4a935f419828
r12864:8b2e809d462c
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r11700:411864d6d2f4
r15769:4a935f419828
r11353:66f3a68f1504
r14386:deda8721215e
r14386:deda8721215e
r11353:66f3a68f1504
r11353:66f3a68f1504
r14399:3f819c0da60a
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18673:e5a4490b411b
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18673:e5a4490b411b
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r14386:deda8721215e
r14386:deda8721215e
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18749:61ed9890edec
r18673:e5a4490b411b
r18749:61ed9890edec
r14386:deda8721215e
r18192:da213da57034
r15883:536e1f3f2738
r14386:deda8721215e
r14386:deda8721215e
r18673:e5a4490b411b
r14386:deda8721215e
r14386:deda8721215e
r14931:fdc0797fe626
r18673:e5a4490b411b
r14931:fdc0797fe626
r18673:e5a4490b411b
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r14931:fdc0797fe626
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r18673:e5a4490b411b
r14931:fdc0797fe626
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r18673:e5a4490b411b
r18673:e5a4490b411b
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r15482:915af0ecad1e
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r17476:d3b7a183536d
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r14931:fdc0797fe626
r17478:eef8999a62a1
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r18673:e5a4490b411b
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r17478:eef8999a62a1
r17478:eef8999a62a1
r18749:61ed9890edec
r14931:fdc0797fe626
r18749:61ed9890edec
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r13334:52f3226937dd
r10696:8dfe83e30d01
r18673:e5a4490b411b
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r12665:89ad4484cbd6
r12665:89ad4484cbd6
r10696:8dfe83e30d01
r14931:fdc0797fe626
r14931:fdc0797fe626
r14931:fdc0797fe626
r10696:8dfe83e30d01
r15866:97ecf119973d
r15866:97ecf119973d
r15866:97ecf119973d
r18673:e5a4490b411b
r15866:97ecf119973d
r15866:97ecf119973d
r15620:0378519ad922
r11486:edda18b2134e
r11486:edda18b2134e
r13742:180ad925befc
r13742:180ad925befc
r14035:4f06488d5a62
r13742:180ad925befc
r11486:edda18b2134e
r18673:e5a4490b411b
r15866:97ecf119973d
r11486:edda18b2134e
r11486:edda18b2134e
r18749:61ed9890edec
r18673:e5a4490b411b
r18673:e5a4490b411b
r18673:e5a4490b411b
r11486:edda18b2134e
r11486:edda18b2134e
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r18673:e5a4490b411b
r14935:1c89e8b20a82
r18673:e5a4490b411b
r14935:1c89e8b20a82
r14935:1c89e8b20a82
r14935:1c89e8b20a82
r18673:e5a4490b411b
r14935:1c89e8b20a82
r14931:fdc0797fe626
r18673:e5a4490b411b
r18673:e5a4490b411b
r14931:fdc0797fe626
r14931:fdc0797fe626
r11486:edda18b2134e
r11486:edda18b2134e
r18673:e5a4490b411b
r13742:180ad925befc
r11486:edda18b2134e
r11486:edda18b2134e
r11486:edda18b2134e
r11486:edda18b2134e
r15620:0378519ad922
r11368:058349c3a02c
r14314:1ba2755951eb
r10696:8dfe83e30d01
r13739:747ed1f003e3
r13554:d1964ead02ee
r11368:058349c3a02c
r10696:8dfe83e30d01
r15620:0378519ad922
r15620:0378519ad922
r15620:0378519ad922
r15620:0378519ad922
r11353:66f3a68f1504
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r11353:66f3a68f1504
r11353:66f3a68f1504
r11353:66f3a68f1504
r10696:8dfe83e30d01
r14635:a75264d517b7
r10696:8dfe83e30d01
r10696:8dfe83e30d01
r14789:ae5ae13ad9ae
r14789:ae5ae13ad9ae
r14789:ae5ae13ad9ae
r14789:ae5ae13ad9ae
r14789:ae5ae13ad9ae
r14789:ae5ae13ad9ae
r14789:ae5ae13ad9ae
r14789:ae5ae13ad9ae
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14917:1e67a8deb030
r14917:1e67a8deb030
r14917:1e67a8deb030
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r14795:b25ae3d8ae7d
r18861:a0daedca90f7
r18861:a0daedca90f7
r18861:a0daedca90f7
r18861:a0daedca90f7
r18861:a0daedca90f7
r14795:b25ae3d8ae7d
/* $Id$ */

/*
 * 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 ai_gui.cpp %Window for configuring the AIs */

#include "../stdafx.h"
#include "../table/sprites.h"
#include "../error.h"
#include "../gui.h"
#include "../querystring_gui.h"
#include "../company_base.h"
#include "../company_gui.h"
#include "../strings_func.h"
#include "../window_func.h"
#include "../gfx_func.h"
#include "../command_func.h"
#include "../network/network.h"
#include "../settings_func.h"
#include "../network/network_content.h"

#include "ai.hpp"
#include "../script/api/script_log.hpp"
#include "ai_config.hpp"
#include "ai_info.hpp"
#include "ai_instance.hpp"
#include "../game/game.hpp"
#include "../game/game_config.hpp"
#include "../game/game_info.hpp"
#include "../game/game_instance.hpp"


#include "table/strings.h"

#include <vector>

static ScriptConfig *GetConfig(CompanyID slot)
{
	if (slot == OWNER_DEITY) return GameConfig::GetConfig();
	return AIConfig::GetConfig(slot);
}

/**
 * Window that let you choose an available AI.
 */
struct AIListWindow : public Window {
	const ScriptInfoList *info_list;    ///< The list of Scripts.
	int selected;                       ///< The currently selected Script.
	CompanyID slot;                     ///< The company we're selecting a new Script for.
	int line_height;                    ///< Height of a row in the matrix widget.
	Scrollbar *vscroll;                 ///< Cache of the vertical scrollbar.

	/**
	 * Constructor for the window.
	 * @param desc The description of the window.
	 * @param slot The company we're changing the AI for.
	 */
	AIListWindow(const WindowDesc *desc, CompanyID slot) : Window(),
		slot(slot)
	{
		if (slot == OWNER_DEITY) {
			this->info_list = Game::GetUniqueInfoList();
		} else {
			this->info_list = AI::GetUniqueInfoList();
		}

		this->CreateNestedTree(desc);
		this->vscroll = this->GetScrollbar(WID_AIL_SCROLLBAR);
		this->FinishInitNested(desc); // Initializes 'this->line_height' as side effect.

		this->vscroll->SetCount((int)this->info_list->size() + 1);

		/* Try if we can find the currently selected AI */
		this->selected = -1;
		if (GetConfig(slot)->HasScript()) {
			ScriptInfo *info = GetConfig(slot)->GetInfo();
			int i = 0;
			for (ScriptInfoList::const_iterator it = this->info_list->begin(); it != this->info_list->end(); it++, i++) {
				if ((*it).second == info) {
					this->selected = i;
					break;
				}
			}
		}
	}

	virtual void SetStringParameters(int widget) const
	{
		switch (widget) {
			case WID_AIL_CAPTION:
				SetDParam(0, (this->slot == OWNER_DEITY) ? STR_AI_LIST_CAPTION_GAMESCRIPT : STR_AI_LIST_CAPTION_AI);
				break;
		}
	}

	virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
	{
		if (widget == WID_AIL_LIST) {
			this->line_height = FONT_HEIGHT_NORMAL + WD_MATRIX_TOP + WD_MATRIX_BOTTOM;

			resize->width = 1;
			resize->height = this->line_height;
			size->height = GB(this->GetWidget<NWidgetCore>(widget)->widget_data, MAT_ROW_START, MAT_ROW_BITS) * this->line_height;
		}
	}

	virtual void DrawWidget(const Rect &r, int widget) const
	{
		switch (widget) {
			case WID_AIL_LIST: {
				/* Draw a list of all available AIs. */
				int y = this->GetWidget<NWidgetBase>(WID_AIL_LIST)->pos_y;
				/* First AI in the list is hardcoded to random */
				if (this->vscroll->IsVisible(0)) {
					DrawString(r.left + WD_MATRIX_LEFT, r.right - WD_MATRIX_LEFT, y + WD_MATRIX_TOP, this->slot == OWNER_DEITY ? STR_AI_CONFIG_NONE : STR_AI_CONFIG_RANDOM_AI, this->selected == -1 ? TC_WHITE : TC_BLACK);
					y += this->line_height;
				}
				ScriptInfoList::const_iterator it = this->info_list->begin();
				for (int i = 1; it != this->info_list->end(); i++, it++) {
					if (this->vscroll->IsVisible(i)) {
						DrawString(r.left + WD_MATRIX_LEFT, r.right - WD_MATRIX_RIGHT, y + WD_MATRIX_TOP, (*it).second->GetName(), (this->selected == i - 1) ? TC_WHITE : TC_BLACK);
						y += this->line_height;
					}
				}
				break;
			}
			case WID_AIL_INFO_BG: {
				AIInfo *selected_info = NULL;
				ScriptInfoList::const_iterator it = this->info_list->begin();
				for (int i = 1; selected_info == NULL && it != this->info_list->end(); i++, it++) {
					if (this->selected == i - 1) selected_info = static_cast<AIInfo *>((*it).second);
				}
				/* Some info about the currently selected AI. */
				if (selected_info != NULL) {
					int y = r.top + WD_FRAMERECT_TOP;
					SetDParamStr(0, selected_info->GetAuthor());
					DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, STR_AI_LIST_AUTHOR);
					y += FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL;
					SetDParam(0, selected_info->GetVersion());
					DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, STR_AI_LIST_VERSION);
					y += FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL;
					if (selected_info->GetURL() != NULL) {
						SetDParamStr(0, selected_info->GetURL());
						DrawString(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, STR_AI_LIST_URL);
						y += FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL;
					}
					SetDParamStr(0, selected_info->GetDescription());
					DrawStringMultiLine(r.left + WD_FRAMETEXT_LEFT, r.right - WD_FRAMETEXT_RIGHT, y, r.bottom - WD_FRAMERECT_BOTTOM, STR_JUST_RAW_STRING, TC_BLACK);
				}
				break;
			}
		}
	}

	/**
	 * Changes the AI of the current slot.
	 */
	void ChangeAI()
	{
		if (this->selected == -1) {
			GetConfig(slot)->Change(NULL);
		} else {
			ScriptInfoList::const_iterator it = this->info_list->begin();
			for (int i = 0; i < this->selected; i++) it++;
			GetConfig(slot)->Change((*it).second->GetName(), (*it).second->GetVersion());
		}
		InvalidateWindowData(WC_GAME_OPTIONS, WN_GAME_OPTIONS_AI);
		InvalidateWindowClassesData(WC_AI_SETTINGS);
		DeleteWindowByClass(WC_QUERY_STRING);
	}

	virtual void OnClick(Point pt, int widget, int click_count)
	{
		switch (widget) {
			case WID_AIL_LIST: { // Select one of the AIs
				int sel = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_AIL_LIST, 0, this->line_height) - 1;
				if (sel < (int)this->info_list->size()) {
					this->selected = sel;
					this->SetDirty();
					if (click_count > 1) {
						this->ChangeAI();
						delete this;
					}
				}
				break;
			}

			case WID_AIL_ACCEPT: {
				this->ChangeAI();
				delete this;
				break;
			}

			case WID_AIL_CANCEL:
				delete this;
				break;
		}
	}

	virtual void OnResize()
	{
		NWidgetCore *nwi = this->GetWidget<NWidgetCore>(WID_AIL_LIST);
		this->vscroll->SetCapacity(nwi->current_y / this->line_height);
		nwi->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START);
	}

	/**
	 * Some data on this window has become invalid.
	 * @param data Information about the changed data.
	 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
	 */
	virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
	{
		if (_game_mode == GM_NORMAL && Company::IsValidID(this->slot)) {
			delete this;
			return;
		}

		if (!gui_scope) return;

		this->vscroll->SetCount((int)this->info_list->size() + 1);

		/* selected goes from -1 .. length of ai list - 1. */
		this->selected = min(this->selected, this->vscroll->GetCount() - 2);
	}
};

/** Widgets for the AI list window. */
static const NWidgetPart _nested_ai_list_widgets[] = {
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_CLOSEBOX, COLOUR_MAUVE),
		NWidget(WWT_CAPTION, COLOUR_MAUVE, WID_AIL_CAPTION), SetDataTip(STR_AI_LIST_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
	EndContainer(),
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_MATRIX, COLOUR_MAUVE, WID_AIL_LIST), SetMinimalSize(188, 112), SetFill(1, 1), SetResize(1, 1), SetDataTip(0x501, STR_AI_LIST_TOOLTIP), SetScrollbar(WID_AIL_SCROLLBAR),
		NWidget(NWID_VSCROLLBAR, COLOUR_MAUVE, WID_AIL_SCROLLBAR),
	EndContainer(),
	NWidget(WWT_PANEL, COLOUR_MAUVE, WID_AIL_INFO_BG), SetMinimalTextLines(8, WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM), SetResize(1, 0),
	EndContainer(),
	NWidget(NWID_HORIZONTAL),
		NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
			NWidget(WWT_PUSHTXTBTN, COLOUR_MAUVE, WID_AIL_ACCEPT), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_AI_LIST_ACCEPT, STR_AI_LIST_ACCEPT_TOOLTIP),
			NWidget(WWT_PUSHTXTBTN, COLOUR_MAUVE, WID_AIL_CANCEL), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_AI_LIST_CANCEL, STR_AI_LIST_CANCEL_TOOLTIP),
		EndContainer(),
		NWidget(WWT_RESIZEBOX, COLOUR_MAUVE),
	EndContainer(),
};

/** Window definition for the ai list window. */
static const WindowDesc _ai_list_desc(
	WDP_CENTER, 200, 234,
	WC_AI_LIST, WC_NONE,
	WDF_UNCLICK_BUTTONS,
	_nested_ai_list_widgets, lengthof(_nested_ai_list_widgets)
);

/**
 * Open the AI list window to chose an AI for the given company slot.
 * @param slot The slot to change the AI of.
 */
static void ShowAIListWindow(CompanyID slot)
{
	DeleteWindowByClass(WC_AI_LIST);
	new AIListWindow(&_ai_list_desc, slot);
}

/**
 * Window for settings the parameters of an AI.
 */
struct AISettingsWindow : public Window {
	CompanyID slot;                       ///< The currently show company's setting.
	ScriptConfig *ai_config;              ///< The configuration we're modifying.
	int clicked_button;                   ///< The button we clicked.
	bool clicked_increase;                ///< Whether we clicked the increase or decrease button.
	int timeout;                          ///< Timeout for unclicking the button.
	int clicked_row;                      ///< The clicked row of settings.
	int line_height;                      ///< Height of a row in the matrix widget.
	Scrollbar *vscroll;                   ///< Cache of the vertical scrollbar.
	typedef std::vector<const ScriptConfigItem *> VisibleSettingsList;
	VisibleSettingsList visible_settings; ///< List of visible AI settings

	/**
	 * Constructor for the window.
	 * @param desc The description of the window.
	 * @param slot The company we're changing the settings for.
	 */
	AISettingsWindow(const WindowDesc *desc, CompanyID slot) : Window(),
		slot(slot),
		clicked_button(-1),
		timeout(0)
	{
		this->ai_config = GetConfig(slot);
		this->RebuildVisibleSettings();

		this->CreateNestedTree(desc);
		this->vscroll = this->GetScrollbar(WID_AIS_SCROLLBAR);
		this->FinishInitNested(desc, slot);  // Initializes 'this->line_height' as side effect.

		this->SetWidgetDisabledState(WID_AIS_RESET, _game_mode != GM_MENU && Company::IsValidID(this->slot));

		this->vscroll->SetCount((int)this->visible_settings.size());
	}

	virtual void SetStringParameters(int widget) const
	{
		switch (widget) {
			case WID_AIS_CAPTION:
				SetDParam(0, (this->slot == OWNER_DEITY) ? STR_AI_SETTINGS_CAPTION_GAMESCRIPT : STR_AI_SETTINGS_CAPTION_AI);
				break;
		}
	}

	/**
	 * Rebuilds the list of visible settings. AI settings with the flag
	 * AICONFIG_AI_DEVELOPER set will only be visible if the game setting
	 * gui.ai_developer_tools is enabled.
	 */
	void RebuildVisibleSettings()
	{
		visible_settings.clear();

		ScriptConfigItemList::const_iterator it = this->ai_config->GetConfigList()->begin();
		for (; it != this->ai_config->GetConfigList()->end(); it++) {
			bool no_hide = (it->flags & SCRIPTCONFIG_DEVELOPER) == 0;
			if (no_hide || _settings_client.gui.ai_developer_tools) {
				visible_settings.push_back(&(*it));
			}
		}
	}

	virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
	{
		if (widget == WID_AIS_BACKGROUND) {
			this->line_height = FONT_HEIGHT_NORMAL + WD_MATRIX_TOP + WD_MATRIX_BOTTOM;

			resize->width = 1;
			resize->height = this->line_height;
			size->height = GB(this->GetWidget<NWidgetCore>(widget)->widget_data, MAT_ROW_START, MAT_ROW_BITS) * this->line_height;
		}
	}

	virtual void DrawWidget(const Rect &r, int widget) const
	{
		if (widget != WID_AIS_BACKGROUND) return;

		ScriptConfig *config = this->ai_config;
		VisibleSettingsList::const_iterator it = this->visible_settings.begin();
		int i = 0;
		for (; !this->vscroll->IsVisible(i); i++) it++;

		bool rtl = _current_text_dir == TD_RTL;
		uint buttons_left = rtl ? r.right - 23 : r.left + 4;
		uint text_left    = r.left + (rtl ? WD_FRAMERECT_LEFT : 28);
		uint text_right   = r.right - (rtl ? 28 : WD_FRAMERECT_RIGHT);


		int y = r.top;
		for (; this->vscroll->IsVisible(i) && it != visible_settings.end(); i++, it++) {
			const ScriptConfigItem &config_item = **it;
			int current_value = config->GetSetting((config_item).name);
			bool editable = _game_mode == GM_MENU || ((this->slot != OWNER_DEITY) && !Company::IsValidID(this->slot)) || (config_item.flags & SCRIPTCONFIG_INGAME) != 0;

			StringID str;
			TextColour colour;
			uint idx = 0;
			if (StrEmpty(config_item.description)) {
				if (!strcmp(config_item.name, "start_date")) {
					/* Build-in translation */
					str = STR_AI_SETTINGS_START_DELAY;
					colour = TC_LIGHT_BLUE;
				} else {
					str = STR_JUST_STRING;
					colour = TC_ORANGE;
				}
			} else {
				str = STR_AI_SETTINGS_SETTING;
				colour = TC_LIGHT_BLUE;
				SetDParamStr(idx++, config_item.description);
			}

			if ((config_item.flags & SCRIPTCONFIG_BOOLEAN) != 0) {
				DrawFrameRect(buttons_left, y  + 2, buttons_left + 19, y + 10, (current_value != 0) ? COLOUR_GREEN : COLOUR_RED, (current_value != 0) ? FR_LOWERED : FR_NONE);
				SetDParam(idx++, current_value == 0 ? STR_CONFIG_SETTING_OFF : STR_CONFIG_SETTING_ON);
			} else {
				DrawArrowButtons(buttons_left, y + 2, COLOUR_YELLOW, (this->clicked_button == i) ? 1 + (this->clicked_increase != rtl) : 0, editable && current_value > config_item.min_value, editable && current_value < config_item.max_value);
				if (config_item.labels != NULL && config_item.labels->Contains(current_value)) {
					SetDParam(idx++, STR_JUST_RAW_STRING);
					SetDParamStr(idx++, config_item.labels->Find(current_value)->second);
				} else {
					SetDParam(idx++, STR_JUST_INT);
					SetDParam(idx++, current_value);
				}
			}

			DrawString(text_left, text_right, y + WD_MATRIX_TOP, str, colour);
			y += this->line_height;
		}
	}

	/**
	 * Check whether we modified the difficulty level or not.
	 */
	void CheckDifficultyLevel()
	{
		if (_game_mode == GM_MENU) {
			if (_settings_newgame.difficulty.diff_level != 3) {
				_settings_newgame.difficulty.diff_level = 3;
				ShowErrorMessage(STR_WARNING_DIFFICULTY_TO_CUSTOM, INVALID_STRING_ID, WL_WARNING);
			}
		} else if (_settings_game.difficulty.diff_level != 3) {
			IConsoleSetSetting("difficulty.diff_level", 3);
		}
	}

	virtual void OnClick(Point pt, int widget, int click_count)
	{
		switch (widget) {
			case WID_AIS_BACKGROUND: {
				const NWidgetBase *wid = this->GetWidget<NWidgetBase>(WID_AIS_BACKGROUND);
				int num = (pt.y - wid->pos_y) / this->line_height + this->vscroll->GetPosition();
				if (num >= (int)this->visible_settings.size()) break;

				VisibleSettingsList::const_iterator it = this->visible_settings.begin();
				for (int i = 0; i < num; i++) it++;
				const ScriptConfigItem config_item = **it;
				if (_game_mode == GM_NORMAL && ((this->slot == OWNER_DEITY) || Company::IsValidID(this->slot)) && (config_item.flags & SCRIPTCONFIG_INGAME) == 0) return;

				bool bool_item = (config_item.flags & SCRIPTCONFIG_BOOLEAN) != 0;

				int x = pt.x - wid->pos_x;
				if (_current_text_dir == TD_RTL) x = wid->current_x - x;
				x -= 4;
				/* One of the arrows is clicked (or green/red rect in case of bool value) */
				if (IsInsideMM(x, 0, 21)) {
					int new_val = this->ai_config->GetSetting(config_item.name);
					int old_val = new_val;
					if (bool_item) {
						new_val = !new_val;
					} else if (x >= 10) {
						/* Increase button clicked */
						new_val += config_item.step_size;
						if (new_val > config_item.max_value) new_val = config_item.max_value;
						this->clicked_increase = true;
					} else {
						/* Decrease button clicked */
						new_val -= config_item.step_size;
						if (new_val < config_item.min_value) new_val = config_item.min_value;
						this->clicked_increase = false;
					}

					if (new_val != old_val) {
						this->ai_config->SetSetting(config_item.name, new_val);
						this->clicked_button = num;
						this->timeout = 5;

						this->CheckDifficultyLevel();
					}
				} else if (!bool_item) {
					/* Display a query box so users can enter a custom value. */
					this->clicked_row = num;
					SetDParam(0, this->ai_config->GetSetting(config_item.name));
					ShowQueryString(STR_JUST_INT, STR_CONFIG_SETTING_QUERY_CAPTION, 10, this, CS_NUMERAL, QSF_NONE);
				}
				this->SetDirty();
				break;
			}

			case WID_AIS_ACCEPT:
				delete this;
				break;

			case WID_AIS_RESET:
				if (_game_mode == GM_MENU || !Company::IsValidID(this->slot)) {
					this->ai_config->ResetSettings();
					this->SetDirty();
				}
				break;
		}
	}

	virtual void OnQueryTextFinished(char *str)
	{
		if (StrEmpty(str)) return;
		ScriptConfigItemList::const_iterator it = this->ai_config->GetConfigList()->begin();
		for (int i = 0; i < this->clicked_row; i++) it++;
		if (_game_mode == GM_NORMAL && ((this->slot == OWNER_DEITY) || Company::IsValidID(this->slot)) && (it->flags & SCRIPTCONFIG_INGAME) == 0) return;
		int32 value = atoi(str);
		this->ai_config->SetSetting((*it).name, value);
		this->CheckDifficultyLevel();
		this->SetDirty();
	}

	virtual void OnResize()
	{
		NWidgetCore *nwi = this->GetWidget<NWidgetCore>(WID_AIS_BACKGROUND);
		this->vscroll->SetCapacity(nwi->current_y / this->line_height);
		nwi->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START);
	}

	virtual void OnTick()
	{
		if (--this->timeout == 0) {
			this->clicked_button = -1;
			this->SetDirty();
		}
	}

	/**
	 * Some data on this window has become invalid.
	 * @param data Information about the changed data.
	 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
	 */
	virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
	{
		if (_game_mode == GM_NORMAL && Company::IsValidID(this->slot)) {
			delete this;
		} else {
			this->RebuildVisibleSettings();
		}
	}
};

/** Widgets for the AI settings window. */
static const NWidgetPart _nested_ai_settings_widgets[] = {
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_CLOSEBOX, COLOUR_MAUVE),
		NWidget(WWT_CAPTION, COLOUR_MAUVE, WID_AIS_CAPTION), SetDataTip(STR_AI_SETTINGS_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
	EndContainer(),
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_MATRIX, COLOUR_MAUVE, WID_AIS_BACKGROUND), SetMinimalSize(188, 182), SetResize(1, 1), SetFill(1, 0), SetDataTip(0x501, STR_NULL), SetScrollbar(WID_AIS_SCROLLBAR),
		NWidget(NWID_VSCROLLBAR, COLOUR_MAUVE, WID_AIS_SCROLLBAR),
	EndContainer(),
	NWidget(NWID_HORIZONTAL),
		NWidget(NWID_HORIZONTAL, NC_EQUALSIZE),
			NWidget(WWT_PUSHTXTBTN, COLOUR_MAUVE, WID_AIS_ACCEPT), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_AI_SETTINGS_CLOSE, STR_NULL),
			NWidget(WWT_PUSHTXTBTN, COLOUR_MAUVE, WID_AIS_RESET), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_AI_SETTINGS_RESET, STR_NULL),
		EndContainer(),
		NWidget(WWT_RESIZEBOX, COLOUR_MAUVE),
	EndContainer(),
};

/** Window definition for the AI settings window. */
static const WindowDesc _ai_settings_desc(
	WDP_CENTER, 500, 208,
	WC_AI_SETTINGS, WC_NONE,
	WDF_UNCLICK_BUTTONS,
	_nested_ai_settings_widgets, lengthof(_nested_ai_settings_widgets)
);

/**
 * Open the AI settings window to change the AI settings for an AI.
 * @param slot The CompanyID of the AI to change the settings.
 */
static void ShowAISettingsWindow(CompanyID slot)
{
	DeleteWindowByClass(WC_AI_LIST);
	DeleteWindowByClass(WC_AI_SETTINGS);
	new AISettingsWindow(&_ai_settings_desc, slot);
}

/** Widgets for the configure AI window. */
static const NWidgetPart _nested_ai_config_widgets[] = {
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_CLOSEBOX, COLOUR_MAUVE),
		NWidget(WWT_CAPTION, COLOUR_MAUVE), SetDataTip(STR_AI_CONFIG_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
	EndContainer(),
	NWidget(WWT_PANEL, COLOUR_MAUVE, WID_AIC_BACKGROUND),
		NWidget(NWID_VERTICAL), SetPIP(4, 4, 4),
			NWidget(NWID_HORIZONTAL), SetPIP(7, 0, 7),
				NWidget(WWT_PUSHARROWBTN, COLOUR_YELLOW, WID_AIC_DECREASE), SetFill(0, 1), SetDataTip(AWV_DECREASE, STR_NULL),
				NWidget(WWT_PUSHARROWBTN, COLOUR_YELLOW, WID_AIC_INCREASE), SetFill(0, 1), SetDataTip(AWV_INCREASE, STR_NULL),
				NWidget(NWID_SPACER), SetMinimalSize(6, 0),
				NWidget(WWT_TEXT, COLOUR_MAUVE, WID_AIC_NUMBER), SetDataTip(STR_DIFFICULTY_LEVEL_SETTING_MAXIMUM_NO_COMPETITORS, STR_NULL), SetFill(1, 0), SetPadding(1, 0, 0, 0),
			EndContainer(),
			NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(7, 0, 7),
				NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_AIC_MOVE_UP), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_AI_CONFIG_MOVE_UP, STR_AI_CONFIG_MOVE_UP_TOOLTIP),
				NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_AIC_MOVE_DOWN), SetResize(1, 0), SetFill(1, 0), SetDataTip(STR_AI_CONFIG_MOVE_DOWN, STR_AI_CONFIG_MOVE_DOWN_TOOLTIP),
			EndContainer(),
		EndContainer(),
		NWidget(WWT_FRAME, COLOUR_MAUVE), SetDataTip(STR_AI_CONFIG_AI, STR_NULL), SetPadding(0, 5, 0, 5),
			NWidget(NWID_HORIZONTAL),
				NWidget(WWT_MATRIX, COLOUR_MAUVE, WID_AIC_LIST), SetMinimalSize(288, 112), SetFill(1, 0), SetDataTip(0x801, STR_AI_CONFIG_AILIST_TOOLTIP), SetScrollbar(WID_AIC_SCROLLBAR),
				NWidget(NWID_VSCROLLBAR, COLOUR_MAUVE, WID_AIC_SCROLLBAR),
			EndContainer(),
		EndContainer(),
		NWidget(NWID_SPACER), SetMinimalSize(0, 9),
		NWidget(WWT_FRAME, COLOUR_MAUVE), SetDataTip(STR_AI_CONFIG_GAMESCRIPT, STR_NULL), SetPadding(0, 5, 4, 5),
			NWidget(WWT_MATRIX, COLOUR_MAUVE, WID_AIC_GAMELIST), SetMinimalSize(288, 14), SetFill(1, 0), SetDataTip(0x101, STR_AI_CONFIG_GAMELIST_TOOLTIP),
		EndContainer(),
		NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(7, 0, 7),
			NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_AIC_CHANGE), SetFill(1, 0), SetMinimalSize(93, 12), SetDataTip(STR_AI_CONFIG_CHANGE, STR_AI_CONFIG_CHANGE_TOOLTIP),
			NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_AIC_CONFIGURE), SetFill(1, 0), SetMinimalSize(93, 12), SetDataTip(STR_AI_CONFIG_CONFIGURE, STR_AI_CONFIG_CONFIGURE_TOOLTIP),
			NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_AIC_CLOSE), SetFill(1, 0), SetMinimalSize(93, 12), SetDataTip(STR_AI_SETTINGS_CLOSE, STR_NULL),
		EndContainer(),
		NWidget(WWT_PUSHTXTBTN, COLOUR_YELLOW, WID_AIC_CONTENT_DOWNLOAD), SetFill(1, 0), SetMinimalSize(279, 12), SetPadding(0, 7, 9, 7), SetDataTip(STR_INTRO_ONLINE_CONTENT, STR_INTRO_TOOLTIP_ONLINE_CONTENT),
	EndContainer(),
};

/** Window definition for the configure AI window. */
static const WindowDesc _ai_config_desc(
	WDP_CENTER, 0, 0,
	WC_GAME_OPTIONS, WC_NONE,
	WDF_UNCLICK_BUTTONS,
	_nested_ai_config_widgets, lengthof(_nested_ai_config_widgets)
);

/**
 * Window to configure which AIs will start.
 */
struct AIConfigWindow : public Window {
	CompanyID selected_slot; ///< The currently selected AI slot or \c INVALID_COMPANY.
	int line_height;         ///< Height of a single AI-name line.
	Scrollbar *vscroll;      ///< Cache of the vertical scrollbar.

	AIConfigWindow() : Window()
	{
		this->InitNested(&_ai_config_desc, WN_GAME_OPTIONS_AI); // Initializes 'this->line_height' as a side effect.
		this->vscroll = this->GetScrollbar(WID_AIC_SCROLLBAR);
		this->selected_slot = INVALID_COMPANY;
		NWidgetCore *nwi = this->GetWidget<NWidgetCore>(WID_AIC_LIST);
		this->vscroll->SetCapacity(nwi->current_y / this->line_height);
		this->vscroll->SetCount(MAX_COMPANIES);
		nwi->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START);
		this->OnInvalidateData(0);
	}

	~AIConfigWindow()
	{
		DeleteWindowByClass(WC_AI_LIST);
		DeleteWindowByClass(WC_AI_SETTINGS);
	}

	virtual void SetStringParameters(int widget) const
	{
		switch (widget) {
			case WID_AIC_NUMBER:
				SetDParam(0, GetGameSettings().difficulty.max_no_competitors);
				break;
			case WID_AIC_CHANGE:
				switch (selected_slot) {
					case OWNER_DEITY:
						SetDParam(0, STR_AI_CONFIG_CHANGE_GAMESCRIPT);
						break;

					case INVALID_COMPANY:
						SetDParam(0, STR_AI_CONFIG_CHANGE_NONE);
						break;

					default:
						SetDParam(0, STR_AI_CONFIG_CHANGE_AI);
						break;
				}
				break;
		}
	}

	virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
	{
		switch (widget) {
			case WID_AIC_GAMELIST:
			case WID_AIC_LIST:
				this->line_height = FONT_HEIGHT_NORMAL + WD_MATRIX_TOP + WD_MATRIX_BOTTOM;
				size->height = GB(this->GetWidget<NWidgetCore>(widget)->widget_data, MAT_ROW_START, MAT_ROW_BITS) * this->line_height;
				break;
		}
	}

	/**
	 * Can the AI config in the given company slot be edited?
	 * @param slot The slot to query.
	 * @return True if and only if the given AI Config slot can e edited.
	 */
	static bool IsEditable(CompanyID slot)
	{
		if (slot == OWNER_DEITY) return _game_mode != GM_NORMAL;

		if (_game_mode != GM_NORMAL) {
			return slot > 0 && slot <= GetGameSettings().difficulty.max_no_competitors;
		}
		if (Company::IsValidID(slot) || slot < 0) return false;

		int max_slot = GetGameSettings().difficulty.max_no_competitors;
		for (CompanyID cid = COMPANY_FIRST; cid < (CompanyID)max_slot && cid < MAX_COMPANIES; cid++) {
			if (Company::IsValidHumanID(cid)) max_slot++;
		}
		return slot < max_slot;
	}

	virtual void DrawWidget(const Rect &r, int widget) const
	{
		switch (widget) {
			case WID_AIC_GAMELIST: {
				StringID text = STR_AI_CONFIG_NONE;

				if (GameConfig::GetConfig()->GetInfo() != NULL) {
					SetDParamStr(0, GameConfig::GetConfig()->GetInfo()->GetName());
					text = STR_JUST_RAW_STRING;
				}

				DrawString(r.left + 10, r.right - 10, r.top + WD_MATRIX_TOP, text,
						(this->selected_slot == OWNER_DEITY) ? TC_WHITE : (IsEditable(OWNER_DEITY) ? TC_ORANGE : TC_SILVER));

				break;
			}

			case WID_AIC_LIST: {
				int y = r.top;
				for (int i = this->vscroll->GetPosition(); this->vscroll->IsVisible(i) && i < MAX_COMPANIES; i++) {
					StringID text;

					if ((_game_mode != GM_NORMAL && i == 0) || (_game_mode == GM_NORMAL && Company::IsValidHumanID(i))) {
						text = STR_AI_CONFIG_HUMAN_PLAYER;
					} else if (AIConfig::GetConfig((CompanyID)i)->GetInfo() != NULL) {
						SetDParamStr(0, AIConfig::GetConfig((CompanyID)i)->GetInfo()->GetName());
						text = STR_JUST_RAW_STRING;
					} else {
						text = STR_AI_CONFIG_RANDOM_AI;
					}
					DrawString(r.left + 10, r.right - 10, y + WD_MATRIX_TOP, text,
							(this->selected_slot == i) ? TC_WHITE : (IsEditable((CompanyID)i) ? TC_ORANGE : TC_SILVER));
					y += this->line_height;
				}
				break;
			}
		}
	}

	virtual void OnClick(Point pt, int widget, int click_count)
	{
		switch (widget) {
			case WID_AIC_DECREASE:
			case WID_AIC_INCREASE: {
				int new_value;
				if (widget == WID_AIC_DECREASE) {
					new_value = max(0, GetGameSettings().difficulty.max_no_competitors - 1);
				} else {
					new_value = min(MAX_COMPANIES - 1, GetGameSettings().difficulty.max_no_competitors + 1);
				}
				IConsoleSetSetting("difficulty.max_no_competitors", new_value);
				this->InvalidateData();
				break;
			}

			case WID_AIC_GAMELIST: {
				this->selected_slot = OWNER_DEITY;
				this->InvalidateData();
				if (click_count > 1 && this->selected_slot != INVALID_COMPANY) ShowAIListWindow((CompanyID)this->selected_slot);
				break;
			}

			case WID_AIC_LIST: { // Select a slot
				this->selected_slot = (CompanyID)this->vscroll->GetScrolledRowFromWidget(pt.y, this, widget, 0, this->line_height);
				this->InvalidateData();
				if (click_count > 1 && this->selected_slot != INVALID_COMPANY) ShowAIListWindow((CompanyID)this->selected_slot);
				break;
			}

			case WID_AIC_MOVE_UP:
				if (IsEditable(this->selected_slot) && IsEditable((CompanyID)(this->selected_slot - 1))) {
					Swap(GetGameSettings().ai_config[this->selected_slot], GetGameSettings().ai_config[this->selected_slot - 1]);
					this->selected_slot--;
					this->vscroll->ScrollTowards(this->selected_slot);
					this->InvalidateData();
				}
				break;

			case WID_AIC_MOVE_DOWN:
				if (IsEditable(this->selected_slot) && IsEditable((CompanyID)(this->selected_slot + 1))) {
					Swap(GetGameSettings().ai_config[this->selected_slot], GetGameSettings().ai_config[this->selected_slot + 1]);
					this->selected_slot++;
					this->vscroll->ScrollTowards(this->selected_slot);
					this->InvalidateData();
				}
				break;

			case WID_AIC_CHANGE:  // choose other AI
				ShowAIListWindow((CompanyID)this->selected_slot);
				break;

			case WID_AIC_CONFIGURE: // change the settings for an AI
				ShowAISettingsWindow((CompanyID)this->selected_slot);
				break;

			case WID_AIC_CLOSE:
				delete this;
				break;

			case WID_AIC_CONTENT_DOWNLOAD:
				if (!_network_available) {
					ShowErrorMessage(STR_NETWORK_ERROR_NOTAVAILABLE, INVALID_STRING_ID, WL_ERROR);
				} else {
#if defined(ENABLE_NETWORK)
					ShowNetworkContentListWindow(NULL, CONTENT_TYPE_AI);
					_network_content_client.RequestContentList(CONTENT_TYPE_GAME);
#endif
				}
				break;
		}
	}

	/**
	 * Some data on this window has become invalid.
	 * @param data Information about the changed data.
	 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
	 */
	virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
	{
		if (!IsEditable(this->selected_slot)) {
			this->selected_slot = INVALID_COMPANY;
		}

		if (!gui_scope) return;

		this->SetWidgetDisabledState(WID_AIC_DECREASE, GetGameSettings().difficulty.max_no_competitors == 0);
		this->SetWidgetDisabledState(WID_AIC_INCREASE, GetGameSettings().difficulty.max_no_competitors == MAX_COMPANIES - 1);
		this->SetWidgetDisabledState(WID_AIC_CHANGE, this->selected_slot == INVALID_COMPANY);
		this->SetWidgetDisabledState(WID_AIC_CONFIGURE, this->selected_slot == INVALID_COMPANY || GetConfig(this->selected_slot)->GetConfigList()->size() == 0);
		this->SetWidgetDisabledState(WID_AIC_MOVE_UP, this->selected_slot == OWNER_DEITY || this->selected_slot == INVALID_COMPANY || !IsEditable((CompanyID)(this->selected_slot - 1)));
		this->SetWidgetDisabledState(WID_AIC_MOVE_DOWN, this->selected_slot == OWNER_DEITY || this->selected_slot == INVALID_COMPANY || !IsEditable((CompanyID)(this->selected_slot + 1)));
	}
};

/** Open the AI config window. */
void ShowAIConfigWindow()
{
	DeleteWindowByClass(WC_GAME_OPTIONS);
	new AIConfigWindow();
}

/**
 * Window with everything an AI prints via ScriptLog.
 */
struct AIDebugWindow : public QueryStringBaseWindow {
	static const int top_offset;    ///< Offset of the text at the top of the WID_AID_LOG_PANEL.
	static const int bottom_offset; ///< Offset of the text at the bottom of the WID_AID_LOG_PANEL.

	static const unsigned int MAX_BREAK_STR_STRING_LENGTH = 256; ///< Maximum length of the break string.

	static CompanyID ai_debug_company;                     ///< The AI that is (was last) being debugged.
	int redraw_timer;                                      ///< Timer for redrawing the window, otherwise it'll happen every tick.
	int last_vscroll_pos;                                  ///< Last position of the scrolling.
	bool autoscroll;                                       ///< Whether automatically scrolling should be enabled or not.
	bool show_break_box;                                   ///< Whether the break/debug box is visible.
	static bool break_check_enabled;                       ///< Stop an AI when it prints a matching string
	static char break_string[MAX_BREAK_STR_STRING_LENGTH]; ///< The string to match to the AI output
	static bool case_sensitive_break_check;                ///< Is the matching done case-sensitive
	int highlight_row;                                     ///< The output row that matches the given string, or -1
	Scrollbar *vscroll;                                    ///< Cache of the vertical scrollbar.

	ScriptLog::LogData *GetLogPointer() const
	{
		if (ai_debug_company == OWNER_DEITY) return (ScriptLog::LogData *)Game::GetInstance()->GetLogPointer();
		return (ScriptLog::LogData *)Company::Get(ai_debug_company)->ai_instance->GetLogPointer();
	}

	/**
	 * Constructor for the window.
	 * @param desc The description of the window.
	 * @param number The window number (actually unused).
	 */
	AIDebugWindow(const WindowDesc *desc, WindowNumber number) : QueryStringBaseWindow(MAX_BREAK_STR_STRING_LENGTH)
	{
		this->CreateNestedTree(desc);
		this->vscroll = this->GetScrollbar(WID_AID_SCROLLBAR);
		this->show_break_box = _settings_client.gui.ai_developer_tools;
		this->GetWidget<NWidgetStacked>(WID_AID_BREAK_STRING_WIDGETS)->SetDisplayedPlane(this->show_break_box ? 0 : SZSP_HORIZONTAL);
		this->FinishInitNested(desc, number);

		if (!this->show_break_box) break_check_enabled = false;
		/* Disable the companies who are not active or not an AI */
		for (CompanyID i = COMPANY_FIRST; i < MAX_COMPANIES; i++) {
			this->SetWidgetDisabledState(i + WID_AID_COMPANY_BUTTON_START, !Company::IsValidAiID(i));
		}
		this->EnableWidget(WID_AID_SCRIPT_GAME);
		this->DisableWidget(WID_AID_RELOAD_TOGGLE);
		this->DisableWidget(WID_AID_SETTINGS);
		this->DisableWidget(WID_AID_CONTINUE_BTN);

		this->last_vscroll_pos = 0;
		this->autoscroll = true;
		this->highlight_row = -1;
		InitializeTextBuffer(&this->text, this->edit_str_buf, this->edit_str_size, MAX_BREAK_STR_STRING_LENGTH);

		/* Restore the break string value from static variable */
		strecpy(this->edit_str_buf, this->break_string, this->edit_str_buf + MAX_BREAK_STR_STRING_LENGTH);
		UpdateTextBufferSize(&this->text);

		/* Restore button state from static class variables */
		if (ai_debug_company == OWNER_DEITY) {
			this->LowerWidget(WID_AID_SCRIPT_GAME);
		} else if (ai_debug_company != INVALID_COMPANY) {
			this->LowerWidget(ai_debug_company + WID_AID_COMPANY_BUTTON_START);
		}
		this->SetWidgetLoweredState(WID_AID_BREAK_STR_ON_OFF_BTN, this->break_check_enabled);
		this->SetWidgetLoweredState(WID_AID_MATCH_CASE_BTN, this->case_sensitive_break_check);

	}

	virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
	{
		if (widget == WID_AID_LOG_PANEL) {
			resize->height = FONT_HEIGHT_NORMAL + WD_PAR_VSEP_NORMAL;
			size->height = 14 * resize->height + this->top_offset + this->bottom_offset;
		}
	}

	virtual void OnPaint()
	{
		/* Check if the currently selected company is still active. */
		if (ai_debug_company == INVALID_COMPANY || (ai_debug_company != OWNER_DEITY && !Company::IsValidAiID(ai_debug_company))) {
			if (ai_debug_company != INVALID_COMPANY) {
				/* Raise the widget for the previous selection. */
				this->RaiseWidget(ai_debug_company + WID_AID_COMPANY_BUTTON_START);

				ai_debug_company = INVALID_COMPANY;
			}

			const Company *c;
			FOR_ALL_COMPANIES(c) {
				if (c->is_ai) {
					/* Lower the widget corresponding to this company. */
					this->LowerWidget(c->index + WID_AID_COMPANY_BUTTON_START);

					ai_debug_company = c->index;
					break;
				}
			}
		}

		/* Update "Reload AI" and "AI settings" buttons */
		this->SetWidgetDisabledState(WID_AID_SETTINGS, ai_debug_company == INVALID_COMPANY);
		this->SetWidgetDisabledState(WID_AID_RELOAD_TOGGLE, ai_debug_company == INVALID_COMPANY || ai_debug_company == OWNER_DEITY);
		this->SetWidgetDisabledState(WID_AID_SCRIPT_GAME, Game::GetGameInstance() == NULL);

		/* Draw standard stuff */
		this->DrawWidgets();

		if (this->IsShaded()) return; // Don't draw anything when the window is shaded.

		if (this->show_break_box) this->DrawEditBox(WID_AID_BREAK_STR_EDIT_BOX);

		/* Paint the company icons */
		for (CompanyID i = COMPANY_FIRST; i < MAX_COMPANIES; i++) {
			NWidgetCore *button = this->GetWidget<NWidgetCore>(i + WID_AID_COMPANY_BUTTON_START);
			bool dirty = false;

			bool valid = Company::IsValidAiID(i);
			bool disabled = !valid;
			if (button->IsDisabled() != disabled) {
				/* Invalid/non-AI companies have button disabled */
				button->SetDisabled(disabled);
				dirty = true;
			}

			bool dead = valid && Company::Get(i)->ai_instance->IsDead();
			Colours colour = dead ? COLOUR_RED : COLOUR_GREY;
			if (button->colour != colour) {
				/* Mark dead AIs by red background */
				button->colour = colour;
				dirty = true;
			}

			/* Do we need a repaint? */
			if (dirty) this->SetDirty();
			/* Draw company icon only for valid AI companies */
			if (!valid) continue;

			byte offset = (i == ai_debug_company) ? 1 : 0;
			DrawCompanyIcon(i, button->pos_x + button->current_x / 2 - 7 + offset, this->GetWidget<NWidgetBase>(WID_AID_COMPANY_BUTTON_START + i)->pos_y + 2 + offset);
		}

		/* If there are no active companies, don't display anything else. */
		if (ai_debug_company == INVALID_COMPANY) return;

		ScriptLog::LogData *log = this->GetLogPointer();

		int scroll_count = (log == NULL) ? 0 : log->used;
		if (this->vscroll->GetCount() != scroll_count) {
			this->vscroll->SetCount(scroll_count);

			/* We need a repaint */
			this->SetWidgetDirty(WID_AID_SCROLLBAR);
		}

		if (log == NULL) return;

		/* Detect when the user scrolls the window. Enable autoscroll when the
		 * bottom-most line becomes visible. */
		if (this->last_vscroll_pos != this->vscroll->GetPosition()) {
			this->autoscroll = this->vscroll->GetPosition() >= log->used - this->vscroll->GetCapacity();
		}
		if (this->autoscroll) {
			int scroll_pos = max(0, log->used - this->vscroll->GetCapacity());
			if (scroll_pos != this->vscroll->GetPosition()) {
				this->vscroll->SetPosition(scroll_pos);

				/* We need a repaint */
				this->SetWidgetDirty(WID_AID_SCROLLBAR);
				this->SetWidgetDirty(WID_AID_LOG_PANEL);
			}
		}
		this->last_vscroll_pos = this->vscroll->GetPosition();
	}

	virtual void SetStringParameters(int widget) const
	{
		switch (widget) {
			case WID_AID_NAME_TEXT:
				if (ai_debug_company == OWNER_DEITY) {
					const GameInfo *info = Game::GetInfo();
					assert(info != NULL);
					SetDParam(0, STR_AI_DEBUG_NAME_AND_VERSION);
					SetDParamStr(1, info->GetName());
					SetDParam(2, info->GetVersion());
				} else if (ai_debug_company == INVALID_COMPANY || !Company::IsValidAiID(ai_debug_company)) {
					SetDParam(0, STR_EMPTY);
				} else {
					const AIInfo *info = Company::Get(ai_debug_company)->ai_info;
					assert(info != NULL);
					SetDParam(0, STR_AI_DEBUG_NAME_AND_VERSION);
					SetDParamStr(1, info->GetName());
					SetDParam(2, info->GetVersion());
				}
				break;
		}
	}

	virtual void DrawWidget(const Rect &r, int widget) const
	{
		if (ai_debug_company == INVALID_COMPANY) return;

		switch (widget) {
			case WID_AID_LOG_PANEL: {
				ScriptLog::LogData *log = this->GetLogPointer();
				if (log == NULL) return;

				int y = this->top_offset;
				for (int i = this->vscroll->GetPosition(); this->vscroll->IsVisible(i) && i < log->used; i++) {
					int pos = (i + log->pos + 1 - log->used + log->count) % log->count;
					if (log->lines[pos] == NULL) break;

					TextColour colour;
					switch (log->type[pos]) {
						case ScriptLog::LOG_SQ_INFO:  colour = TC_BLACK;  break;
						case ScriptLog::LOG_SQ_ERROR: colour = TC_RED;    break;
						case ScriptLog::LOG_INFO:     colour = TC_BLACK;  break;
						case ScriptLog::LOG_WARNING:  colour = TC_YELLOW; break;
						case ScriptLog::LOG_ERROR:    colour = TC_RED;    break;
						default:                  colour = TC_BLACK;  break;
					}

					/* Check if the current line should be highlighted */
					if (pos == this->highlight_row) {
						GfxFillRect(r.left + 1, r.top + y, r.right - 1, r.top + y + this->resize.step_height - WD_PAR_VSEP_NORMAL, PC_BLACK);
						if (colour == TC_BLACK) colour = TC_WHITE; // Make black text readable by inverting it to white.
					}

					DrawString(r.left + 7, r.right - 7, r.top + y, log->lines[pos], colour, SA_LEFT | SA_FORCE);
					y += this->resize.step_height;
				}
				break;
			}
		}
	}

	/**
	 * Change all settings to select another AI.
	 * @param show_ai The new AI to show.
	 */
	void ChangeToAI(CompanyID show_ai)
	{
		if (ai_debug_company == OWNER_DEITY) {
			this->RaiseWidget(WID_AID_SCRIPT_GAME);
		} else {
			this->RaiseWidget(ai_debug_company + WID_AID_COMPANY_BUTTON_START);
		}
		ai_debug_company = show_ai;

		ScriptLog::LogData *log = this->GetLogPointer();
		this->vscroll->SetCount((log == NULL) ? 0 : log->used);

		if (ai_debug_company == OWNER_DEITY) {
			this->LowerWidget(WID_AID_SCRIPT_GAME);
		} else {
			this->LowerWidget(ai_debug_company + WID_AID_COMPANY_BUTTON_START);
		}

		this->autoscroll = true;
		this->last_vscroll_pos = this->vscroll->GetPosition();
		this->SetDirty();
		/* Close AI settings window to prevent confusion */
		DeleteWindowByClass(WC_AI_SETTINGS);
	}

	virtual void OnClick(Point pt, int widget, int click_count)
	{
		/* Check which button is clicked */
		if (IsInsideMM(widget, WID_AID_COMPANY_BUTTON_START, WID_AID_COMPANY_BUTTON_END + 1)) {
			/* Is it no on disable? */
			if (!this->IsWidgetDisabled(widget)) {
				ChangeToAI((CompanyID)(widget - WID_AID_COMPANY_BUTTON_START));
			}
		}

		switch (widget) {
			case WID_AID_SCRIPT_GAME:
				ChangeToAI(OWNER_DEITY);
				break;

			case WID_AID_RELOAD_TOGGLE:
				if (ai_debug_company == OWNER_DEITY) break;
				/* First kill the company of the AI, then start a new one. This should start the current AI again */
				DoCommandP(0, 2 | ai_debug_company << 16, CRR_MANUAL, CMD_COMPANY_CTRL);
				DoCommandP(0, 1 | ai_debug_company << 16, 0, CMD_COMPANY_CTRL);
				break;

			case WID_AID_SETTINGS:
				ShowAISettingsWindow(ai_debug_company);
				break;

			case WID_AID_BREAK_STR_ON_OFF_BTN:
				this->break_check_enabled = !this->break_check_enabled;
				this->SetWidgetLoweredState(WID_AID_BREAK_STR_ON_OFF_BTN, this->break_check_enabled);
				this->SetWidgetDirty(WID_AID_BREAK_STR_ON_OFF_BTN);
				break;

			case WID_AID_MATCH_CASE_BTN:
				this->case_sensitive_break_check = !this->case_sensitive_break_check;
				this->SetWidgetLoweredState(WID_AID_MATCH_CASE_BTN, this->case_sensitive_break_check);
				break;

			case WID_AID_CONTINUE_BTN:
				/* Unpause */
				DoCommandP(0, PM_PAUSED_NORMAL, 0, CMD_PAUSE);
				this->DisableWidget(WID_AID_CONTINUE_BTN);
				this->RaiseWidget(WID_AID_CONTINUE_BTN); // Disabled widgets don't raise themself
				break;
		}
	}

	virtual void OnTimeout()
	{
		this->RaiseWidget(WID_AID_RELOAD_TOGGLE);
		this->RaiseWidget(WID_AID_SETTINGS);
		this->SetDirty();
	}

	virtual void OnMouseLoop()
	{
		this->HandleEditBox(WID_AID_BREAK_STR_EDIT_BOX);
	}

	virtual EventState OnKeyPress(uint16 key, uint16 keycode)
	{
		EventState state = ES_NOT_HANDLED;
		if (this->HandleEditBoxKey(WID_AID_BREAK_STR_EDIT_BOX, key, keycode, state) != HEBR_NOT_FOCUSED) {
			/* Save the current string to static member so it can be restored next time the window is opened */
			strecpy(this->break_string, this->edit_str_buf, lastof(this->break_string));
		}
		return state;
	}

	/**
	 * Some data on this window has become invalid.
	 * @param data Information about the changed data.
	 * @param gui_scope Whether the call is done from GUI scope. You may not do everything when not in GUI scope. See #InvalidateWindowData() for details.
	 */
	virtual void OnInvalidateData(int data = 0, bool gui_scope = true)
	{
		if (data == -1 || ai_debug_company == data) this->SetDirty();

		if (gui_scope && data == -2) {
			/* The continue button should be disabled when the game is unpaused and
			 * it was previously paused by the break string ( = a line in the log
			 * was highlighted )*/
			if ((_pause_mode & PM_PAUSED_NORMAL) == PM_UNPAUSED && this->highlight_row != -1) {
				this->DisableWidget(WID_AID_CONTINUE_BTN);
				this->SetWidgetDirty(WID_AID_CONTINUE_BTN);
				this->SetWidgetDirty(WID_AID_LOG_PANEL);
				this->highlight_row = -1;
			}
		}

		/* If the log message is related to the active company tab, check the break string.
		 * This needs to be done in gameloop-scope, so the AI is suspended immediately. */
		if (ai_debug_company != OWNER_DEITY && !gui_scope && data == ai_debug_company && this->break_check_enabled && !StrEmpty(this->edit_str_buf)) {
			/* Get the log instance of the active company */
			ScriptLog::LogData *log = this->GetLogPointer();

			if (log != NULL && case_sensitive_break_check?
					strstr(log->lines[log->pos], this->edit_str_buf) != 0 :
					strcasestr(log->lines[log->pos], this->edit_str_buf) != 0) {

				AI::Suspend(ai_debug_company);
				if ((_pause_mode & PM_PAUSED_NORMAL) == PM_UNPAUSED) {
					DoCommandP(0, PM_PAUSED_NORMAL, 1, CMD_PAUSE);
				}

				/* Make it possible to click on the continue button */
				this->EnableWidget(WID_AID_CONTINUE_BTN);
				this->SetWidgetDirty(WID_AID_CONTINUE_BTN);

				/* Highlight row that matched */
				this->highlight_row = log->pos;
			}
		}
	}

	virtual void OnResize()
	{
		this->vscroll->SetCapacityFromWidget(this, WID_AID_LOG_PANEL);
	}
};

const int AIDebugWindow::top_offset = WD_FRAMERECT_TOP + 2;
const int AIDebugWindow::bottom_offset = WD_FRAMERECT_BOTTOM;
CompanyID AIDebugWindow::ai_debug_company = INVALID_COMPANY;
char AIDebugWindow::break_string[MAX_BREAK_STR_STRING_LENGTH] = "";
bool AIDebugWindow::break_check_enabled = true;
bool AIDebugWindow::case_sensitive_break_check = false;

/** Make a number of rows with buttons for each company for the AI debug window. */
NWidgetBase *MakeCompanyButtonRowsAIDebug(int *biggest_index)
{
	return MakeCompanyButtonRows(biggest_index, WID_AID_COMPANY_BUTTON_START, WID_AID_COMPANY_BUTTON_END, 8, STR_AI_DEBUG_SELECT_AI_TOOLTIP);
}

/** Widgets for the AI debug window. */
static const NWidgetPart _nested_ai_debug_widgets[] = {
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_CLOSEBOX, COLOUR_GREY),
		NWidget(WWT_CAPTION, COLOUR_GREY), SetDataTip(STR_AI_DEBUG, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
		NWidget(WWT_SHADEBOX, COLOUR_GREY),
		NWidget(WWT_STICKYBOX, COLOUR_GREY),
	EndContainer(),
	NWidget(WWT_PANEL, COLOUR_GREY, WID_AID_VIEW),
		NWidgetFunction(MakeCompanyButtonRowsAIDebug), SetPadding(0, 2, 1, 2),
	EndContainer(),
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_AID_SCRIPT_GAME), SetMinimalSize(100, 20), SetResize(1, 0), SetDataTip(STR_AI_GAME_SCRIPT, STR_AI_GAME_SCRIPT_TOOLTIP),
		NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_AID_NAME_TEXT), SetFill(1, 0), SetResize(1, 0), SetDataTip(STR_JUST_STRING, STR_AI_DEBUG_NAME_TOOLTIP),
		NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_AID_SETTINGS), SetMinimalSize(100, 20), SetDataTip(STR_AI_DEBUG_SETTINGS, STR_AI_DEBUG_SETTINGS_TOOLTIP),
		NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_AID_RELOAD_TOGGLE), SetMinimalSize(100, 20), SetDataTip(STR_AI_DEBUG_RELOAD, STR_AI_DEBUG_RELOAD_TOOLTIP),
	EndContainer(),
	NWidget(NWID_HORIZONTAL),
		NWidget(NWID_VERTICAL),
			/* Log panel */
			NWidget(WWT_PANEL, COLOUR_GREY, WID_AID_LOG_PANEL), SetMinimalSize(287, 180), SetResize(1, 1), SetScrollbar(WID_AID_SCROLLBAR),
			EndContainer(),
			/* Break string widgets */
			NWidget(NWID_SELECTION, INVALID_COLOUR, WID_AID_BREAK_STRING_WIDGETS),
				NWidget(NWID_HORIZONTAL),
					NWidget(WWT_IMGBTN_2, COLOUR_GREY, WID_AID_BREAK_STR_ON_OFF_BTN), SetFill(0, 1), SetDataTip(SPR_FLAG_VEH_STOPPED, STR_AI_DEBUG_BREAK_STR_ON_OFF_TOOLTIP),
					NWidget(WWT_PANEL, COLOUR_GREY),
						NWidget(NWID_HORIZONTAL),
							NWidget(WWT_LABEL, COLOUR_GREY), SetPadding(2, 2, 2, 4), SetDataTip(STR_AI_DEBUG_BREAK_ON_LABEL, 0x0),
							NWidget(WWT_EDITBOX, COLOUR_WHITE, WID_AID_BREAK_STR_EDIT_BOX), SetFill(1, 1), SetResize(1, 0), SetPadding(2, 2, 2, 2), SetDataTip(STR_AI_DEBUG_BREAK_STR_OSKTITLE, STR_AI_DEBUG_BREAK_STR_TOOLTIP),
						EndContainer(),
					EndContainer(),
					NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_AID_MATCH_CASE_BTN), SetMinimalSize(100, 0), SetFill(0, 1), SetDataTip(STR_AI_DEBUG_MATCH_CASE, STR_AI_DEBUG_MATCH_CASE_TOOLTIP),
					NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_AID_CONTINUE_BTN), SetMinimalSize(100, 0), SetFill(0, 1), SetDataTip(STR_AI_DEBUG_CONTINUE, STR_AI_DEBUG_CONTINUE_TOOLTIP),
				EndContainer(),
			EndContainer(),
		EndContainer(),
		NWidget(NWID_VERTICAL),
			NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_AID_SCROLLBAR),
			NWidget(WWT_RESIZEBOX, COLOUR_GREY),
		EndContainer(),
	EndContainer(),
};

/** Window definition for the AI debug window. */
static const WindowDesc _ai_debug_desc(
	WDP_AUTO, 600, 450,
	WC_AI_DEBUG, WC_NONE,
	0,
	_nested_ai_debug_widgets, lengthof(_nested_ai_debug_widgets)
);

/**
 * Open the AI debug window and select the given company.
 * @param show_company Display debug information about this AI company.
 */
void ShowAIDebugWindow(CompanyID show_company)
{
	if (!_networking || _network_server) {
		AIDebugWindow *w = (AIDebugWindow *)BringWindowToFrontById(WC_AI_DEBUG, 0);
		if (w == NULL) w = new AIDebugWindow(&_ai_debug_desc, 0);
		if (show_company != INVALID_COMPANY) w->ChangeToAI(show_company);
	} else {
		ShowErrorMessage(STR_ERROR_AI_DEBUG_SERVER_ONLY, INVALID_STRING_ID, WL_INFO);
	}
}

/**
 * Reset the AI windows to their initial state.
 */
void InitializeAIGui()
{
	AIDebugWindow::ai_debug_company = INVALID_COMPANY;
}

/** Open the AI debug window if one of the AI scripts has crashed. */
void ShowAIDebugWindowIfAIError()
{
	/* Network clients can't debug AIs. */
	if (_networking && !_network_server) return;

	Company *c;
	FOR_ALL_COMPANIES(c) {
		if (c->is_ai && c->ai_instance->IsDead()) {
			ShowAIDebugWindow(c->index);
			break;
		}
	}

	GameInstance *g = Game::GetGameInstance();
	if (g != NULL && g->IsDead()) {
		ShowAIDebugWindow(OWNER_DEITY);
	}
}