Loading packages/EasterEgg/src/com/android/egg/landroid/Autopilot.kt +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ class Autopilot(val ship: Spacecraft, val universe: Universe) : Entity { get() = listOf( "---- AUTOPILOT ENGAGED ----", "TGT: " + (target?.name?.toUpperCase() ?: "SELECTING..."), "TGT: " + (target?.name?.uppercase() ?: "SELECTING..."), "EXE: $strategy" + if (debug.isNotEmpty()) " ($debug)" else "", ) .joinToString("\n") Loading packages/EasterEgg/src/com/android/egg/landroid/MainActivity.kt +1 −2 Original line number Diff line number Diff line Loading @@ -64,7 +64,6 @@ import androidx.compose.ui.input.pointer.pointerInput import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.text.toUpperCase import androidx.compose.ui.tooling.preview.Devices import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp Loading Loading @@ -226,7 +225,7 @@ fun Telemetry(universe: VisibleUniverse) { val distToClosest = ((closest.pos - pos).mag() - closest.radius).toInt() listOfNotNull( landing?.let { "LND: ${it.planet.name.toUpperCase()}\nJOB: ${it.text}" "LND: ${it.planet.name.uppercase()}\nJOB: ${it.text}" } ?: if (distToClosest < 10_000) { "ALT: $distToClosest" Loading packages/EasterEgg/src/com/android/egg/landroid/Namer.kt +1 −1 Original line number Diff line number Diff line Loading @@ -121,6 +121,6 @@ class Namer(resources: Resources) { else -> "unknown template tag: ${it.groupValues[0]}" } } .toUpperCase() .uppercase() } } Loading
packages/EasterEgg/src/com/android/egg/landroid/Autopilot.kt +1 −1 Original line number Diff line number Diff line Loading @@ -43,7 +43,7 @@ class Autopilot(val ship: Spacecraft, val universe: Universe) : Entity { get() = listOf( "---- AUTOPILOT ENGAGED ----", "TGT: " + (target?.name?.toUpperCase() ?: "SELECTING..."), "TGT: " + (target?.name?.uppercase() ?: "SELECTING..."), "EXE: $strategy" + if (debug.isNotEmpty()) " ($debug)" else "", ) .joinToString("\n") Loading
packages/EasterEgg/src/com/android/egg/landroid/MainActivity.kt +1 −2 Original line number Diff line number Diff line Loading @@ -64,7 +64,6 @@ import androidx.compose.ui.input.pointer.pointerInput import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.text.toUpperCase import androidx.compose.ui.tooling.preview.Devices import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp Loading Loading @@ -226,7 +225,7 @@ fun Telemetry(universe: VisibleUniverse) { val distToClosest = ((closest.pos - pos).mag() - closest.radius).toInt() listOfNotNull( landing?.let { "LND: ${it.planet.name.toUpperCase()}\nJOB: ${it.text}" "LND: ${it.planet.name.uppercase()}\nJOB: ${it.text}" } ?: if (distToClosest < 10_000) { "ALT: $distToClosest" Loading
packages/EasterEgg/src/com/android/egg/landroid/Namer.kt +1 −1 Original line number Diff line number Diff line Loading @@ -121,6 +121,6 @@ class Namer(resources: Resources) { else -> "unknown template tag: ${it.groupValues[0]}" } } .toUpperCase() .uppercase() } }