-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy path2000_T-Intersections.txt
More file actions
1426 lines (1284 loc) · 39.6 KB
/
2000_T-Intersections.txt
File metadata and controls
1426 lines (1284 loc) · 39.6 KB
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
;T-intersections ;highways
RotationRing = 2000, 2001, 2051, 2002, 2003, 2052, 2004, 2005, 2053, 2006, 2007, 2050 ;el3 / el3offset
AddTypes = 2010, 2011, 2059, 2012, 2013, 205A, 2014, 2015, 205B, 2016, 2017, 2058 ;gh3 / gh3offset
AddTypes = 2020, 2029, 2049, 2021, 202A, 204A, 2022, 202B, 204B, 2023, 2028, 2048 ;el2gh1
AddTypes = 2030, 2039, 2041, 2031, 203A, 2042, 2032, 203B, 2043, 2033, 2038, 2040 ;el1gh2
;AddTypes = 0000,... ; highwayxhighway (listed by memo)
;AddTypes = 2060,... ; groundhighway_GroundHWxGroundHW-Orth (listed by memo)
;AddTypes = 2070,... ; groundhighway_GroundHWxGroundHW-Diag (listed by memo)
;AddTypes = 2150,... ; gh_av_straight (listed by memo)
;AddTypes = 2160,... ; GroundHighwayxRoad (listed by memo)
;###separator###
[HighwayIntersectionInfo_0x00000000]
;Modified by Tropod 06.25.04, for better in-game using
Piece = 0.0, 0.0, 0, 0, 0x02010000
StepOffsets = -6, 6
CellLayout =.......ef........
CellLayout =gaaaaaaWXaaaaaai<
CellLayout =hbbbbbbYZbbbbbbj.
CellLayout =.......kl........
CellLayout =.......^.........
CheckType = a - highway:0x04020002
CheckType = b - highway:0x00020402
CheckType = e - highway:0x02040000,0xffff00ff check
CheckType = f - highway:0x02000004,0xffff00ff check
CheckType = g - highway:0x04020000,0xffffff00 check
CheckType = h - highway:0x00020400,0xffffff00 check
CheckType = i - highway:0x04000002,0xff00ffff check
CheckType = j - highway:0x00000402,0xff00ffff check
CheckType = k - highway:0x00040200,0x00ffffff check
CheckType = l - highway:0x00000204,0x00ffffff check
CheckType = W - highway:0x04040202
CheckType = X - highway:0x04020204
CheckType = Y - highway:0x02040402
CheckType = Z - highway:0x02020404
ConsLayout =.......||........
ConsLayout =.------##------.<
ConsLayout =.------##------..
ConsLayout =.......||........
ConsLayout =.......^.........
AutoTileBase = 0x0C000060
AutoPlace = 1
Costs = 1000
;;Rotation Added by Tropod 06.25.04
[HighwayIntersectionInfo_0x00000001]
CopyFrom = 0x0000
Rotate = 1
[HighwayIntersectionInfo_0x00000002]
;Modified by Tropod 07.04.04, for better in-game using
Piece = 0.0, 0.0, 0, 0, 0x02010100
StepOffsets = -5, 5
CellLayout =hg............
CellLayout =iba...........
CellLayout =.cba..........
CellLayout =..cba.........
CellLayout =...cba........
CellLayout =....cbamn.....
CellLayout =.....cWXo....<
CellLayout =.....pYZa.....
CellLayout =.....qrcba....
CellLayout =........cba...
CellLayout =.........cba..
CellLayout =..........cba.
CellLayout =...........cbj
CellLayout =......^.....lk
CheckType = a - highway:0x01000003
CheckType = b - highway:0x01030103
CheckType = c - highway:0x00030100
CheckType = e - highway:0x03010301
CheckType = g - highway:0x01000003 check
CheckType = h - highway:0x01030000,0xffff0000 check
CheckType = i - highway:0x00030100 check
CheckType = j - highway:0x01000003 check
CheckType = k - highway:0x00000103,0x0000ffff check
CheckType = l - highway:0x00030100 check
CheckType = m - highway:0x03010000 check
CheckType = n - highway:0x03000001,0xff0000ff check
CheckType = o - highway:0x00000301 check
CheckType = p - highway:0x03010000 check
CheckType = q - highway:0x00010300,0x00ffff00 check
CheckType = r - highway:0x00000301 check
CheckType = W - highway:0x02020103
CheckType = X - highway:0x02010302
CheckType = Y - highway:0x03020201
CheckType = Z - highway:0x01030202
ConsLayout =..............
ConsLayout =.\\...........
ConsLayout =.\\\..........
ConsLayout =..\\\.........
ConsLayout =...\\\........
ConsLayout =....\\\//.....
ConsLayout =.....\##/....<
ConsLayout =...../##\.....
ConsLayout =.....//\\\....
ConsLayout =........\\\...
ConsLayout =.........\\\..
ConsLayout =..........\\\.
ConsLayout =...........\\.
ConsLayout =......^.......
AutoTileBase = 0x0C001000
Costs = 1000
AutoPlace = 1
;;Rotation Added by Tropod 07.04.04
[HighwayIntersectionInfo_0x00000003]
CopyFrom = 0x0002
Rotate = 1
[HighwayIntersectionInfo_0x00000004]
;Modified by Tropod 06.25.04, for better in-game using
Piece = 0.0, 0.0, 0, 0, 0x02010200
StepOffsets = -5, 5
CellLayout =hg...........
CellLayout =iba..........
CellLayout =.cba.........
CellLayout =..cba........
CellLayout =...cba.mn....
CellLayout =....cbAeo....
CellLayout =.....BCD....<
CellLayout =....peEba....
CellLayout =....qr.cba...
CellLayout =........cba..
CellLayout =.........cba.
CellLayout =..........cbj
CellLayout =......^....lk
CheckType = a - highway:0x01000003
CheckType = b - highway:0x01030103
CheckType = c - highway:0x00030100
CheckType = e - highway:0x03010301
CheckType = g - highway:0x01000003 check
CheckType = h - highway:0x01030000,0xffff0000 check
CheckType = i - highway:0x00030100 check
CheckType = j - highway:0x01000003 check
CheckType = k - highway:0x00000103,0x0000ffff check
CheckType = l - highway:0x00030100 check
CheckType = m - highway:0x03010000 check
CheckType = n - highway:0x03000001,0xff0000ff check
CheckType = o - highway:0x00000301 check
CheckType = p - highway:0x03010000 check
CheckType = q - highway:0x00010300,0x00ffff00 check
CheckType = r - highway:0x00000301 check
CheckType = A - highway:0x02010003
CheckType = B - highway:0x03020100
CheckType = C - highway:0x02020202
CheckType = D - highway:0x01000302
CheckType = E - highway:0x00030201
ConsLayout =.............
ConsLayout =.\\..........
ConsLayout =.\\\.........
ConsLayout =..\\\........
ConsLayout =...\\\.//....
ConsLayout =....\\#//....
ConsLayout =.....###....<
ConsLayout =....//#\\....
ConsLayout =....//.\\\...
ConsLayout =........\\\..
ConsLayout =.........\\\.
ConsLayout =..........\\.
ConsLayout =......^......
AutoTileBase = 0x0C002000
Costs = 1000
AutoPlace = 1
;;Rotation FIXED by Tropod 07.04.04
[HighwayIntersectionInfo_0x00000005]
CopyFrom = 0x00000004
Rotate = 1
[HighwayIntersectionInfo_0x00000006]
Piece = 32.0, 0.0, 0, 0, 0x02010300
StepOffsets = -4, 4
CellLayout =.............
CellLayout =hg...........
CellLayout =iba..........
CellLayout =.cba.........
CellLayout =..cba........
CellLayout =...cbamn.....
CellLayout =....cbAe....<
CellLayout =.....cAe.....
CellLayout =......dBa....
CellLayout =......dBba...
CellLayout =......opcba..
CellLayout =.........cba.
CellLayout =..........cbj
CellLayout =...........lk
CellLayout =.............
CellLayout =.............
CellLayout =......^......
CheckType = a - highway:0x01000003
CheckType = b - highway:0x01030103
CheckType = c - highway:0x00030100
CheckType = g - highway:0x01000003 check
CheckType = h - highway:0x01030000,0xffff0000 check
CheckType = i - highway:0x00030100 check
CheckType = j - highway:0x01000003 check
CheckType = k - highway:0x00000103,0x0000ffff check
CheckType = l - highway:0x00030100 check
CheckType = d - highway:0x02040200
CheckType = e - highway:0x02000204
CheckType = m - highway:0x02040000,0xffff00ff check
CheckType = n - highway:0x02000004,0xffff00ff check
CheckType = o - highway:0x00040200,0x00ffffff check
CheckType = p - highway:0x00000204,0x00ffffff check
CheckType = A - highway:0x02040203
CheckType = B - highway:0x02030204
ConsLayout =.............
ConsLayout =.............
ConsLayout =.\\..........
ConsLayout =.\\\.........
ConsLayout =..\\\........
ConsLayout =...\\\||.....
ConsLayout =....\\#|....<
ConsLayout =.....\##.....
ConsLayout =......##\....
ConsLayout =......|#\\...
ConsLayout =......||\\\..
ConsLayout =.........\\\.
ConsLayout =..........\\.
ConsLayout =.............
ConsLayout =.............
ConsLayout =......^......
AutoTileBase = 0x0C003010
Costs = 1000
AutoPlace = 1
[HighwayIntersectionInfo_0x00000008]
CopyFrom = 0x00000006
Rotate = 3
[HighwayIntersectionInfo_0x0000000A]
CopyFrom = 0x00000006
Transpose = 1
[HighwayIntersectionInfo_0x0000000C]
CopyFrom = 0x0000000A
Rotate = 1
[HighwayIntersectionInfo_0x00002000]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 2, 0
CellLayout =.ab....
CellLayout =.cd....
CellLayout =+cd+...
CellLayout =+cd++..
CellLayout =+ABgggi<
CellLayout =+CDhhhj.
CellLayout =+cd++..
CellLayout =+cd+...
CellLayout =.cd....
CellLayout =.ef....
CellLayout =.^.....
CheckType = a - highway:0x02040000,0xffff00ff check
CheckType = b - highway:0x02000004,0xffff00ff check
CheckType = c - highway:0x02040200
CheckType = d - highway:0x02000204
CheckType = e - highway:0x00040200,0x00ffffff check
CheckType = f - highway:0x00000204,0x00ffffff check
CheckType = g - highway:0x04020002
CheckType = h - highway:0x00020402
CheckType = i - highway:0x04000002,0xff00ffff check
CheckType = j - highway:0x00000402,0xff00ffff check
CheckType = A - highway:0x04040200
CheckType = B - highway:0x04020204
CheckType = C - highway:0x02040400
CheckType = D - highway:0x02020404
ConsLayout =.||....
ConsLayout =X||X...
ConsLayout =X||XX..
ConsLayout =X##---<
ConsLayout =X##---.
ConsLayout =X||XX..
ConsLayout =X||X...
ConsLayout =.||....
ConsLayout =.^.....
PreviewEffect = preview_el_straight_tee
AutoTileBase = 0x0C800000
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002002]
CopyFrom = 0x2000
Rotate = 1
[HighwayIntersectionInfo_0x00002004]
CopyFrom = 0x2000
Rotate = 2
[HighwayIntersectionInfo_0x00002006]
CopyFrom = 0x2000
Rotate = 3
;hack to get a lower starting number
[HighwayIntersectionInfo_0x000001ffe]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 0, -1
CellLayout =BC.....UV
CellLayout =Abc+++uvW
CellLayout =.abc+uvw.
CellLayout =.+abHvw+.
CellLayout =..+aIJ+..<
CellLayout =..++abc+.
CellLayout =...++abc.
CellLayout =.....+abC
CellLayout =.......AD
CellLayout =.........
CellLayout =.........
CellLayout =....^....
CheckType = X - highway:0,0
CheckType = a - highway:0x00030100
CheckType = b - highway:0x01030103
CheckType = c - highway:0x01000003
CheckType = A - highway:0x00030100 check
CheckType = B - highway:0x01030000,0xFFFF0000 check
CheckType = C - highway:0x01000003 check
CheckType = D - highway:0x00000103,0x0000FFFF check
CheckType = H - highway:0x02010003
CheckType = I - highway:0x01020203
CheckType = J - highway:0x01000302
CheckType = u - highway:0x03010000
CheckType = v - highway:0x03010301
CheckType = w - highway:0x00000301
CheckType = U - highway:0x03010000 check
CheckType = V - highway:0x03000001, 0xFF0000FF check
CheckType = W - highway:0x00000301 check
ConsLayout =\\XXX//
ConsLayout =\\\X///
ConsLayout =X\\#//X
ConsLayout =.X###X.<
ConsLayout =.XX#\\X
ConsLayout =..XX\\\
ConsLayout =....X\\
ConsLayout =.......
ConsLayout =.......
ConsLayout =.......
ConsLayout =...^...
AutoTileBase = 0x0C801000
PreviewEffect = preview_el_diag1_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002001]
CopyFrom = 0x1ffe
Rotate = 1
[HighwayIntersectionInfo_0x00002003]
CopyFrom = 0x1ffe
Rotate = 2
[HighwayIntersectionInfo_0x00002005]
CopyFrom = 0x1ffe
Rotate = 3
[HighwayIntersectionInfo_0x00002007]
CopyFrom = 0x1ffe
Rotate = 0
[HighwayIntersectionInfo_0x00002010]
Piece = 24.0, 8.0, 0, 0, 0x02011200
HandleOffset = 2,0
CellLayout =.ab....
CellLayout =.cd....
CellLayout =+cd+...
CellLayout =+cd++..
CellLayout =+ABgggi<
CellLayout =+CDhhhj.
CellLayout =+cd++..
CellLayout =+cd+...
CellLayout =.cd....
CellLayout =.ef....
CellLayout =.^.....
CheckType = a - groundhighway:0x02040000,0xffff00ff check
CheckType = b - groundhighway:0x02000004,0xffff00ff check
CheckType = c - groundhighway:0x02040200
CheckType = d - groundhighway:0x02000204
CheckType = e - groundhighway:0x00040200,0x00ffffff check
CheckType = f - groundhighway:0x00000204,0x00ffffff check
CheckType = g - groundhighway:0x04020002
CheckType = h - groundhighway:0x00020402
CheckType = i - groundhighway:0x04000002,0xff00ffff check
CheckType = j - groundhighway:0x00000402,0xff00ffff check
CheckType = A - groundhighway:0x04040200
CheckType = B - groundhighway:0x04020204
CheckType = C - groundhighway:0x02040400
CheckType = D - groundhighway:0x02020404
ConsLayout =.||....
ConsLayout =X||X...
ConsLayout =X||XX..
ConsLayout =X##---<
ConsLayout =X##---.
ConsLayout =X||XX..
ConsLayout =X||X...
ConsLayout =.||....
ConsLayout =.^.....
AutoTileBase = 0x0C802000
PreviewEffect = preview_gh_straight_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 1000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002012]
CopyFrom = 0x2010
Rotate = 1
[HighwayIntersectionInfo_0x00002014]
CopyFrom = 0x2010
Rotate = 2
[HighwayIntersectionInfo_0x00002016]
CopyFrom = 0x2010
Rotate = 3
[HighwayIntersectionInfo_0x00001ff0]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 1,-1
CellLayout =BC.....UV
CellLayout =Abc+++uvW
CellLayout =.abc+uvw.
CellLayout =.+abHvw+.
CellLayout =..+aIJ++.<
CellLayout =..++abc+.
CellLayout =...++abc.
CellLayout =.....+abC
CellLayout =.......AD
CellLayout =....^....
CheckType = X - groundhighway:0,0
CheckType = a - groundhighway:0x00030100
CheckType = b - groundhighway:0x01030103
CheckType = c - groundhighway:0x01000003
CheckType = A - groundhighway:0x00030100 check
CheckType = B - groundhighway:0x01030000,0xFFFF0000 check
CheckType = C - groundhighway:0x01000003 check
CheckType = D - groundhighway:0x00000103,0x0000FFFF check
CheckType = H - groundhighway:0x02010003
CheckType = I - groundhighway:0x01020203
CheckType = J - groundhighway:0x01000302
CheckType = u - groundhighway:0x03010000
CheckType = v - groundhighway:0x03010301
CheckType = w - groundhighway:0x00000301
CheckType = U - groundhighway:0x03010000 check
CheckType = V - groundhighway:0x03000001, 0xFF0000FF check
CheckType = W - groundhighway:0x00000301 check
ConsLayout =\\XXX//
ConsLayout =\\\X///
ConsLayout =X\\#//X
ConsLayout =.X###XX<
ConsLayout =.XX#\\X
ConsLayout =..XX\\\
ConsLayout =....X\\
ConsLayout =...^...
AutoTileBase = 0x0C803000
PreviewEffect = preview_gh_diag1_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 1000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002011]
CopyFrom = 0x1ff0
Rotate = 1
[HighwayIntersectionInfo_0x00002013]
CopyFrom = 0x1ff0
Rotate = 2
[HighwayIntersectionInfo_0x00002015]
CopyFrom = 0x1ff0
Rotate = 3
[HighwayIntersectionInfo_0x00002017]
CopyFrom = 0x1ff0
Rotate = 0
[HighwayIntersectionInfo_0x00002020]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 1,1
CellLayout =.ab....
CellLayout =.cd....
CellLayout =+cd+...
CellLayout =+cd++..
CellLayout =+ABgggi<
CellLayout =+CDhhhj.
CellLayout =+cd++..
CellLayout =+cd+...
CellLayout =.cd....
CellLayout =.ef....
CellLayout =.^.....
CheckType = a - highway:0x02040000,0xffff00ff check
CheckType = b - highway:0x02000004,0xffff00ff check
CheckType = c - highway:0x02040200
CheckType = d - highway:0x02000204
CheckType = e - highway:0x00040200,0x00ffffff check
CheckType = f - highway:0x00000204,0x00ffffff check
CheckType = g - groundhighway:0x04020002
CheckType = h - groundhighway:0x00020402
CheckType = i - groundhighway:0x04000002,0xff00ffff check
CheckType = j - groundhighway:0x00000402,0xff00ffff check
CheckType = A - highway:0x02040200 groundhighway:0x04020000
CheckType = B - highway:0x02000204 groundhighway:0x04020002
CheckType = C - highway:0x02040200 groundhighway:0x00020400
CheckType = D - highway:0x02000204 groundhighway:0x00020402
ConsLayout =.||....
ConsLayout =X||X...
ConsLayout =X||XX..
ConsLayout =X##---<
ConsLayout =X##---.
ConsLayout =X||XX..
ConsLayout =X||X...
ConsLayout =.||....
ConsLayout =.^.....
AutoTileBase = 0x0C804000
PreviewEffect = preview_el2gh1_straight_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002021]
CopyFrom = 0x2020
Rotate = 1
[HighwayIntersectionInfo_0x00002022]
CopyFrom = 0x2020
Rotate = 2
[HighwayIntersectionInfo_0x00002023]
CopyFrom = 0x2020
Rotate = 3
[HighwayIntersectionInfo_0x00002028]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 1,-1
CellLayout =BC.....UV
CellLayout =Abc+.+uvW
CellLayout =.abc+uvw.
CellLayout =.+abHvw+.
CellLayout =..+aIJ+..<
CellLayout =..++abc+.
CellLayout =...++abc.
CellLayout =.....+abC
CellLayout =.......AD
CellLayout =....^....
CheckType = a - highway:0x00030100
CheckType = b - highway:0x01030103
CheckType = c - highway:0x01000003
CheckType = A - highway:0x00030100 check
CheckType = B - highway:0x01030000,0xFFFF0000 check
CheckType = C - highway:0x01000003 check
CheckType = D - highway:0x00000103,0x0000FFFF check
CheckType = H - highway:0x01000003 groundhighway:0x03010000
CheckType = I - highway:0x01030103 groundhighway:0x00010300
CheckType = J - highway:0x01000003 groundhighway:0x00000301
CheckType = u - groundhighway:0x03010000
CheckType = v - groundhighway:0x03010301
CheckType = w - groundhighway:0x00000301
CheckType = U - groundhighway:0x03010000 check
CheckType = V - groundhighway:0x03000001, 0xFF0000FF check
CheckType = W - groundhighway:0x00000301 check
ConsLayout =\\X.X//
ConsLayout =\\\X///
ConsLayout =X\\#//X
ConsLayout =.X###X.<
ConsLayout =.XX#\\X
ConsLayout =..XX\\\
ConsLayout =....X\\
ConsLayout =...^...
AutoTileBase = 0x0C805000
PreviewEffect = preview_el2gh1_diag1_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002029]
CopyFrom = 0x2028
Rotate = 1
[HighwayIntersectionInfo_0x0000202A]
CopyFrom = 0x2028
Rotate = 2
[HighwayIntersectionInfo_0x0000202B]
CopyFrom = 0x2028
Rotate = 3
[HighwayIntersectionInfo_0x00002030]
Piece = 24.0, 8.0, 0, 0, 0x02011200
HandleOffset = 1,0
CellLayout =.ab....
CellLayout =.cd....
CellLayout =+cd+...
CellLayout =+cd++..
CellLayout =+ABgggi<
CellLayout =+CDhhhj.
CellLayout =+cd++..
CellLayout =+cd+...
CellLayout =.cd....
CellLayout =.ef....
CellLayout =.^.....
CheckType = a - groundhighway:0x02040000,0xffff00ff check
CheckType = b - groundhighway:0x02000004,0xffff00ff check
CheckType = c - groundhighway:0x02040200
CheckType = d - groundhighway:0x02000204
CheckType = e - groundhighway:0x00040200,0x00ffffff check
CheckType = f - groundhighway:0x00000204,0x00ffffff check
CheckType = g - highway:0x04020002
CheckType = h - highway:0x00020402
CheckType = i - highway:0x04000002,0xff00ffff check
CheckType = j - highway:0x00000402,0xff00ffff check
CheckType = A - groundhighway:0x02040200 highway:0x04020000
CheckType = B - groundhighway:0x02000204 highway:0x04020002
CheckType = C - groundhighway:0x02040200 highway:0x00020400
CheckType = D - groundhighway:0x02000204 highway:0x00020402
ConsLayout =.||....
ConsLayout =X||X...
ConsLayout =X||XX..
ConsLayout =X##---<
ConsLayout =X##---.
ConsLayout =X||XX..
ConsLayout =X||X...
ConsLayout =.||....
ConsLayout =.^.....
AutoTileBase = 0x0C806000
PreviewEffect = preview_el1gh2_straight_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002031]
CopyFrom = 0x2030
Rotate = 1
[HighwayIntersectionInfo_0x00002032]
CopyFrom = 0x2030
Rotate = 2
[HighwayIntersectionInfo_0x00002033]
CopyFrom = 0x2030
Rotate = 3
[HighwayIntersectionInfo_0x00002038]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 1,-1
CellLayout =BC.....UV
CellLayout =Abc+.+uvW
CellLayout =.abc+uvw.
CellLayout =.+abHvw+.
CellLayout =..+aIJ+..<
CellLayout =..++abc+.
CellLayout =...++abc.
CellLayout =.....+abC
CellLayout =.......AD
CellLayout =....^....
CheckType = a - groundhighway:0x00030100
CheckType = b - groundhighway:0x01030103
CheckType = c - groundhighway:0x01000003
CheckType = A - groundhighway:0x00030100 check
CheckType = B - groundhighway:0x01030000,0xFFFF0000 check
CheckType = C - groundhighway:0x01000003 check
CheckType = D - groundhighway:0x00000103,0x0000FFFF check
CheckType = H - groundhighway:0x01000003 highway:0x03010000
CheckType = I - groundhighway:0x01030103 highway:0x00010300
CheckType = J - groundhighway:0x01000003 highway:0x00000301
CheckType = u - highway:0x03010000
CheckType = v - highway:0x03010301
CheckType = w - highway:0x00000301
CheckType = U - highway:0x03010000 check
CheckType = V - highway:0x03000001, 0xFF0000FF check
CheckType = W - highway:0x00000301 check
ConsLayout =\\X.X//
ConsLayout =\\\X///
ConsLayout =X\\#//X
ConsLayout =.X###X.<
ConsLayout =.XX#\\X
ConsLayout =..XX\\\
ConsLayout =....X\\
ConsLayout =...^...
AutoTileBase = 0x0C807000
PreviewEffect = preview_el1gh2_diag1_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002039]
CopyFrom = 0x2038
Rotate = 1
[HighwayIntersectionInfo_0x0000203A]
CopyFrom = 0x2038
Rotate = 2
[HighwayIntersectionInfo_0x0000203B]
CopyFrom = 0x2038
Rotate = 3
[HighwayIntersectionInfo_0x00002040]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 1,-1
CellLayout =BC......UV
CellLayout =Abc+..+uvW
CellLayout =.abc++uvw
CellLayout =.+abcuvw+
CellLayout =..+abIw+.<
CellLayout =..++abc+.
CellLayout =...++abc+
CellLayout =....++abc
CellLayout =......+abC
CellLayout =....^...AD
CheckType = a - groundhighway:0x00030100
CheckType = b - groundhighway:0x01030103
CheckType = c - groundhighway:0x01000003
CheckType = A - groundhighway:0x00030100 check
CheckType = B - groundhighway:0x01030000,0xFFFF0000 check
CheckType = C - groundhighway:0x01000003 check
CheckType = D - groundhighway:0x00000103,0x0000FFFF check
CheckType = I - groundhighway:0x01000003 highway:0x00010300
CheckType = u - highway:0x03010000
CheckType = v - highway:0x03010301
CheckType = w - highway:0x00000301
CheckType = U - highway:0x03010000 check
CheckType = V - highway:0x03000001, 0xFF0000FF check
CheckType = W - highway:0x00000301 check
ConsLayout =.........
ConsLayout =.\\X..X//
ConsLayout =.\\\XX///
ConsLayout =.X\\\///X
ConsLayout =..X\##/X.<
ConsLayout =..XX##\X.
ConsLayout =...XX\\\X
ConsLayout =....XX\\\
ConsLayout =......X\\
ConsLayout =....^....
AutoTileBase = 0x0C808000
PreviewEffect = preview_el1gh2_diag2_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002041]
CopyFrom = 0x2040
Rotate = 1
[HighwayIntersectionInfo_0x00002042]
CopyFrom = 0x2040
Rotate = 2
[HighwayIntersectionInfo_0x00002043]
CopyFrom = 0x2040
Rotate = 3
[HighwayIntersectionInfo_0x00002048]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 1,-1
CellLayout =BC......UV
CellLayout =Abc+..+uvW
CellLayout =.abc++uvw
CellLayout =.+abcuvw+
CellLayout =..+abIw+.<
CellLayout =...+abc+.
CellLayout =...++abc+
CellLayout =.....+abc
CellLayout =......+abC
CellLayout =....^...AD
CheckType = a - highway:0x00030100
CheckType = b - highway:0x01030103
CheckType = c - highway:0x01000003
CheckType = A - highway:0x00030100 check
CheckType = B - highway:0x01030000,0xFFFF0000 check
CheckType = C - highway:0x01000003 check
CheckType = D - highway:0x00000103,0x0000FFFF check
CheckType = I - highway:0x01000003 groundhighway:0x00010300
CheckType = u - groundhighway:0x03010000
CheckType = v - groundhighway:0x03010301
CheckType = w - groundhighway:0x00000301
CheckType = U - groundhighway:0x03010000 check
CheckType = V - groundhighway:0x03000001, 0xFF0000FF check
CheckType = W - groundhighway:0x00000301 check
ConsLayout =.........
ConsLayout =.\\X..X//
ConsLayout =.\\\XX///
ConsLayout =.X\\\///X
ConsLayout =..X\##/X.<
ConsLayout =...X##\X.
ConsLayout =...XX\\\X
ConsLayout =.....X\\\
ConsLayout =......X\\
ConsLayout =....^....
AutoTileBase = 0x0C809000
PreviewEffect = preview_el2gh1_diag2_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 2000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002049]
CopyFrom = 0x2048
Rotate = 1
[HighwayIntersectionInfo_0x0000204A]
CopyFrom = 0x2048
Rotate = 2
[HighwayIntersectionInfo_0x0000204B]
CopyFrom = 0x2048
Rotate = 3
; TintersectionDiag_EL3offset
[HighwayIntersectionInfo_0x00002050]
Piece = 8.0, 8.0, 0, 0, 0x02011200
CellLayout =BC......UV
CellLayout =Abc+..+uvW
CellLayout =.abc++uvw
CellLayout =.+abcuvw+
CellLayout =..+abIw+.<
CellLayout =...+abc+.
CellLayout =...++abc+
CellLayout =.....+abc
CellLayout =......+abC
CellLayout =....^...AD
CheckType = a - highway:0x00030100
CheckType = b - highway:0x01030103
CheckType = c - highway:0x01000003
CheckType = A - highway:0x00030100 check
CheckType = B - highway:0x01030000,0xFFFF0000 check
CheckType = C - highway:0x01000003 check
CheckType = D - highway:0x00000103,0x0000FFFF check
CheckType = I - highway:0x01010303
CheckType = u - highway:0x03010000
CheckType = v - highway:0x03010301
CheckType = w - highway:0x00000301
CheckType = U - highway:0x03010000 check
CheckType = V - highway:0x03000001, 0xFF0000FF check
CheckType = W - highway:0x00000301 check
ConsLayout =.........
ConsLayout =.\\X..X//
ConsLayout =.\\\XX///
ConsLayout =.X\\\///X
ConsLayout =..X\##/X.<
ConsLayout =...X##\X.
ConsLayout =...XX\\\X
ConsLayout =.....X\\\
ConsLayout =......X\\
ConsLayout =....^....
AutoTileBase = 0x0C80A000
PreviewEffect = preview_el_diag2_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 3000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002051]
CopyFrom = 0x2050
Rotate = 1
[HighwayIntersectionInfo_0x00002052]
CopyFrom = 0x2050
Rotate = 2
[HighwayIntersectionInfo_0x00002053]
CopyFrom = 0x2050
Rotate = 3
; TintersectionDiag_GH3offset
[HighwayIntersectionInfo_0x00002058]
Piece = 8.0, 8.0, 0, 0, 0x02011200
HandleOffset = 2,-1
CellLayout =BC......UV
CellLayout =Abc+..+uvW
CellLayout =.abc++uvw
CellLayout =.+abcuvw+
CellLayout =..+abIw+.<
CellLayout =...+abc+.
CellLayout =...++abc+
CellLayout =....++abc
CellLayout =......+abC
CellLayout =....^...AD
CheckType = a - groundhighway:0x00030100
CheckType = b - groundhighway:0x01030103
CheckType = c - groundhighway:0x01000003
CheckType = A - groundhighway:0x00030100 check
CheckType = B - groundhighway:0x01030000,0xFFFF0000 check
CheckType = C - groundhighway:0x01000003 check
CheckType = D - groundhighway:0x00000103,0x0000FFFF check
CheckType = I - groundhighway:0x01010303
CheckType = u - groundhighway:0x03010000
CheckType = v - groundhighway:0x03010301
CheckType = w - groundhighway:0x00000301
CheckType = U - groundhighway:0x03010000 check
CheckType = V - groundhighway:0x03000001, 0xFF0000FF check
CheckType = W - groundhighway:0x00000301 check
ConsLayout =.........
ConsLayout =.\\X..X//
ConsLayout =.\\\XX///
ConsLayout =.X\\\///X
ConsLayout =..X\##/X.<
ConsLayout =...X##\X.
ConsLayout =...XX\\\X
ConsLayout =....XX\\\
ConsLayout =......X\\
ConsLayout =....^....
AutoTileBase = 0x0C80B000
PreviewEffect = preview_gh_diag2_tee
ConvertQueryID = 0x0c369c73
PlaceQueryID = 0xA0000002
Costs = 1000
AutoPlace = 1
[HighwayIntersectionInfo_0x00002059]
CopyFrom = 0x2058
Rotate = 1
[HighwayIntersectionInfo_0x0000205A]
CopyFrom = 0x2058
Rotate = 2
[HighwayIntersectionInfo_0x0000205B]
CopyFrom = 0x2058
Rotate = 3
; groundhighway_GroundHWxGroundHW-Orth
[HighwayIntersectionInfo_0x00002060]
Piece = 16.0, 16.0, 0, 0, 0x02011200
CellLayout =.....ef.....
CellLayout =gaaaaWXaaaai<
CellLayout =hbbbbYZbbbbj.
CellLayout =.....kl.....
CellLayout =.....^......
CheckType = a - groundhighway:0x04020002
CheckType = b - groundhighway:0x00020402
CheckType = e - groundhighway:0x02040000,0xffff00ff check
CheckType = f - groundhighway:0x02000004,0xffff00ff check
CheckType = g - groundhighway:0x04020000,0xffffff00 check
CheckType = h - groundhighway:0x00020400,0xffffff00 check
CheckType = i - groundhighway:0x04000002,0xff00ffff check
CheckType = j - groundhighway:0x00000402,0xff00ffff check
CheckType = k - groundhighway:0x00040200,0x00ffffff check
CheckType = l - groundhighway:0x00000204,0x00ffffff check
CheckType = W - groundhighway:0x04040202
CheckType = X - groundhighway:0x04020204
CheckType = Y - groundhighway:0x02040402
CheckType = Z - groundhighway:0x02020404
ConsLayout =.----##----.<
ConsLayout =.----##----..
ConsLayout =.....^.......
AutoTileBase = 0x0C80C000
Costs = 500
PreviewEffect = preview_gh_straight
AutoPlace = 1
;;Rotation added by Tropod 06.07.04
[HighwayIntersectionInfo_0x00002061]
CopyFrom = 0x2060
Rotate = 1
; groundhighway_GroundHWxGroundHW-Diag