mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
Move nav routes to new :navigation project module (#3124)
This commit is contained in:
parent
299dac415d
commit
7afab16011
19 changed files with 281 additions and 235 deletions
1
navigation/.gitignore
vendored
Normal file
1
navigation/.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
/build
|
||||
25
navigation/build.gradle.kts
Normal file
25
navigation/build.gradle.kts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* Copyright (c) 2025 Meshtastic LLC
|
||||
*
|
||||
* This program 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, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
plugins {
|
||||
alias(libs.plugins.meshtastic.android.library)
|
||||
alias(libs.plugins.meshtastic.kotlinx.serialization)
|
||||
}
|
||||
|
||||
android { namespace = "com.geeksville.mesh.navigation" }
|
||||
|
||||
dependencies {}
|
||||
|
|
@ -0,0 +1,152 @@
|
|||
/*
|
||||
* Copyright (c) 2025 Meshtastic LLC
|
||||
*
|
||||
* This program 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, either version 3 of the License, or
|
||||
* (at your option) any later version.
|
||||
*
|
||||
* This program 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 this program. If not, see <https://www.gnu.org/licenses/>.
|
||||
*/
|
||||
|
||||
package com.geeksville.mesh.navigation
|
||||
|
||||
import kotlinx.serialization.Serializable
|
||||
|
||||
const val DEEP_LINK_BASE_URI = "meshtastic://meshtastic"
|
||||
|
||||
interface Route
|
||||
|
||||
interface Graph : Route
|
||||
|
||||
object ChannelsRoutes {
|
||||
@Serializable data object ChannelsGraph : Graph
|
||||
|
||||
@Serializable data object Channels : Route
|
||||
}
|
||||
|
||||
object ConnectionsRoutes {
|
||||
@Serializable data object ConnectionsGraph : Graph
|
||||
|
||||
@Serializable data object Connections : Route
|
||||
}
|
||||
|
||||
object ContactsRoutes {
|
||||
@Serializable data object ContactsGraph : Graph
|
||||
|
||||
@Serializable data object Contacts : Route
|
||||
|
||||
@Serializable data class Messages(val contactKey: String, val message: String = "") : Route
|
||||
|
||||
@Serializable data class Share(val message: String) : Route
|
||||
|
||||
@Serializable data object QuickChat : Route
|
||||
}
|
||||
|
||||
object MapRoutes {
|
||||
@Serializable data object Map : Route
|
||||
}
|
||||
|
||||
object NodesRoutes {
|
||||
@Serializable data object NodesGraph : Graph
|
||||
|
||||
@Serializable data object Nodes : Route
|
||||
|
||||
@Serializable data class NodeDetailGraph(val destNum: Int? = null) : Graph
|
||||
|
||||
@Serializable data class NodeDetail(val destNum: Int? = null) : Route
|
||||
}
|
||||
|
||||
object NodeDetailRoutes {
|
||||
@Serializable data object DeviceMetrics : Route
|
||||
|
||||
@Serializable data object NodeMap : Route
|
||||
|
||||
@Serializable data object PositionLog : Route
|
||||
|
||||
@Serializable data object EnvironmentMetrics : Route
|
||||
|
||||
@Serializable data object SignalMetrics : Route
|
||||
|
||||
@Serializable data object PowerMetrics : Route
|
||||
|
||||
@Serializable data object TracerouteLog : Route
|
||||
|
||||
@Serializable data object HostMetricsLog : Route
|
||||
|
||||
@Serializable data object PaxMetrics : Route
|
||||
}
|
||||
|
||||
object SettingsRoutes {
|
||||
@Serializable data class SettingsGraph(val destNum: Int? = null) : Graph
|
||||
|
||||
@Serializable data class Settings(val destNum: Int? = null) : Route
|
||||
|
||||
// region radio Config Routes
|
||||
|
||||
@Serializable data object User : Route
|
||||
|
||||
@Serializable data object ChannelConfig : Route
|
||||
|
||||
@Serializable data object Device : Route
|
||||
|
||||
@Serializable data object Position : Route
|
||||
|
||||
@Serializable data object Power : Route
|
||||
|
||||
@Serializable data object Network : Route
|
||||
|
||||
@Serializable data object Display : Route
|
||||
|
||||
@Serializable data object LoRa : Route
|
||||
|
||||
@Serializable data object Bluetooth : Route
|
||||
|
||||
@Serializable data object Security : Route
|
||||
|
||||
// endregion
|
||||
|
||||
// region module config routes
|
||||
|
||||
@Serializable data object MQTT : Route
|
||||
|
||||
@Serializable data object Serial : Route
|
||||
|
||||
@Serializable data object ExtNotification : Route
|
||||
|
||||
@Serializable data object StoreForward : Route
|
||||
|
||||
@Serializable data object RangeTest : Route
|
||||
|
||||
@Serializable data object Telemetry : Route
|
||||
|
||||
@Serializable data object CannedMessage : Route
|
||||
|
||||
@Serializable data object Audio : Route
|
||||
|
||||
@Serializable data object RemoteHardware : Route
|
||||
|
||||
@Serializable data object NeighborInfo : Route
|
||||
|
||||
@Serializable data object AmbientLighting : Route
|
||||
|
||||
@Serializable data object DetectionSensor : Route
|
||||
|
||||
@Serializable data object Paxcounter : Route
|
||||
|
||||
// endregion
|
||||
|
||||
// region advanced config routes
|
||||
|
||||
@Serializable data object CleanNodeDb : Route
|
||||
|
||||
@Serializable data object DebugPanel : Route
|
||||
|
||||
// endregion
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue