Skip to content
Snippets Groups Projects
Commit c1472a01 authored by Sebastiano Barezzi's avatar Sebastiano Barezzi Committed by Luca Stefani
Browse files

Aperture: Simplify flash mode handling

Change-Id: I5ec3fcb523cf4cc240e9dbaed124bc330b2db08d
parent 9e0a3f71
No related branches found
No related tags found
No related merge requests found
......@@ -1642,13 +1642,8 @@ open class CameraActivity : AppCompatActivity() {
private fun cycleFlashMode() {
val currentFlashMode = flashMode
val newFlashMode = when (cameraMode) {
CameraMode.PHOTO -> currentFlashMode.next()
CameraMode.VIDEO ->
if (currentFlashMode != FlashMode.OFF) {
FlashMode.OFF
} else {
FlashMode.TORCH
}
CameraMode.PHOTO -> FlashMode.PHOTO_ALLOWED_MODES.next(currentFlashMode)
CameraMode.VIDEO -> FlashMode.VIDEO_ALLOWED_MODES.next(currentFlashMode)
else -> FlashMode.OFF
}
......
......@@ -38,4 +38,24 @@ enum class FlashMode {
* Get the next mode.
*/
fun next() = values().next(this)
companion object {
/**
* Allowed flash modes when in photo mode.
*/
val PHOTO_ALLOWED_MODES = listOf(
OFF,
AUTO,
ON,
TORCH,
)
/**
* Allowed flash modes when in video mode.
*/
val VIDEO_ALLOWED_MODES = listOf(
OFF,
TORCH,
)
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment