Files @ r26179:ad5479cbfaa1
Branch filter:

Location: cpp/openttd-patchpack/source/src/terraform_gui.cpp - annotation

dP
Change: Deliver cargo to the closest industry first (#9536)
  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
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r12768:980ae0491352
r9111:983de9c5a848
r6422:5983361e241a
r5584:545d748cc681
r25795:e4c377f6ca9d
r5584:545d748cc681
r10208:ef8fcc3dc4ca
r10208:ef8fcc3dc4ca
r5584:545d748cc681
r8107:82461791b7a2
r10529:3eb8b8e810e7
r8224:194097dc7288
r8116:df67d3c5e4fd
r8790:550c9960067a
r8157:cf41aa22cd09
r12467:b4ba97896a21
r8205:096604cfa48b
r8236:a2ecfe92ab23
r8459:1ef090778f87
r9126:35955a7b9d9e
r9127:933c13888121
r13784:714b55955586
r15972:6463015373ad
r15972:6463015373ad
r15403:b5d76ca7dc6c
r17225:dd046b807329
r20388:7a2f2cbf65ab
r26096:cbf789e6763e
r21815:7bd5f78bf3e8
r26096:cbf789e6763e
r26102:502baaa2877d
r26103:316b73a1be08
r26103:316b73a1be08
r5584:545d748cc681
r18670:f122c356353c
r18670:f122c356353c
r8264:d493cb51fe8a
r8264:d493cb51fe8a
r21383:942c32fb8b0e
r21383:942c32fb8b0e
r26127:abb88237711d
r5584:545d748cc681
r14220:2b66d13ca715
r24858:bfbc5d118b1d
r5584:545d748cc681
r26127:abb88237711d
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r25795:e4c377f6ca9d
r5584:545d748cc681
r14165:d2ba2529435c
r25451:917146b539af
r11885:18b256159d2b
r26118:2b515956558b
r11885:18b256159d2b
r12519:e52fcaadf579
r25795:e4c377f6ca9d
r17180:60a530ef772d
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r14165:d2ba2529435c
r14165:d2ba2529435c
r5584:545d748cc681
r25451:917146b539af
r5584:545d748cc681
r8459:1ef090778f87
r8459:1ef090778f87
r22672:3473f7daf422
r22672:3473f7daf422
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r22672:3473f7daf422
r22672:3473f7daf422
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r12519:e52fcaadf579
r5584:545d748cc681
r24858:bfbc5d118b1d
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r13060:e57594b0ca84
r13060:e57594b0ca84
r13060:e57594b0ca84
r5584:545d748cc681
r5584:545d748cc681
r6422:5983361e241a
r15613:193c12018337
r9293:381d58467a0b
r5584:545d748cc681
r10855:5a3c2f38f98e
r10855:5a3c2f38f98e
r10855:5a3c2f38f98e
r10855:5a3c2f38f98e
r10855:5a3c2f38f98e
r10855:5a3c2f38f98e
r10747:8afe351687b3
r9293:381d58467a0b
r6670:a5c8d94cb5d7
r26118:2b515956558b
r6669:831ea297162a
r8196:320616d2c5c7
r26118:2b515956558b
r8196:320616d2c5c7
r8196:320616d2c5c7
r26118:2b515956558b
r8196:320616d2c5c7
r6670:a5c8d94cb5d7
r26118:2b515956558b
r6669:831ea297162a
r6670:a5c8d94cb5d7
r6669:831ea297162a
r6669:831ea297162a
r6670:a5c8d94cb5d7
r6669:831ea297162a
r6669:831ea297162a
r6669:831ea297162a
r6669:831ea297162a
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r5584:545d748cc681
r16881:a8a653110323
r16881:a8a653110323
r16881:a8a653110323
r16881:a8a653110323
r5584:545d748cc681
r5584:545d748cc681
r6670:a5c8d94cb5d7
r5584:545d748cc681
r5584:545d748cc681
r16880:79c551b2c81a
r9304:80c2c25f45a2
r16880:79c551b2c81a
r16880:79c551b2c81a
r20280:ca1fc41725ff
r9304:80c2c25f45a2
r15972:6463015373ad
r20280:ca1fc41725ff
r20280:ca1fc41725ff
r16880:79c551b2c81a
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r5584:545d748cc681
r23499:f9bf6ad58697
r15972:6463015373ad
r15972:6463015373ad
r18689:162d0eb61e95
r19268:b5aae8c7ee1f
r15972:6463015373ad
r15972:6463015373ad
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r18689:162d0eb61e95
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r16879:edad79b682c6
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r22173:0f93564a00bb
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r9304:80c2c25f45a2
r5584:545d748cc681
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r16880:79c551b2c81a
r18689:162d0eb61e95
r16881:a8a653110323
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r16881:a8a653110323
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r16881:a8a653110323
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r16880:79c551b2c81a
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r26119:a6e64747fa5d
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r16880:79c551b2c81a
r16880:79c551b2c81a
r16880:79c551b2c81a
r16880:79c551b2c81a
r16880:79c551b2c81a
r5584:545d748cc681
r5584:545d748cc681
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r5584:545d748cc681
r23499:f9bf6ad58697
r13784:714b55955586
r13784:714b55955586
r13784:714b55955586
r13784:714b55955586
r13784:714b55955586
r13784:714b55955586
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9293:381d58467a0b
r6670:a5c8d94cb5d7
r8196:320616d2c5c7
r8196:320616d2c5c7
r6670:a5c8d94cb5d7
r9304:80c2c25f45a2
r6670:a5c8d94cb5d7
r6670:a5c8d94cb5d7
r5584:545d748cc681
r9304:80c2c25f45a2
r5584:545d748cc681
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r5584:545d748cc681
r15403:b5d76ca7dc6c
r20397:b739fdacd6f4
r9304:80c2c25f45a2
r5584:545d748cc681
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r23607:36c15679007d
r23607:36c15679007d
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20397:b739fdacd6f4
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r15403:b5d76ca7dc6c
r20401:9fccb7c94c07
r15403:b5d76ca7dc6c
r11686:14610d2684a1
r11686:14610d2684a1
r13742:180ad925befc
r13742:180ad925befc
r13742:180ad925befc
r11686:14610d2684a1
r11686:14610d2684a1
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r12429:4bc5a8d1bea8
r13745:49505a0400d8
r12429:4bc5a8d1bea8
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r19742:eb30b96c01c2
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r22173:0f93564a00bb
r15972:6463015373ad
r15972:6463015373ad
r11686:14610d2684a1
r11686:14610d2684a1
r11686:14610d2684a1
r20280:ca1fc41725ff
r20283:2a199c78224c
r5893:6c4fd9987e0f
r19745:d8f95208ad9e
r20399:ead82fb894d7
r20399:ead82fb894d7
r11368:058349c3a02c
r5584:545d748cc681
r17624:f2c5f47dceaa
r17624:f2c5f47dceaa
r17624:f2c5f47dceaa
r23607:36c15679007d
r17624:f2c5f47dceaa
r12083:8950978c8433
r5584:545d748cc681
r23607:36c15679007d
r10529:3eb8b8e810e7
r15060:e50333e16d17
r23607:36c15679007d
r15060:e50333e16d17
r15060:e50333e16d17
r5860:f7ebb9b1a021
r10529:3eb8b8e810e7
r15060:e50333e16d17
r25565:6a5de7df7ea1
r15060:e50333e16d17
r15060:e50333e16d17
r15060:e50333e16d17
r15060:e50333e16d17
r15060:e50333e16d17
r16431:ec558deca9d7
r10529:3eb8b8e810e7
r10529:3eb8b8e810e7
r12083:8950978c8433
r12083:8950978c8433
r12083:8950978c8433
r12083:8950978c8433
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r26118:2b515956558b
r8205:096604cfa48b
r26118:2b515956558b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r11725:57bc99fdc1bc
r8205:096604cfa48b
r26118:2b515956558b
r8205:096604cfa48b
r8205:096604cfa48b
r16741:f602dc909b5e
r16741:f602dc909b5e
r8205:096604cfa48b
r16741:f602dc909b5e
r8205:096604cfa48b
r24858:bfbc5d118b1d
r9586:dd15b93d1b55
r16741:f602dc909b5e
r8205:096604cfa48b
r8205:096604cfa48b
r16741:f602dc909b5e
r25451:917146b539af
r24597:afde5721a3b6
r12519:e52fcaadf579
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r25451:917146b539af
r24597:afde5721a3b6
r12519:e52fcaadf579
r8205:096604cfa48b
r8205:096604cfa48b
r25451:917146b539af
r8205:096604cfa48b
r26118:2b515956558b
r8205:096604cfa48b
r12519:e52fcaadf579
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r11686:14610d2684a1
r11686:14610d2684a1
r13742:180ad925befc
r13742:180ad925befc
r14035:4f06488d5a62
r13742:180ad925befc
r11686:14610d2684a1
r13745:49505a0400d8
r12429:4bc5a8d1bea8
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r18689:162d0eb61e95
r15973:f4c5b31a17d3
r15973:f4c5b31a17d3
r22215:0ef7f55f1719
r15973:f4c5b31a17d3
r13694:4523784084b5
r11686:14610d2684a1
r11686:14610d2684a1
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r11686:14610d2684a1
r13694:4523784084b5
r18689:162d0eb61e95
r11686:14610d2684a1
r18689:162d0eb61e95
r13694:4523784084b5
r11686:14610d2684a1
r12429:4bc5a8d1bea8
r11686:14610d2684a1
r11686:14610d2684a1
r18689:162d0eb61e95
r13694:4523784084b5
r18689:162d0eb61e95
r13694:4523784084b5
r11686:14610d2684a1
r11686:14610d2684a1
r11686:14610d2684a1
r8205:096604cfa48b
r15610:623a23fb6560
r8205:096604cfa48b
r15613:193c12018337
r15613:193c12018337
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r10207:a1fc2f2a33db
r25795:e4c377f6ca9d
r8205:096604cfa48b
r10207:a1fc2f2a33db
r23953:ba75d2f3b530
r10207:a1fc2f2a33db
r10207:a1fc2f2a33db
r9659:f5984e9c0ecd
r11875:48234884f526
r25795:e4c377f6ca9d
r11875:48234884f526
r11875:48234884f526
r23954:8e43140b9a66
r11875:48234884f526
r26118:2b515956558b
r12487:7b0d87481daf
r11875:48234884f526
r11875:48234884f526
r17225:dd046b807329
r17225:dd046b807329
r17225:dd046b807329
r11875:48234884f526
r8205:096604cfa48b
r8205:096604cfa48b
r8205:096604cfa48b
r16880:79c551b2c81a
r9304:80c2c25f45a2
r16880:79c551b2c81a
r16880:79c551b2c81a
r20280:ca1fc41725ff
r9304:80c2c25f45a2
r20280:ca1fc41725ff
r18689:162d0eb61e95
r15973:f4c5b31a17d3
r20280:ca1fc41725ff
r16880:79c551b2c81a
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r23499:f9bf6ad58697
r13175:ef1f91f8caa1
r9304:80c2c25f45a2
r8205:096604cfa48b
r18689:162d0eb61e95
r12429:4bc5a8d1bea8
r12429:4bc5a8d1bea8
r12429:4bc5a8d1bea8
r12429:4bc5a8d1bea8
r23499:f9bf6ad58697
r21815:7bd5f78bf3e8
r21815:7bd5f78bf3e8
r21815:7bd5f78bf3e8
r24597:afde5721a3b6
r24597:afde5721a3b6
r21815:7bd5f78bf3e8
r21815:7bd5f78bf3e8
r23499:f9bf6ad58697
r12429:4bc5a8d1bea8
r18689:162d0eb61e95
r12429:4bc5a8d1bea8
r15041:2fd57765f7c4
r15041:2fd57765f7c4
r12429:4bc5a8d1bea8
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r21979:8f441a1deb2a
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r8205:096604cfa48b
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r18689:162d0eb61e95
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r8205:096604cfa48b
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r16880:79c551b2c81a
r16878:dbb0855d8703
r8205:096604cfa48b
r18689:162d0eb61e95
r22173:0f93564a00bb
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r18689:162d0eb61e95
r18689:162d0eb61e95
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r19891:7fd9bf0868c4
r16878:dbb0855d8703
r16878:dbb0855d8703
r9328:2637a7a8eca1
r16878:dbb0855d8703
r18689:162d0eb61e95
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r18689:162d0eb61e95
r23607:36c15679007d
r16878:dbb0855d8703
r16878:dbb0855d8703
r16878:dbb0855d8703
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r8205:096604cfa48b
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r18689:162d0eb61e95
r18689:162d0eb61e95
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r13024:48c81d0b078a
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r8205:096604cfa48b
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r16880:79c551b2c81a
r18689:162d0eb61e95
r16880:79c551b2c81a
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r26118:2b515956558b
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r26118:2b515956558b
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r16881:a8a653110323
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r16881:a8a653110323
r16880:79c551b2c81a
r16880:79c551b2c81a
r18689:162d0eb61e95
r16881:a8a653110323
r16880:79c551b2c81a
r16880:79c551b2c81a
r16880:79c551b2c81a
r16880:79c551b2c81a
r9304:80c2c25f45a2
r8205:096604cfa48b
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r8205:096604cfa48b
r8205:096604cfa48b
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r8205:096604cfa48b
r23499:f9bf6ad58697
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r9304:80c2c25f45a2
r8205:096604cfa48b
r15404:58ea9b70001e
r20397:b739fdacd6f4
r9304:80c2c25f45a2
r8205:096604cfa48b
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r23607:36c15679007d
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20401:9fccb7c94c07
r20397:b739fdacd6f4
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r20395:e577fdf4cfd2
r15404:58ea9b70001e
r15404:58ea9b70001e
r20401:9fccb7c94c07
r15404:58ea9b70001e
r20280:ca1fc41725ff
r20283:2a199c78224c
r8205:096604cfa48b
r13739:747ed1f003e3
r20399:ead82fb894d7
r20399:ead82fb894d7
r11368:058349c3a02c
r8205:096604cfa48b
r17624:f2c5f47dceaa
r17624:f2c5f47dceaa
r23607:36c15679007d
r17624:f2c5f47dceaa
r12083:8950978c8433
r12083:8950978c8433
r12083:8950978c8433
r12083:8950978c8433
/*
 * 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 terraform_gui.cpp GUI related to terraforming the map. */

#include "stdafx.h"
#include "core/backup_type.hpp"
#include "clear_map.h"
#include "company_func.h"
#include "company_base.h"
#include "gui.h"
#include "window_gui.h"
#include "window_func.h"
#include "viewport_func.h"
#include "command_func.h"
#include "signs_func.h"
#include "sound_func.h"
#include "base_station_base.h"
#include "textbuf_gui.h"
#include "genworld.h"
#include "tree_map.h"
#include "landscape_type.h"
#include "tilehighlight_func.h"
#include "strings_func.h"
#include "newgrf_object.h"
#include "object.h"
#include "hotkeys.h"
#include "engine_base.h"
#include "terraform_gui.h"
#include "terraform_cmd.h"
#include "zoom_func.h"
#include "rail_cmd.h"
#include "landscape_cmd.h"
#include "terraform_cmd.h"
#include "object_cmd.h"

#include "widgets/terraform_widget.h"

#include "table/strings.h"

#include "safeguards.h"

void CcTerraform(Commands cmd, const CommandCost &result, Money, TileIndex tile)
{
	if (result.Succeeded()) {
		if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER, tile);
	} else {
		SetRedErrorSquare(tile);
	}
}


