We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a72ab6 commit 47f306fCopy full SHA for 47f306f
3 files changed
src/main/scala/module/MiscResolver.scala
@@ -432,7 +432,7 @@ class MiscResolver extends IdResolver {
432
add(0x092d1700, Onewayroad~SW & Monorail~ES)
433
add(0x092d0200, Onewayroad~EW & Monorail~NS)
434
435
- // Avenue + intersections
+ // Avenue intersections
436
add(0x04002100, Avenue~ES & Rail~NE)
437
add(0x04004300, Avenue~SharedDiagRight & Rail~SW)
438
builder.addOne((Avenue~SN).projectLeft & Rail~NE, IdTile(0x04001600, R0F0, nonMirroredOnly))
@@ -463,6 +463,7 @@ class MiscResolver extends IdResolver {
463
add(0x5f503300, Avenue~SharedDiagLeft & Street~ES)
464
add(0x04004400, Avenue~SN & Street~CE)
465
add(0x04008600, Avenue~SN & Street~WC)
466
+ add(0x5f502f00, Avenue~SN & Street~CSE)
467
add(0x04005600, Avenue~NC & Street~WE)
468
add(0x04009600, Avenue~NC & Street~(2,0,2,2))
469
add(0x04009700, Avenue~NC & Street~(0,0,0,2))
src/main/scala/module/SamResolver.scala
@@ -243,8 +243,9 @@ class SamResolver extends IdResolver {
243
//DxO Intersections
244
add(0x5e582000 + offset, sam~SE & Road~NS) // SAM x Road
245
add(0x5e58c000 + offset, sam~SE & Onewayroad~NS) // SAM x Onewayroad
246
- add(0x5e587000 + offset, sam~SE & Avenue~SN) // SAM x Avenue 1
247
- add(0x5e588000 + offset, sam~NW & Avenue~SN) // SAM x Avenue 2
+ add(0x5e586000 + offset, sam~CSE & Avenue~SN) // SAM x Avenue DxO short T
+ add(0x5e587000 + offset, sam~SE & Avenue~SN) // SAM x Avenue DxO + (1)
248
+ add(0x5e588000 + offset, sam~NW & Avenue~SN) // SAM x Avenue DxO + (2)
249
add(0x5e53d000 + offset, sam~SE & Highway~NS) // SAM x Highway 1
250
add(0x5e53d080 + offset, sam~WN & Highway~NS) // SAM x Highway 2
251
add(0x5e514000 + offset, sam~NW & Rail~NS) // SAM-Rail
src/main/scala/module/SamRuleGenerator.scala
@@ -732,6 +732,9 @@ class SamRuleGenerator(var context: RuleTransducer.Context) extends RuleGenerato
732
Rules += sam~WE & minor~WN | (Street ~> sam)~WE // OxD continue
733
734
// DxO
735
+ // DxO short T
736
+ Rules += sam~(0,0,11,3) | (Street ~> sam~CNW) & minor~NS // DxO short T
737
+ // DxO +
738
Rules += sam~ES | (Street ~> sam)~NW & minor~NS // DxO start
739
Rules += sam~EN & minor~EW | (Street ~> sam)~SW & minor~EW // DxO middle 1
740
Rules += sam~ES & minor~NS | (Street ~> sam)~NW & minor~SN // DxO middle 2
0 commit comments