Skip to content

Commit

Permalink
Merge pull request #20 from mutualmobile/ab_game_rotation_vector_support
Browse files Browse the repository at this point in the history
feat: Game Rotation Vector sensor Implementation
  • Loading branch information
aditya-bhawsar-mm committed Apr 3, 2023
2 parents 26171a4 + e974e8d commit 9fdcab5
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Rotation Vector | ✅️️ | rememberRotationVectorSensorState()
Relative Humidity | ⚠️ | WIP
Ambient Temperature | ✅️ | rememberAmbientTemperatureSensorState()
Magnetic Field (Uncalibrated) | — | N/A
GameRotation Vector | ️ | WIP
GameRotation Vector | ️ | rememberGameRotationVectorSensorState()
Gyroscope (Uncalibrated) | ⚠️ | WIP
Significant Motion | — | N/A
Step Detector | ✅️ | rememberStepDetectorSensorState()
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
package com.mutualmobile.composesensors

import androidx.compose.runtime.Composable
import androidx.compose.runtime.Immutable
import androidx.compose.runtime.LaunchedEffect
import androidx.compose.runtime.mutableStateOf
import androidx.compose.runtime.remember

/**
* Measures the orientation of a device by providing the three elements of the device's rotation vector.
* @param vectorX Rotation vector component along the x axis.
* @param vectorY Rotation vector component along the y axis.
* @param vectorZ Rotation vector component along the z axis.
* @param isAvailable Whether the current device has a game rotation vector sensor. Defaults to false.
* @param accuracy Accuracy factor of the game rotation vector sensor. Defaults to 0.
*/
@Immutable
class GameRotationVectorSensorState internal constructor(
val vectorX: Float = 0f,
val vectorY: Float = 0f,
val vectorZ: Float = 0f,
val isAvailable: Boolean = false,
val accuracy: Int = 0
) {
override fun toString(): String {
return "GameRotationVectorSensorState(vectorX=$vectorX, " +
"vectorY=$vectorY, vectorZ=$vectorZ, isAvailable=$isAvailable, " +
"accuracy=$accuracy)"
}

override fun equals(other: Any?): Boolean {
if (this === other) return true
other as GameRotationVectorSensorState

if (vectorX != other.vectorX) return false
if (vectorY != other.vectorY) return false
if (vectorZ != other.vectorZ) return false
if (isAvailable != other.isAvailable) return false
if (accuracy != other.accuracy) return false
return true
}

override fun hashCode(): Int {
var result = vectorX.hashCode()
result = 31 * result + vectorY.hashCode()
result = 31 * result + vectorZ.hashCode()
result = 31 * result + isAvailable.hashCode()
result = 31 * result + accuracy
return result
}
}


/**
* Creates and [remember]s instance of [GameRotationVectorSensorState].
* @param sensorDelay The rate at which the raw sensor data should be received.
* Defaults to [SensorDelay.Game].
* @param onError Callback invoked on every error state.
*/
@Composable
fun rememberGameRotationVectorSensorState(
sensorDelay: SensorDelay = SensorDelay.Game,
onError: (throwable: Throwable) -> Unit = {},
): GameRotationVectorSensorState {
val sensorState = rememberSensorState(
sensorType = SensorType.GameRotationVector,
sensorDelay = sensorDelay,
onError = onError,
)

val gameRotationVectorSensorState = remember { mutableStateOf(GameRotationVectorSensorState()) }

LaunchedEffect(key1 = sensorState, block = {
val sensorStateValues = sensorState.data
if (sensorStateValues.isNotEmpty()) {
gameRotationVectorSensorState.value = GameRotationVectorSensorState(
vectorX = sensorStateValues[0],
vectorY = sensorStateValues[1],
vectorZ = sensorStateValues[2],
isAvailable = sensorState.isAvailable,
accuracy = sensorState.accuracy
)
}
})

return gameRotationVectorSensorState.value
}

0 comments on commit 9fdcab5

Please sign in to comment.