/** Scenario editor command that generates desert areas */
static void GenerateDesertArea(TileIndex end, TileIndex start)
{
	if (_game_mode != GM_EDITOR) return;

	Backup<bool> old_generating_world(_generating_world, true, FILE_LINE);

	TileArea ta(start, end);
	for (TileIndex tile : ta) {
		SetTropicZone(tile, (_ctrl_pressed) ? TROPICZONE_NORMAL : TROPICZONE_DESERT);
		Command<CMD_LANDSCAPE_CLEAR>::Post(tile);
		MarkTileDirtyByTile(tile);
	}
	old_generating_world.Restore();
	InvalidateWindowClassesData(WC_TOWN_VIEW, 0);
}

/** Scenario editor command that generates rocky areas */
static void GenerateRockyArea(TileIndex end, TileIndex start)
{
	if (_game_mode != GM_EDITOR) return;

	bool success = false;
	TileArea ta(start, end);

	for (TileIndex tile : ta) {
		switch (GetTileType(tile)) {
			case MP_TREES:
				if (GetTreeGround(tile) == TREE_GROUND_SHORE) continue;
				FALLTHROUGH;

			case MP_CLEAR:
				MakeClear(tile, CLEAR_ROCKS, 3);
				break;

			default:
				continue;
		}
		MarkTileDirtyByTile(tile);
		success = true;
	}

	if (success && _settings_client.sound.confirm) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER, end);
}

/**
 * A central place to handle all X_AND_Y dragged GUI functions.
 * @param proc       Procedure related to the dragging
 * @param start_tile Begin of the dragging
 * @param end_tile   End of the dragging
 * @return Returns true if the action was found and handled, and false otherwise. This
 * allows for additional implements that are more local. For example X_Y drag
 * of convertrail which belongs in rail_gui.cpp and not terraform_gui.cpp
 */
bool GUIPlaceProcDragXY(ViewportDragDropSelectionProcess proc, TileIndex start_tile, TileIndex end_tile)
{
	if (!_settings_game.construction.freeform_edges) {
		/* When end_tile is MP_VOID, the error tile will not be visible to the
		 * user. This happens when terraforming at the southern border. */
		if (TileX(end_tile) == MapMaxX()) end_tile += TileDiffXY(-1, 0);
		if (TileY(end_tile) == MapMaxY()) end_tile += TileDiffXY(0, -1);
	}

	switch (proc) {
		case DDSP_DEMOLISH_AREA:
			Command<CMD_CLEAR_AREA>::Post(STR_ERROR_CAN_T_CLEAR_THIS_AREA, CcPlaySound_EXPLOSION, end_tile, start_tile, _ctrl_pressed);
			break;
		case DDSP_RAISE_AND_LEVEL_AREA:
			Command<CMD_LEVEL_LAND>::Post(STR_ERROR_CAN_T_RAISE_LAND_HERE, CcTerraform, end_tile, start_tile, _ctrl_pressed, LM_RAISE);
			break;
		case DDSP_LOWER_AND_LEVEL_AREA:
			Command<CMD_LEVEL_LAND>::Post(STR_ERROR_CAN_T_LOWER_LAND_HERE, CcTerraform, end_tile, start_tile, _ctrl_pressed, LM_LOWER);
			break;
		case DDSP_LEVEL_AREA:
			Command<CMD_LEVEL_LAND>::Post(STR_ERROR_CAN_T_LEVEL_LAND_HERE, CcTerraform, end_tile, start_tile, _ctrl_pressed, LM_LEVEL);
			break;
		case DDSP_CREATE_ROCKS:
			GenerateRockyArea(end_tile, start_tile);
			break;
		case DDSP_CREATE_DESERT:
			GenerateDesertArea(end_tile, start_tile);
			break;
		default:
			return false;
	}

	return true;
}

/**
 * Start a drag for demolishing an area.
 * @param tile Position of one corner.
 */
void PlaceProc_DemolishArea(TileIndex tile)
{
	VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_DEMOLISH_AREA);
}

/** Terra form toolbar managing class. */
struct TerraformToolbarWindow : Window {
	int last_user_action; ///< Last started user action.

	TerraformToolbarWindow(WindowDesc *desc, WindowNumber window_number) : Window(desc)
	{
		/* This is needed as we like to have the tree available on OnInit. */
		this->CreateNestedTree();
		this->FinishInitNested(window_number);
		this->last_user_action = WIDGET_LIST_END;
	}

	~TerraformToolbarWindow()
	{
	}

	void OnInit() override
	{
		/* Don't show the place object button when there are no objects to place. */
		NWidgetStacked *show_object = this->GetWidget<NWidgetStacked>(WID_TT_SHOW_PLACE_OBJECT);
		show_object->SetDisplayedPlane(ObjectClass::GetUIClassCount() != 0 ? 0 : SZSP_NONE);
	}

	void OnClick(Point pt, int widget, int click_count) override
	{
		if (widget < WID_TT_BUTTONS_START) return;

		switch (widget) {
			case WID_TT_LOWER_LAND: // Lower land button
				HandlePlacePushButton(this, WID_TT_LOWER_LAND, ANIMCURSOR_LOWERLAND, HT_POINT | HT_DIAGONAL);
				this->last_user_action = widget;
				break;

			case WID_TT_RAISE_LAND: // Raise land button
				HandlePlacePushButton(this, WID_TT_RAISE_LAND, ANIMCURSOR_RAISELAND, HT_POINT | HT_DIAGONAL);
				this->last_user_action = widget;
				break;

			case WID_TT_LEVEL_LAND: // Level land button
				HandlePlacePushButton(this, WID_TT_LEVEL_LAND, SPR_CURSOR_LEVEL_LAND, HT_POINT | HT_DIAGONAL);
				this->last_user_action = widget;
				break;

			case WID_TT_DEMOLISH: // Demolish aka dynamite button
				HandlePlacePushButton(this, WID_TT_DEMOLISH, ANIMCURSOR_DEMOLISH, HT_RECT | HT_DIAGONAL);
				this->last_user_action = widget;
				break;

			case WID_TT_BUY_LAND: // Buy land button
				HandlePlacePushButton(this, WID_TT_BUY_LAND, SPR_CURSOR_BUY_LAND, HT_RECT);
				this->last_user_action = widget;
				break;

			case WID_TT_PLANT_TREES: // Plant trees button
				ShowBuildTreesToolbar();
				break;

			case WID_TT_PLACE_SIGN: // Place sign button
				HandlePlacePushButton(this, WID_TT_PLACE_SIGN, SPR_CURSOR_SIGN, HT_RECT);
				this->last_user_action = widget;
				break;

			case WID_TT_PLACE_OBJECT: // Place object button
				ShowBuildObjectPicker();
				break;

			default: NOT_REACHED();
		}
	}

	void OnPlaceObject(Point pt, TileIndex tile) override
	{
		switch (this->last_user_action) {
			case WID_TT_LOWER_LAND: // Lower land button
				VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_LOWER_AND_LEVEL_AREA);
				break;

			case WID_TT_RAISE_LAND: // Raise land button
				VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_RAISE_AND_LEVEL_AREA);
				break;

			case WID_TT_LEVEL_LAND: // Level land button
				VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_LEVEL_AREA);
				break;

			case WID_TT_DEMOLISH: // Demolish aka dynamite button
				PlaceProc_DemolishArea(tile);
				break;

			case WID_TT_BUY_LAND: // Buy land button
				Command<CMD_BUILD_OBJECT>::Post(STR_ERROR_CAN_T_PURCHASE_THIS_LAND, CcPlaySound_CONSTRUCTION_RAIL, tile, OBJECT_OWNED_LAND, 0);
				break;

			case WID_TT_PLACE_SIGN: // Place sign button
				PlaceProc_Sign(tile);
				break;

			default: NOT_REACHED();
		}
	}

	void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt) override
	{
		VpSelectTilesWithMethod(pt.x, pt.y, select_method);
	}

	Point OnInitialPosition(int16 sm_width, int16 sm_height, int window_number) override
	{
		Point pt = GetToolbarAlignedWindowPosition(sm_width);
		pt.y += sm_height;
		return pt;
	}

	void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile) override
	{
		if (pt.x != -1) {
			switch (select_proc) {
				default: NOT_REACHED();
				case DDSP_DEMOLISH_AREA:
				case DDSP_RAISE_AND_LEVEL_AREA:
				case DDSP_LOWER_AND_LEVEL_AREA:
				case DDSP_LEVEL_AREA:
					GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
					break;
			}
		}
	}

	void OnPlaceObjectAbort() override
	{
		this->RaiseButtons();
	}

	static HotkeyList hotkeys;
};

/**
 * Handler for global hotkeys of the TerraformToolbarWindow.
 * @param hotkey Hotkey
 * @return ES_HANDLED if hotkey was accepted.
 */
static EventState TerraformToolbarGlobalHotkeys(int hotkey)
{
	if (_game_mode != GM_NORMAL) return ES_NOT_HANDLED;
	Window *w = ShowTerraformToolbar(nullptr);
	if (w == nullptr) return ES_NOT_HANDLED;
	return w->OnHotkey(hotkey);
}

static Hotkey terraform_hotkeys[] = {
	Hotkey('Q' | WKC_GLOBAL_HOTKEY, "lower", WID_TT_LOWER_LAND),
	Hotkey('W' | WKC_GLOBAL_HOTKEY, "raise", WID_TT_RAISE_LAND),
	Hotkey('E' | WKC_GLOBAL_HOTKEY, "level", WID_TT_LEVEL_LAND),
	Hotkey('D' | WKC_GLOBAL_HOTKEY, "dynamite", WID_TT_DEMOLISH),
	Hotkey('U', "buyland", WID_TT_BUY_LAND),
	Hotkey('I', "trees", WID_TT_PLANT_TREES),
	Hotkey('O', "placesign", WID_TT_PLACE_SIGN),
	Hotkey('P', "placeobject", WID_TT_PLACE_OBJECT),
	HOTKEY_LIST_END
};
HotkeyList TerraformToolbarWindow::hotkeys("terraform", terraform_hotkeys, TerraformToolbarGlobalHotkeys);

static const NWidgetPart _nested_terraform_widgets[] = {
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
		NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_LANDSCAPING_TOOLBAR, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
		NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
	EndContainer(),
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_LOWER_LAND), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_DOWN, STR_LANDSCAPING_TOOLTIP_LOWER_A_CORNER_OF_LAND),
		NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_RAISE_LAND), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_UP, STR_LANDSCAPING_TOOLTIP_RAISE_A_CORNER_OF_LAND),
		NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_LEVEL_LAND), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_LEVEL_LAND, STR_LANDSCAPING_LEVEL_LAND_TOOLTIP),

		NWidget(WWT_PANEL, COLOUR_DARK_GREEN), SetMinimalSize(4, 22), EndContainer(),

		NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_DEMOLISH), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
		NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_BUY_LAND), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_BUY_LAND, STR_LANDSCAPING_TOOLTIP_PURCHASE_LAND),
		NWidget(WWT_PUSHIMGBTN, COLOUR_DARK_GREEN, WID_TT_PLANT_TREES), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_PLANTTREES, STR_SCENEDIT_TOOLBAR_PLANT_TREES),
		NWidget(WWT_IMGBTN, COLOUR_DARK_GREEN, WID_TT_PLACE_SIGN), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_SIGN, STR_SCENEDIT_TOOLBAR_PLACE_SIGN),
		NWidget(NWID_SELECTION, INVALID_COLOUR, WID_TT_SHOW_PLACE_OBJECT),
			NWidget(WWT_PUSHIMGBTN, COLOUR_DARK_GREEN, WID_TT_PLACE_OBJECT), SetMinimalSize(22, 22),
								SetFill(0, 1), SetDataTip(SPR_IMG_TRANSMITTER, STR_SCENEDIT_TOOLBAR_PLACE_OBJECT),
		EndContainer(),
	EndContainer(),
};

static WindowDesc _terraform_desc(
	WDP_MANUAL, "toolbar_landscape", 0, 0,
	WC_SCEN_LAND_GEN, WC_NONE,
	WDF_CONSTRUCTION,
	_nested_terraform_widgets, lengthof(_nested_terraform_widgets),
	&TerraformToolbarWindow::hotkeys
);

/**
 * Show the toolbar for terraforming in the game.
 * @param link The toolbar we might want to link to.
 * @return The allocated toolbar if the window was newly opened, else \c nullptr.
 */
Window *ShowTerraformToolbar(Window *link)
{
	if (!Company::IsValidID(_local_company)) return nullptr;

	Window *w;
	if (link == nullptr) {
		w = AllocateWindowDescFront<TerraformToolbarWindow>(&_terraform_desc, 0);
		return w;
	}

	/* Delete the terraform toolbar to place it again. */
	CloseWindowById(WC_SCEN_LAND_GEN, 0, true);
	w = AllocateWindowDescFront<TerraformToolbarWindow>(&_terraform_desc, 0);
	/* Align the terraform toolbar under the main toolbar. */
	w->top -= w->height;
	w->SetDirty();
	/* Put the linked toolbar to the left / right of it. */
	link->left = w->left + (_current_text_dir == TD_RTL ? w->width : -link->width);
	link->top  = w->top;
	link->SetDirty();

	return w;
}

static byte _terraform_size = 1;

/**
 * Raise/Lower a bigger chunk of land at the same time in the editor. When
 * raising get the lowest point, when lowering the highest point, and set all
 * tiles in the selection to that height.
 * @todo : Incorporate into game itself to allow for ingame raising/lowering of
 *         larger chunks at the same time OR remove altogether, as we have 'level land' ?
 * @param tile The top-left tile where the terraforming will start
 * @param mode true for raising, false for lowering land
 */
static void CommonRaiseLowerBigLand(TileIndex tile, bool mode)
{
	if (_terraform_size == 1) {
		StringID msg =
			mode ? STR_ERROR_CAN_T_RAISE_LAND_HERE : STR_ERROR_CAN_T_LOWER_LAND_HERE;

		Command<CMD_TERRAFORM_LAND>::Post(msg, CcTerraform, tile, SLOPE_N, mode);
	} else {
		assert(_terraform_size != 0);
		TileArea ta(tile, _terraform_size, _terraform_size);
		ta.ClampToMap();

		if (ta.w == 0 || ta.h == 0) return;

		if (_settings_client.sound.confirm) SndPlayTileFx(SND_1F_CONSTRUCTION_OTHER, tile);

		uint h;
		if (mode != 0) {
			/* Raise land */
			h = MAX_TILE_HEIGHT;
			for (TileIndex tile2 : ta) {
				h = std::min(h, TileHeight(tile2));
			}
		} else {
			/* Lower land */
			h = 0;
			for (TileIndex tile2 : ta) {
				h = std::max(h, TileHeight(tile2));
			}
		}

		for (TileIndex tile2 : ta) {
			if (TileHeight(tile2) == h) {
				Command<CMD_TERRAFORM_LAND>::Post(tile2, SLOPE_N, mode);
			}
		}
	}
}

static const int8 _multi_terraform_coords[][2] = {
	{  0, -2},
	{  4,  0}, { -4,  0}, {  0,  2},
	{ -8,  2}, { -4,  4}, {  0,  6}, {  4,  4}, {  8,  2},
	{-12,  0}, { -8, -2}, { -4, -4}, {  0, -6}, {  4, -4}, {  8, -2}, { 12,  0},
	{-16,  2}, {-12,  4}, { -8,  6}, { -4,  8}, {  0, 10}, {  4,  8}, {  8,  6}, { 12,  4}, { 16,  2},
	{-20,  0}, {-16, -2}, {-12, -4}, { -8, -6}, { -4, -8}, {  0,-10}, {  4, -8}, {  8, -6}, { 12, -4}, { 16, -2}, { 20,  0},
	{-24,  2}, {-20,  4}, {-16,  6}, {-12,  8}, { -8, 10}, { -4, 12}, {  0, 14}, {  4, 12}, {  8, 10}, { 12,  8}, { 16,  6}, { 20,  4}, { 24,  2},
	{-28,  0}, {-24, -2}, {-20, -4}, {-16, -6}, {-12, -8}, { -8,-10}, { -4,-12}, {  0,-14}, {  4,-12}, {  8,-10}, { 12, -8}, { 16, -6}, { 20, -4}, { 24, -2}, { 28,  0},
};

static const NWidgetPart _nested_scen_edit_land_gen_widgets[] = {
	NWidget(NWID_HORIZONTAL),
		NWidget(WWT_CLOSEBOX, COLOUR_DARK_GREEN),
		NWidget(WWT_CAPTION, COLOUR_DARK_GREEN), SetDataTip(STR_TERRAFORM_TOOLBAR_LAND_GENERATION_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
		NWidget(WWT_SHADEBOX, COLOUR_DARK_GREEN),
		NWidget(WWT_STICKYBOX, COLOUR_DARK_GREEN),
	EndContainer(),
	NWidget(WWT_PANEL, COLOUR_DARK_GREEN),
		NWidget(NWID_HORIZONTAL), SetPadding(2, 2, 7, 2),
			NWidget(NWID_SPACER), SetFill(1, 0),
			NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_DEMOLISH), SetMinimalSize(22, 22),
										SetFill(0, 1), SetDataTip(SPR_IMG_DYNAMITE, STR_TOOLTIP_DEMOLISH_BUILDINGS_ETC),
			NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_LOWER_LAND), SetMinimalSize(22, 22),
										SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_DOWN, STR_LANDSCAPING_TOOLTIP_LOWER_A_CORNER_OF_LAND),
			NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_RAISE_LAND), SetMinimalSize(22, 22),
										SetFill(0, 1), SetDataTip(SPR_IMG_TERRAFORM_UP, STR_LANDSCAPING_TOOLTIP_RAISE_A_CORNER_OF_LAND),
			NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_LEVEL_LAND), SetMinimalSize(22, 22),
										SetFill(0, 1), SetDataTip(SPR_IMG_LEVEL_LAND, STR_LANDSCAPING_LEVEL_LAND_TOOLTIP),
			NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_PLACE_ROCKS), SetMinimalSize(22, 22),
										SetFill(0, 1), SetDataTip(SPR_IMG_ROCKS, STR_TERRAFORM_TOOLTIP_PLACE_ROCKY_AREAS_ON_LANDSCAPE),
			NWidget(NWID_SELECTION, INVALID_COLOUR, WID_ETT_SHOW_PLACE_DESERT),
				NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_PLACE_DESERT), SetMinimalSize(22, 22),
											SetFill(0, 1), SetDataTip(SPR_IMG_DESERT, STR_TERRAFORM_TOOLTIP_DEFINE_DESERT_AREA),
			EndContainer(),
			NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_ETT_PLACE_OBJECT), SetMinimalSize(23, 22),
										SetFill(0, 1), SetDataTip(SPR_IMG_TRANSMITTER, STR_SCENEDIT_TOOLBAR_PLACE_OBJECT),
			NWidget(NWID_SPACER), SetFill(1, 0),
		EndContainer(),
		NWidget(NWID_HORIZONTAL),
			NWidget(NWID_SPACER), SetFill(1, 0),
			NWidget(WWT_EMPTY, COLOUR_DARK_GREEN, WID_ETT_DOTS), SetMinimalSize(59, 31), SetDataTip(STR_EMPTY, STR_NULL),
			NWidget(NWID_SPACER), SetFill(1, 0),
			NWidget(NWID_VERTICAL),
				NWidget(NWID_SPACER), SetFill(0, 1),
				NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_INCREASE_SIZE), SetMinimalSize(12, 12), SetDataTip(SPR_ARROW_UP, STR_TERRAFORM_TOOLTIP_INCREASE_SIZE_OF_LAND_AREA),
				NWidget(NWID_SPACER), SetMinimalSize(0, 1),
				NWidget(WWT_IMGBTN, COLOUR_GREY, WID_ETT_DECREASE_SIZE), SetMinimalSize(12, 12), SetDataTip(SPR_ARROW_DOWN, STR_TERRAFORM_TOOLTIP_DECREASE_SIZE_OF_LAND_AREA),
				NWidget(NWID_SPACER), SetFill(0, 1),
			EndContainer(),
			NWidget(NWID_SPACER), SetMinimalSize(2, 0),
		EndContainer(),
		NWidget(NWID_SPACER), SetMinimalSize(0, 6),
		NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_ETT_NEW_SCENARIO), SetMinimalSize(160, 12),
								SetFill(1, 0), SetDataTip(STR_TERRAFORM_SE_NEW_WORLD, STR_TERRAFORM_TOOLTIP_GENERATE_RANDOM_LAND), SetPadding(0, 2, 0, 2),
		NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_ETT_RESET_LANDSCAPE), SetMinimalSize(160, 12),
								SetFill(1, 0), SetDataTip(STR_TERRAFORM_RESET_LANDSCAPE, STR_TERRAFORM_RESET_LANDSCAPE_TOOLTIP), SetPadding(1, 2, 2, 2),
	EndContainer(),
};

/**
 * Callback function for the scenario editor 'reset landscape' confirmation window
 * @param w Window unused
 * @param confirmed boolean value, true when yes was clicked, false otherwise
 */
static void ResetLandscapeConfirmationCallback(Window *w, bool confirmed)
{
	if (confirmed) {
		/* Set generating_world to true to get instant-green grass after removing
		 * company property. */
		Backup<bool> old_generating_world(_generating_world, true, FILE_LINE);

		/* Delete all companies */
		for (Company *c : Company::Iterate()) {
			ChangeOwnershipOfCompanyItems(c->index, INVALID_OWNER);
			delete c;
		}

		old_generating_world.Restore();

		/* Delete all station signs */
		for (BaseStation *st : BaseStation::Iterate()) {
			/* There can be buoys, remove them */
			if (IsBuoyTile(st->xy)) Command<CMD_LANDSCAPE_CLEAR>::Do(DC_EXEC | DC_BANKRUPT, st->xy);
			if (!st->IsInUse()) delete st;
		}

		/* Now that all vehicles are gone, we can reset the engine pool. Maybe it reduces some NewGRF changing-mess */
		EngineOverrideManager::ResetToCurrentNewGRFConfig();

		MarkWholeScreenDirty();
	}
}

/** Landscape generation window handler in the scenario editor. */
struct ScenarioEditorLandscapeGenerationWindow : Window {
	int last_user_action; ///< Last started user action.

	ScenarioEditorLandscapeGenerationWindow(WindowDesc *desc, WindowNumber window_number) : Window(desc)
	{
		this->CreateNestedTree();
		NWidgetStacked *show_desert = this->GetWidget<NWidgetStacked>(WID_ETT_SHOW_PLACE_DESERT);
		show_desert->SetDisplayedPlane(_settings_game.game_creation.landscape == LT_TROPIC ? 0 : SZSP_NONE);
		this->FinishInitNested(window_number);
		this->last_user_action = WIDGET_LIST_END;
	}

	void OnPaint() override
	{
		this->DrawWidgets();

		if (this->IsWidgetLowered(WID_ETT_LOWER_LAND) || this->IsWidgetLowered(WID_ETT_RAISE_LAND)) { // change area-size if raise/lower corner is selected
			SetTileSelectSize(_terraform_size, _terraform_size);
		}
	}

	void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) override
	{
		if (widget != WID_ETT_DOTS) return;

		size->width  = std::max<uint>(size->width,  ScaleGUITrad(59));
		size->height = std::max<uint>(size->height, ScaleGUITrad(31));
	}

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

		int center_x = RoundDivSU(r.left + r.right, 2);
		int center_y = RoundDivSU(r.top + r.bottom, 2);

		int n = _terraform_size * _terraform_size;
		const int8 *coords = &_multi_terraform_coords[0][0];

		assert(n != 0);
		do {
			DrawSprite(SPR_WHITE_POINT, PAL_NONE, center_x + ScaleGUITrad(coords[0]), center_y + ScaleGUITrad(coords[1]));
			coords += 2;
		} while (--n);
	}

	void OnClick(Point pt, int widget, int click_count) override
	{
		if (widget < WID_ETT_BUTTONS_START) return;

		switch (widget) {
			case WID_ETT_DEMOLISH: // Demolish aka dynamite button
				HandlePlacePushButton(this, WID_ETT_DEMOLISH, ANIMCURSOR_DEMOLISH, HT_RECT | HT_DIAGONAL);
				this->last_user_action = widget;
				break;

			case WID_ETT_LOWER_LAND: // Lower land button
				HandlePlacePushButton(this, WID_ETT_LOWER_LAND, ANIMCURSOR_LOWERLAND, HT_POINT);
				this->last_user_action = widget;
				break;

			case WID_ETT_RAISE_LAND: // Raise land button
				HandlePlacePushButton(this, WID_ETT_RAISE_LAND, ANIMCURSOR_RAISELAND, HT_POINT);
				this->last_user_action = widget;
				break;

			case WID_ETT_LEVEL_LAND: // Level land button
				HandlePlacePushButton(this, WID_ETT_LEVEL_LAND, SPR_CURSOR_LEVEL_LAND, HT_POINT | HT_DIAGONAL);
				this->last_user_action = widget;
				break;

			case WID_ETT_PLACE_ROCKS: // Place rocks button
				HandlePlacePushButton(this, WID_ETT_PLACE_ROCKS, SPR_CURSOR_ROCKY_AREA, HT_RECT);
				this->last_user_action = widget;
				break;

			case WID_ETT_PLACE_DESERT: // Place desert button (in tropical climate)
				HandlePlacePushButton(this, WID_ETT_PLACE_DESERT, SPR_CURSOR_DESERT, HT_RECT);
				this->last_user_action = widget;
				break;

			case WID_ETT_PLACE_OBJECT: // Place transmitter button
				ShowBuildObjectPicker();
				break;

			case WID_ETT_INCREASE_SIZE:
			case WID_ETT_DECREASE_SIZE: { // Increase/Decrease terraform size
				int size = (widget == WID_ETT_INCREASE_SIZE) ? 1 : -1;
				this->HandleButtonClick(widget);
				size += _terraform_size;

				if (!IsInsideMM(size, 1, 8 + 1)) return;
				_terraform_size = size;

				if (_settings_client.sound.click_beep) SndPlayFx(SND_15_BEEP);
				this->SetDirty();
				break;
			}

			case WID_ETT_NEW_SCENARIO: // gen random land
				this->HandleButtonClick(widget);
				ShowCreateScenario();
				break;

			case WID_ETT_RESET_LANDSCAPE: // Reset landscape
				ShowQuery(STR_QUERY_RESET_LANDSCAPE_CAPTION, STR_RESET_LANDSCAPE_CONFIRMATION_TEXT, nullptr, ResetLandscapeConfirmationCallback);
				break;

			default: NOT_REACHED();
		}
	}

	void OnTimeout() override
	{
		for (uint i = WID_ETT_START; i < this->nested_array_size; i++) {
			if (i == WID_ETT_BUTTONS_START) i = WID_ETT_BUTTONS_END; // skip the buttons
			if (this->IsWidgetLowered(i)) {
				this->RaiseWidget(i);
				this->SetWidgetDirty(i);
			}
		}
	}

	void OnPlaceObject(Point pt, TileIndex tile) override
	{
		switch (this->last_user_action) {
			case WID_ETT_DEMOLISH: // Demolish aka dynamite button
				PlaceProc_DemolishArea(tile);
				break;

			case WID_ETT_LOWER_LAND: // Lower land button
				CommonRaiseLowerBigLand(tile, false);
				break;

			case WID_ETT_RAISE_LAND: // Raise land button
				CommonRaiseLowerBigLand(tile, true);
				break;

			case WID_ETT_LEVEL_LAND: // Level land button
				VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_LEVEL_AREA);
				break;

			case WID_ETT_PLACE_ROCKS: // Place rocks button
				VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_CREATE_ROCKS);
				break;

			case WID_ETT_PLACE_DESERT: // Place desert button (in tropical climate)
				VpStartPlaceSizing(tile, VPM_X_AND_Y, DDSP_CREATE_DESERT);
				break;

			default: NOT_REACHED();
		}
	}

	void OnPlaceDrag(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt) override
	{
		VpSelectTilesWithMethod(pt.x, pt.y, select_method);
	}

	void OnPlaceMouseUp(ViewportPlaceMethod select_method, ViewportDragDropSelectionProcess select_proc, Point pt, TileIndex start_tile, TileIndex end_tile) override
	{
		if (pt.x != -1) {
			switch (select_proc) {
				default: NOT_REACHED();
				case DDSP_CREATE_ROCKS:
				case DDSP_CREATE_DESERT:
				case DDSP_RAISE_AND_LEVEL_AREA:
				case DDSP_LOWER_AND_LEVEL_AREA:
				case DDSP_LEVEL_AREA:
				case DDSP_DEMOLISH_AREA:
					GUIPlaceProcDragXY(select_proc, start_tile, end_tile);
					break;
			}
		}
	}

	void OnPlaceObjectAbort() override
	{
		this->RaiseButtons();
		this->SetDirty();
	}

	static HotkeyList hotkeys;
};

/**
 * Handler for global hotkeys of the ScenarioEditorLandscapeGenerationWindow.
 * @param hotkey Hotkey
 * @return ES_HANDLED if hotkey was accepted.
 */
static EventState TerraformToolbarEditorGlobalHotkeys(int hotkey)
{
	if (_game_mode != GM_EDITOR) return ES_NOT_HANDLED;
	Window *w = ShowEditorTerraformToolbar();
	if (w == nullptr) return ES_NOT_HANDLED;
	return w->OnHotkey(hotkey);
}

static Hotkey terraform_editor_hotkeys[] = {
	Hotkey('D' | WKC_GLOBAL_HOTKEY, "dynamite", WID_ETT_DEMOLISH),
	Hotkey('Q' | WKC_GLOBAL_HOTKEY, "lower", WID_ETT_LOWER_LAND),
	Hotkey('W' | WKC_GLOBAL_HOTKEY, "raise", WID_ETT_RAISE_LAND),
	Hotkey('E' | WKC_GLOBAL_HOTKEY, "level", WID_ETT_LEVEL_LAND),
	Hotkey('R', "rocky", WID_ETT_PLACE_ROCKS),
	Hotkey('T', "desert", WID_ETT_PLACE_DESERT),
	Hotkey('O', "object", WID_ETT_PLACE_OBJECT),
	HOTKEY_LIST_END
};

HotkeyList ScenarioEditorLandscapeGenerationWindow::hotkeys("terraform_editor", terraform_editor_hotkeys, TerraformToolbarEditorGlobalHotkeys);

static WindowDesc _scen_edit_land_gen_desc(
	WDP_AUTO, "toolbar_landscape_scen", 0, 0,
	WC_SCEN_LAND_GEN, WC_NONE,
	WDF_CONSTRUCTION,
	_nested_scen_edit_land_gen_widgets, lengthof(_nested_scen_edit_land_gen_widgets),
	&ScenarioEditorLandscapeGenerationWindow::hotkeys
);

/**
 * Show the toolbar for terraforming in the scenario editor.
 * @return The allocated toolbar if the window was newly opened, else \c nullptr.
 */
Window *ShowEditorTerraformToolbar()
{
	return AllocateWindowDescFront<ScenarioEditorLandscapeGenerationWindow>(&_scen_edit_land_gen_desc, 0);
}