2026-03-10 22:50:50 -05:00
package com.mindmachine.mvp
2026-03-10 23:24:49 -05:00
import android.app.Activity
import android.content.pm.ActivityInfo
2026-03-10 22:50:50 -05:00
import android.os.Bundle
2026-03-24 19:01:02 -05:00
import android.view.WindowManager
2026-03-10 22:50:50 -05:00
import androidx.activity.ComponentActivity
2026-03-10 23:34:07 -05:00
import androidx.activity.compose.BackHandler
2026-03-10 22:50:50 -05:00
import androidx.activity.compose.setContent
import androidx.activity.viewModels
import androidx.compose.foundation.background
2026-03-19 20:01:01 -05:00
import com.mindmachine.mvp.session.DurationSliderCard
import com.mindmachine.mvp.session.SetupTimelineEditor
2026-03-10 22:50:50 -05:00
import androidx.compose.foundation.clickable
2026-03-24 17:01:02 -05:00
import androidx.compose.foundation.gestures.detectTapGestures
2026-03-10 22:50:50 -05:00
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.ColumnScope
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.Spacer
2026-03-24 18:01:01 -05:00
import androidx.compose.foundation.layout.WindowInsets
2026-03-10 23:24:49 -05:00
import androidx.compose.foundation.layout.fillMaxHeight
2026-03-10 22:50:50 -05:00
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.fillMaxWidth
import androidx.compose.foundation.layout.height
2026-04-09 21:01:02 -05:00
import androidx.compose.foundation.layout.width
2026-03-24 18:01:01 -05:00
import androidx.compose.foundation.layout.navigationBars
2026-03-10 22:50:50 -05:00
import androidx.compose.foundation.layout.padding
2026-03-10 23:42:55 -05:00
import androidx.compose.foundation.layout.safeDrawingPadding
2026-03-24 18:01:01 -05:00
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.statusBars
import androidx.compose.foundation.layout.windowInsetsPadding
2026-03-10 23:42:55 -05:00
import androidx.compose.foundation.rememberScrollState
import androidx.compose.foundation.verticalScroll
2026-03-10 22:50:50 -05:00
import androidx.compose.foundation.lazy.LazyColumn
import androidx.compose.foundation.lazy.items
2026-03-24 18:01:01 -05:00
import androidx.compose.material.icons.Icons
import androidx.compose.material.icons.filled.Add
import androidx.compose.material.icons.filled.Delete
import androidx.compose.material.icons.filled.PlayArrow
import androidx.compose.material.icons.filled.Settings
2026-04-09 21:33:09 -05:00
import androidx.compose.ui.res.painterResource
2026-03-24 18:01:01 -05:00
import androidx.compose.material3.AlertDialog
2026-03-10 22:50:50 -05:00
import androidx.compose.material3.Button
import androidx.compose.material3.Card
2026-03-10 23:14:33 -05:00
import androidx.compose.material3.CardDefaults
2026-03-10 22:50:50 -05:00
import androidx.compose.material3.Checkbox
import androidx.compose.material3.ExperimentalMaterial3Api
import androidx.compose.material3.HorizontalDivider
2026-03-24 18:01:01 -05:00
import androidx.compose.material3.Icon
import androidx.compose.material3.IconButton
2026-03-10 22:50:50 -05:00
import androidx.compose.material3.MaterialTheme
2026-03-21 23:01:02 -05:00
import androidx.compose.material3.LinearProgressIndicator
2026-03-10 22:50:50 -05:00
import androidx.compose.material3.OutlinedButton
2026-03-10 23:24:49 -05:00
import androidx.compose.material3.SegmentedButton
import androidx.compose.material3.SingleChoiceSegmentedButtonRow
2026-03-10 22:50:50 -05:00
import androidx.compose.material3.Slider
import androidx.compose.material3.Text
import androidx.compose.material3.TextButton
2026-03-21 22:01:01 -05:00
import androidx.compose.material3.TextField
2026-03-10 22:50:50 -05:00
import androidx.compose.material3.TopAppBar
2026-03-10 23:14:33 -05:00
import androidx.compose.material3.darkColorScheme
2026-03-10 22:50:50 -05:00
import androidx.compose.runtime.Composable
2026-03-10 23:24:49 -05:00
import androidx.compose.runtime.DisposableEffect
2026-03-10 23:34:07 -05:00
import androidx.compose.runtime.LaunchedEffect
2026-03-10 22:50:50 -05:00
import androidx.compose.runtime.getValue
2026-03-10 23:51:55 -05:00
import androidx.compose.runtime.mutableIntStateOf
2026-03-10 22:50:50 -05:00
import androidx.compose.runtime.mutableStateOf
2026-03-10 23:14:33 -05:00
import androidx.compose.runtime.produceState
2026-03-10 22:50:50 -05:00
import androidx.compose.runtime.remember
2026-03-22 00:01:01 -05:00
import androidx.compose.runtime.rememberUpdatedState
2026-03-10 22:50:50 -05:00
import androidx.compose.runtime.setValue
2026-03-10 23:14:33 -05:00
import androidx.compose.runtime.withFrameNanos
2026-03-10 22:50:50 -05:00
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.graphics.Color
2026-03-24 17:01:02 -05:00
import androidx.compose.ui.input.pointer.pointerInput
2026-03-10 23:24:49 -05:00
import androidx.compose.ui.platform.LocalContext
2026-03-10 22:50:50 -05:00
import androidx.compose.ui.platform.LocalLifecycleOwner
import androidx.compose.ui.semantics.contentDescription
import androidx.compose.ui.semantics.semantics
import androidx.compose.ui.unit.dp
2026-03-10 23:51:55 -05:00
import androidx.core.view.WindowCompat
import androidx.core.view.WindowInsetsCompat
import androidx.core.view.WindowInsetsControllerCompat
2026-03-10 22:50:50 -05:00
import androidx.lifecycle.Lifecycle
import androidx.lifecycle.LifecycleEventObserver
import androidx.lifecycle.compose.collectAsStateWithLifecycle
import androidx.lifecycle.viewmodel.compose.viewModel
2026-03-24 19:01:02 -05:00
import androidx.navigation.NavType
2026-03-10 22:50:50 -05:00
import androidx.navigation.compose.NavHost
import androidx.navigation.compose.composable
import androidx.navigation.compose.rememberNavController
2026-03-24 19:01:02 -05:00
import androidx.navigation.navArgument
2026-03-10 22:50:50 -05:00
import com.mindmachine.mvp.audio.BinauralAudioEngine
import com.mindmachine.mvp.audio.HeadsetMonitor
import com.mindmachine.mvp.data.SettingsRepository
2026-03-21 22:01:01 -05:00
import com.mindmachine.mvp.data.UserProgramRepository
2026-03-10 22:50:50 -05:00
import com.mindmachine.mvp.domain.RuntimeState
2026-03-10 23:24:49 -05:00
import com.mindmachine.mvp.session.FlashColor
2026-03-10 22:50:50 -05:00
import com.mindmachine.mvp.session.MainViewModel
2026-03-10 23:24:49 -05:00
import com.mindmachine.mvp.session.SplitFlashFrame
2026-03-22 00:01:01 -05:00
import com.mindmachine.mvp.session.SplitFlashSequencer
2026-03-10 23:34:07 -05:00
import com.mindmachine.mvp.session.flashIntervalMsToSeconds
import com.mindmachine.mvp.session.flashIntervalSecondsToMs
2026-03-24 18:01:01 -05:00
import com.mindmachine.mvp.session.formatDuration
2026-03-21 23:01:02 -05:00
import com.mindmachine.mvp.session.sessionProgressFraction
2026-03-10 23:34:07 -05:00
import com.mindmachine.mvp.session.shouldShowActiveControlsByDefault
2026-03-10 23:51:55 -05:00
import com.mindmachine.mvp.session.shouldUseImmersiveFullscreen
import kotlinx.coroutines.delay
2026-03-10 22:50:50 -05:00
import kotlin.math.roundToInt
2026-03-24 18:01:01 -05:00
import java.util.Locale
2026-03-10 22:50:50 -05:00
2026-04-09 21:01:02 -05:00
2026-03-24 19:01:02 -05:00
private const val SESSION _ENTRY _HOME = " home "
private const val SESSION _ENTRY _SETUP = " setup "
2026-03-10 23:14:33 -05:00
private val MindMachineColors = darkColorScheme (
primary = Color ( 0xFF8AB4FF ) ,
onPrimary = Color ( 0xFF001B3D ) ,
primaryContainer = Color ( 0xFF004689 ) ,
onPrimaryContainer = Color ( 0xFFD7E3FF ) ,
secondary = Color ( 0xFFFFD166 ) ,
onSecondary = Color ( 0xFF2E2300 ) ,
background = Color ( 0xFF05070D ) ,
onBackground = Color ( 0xFFF3F6FF ) ,
surface = Color ( 0xFF121621 ) ,
onSurface = Color ( 0xFFF3F6FF ) ,
error = Color ( 0xFFFF6B6B ) ,
onError = Color ( 0xFF3A0002 )
)
2026-03-10 22:50:50 -05:00
class MainActivity : ComponentActivity ( ) {
private val vm : MainViewModel by viewModels {
2026-03-21 22:01:01 -05:00
MainViewModel . Factory (
SettingsRepository ( applicationContext ) ,
UserProgramRepository ( applicationContext ) ,
HeadsetMonitor ( applicationContext ) ,
BinauralAudioEngine ( ) ,
)
2026-03-10 22:50:50 -05:00
}
override fun onCreate ( savedInstanceState : Bundle ? ) {
super . onCreate ( savedInstanceState )
2026-03-10 23:14:33 -05:00
setContent {
MaterialTheme ( colorScheme = MindMachineColors ) {
App ( vm )
}
}
2026-03-10 22:50:50 -05:00
}
}
2026-03-10 23:03:46 -05:00
@OptIn ( ExperimentalMaterial3Api :: class )
2026-03-10 22:50:50 -05:00
@Composable
fun App ( vm : MainViewModel = viewModel ( ) ) {
val nav = rememberNavController ( )
val ui by vm . ui . collectAsStateWithLifecycle ( )
val lifecycle = LocalLifecycleOwner . current . lifecycle
2026-03-22 12:01:01 -05:00
val activity = LocalContext . current as ? Activity
2026-03-10 22:50:50 -05:00
2026-03-22 12:01:01 -05:00
DisposableEffect ( lifecycle , activity , ui . runtimeState ) {
2026-03-10 22:50:50 -05:00
val observer = LifecycleEventObserver { _ , event ->
2026-03-22 12:01:01 -05:00
val appActuallyBackgrounded = activity ?. isChangingConfigurations != true
if (
event == Lifecycle . Event . ON _STOP &&
ui . runtimeState == RuntimeState . RUNNING &&
appActuallyBackgrounded
) {
2026-03-10 22:50:50 -05:00
vm . pause ( " Session paused because app moved to background. " )
}
}
lifecycle . addObserver ( observer )
onDispose { lifecycle . removeObserver ( observer ) }
}
2026-03-22 01:01:14 -05:00
if ( ! ui . settingsInitialized ) {
Box (
modifier = Modifier
. fillMaxSize ( )
. background ( MaterialTheme . colorScheme . background )
)
return
}
2026-03-10 22:50:50 -05:00
val startRoute = if ( ui . settings . safetyAcknowledged ) " home " else " welcome "
2026-03-10 23:14:33 -05:00
NavHost ( navController = nav , startDestination = startRoute , modifier = Modifier . background ( MaterialTheme . colorScheme . background ) ) {
2026-03-10 22:50:50 -05:00
composable ( " welcome " ) {
SimpleScreen ( " MindMachine " , " Blinking light + binaural audio. Stereo headphones required for binaural mode. Not a medical device. " ) {
Button ( onClick = { nav . navigate ( " safety " ) } ) { Text ( " Continue " ) }
}
}
composable ( " safety " ) {
SafetyScreen (
onAck = {
vm . acknowledgeSafety ( )
nav . navigate ( " home " ) { popUpTo ( 0 ) }
} ,
onHolder = { nav . navigate ( " holder " ) }
)
}
composable ( " home " ) {
2026-03-24 18:01:01 -05:00
var confirmDeleteProgramId by remember { mutableStateOf < String ? > ( null ) }
var confirmDeleteProgramName by remember { mutableStateOf ( " " ) }
Column (
Modifier
. fillMaxSize ( )
. safeDrawingPadding ( )
) {
2026-04-09 21:01:02 -05:00
TopAppBar (
2026-04-09 21:33:09 -05:00
title = {
Row ( verticalAlignment = Alignment . CenterVertically ) {
Icon (
painter = painterResource ( R . drawable . ic _app _logo ) ,
contentDescription = " MindMachine " ,
modifier = Modifier . size ( 20. dp )
)
Spacer ( Modifier . width ( 8. dp ) )
Text ( " MindMachine " )
}
} ,
2026-04-09 21:01:02 -05:00
actions = {
2026-03-24 18:01:01 -05:00
IconButton (
onClick = {
vm . createNewProgramDraft ( )
nav . navigate ( " setup " )
}
) {
Icon ( Icons . Filled . Add , contentDescription = " Add " )
}
IconButton ( onClick = { nav . navigate ( " settings " ) } ) {
Icon ( Icons . Filled . Settings , contentDescription = " Settings " )
}
2026-04-09 21:01:02 -05:00
}
)
2026-03-10 22:50:50 -05:00
LazyColumn ( Modifier . padding ( 12. dp ) , verticalArrangement = Arrangement . spacedBy ( 8. dp ) ) {
item {
2026-03-24 18:01:01 -05:00
TextButton ( onClick = { nav . navigate ( " holder " ) } ) { Text ( " User Guidance/Disclaimer " ) }
2026-03-10 22:50:50 -05:00
}
items ( ui . presets ) { p ->
2026-03-10 23:14:33 -05:00
Card (
colors = CardDefaults . cardColors (
containerColor = MaterialTheme . colorScheme . surface ,
contentColor = MaterialTheme . colorScheme . onSurface
) ,
modifier = Modifier . fillMaxWidth ( ) . clickable {
vm . choosePreset ( p . id )
nav . navigate ( " setup " )
} . padding ( 4. dp )
) {
2026-03-21 22:01:01 -05:00
Row (
modifier = Modifier . fillMaxWidth ( ) . padding ( 12. dp ) ,
horizontalArrangement = Arrangement . SpaceBetween ,
verticalAlignment = Alignment . CenterVertically ,
) {
Column ( Modifier . weight ( 1f ) ) {
Text ( p . name , style = MaterialTheme . typography . titleMedium )
Text ( p . description )
2026-03-24 18:01:01 -05:00
Text ( " ${formatDuration(p.defaultDurationSec)} • ${p.visualPatternType} • binaural ${formatMaxTwoDecimals(p.binauralDifferenceHz)} " )
}
Row (
verticalAlignment = Alignment . CenterVertically ,
horizontalArrangement = Arrangement . spacedBy ( 8. dp )
) {
2026-03-24 19:01:02 -05:00
IconButton (
onClick = {
val started = vm . startSessionFromProgramSelection ( p . id )
if ( started ) {
nav . navigate ( " active/ $SESSION _ENTRY_HOME " )
}
} ,
modifier = Modifier . size ( 48. dp )
) {
Icon (
imageVector = Icons . Filled . PlayArrow ,
contentDescription = " Play ${p.name} " ,
tint = Color ( 0xFF4CAF50 ) ,
modifier = Modifier . size ( 38. dp )
)
}
2026-03-24 18:01:01 -05:00
Box (
modifier = Modifier
. size ( 24. dp )
. clickable {
confirmDeleteProgramId = p . id
confirmDeleteProgramName = p . name
} ,
contentAlignment = Alignment . Center
) {
Icon (
imageVector = Icons . Filled . Delete ,
contentDescription = " Delete ${p.name} " ,
tint = Color ( 0xFFFF5252 ) ,
modifier = Modifier . fillMaxSize ( )
)
}
2026-03-21 22:01:01 -05:00
}
2026-03-10 22:50:50 -05:00
}
}
}
}
}
2026-03-24 18:01:01 -05:00
if ( confirmDeleteProgramId != null ) {
AlertDialog (
onDismissRequest = {
confirmDeleteProgramId = null
confirmDeleteProgramName = " "
} ,
title = { Text ( " Delete program? " ) } ,
text = { Text ( " Delete \" $confirmDeleteProgramName \" ? " ) } ,
confirmButton = {
TextButton ( onClick = {
confirmDeleteProgramId ?. let ( vm :: deleteProgram )
confirmDeleteProgramId = null
confirmDeleteProgramName = " "
} ) {
Text ( " Delete " , color = Color ( 0xFFFF5252 ) )
}
} ,
dismissButton = {
TextButton ( onClick = {
confirmDeleteProgramId = null
confirmDeleteProgramName = " "
} ) { Text ( " Cancel " ) }
}
)
}
2026-03-10 22:50:50 -05:00
}
composable ( " setup " ) {
2026-03-19 15:56:50 -05:00
SetupScreen (
vm = vm ,
onStart = {
2026-03-22 00:01:01 -05:00
val started = vm . startSession ( )
if ( started ) {
2026-03-24 19:01:02 -05:00
nav . navigate ( " active/ $SESSION _ENTRY_SETUP " )
2026-03-22 00:01:01 -05:00
}
2026-03-19 15:56:50 -05:00
} ,
)
2026-03-10 22:50:50 -05:00
}
2026-03-24 19:01:02 -05:00
composable (
route = " active/{entryPoint} " ,
arguments = listOf ( navArgument ( " entryPoint " ) { type = NavType . StringType } )
) { backStackEntry ->
val entryPoint = backStackEntry . arguments ?. getString ( " entryPoint " ) ?: SESSION _ENTRY _SETUP
2026-03-10 23:34:07 -05:00
ActiveSessionScreen (
vm = vm ,
2026-03-24 19:01:02 -05:00
onFinish = {
nav . navigate ( entryPoint ) {
popUpTo ( " active/ $entryPoint " ) { inclusive = true }
launchSingleTop = true
2026-03-22 00:01:01 -05:00
}
2026-03-24 19:01:02 -05:00
} ,
onBackToEntry = {
vm . stop ( )
nav . navigate ( entryPoint ) {
popUpTo ( " active/ $entryPoint " ) { inclusive = true }
launchSingleTop = true
}
}
)
2026-03-10 22:50:50 -05:00
}
composable ( " settings " ) {
2026-03-22 01:01:14 -05:00
SettingsScreen ( vm )
2026-03-10 22:50:50 -05:00
}
composable ( " holder " ) {
2026-04-09 20:51:39 -05:00
PositioningScreen ( )
2026-03-10 22:50:50 -05:00
}
}
}
@Composable
fun SimpleScreen ( title : String , subtitle : String , actions : @Composable ColumnScope . ( ) -> Unit ) {
Column (
2026-03-24 18:01:01 -05:00
modifier = Modifier
. fillMaxSize ( )
. background ( MaterialTheme . colorScheme . background )
. safeDrawingPadding ( )
. padding ( 16. dp ) ,
2026-03-10 22:50:50 -05:00
verticalArrangement = Arrangement . spacedBy ( 12. dp ) ,
) {
2026-03-10 23:14:33 -05:00
Text ( title , style = MaterialTheme . typography . headlineMedium , color = MaterialTheme . colorScheme . onBackground )
Text ( subtitle , color = MaterialTheme . colorScheme . onBackground )
2026-03-10 22:50:50 -05:00
actions ( )
}
}
@Composable
fun SafetyScreen ( onAck : ( ) -> Unit , onHolder : ( ) -> Unit ) {
var checked by remember { mutableStateOf ( false ) }
2026-03-24 18:01:01 -05:00
Column (
Modifier
. fillMaxSize ( )
. background ( MaterialTheme . colorScheme . background )
. safeDrawingPadding ( )
. padding ( 16. dp )
) {
2026-03-10 23:14:33 -05:00
Text ( " Read before using MindMachine " , style = MaterialTheme . typography . headlineSmall , color = MaterialTheme . colorScheme . onBackground )
2026-03-10 22:50:50 -05:00
Spacer ( Modifier . height ( 12. dp ) )
2026-03-10 23:14:33 -05:00
Text (
2026-04-09 20:51:39 -05:00
" Flashing lights may be unsafe for people with epilepsy, seizure sensitivity, or migraine triggers. \n \n Do not use while driving, walking, cycling, or operating machinery. \n \n For immersive visual sessions, keep your eyes closed. Do not stare at the screen. \n \n Do not place the phone directly on your eyes. Avoid pressure on face/eyes and ensure comfortable breathing/airflow. \n \n Use at your own risk. This app is a prototype and not a medical device. \n \n Stop immediately for discomfort, dizziness, headache, nausea, anxiety, or eye strain. \n \n Binaural mode requires stereo headphones. " ,
2026-03-10 23:14:33 -05:00
color = MaterialTheme . colorScheme . onBackground
)
2026-03-10 22:50:50 -05:00
Row ( verticalAlignment = Alignment . CenterVertically ) {
Checkbox ( checked = checked , onCheckedChange = { checked = it } )
2026-03-10 23:14:33 -05:00
Text ( " I understand the risks and will stop immediately if I feel discomfort. " , color = MaterialTheme . colorScheme . onBackground )
2026-03-10 22:50:50 -05:00
}
Button ( onClick = onAck , enabled = checked , modifier = Modifier . semantics { contentDescription = " I Understand " } ) { Text ( " I Understand " ) }
2026-04-09 20:51:39 -05:00
TextButton ( onClick = onHolder ) { Text ( " Positioning Guidance " ) }
2026-03-10 22:50:50 -05:00
}
}
@Composable
2026-03-19 15:56:50 -05:00
fun SetupScreen (
vm : MainViewModel ,
onStart : ( ) -> Unit ,
) {
2026-03-10 22:50:50 -05:00
val ui by vm . ui . collectAsStateWithLifecycle ( )
2026-03-10 23:42:55 -05:00
val scrollState = rememberScrollState ( )
val containerModifier = Modifier
. fillMaxSize ( )
. background ( MaterialTheme . colorScheme . background )
2026-03-24 18:01:01 -05:00
. windowInsetsPadding ( WindowInsets . statusBars )
. windowInsetsPadding ( WindowInsets . navigationBars )
2026-03-10 23:42:55 -05:00
. then ( if ( setupScreenUsesScrollableContainer ( ) ) Modifier . verticalScroll ( scrollState ) else Modifier )
. padding ( horizontal = 16. dp , vertical = 12. dp )
2026-03-21 22:01:01 -05:00
var programName by remember ( ui . selectedPreset . id ) { mutableStateOf ( ui . selectedPreset . name ) }
2026-03-22 01:01:14 -05:00
val hasUnsavedChanges = setupScreenHasUnsavedChanges (
hasUnsavedTimelineChanges = ui . hasUnsavedChanges ,
editedProgramName = programName ,
savedProgramName = ui . savedProgramName ,
)
2026-03-10 23:14:33 -05:00
Column (
2026-03-19 20:01:01 -05:00
modifier = containerModifier ,
verticalArrangement = Arrangement . spacedBy ( 14. dp ) ,
2026-03-10 23:14:33 -05:00
) {
2026-03-19 20:01:01 -05:00
Text (
ui . selectedPreset . name ,
style = MaterialTheme . typography . headlineSmall ,
color = MaterialTheme . colorScheme . onBackground ,
)
2026-03-21 22:01:01 -05:00
TextField (
value = programName ,
onValueChange = { programName = it } ,
label = { Text ( " Program name " ) } ,
modifier = Modifier . fillMaxWidth ( ) ,
)
2026-03-19 20:01:01 -05:00
DurationSliderCard (
durationSec = ui . timeline . durationSec ,
onDurationSecChanged = { vm . setDurationSec ( it ) } ,
)
// Integrated timeline editor (no separate screen).
SetupTimelineEditor (
state = ui . timeline ,
onStateChanged = vm :: updateTimeline ,
2026-03-22 00:01:01 -05:00
onCurveGranularityChanged = vm :: setCurveGranularitySec ,
2026-03-19 20:01:01 -05:00
)
2026-03-21 22:01:01 -05:00
Row ( horizontalArrangement = Arrangement . spacedBy ( 8. dp ) , modifier = Modifier . fillMaxWidth ( ) ) {
2026-03-22 01:01:14 -05:00
if ( hasUnsavedChanges ) {
OutlinedButton ( onClick = { vm . saveCurrentProgram ( programName ) } , modifier = Modifier . weight ( 1f ) . height ( 52. dp ) ) {
Text ( " Save " )
}
} else {
Button ( onClick = onStart , modifier = Modifier . weight ( 1f ) . height ( 52. dp ) ) { Text ( " Start " ) }
2026-03-21 22:01:01 -05:00
}
}
if ( ui . error != null ) Text ( ui . error !! , color = if ( ui . error !! . startsWith ( " Saved " ) ) Color ( 0xFF72E39A ) else MaterialTheme . colorScheme . error )
2026-03-10 23:42:55 -05:00
Spacer ( Modifier . height ( 8. dp ) )
2026-03-10 22:50:50 -05:00
}
}
2026-03-10 23:42:55 -05:00
internal fun setupScreenFlashIntervalLabel ( flashIntervalMs : Int ) : String =
" Flash interval: ${"%.2f".format(flashIntervalMsToSeconds(flashIntervalMs))} s "
2026-03-24 18:01:01 -05:00
internal fun formatMaxTwoDecimals ( value : Float ) : String =
String . format ( Locale . US , " %.2f " , value ) . trimEnd ( '0' ) . trimEnd ( '.' )
2026-03-22 01:01:14 -05:00
internal fun setupScreenHasUnsavedChanges (
hasUnsavedTimelineChanges : Boolean ,
editedProgramName : String ,
savedProgramName : String ,
) : Boolean {
val nameChanged = editedProgramName . trim ( ) != savedProgramName . trim ( )
return hasUnsavedTimelineChanges || nameChanged
}
2026-03-10 23:42:55 -05:00
internal fun setupScreenUsesScrollableContainer ( ) : Boolean = true
2026-03-10 22:50:50 -05:00
@Composable
2026-03-24 19:01:02 -05:00
fun ActiveSessionScreen ( vm : MainViewModel , onFinish : ( ) -> Unit , onBackToEntry : ( ) -> Unit ) {
2026-03-10 22:50:50 -05:00
val ui by vm . ui . collectAsStateWithLifecycle ( )
2026-03-10 23:34:07 -05:00
if ( ui . runtimeState == RuntimeState . COMPLETED ) onFinish ( )
BackHandler {
2026-04-09 20:40:46 -05:00
onBackToEntry ( )
2026-03-10 23:34:07 -05:00
}
2026-03-10 22:50:50 -05:00
2026-03-22 01:01:14 -05:00
val isVisualMode = true
2026-03-10 23:24:49 -05:00
val context = LocalContext . current
DisposableEffect ( isVisualMode ) {
val activity = context as ? Activity
val previous = activity ?. requestedOrientation
if ( isVisualMode ) {
activity ?. requestedOrientation = ActivityInfo . SCREEN _ORIENTATION _SENSOR _LANDSCAPE
}
onDispose {
if ( isVisualMode ) {
activity ?. requestedOrientation = previous ?: ActivityInfo . SCREEN _ORIENTATION _UNSPECIFIED
}
}
}
2026-03-10 23:51:55 -05:00
val immersiveFullscreen = shouldUseImmersiveFullscreen ( isVisualMode , ui . runtimeState )
var revealSystemBarsSignal by remember { mutableIntStateOf ( 0 ) }
ApplyImmersiveMode (
enabled = immersiveFullscreen ,
revealSignal = revealSystemBarsSignal ,
)
2026-03-10 23:34:07 -05:00
var showOverlay by remember ( ui . runtimeState ) { mutableStateOf ( shouldShowActiveControlsByDefault ( ui . runtimeState ) ) }
LaunchedEffect ( ui . runtimeState ) {
showOverlay = shouldShowActiveControlsByDefault ( ui . runtimeState )
}
2026-03-24 17:01:02 -05:00
var brightnessOverlayVisible by remember { mutableStateOf ( false ) }
var brightnessOverlayToken by remember { mutableIntStateOf ( 0 ) }
LaunchedEffect ( brightnessOverlayToken ) {
if ( ! brightnessOverlayVisible ) return @LaunchedEffect
delay ( 2500 )
brightnessOverlayVisible = false
}
2026-03-24 19:01:02 -05:00
ApplyKeepScreenOn ( enabled = true )
2026-03-24 17:01:02 -05:00
ApplyScreenBrightnessOverride (
enabled = true ,
brightnessPercent = ui . settings . immersiveBrightnessPercent ,
)
2026-03-10 23:24:49 -05:00
val flashFrame by rememberSplitFlashFrame (
2026-03-10 23:14:33 -05:00
isRunning = ui . runtimeState == RuntimeState . RUNNING ,
2026-03-19 20:01:01 -05:00
flashOnMs = ui . runtimeParams . flashOnMs ,
flashOffMs = ui . runtimeParams . flashOffMs ,
2026-03-10 23:14:33 -05:00
)
2026-03-21 23:01:02 -05:00
val progress = sessionProgressFraction (
durationSec = ui . timeline . durationSec ,
remainingSec = ui . remainingSec ,
)
2026-03-10 22:50:50 -05:00
Box (
2026-03-10 23:14:33 -05:00
modifier = Modifier
. fillMaxSize ( )
. background ( Color . Black )
2026-03-24 18:01:01 -05:00
. then ( if ( immersiveFullscreen ) Modifier else Modifier . safeDrawingPadding ( ) )
2026-03-24 17:01:02 -05:00
. pointerInput ( immersiveFullscreen ) {
detectTapGestures {
brightnessOverlayVisible = true
brightnessOverlayToken ++
if ( ! immersiveFullscreen ) {
showOverlay = ! showOverlay
}
2026-03-10 23:51:55 -05:00
}
}
2026-03-10 22:50:50 -05:00
) {
2026-03-10 23:24:49 -05:00
if ( isVisualMode ) {
Row ( Modifier . fillMaxSize ( ) ) {
Box (
modifier = Modifier
. weight ( 1f )
. fillMaxHeight ( )
. background ( flashFrame . left . toComposeColor ( ) )
)
Box (
modifier = Modifier
. weight ( 1f )
. fillMaxHeight ( )
. background ( flashFrame . right . toComposeColor ( ) )
)
}
}
2026-03-10 22:50:50 -05:00
if ( ui . runtimeState == RuntimeState . COUNTDOWN ) {
Text (
" ${ui.countdownSec} " ,
modifier = Modifier . align ( Alignment . Center ) ,
style = MaterialTheme . typography . displayLarge ,
2026-03-10 23:14:33 -05:00
color = Color . White
2026-03-10 22:50:50 -05:00
)
}
2026-03-21 23:01:02 -05:00
if ( immersiveFullscreen && ui . settings . showImmersiveProgressBar ) {
LinearProgressIndicator (
progress = { progress } ,
modifier = Modifier
. align ( Alignment . BottomCenter )
. fillMaxWidth ( )
. height ( 5. dp ) ,
trackColor = Color . White . copy ( alpha = 0.2f ) ,
color = Color . White ,
)
}
2026-03-24 17:01:02 -05:00
if ( brightnessOverlayVisible ) {
Column (
Modifier
. align ( Alignment . TopCenter )
. padding ( top = 24. dp )
. fillMaxWidth ( 0.45f )
. background ( Color . Black . copy ( alpha = 0.72f ) )
. padding ( horizontal = 12. dp , vertical = 10. dp )
) {
Text (
text = " Brightness ${ui.settings.immersiveBrightnessPercent} % " ,
color = Color . White ,
style = MaterialTheme . typography . bodyMedium ,
)
Slider (
value = ui . settings . immersiveBrightnessPercent . toFloat ( ) ,
onValueChange = {
vm . updateImmersiveBrightnessPercent ( it . roundToInt ( ) )
brightnessOverlayVisible = true
brightnessOverlayToken ++
} ,
valueRange = 5f .. 100f ,
)
}
}
2026-03-10 22:50:50 -05:00
if ( showOverlay ) {
2026-03-10 23:14:33 -05:00
Column (
Modifier
. align ( Alignment . BottomCenter )
. fillMaxWidth ( )
2026-03-10 23:24:49 -05:00
. background ( Color . Black . copy ( alpha = 0.72f ) )
2026-03-10 23:14:33 -05:00
. padding ( 16. dp )
) {
2026-03-10 22:50:50 -05:00
Text ( " ${ui.selectedPreset.name} • ${ui.remainingSec} s " , color = Color . White )
if ( ui . runtimeState == RuntimeState . RUNNING ) {
Button ( onClick = { vm . pause ( ) } , modifier = Modifier . fillMaxWidth ( ) ) { Text ( " Pause " ) }
} else {
Button ( onClick = { vm . resume ( ) } , modifier = Modifier . fillMaxWidth ( ) ) { Text ( " Resume " ) }
}
2026-04-04 08:01:01 -05:00
OutlinedButton (
onClick = {
2026-04-09 20:40:46 -05:00
vm . stop ( )
onFinish ( )
2026-04-04 08:01:01 -05:00
} ,
modifier = Modifier . fillMaxWidth ( )
) { Text ( " Stop " ) }
2026-03-10 22:50:50 -05:00
if ( ui . interruptionReason != null ) {
Text ( ui . interruptionReason !! , color = Color . White )
if ( ui . runtimeState == RuntimeState . INTERRUPTED ) {
OutlinedButton ( onClick = { vm . switchToVisualOnlyAndResume ( ) } , modifier = Modifier . fillMaxWidth ( ) ) {
Text ( " Resume Visual-only " )
}
}
}
}
}
}
}
2026-03-24 19:01:02 -05:00
@Composable
private fun ApplyKeepScreenOn ( enabled : Boolean ) {
val activity = LocalContext . current as ? Activity ?: return
val window = activity . window
DisposableEffect ( window , enabled ) {
if ( enabled ) {
window . addFlags ( WindowManager . LayoutParams . FLAG _KEEP _SCREEN _ON )
} else {
window . clearFlags ( WindowManager . LayoutParams . FLAG _KEEP _SCREEN _ON )
}
onDispose {
window . clearFlags ( WindowManager . LayoutParams . FLAG _KEEP _SCREEN _ON )
}
}
}
2026-03-24 17:01:02 -05:00
@Composable
private fun ApplyScreenBrightnessOverride ( enabled : Boolean , brightnessPercent : Int ) {
val activity = LocalContext . current as ? Activity ?: return
val window = activity . window
DisposableEffect ( window ) {
onDispose {
val reset = window . attributes
reset . screenBrightness = - 1f
window . attributes = reset
}
}
LaunchedEffect ( enabled , brightnessPercent ) {
val params = window . attributes
params . screenBrightness = if ( enabled ) {
( brightnessPercent . coerceIn ( 5 , 100 ) / 100f )
} else {
- 1f
}
window . attributes = params
}
}
2026-03-10 23:51:55 -05:00
@Composable
private fun ApplyImmersiveMode ( enabled : Boolean , revealSignal : Int ) {
val context = LocalContext . current
val activity = context as ? Activity ?: return
val window = activity . window
val controller = remember ( window ) { WindowInsetsControllerCompat ( window , window . decorView ) }
DisposableEffect ( window ) {
onDispose {
controller . show ( WindowInsetsCompat . Type . systemBars ( ) )
WindowCompat . setDecorFitsSystemWindows ( window , true )
}
}
LaunchedEffect ( enabled ) {
if ( enabled ) {
WindowCompat . setDecorFitsSystemWindows ( window , false )
controller . systemBarsBehavior = WindowInsetsControllerCompat . BEHAVIOR _SHOW _TRANSIENT _BARS _BY _SWIPE
controller . hide ( WindowInsetsCompat . Type . systemBars ( ) )
} else {
controller . show ( WindowInsetsCompat . Type . systemBars ( ) )
WindowCompat . setDecorFitsSystemWindows ( window , true )
}
}
LaunchedEffect ( revealSignal , enabled ) {
if ( ! enabled || revealSignal == 0 ) return @LaunchedEffect
controller . show ( WindowInsetsCompat . Type . systemBars ( ) )
delay ( 2500 )
if ( enabled ) {
controller . hide ( WindowInsetsCompat . Type . systemBars ( ) )
}
}
}
2026-03-10 23:24:49 -05:00
private fun FlashColor . toComposeColor ( ) : Color = when ( this ) {
FlashColor . RED -> Color . Red
FlashColor . GREEN -> Color . Green
FlashColor . BLACK -> Color . Black
}
2026-03-10 23:14:33 -05:00
@Composable
2026-03-10 23:24:49 -05:00
private fun rememberSplitFlashFrame (
2026-03-10 23:14:33 -05:00
isRunning : Boolean ,
2026-03-19 20:01:01 -05:00
flashOnMs : Int ,
flashOffMs : Int ,
2026-03-22 00:01:01 -05:00
) : androidx . compose . runtime . State < SplitFlashFrame > {
val latestFlashOnMs = rememberUpdatedState ( flashOnMs )
val latestFlashOffMs = rememberUpdatedState ( flashOffMs )
2026-03-22 01:01:14 -05:00
return produceState ( initialValue = SplitFlashFrame ( FlashColor . BLACK , FlashColor . BLACK ) , isRunning ) {
if ( !is Running ) {
2026-03-22 00:01:01 -05:00
value = SplitFlashFrame ( FlashColor . BLACK , FlashColor . BLACK )
return @produceState
}
val sequencer = SplitFlashSequencer (
startTimeNanos = System . nanoTime ( ) ,
flashOnMs = latestFlashOnMs . value ,
flashOffMs = latestFlashOffMs . value ,
)
while ( true ) {
withFrameNanos { frameTimeNanos ->
sequencer . updateIntervals ( latestFlashOnMs . value , latestFlashOffMs . value )
value = sequencer . frameAt ( frameTimeNanos )
}
2026-03-10 23:14:33 -05:00
}
}
}
2026-03-10 22:50:50 -05:00
@Composable
2026-03-22 01:01:14 -05:00
fun SettingsScreen ( vm : MainViewModel ) {
2026-03-10 22:50:50 -05:00
val ui by vm . ui . collectAsStateWithLifecycle ( )
2026-03-24 18:01:01 -05:00
val scrollState = rememberScrollState ( )
2026-03-10 23:14:33 -05:00
Column (
2026-03-24 18:01:01 -05:00
Modifier
. fillMaxSize ( )
. background ( MaterialTheme . colorScheme . background )
. safeDrawingPadding ( )
. verticalScroll ( scrollState )
. padding ( 16. dp ) ,
2026-03-10 23:14:33 -05:00
verticalArrangement = Arrangement . spacedBy ( 12. dp )
) {
Text ( " Settings " , style = MaterialTheme . typography . headlineSmall , color = MaterialTheme . colorScheme . onBackground )
2026-03-21 23:01:02 -05:00
Text ( " Countdown: ${ui.settings.countdownSeconds} s " , color = MaterialTheme . colorScheme . onBackground )
Slider (
value = ui . settings . countdownSeconds . toFloat ( ) ,
onValueChange = { vm . updateCountdownSeconds ( it . roundToInt ( ) ) } ,
valueRange = 0f .. 10f ,
steps = 9 ,
)
2026-03-10 22:50:50 -05:00
Row ( verticalAlignment = Alignment . CenterVertically ) {
2026-03-22 01:01:14 -05:00
Checkbox (
checked = ui . settings . forceAudioWithoutHeadphones ,
onCheckedChange = vm :: updateForceAudioWithoutHeadphones ,
)
Text ( " force audio without headphones " , color = MaterialTheme . colorScheme . onBackground )
2026-03-10 22:50:50 -05:00
}
2026-03-21 23:01:02 -05:00
Row ( verticalAlignment = Alignment . CenterVertically ) {
Checkbox ( checked = ui . settings . showImmersiveProgressBar , onCheckedChange = vm :: updateShowImmersiveProgressBar )
Text ( " Show immersive bottom progress bar " , color = MaterialTheme . colorScheme . onBackground )
}
2026-03-10 22:50:50 -05:00
HorizontalDivider ( )
2026-04-09 20:51:39 -05:00
Text (
2026-04-09 21:02:35 -05:00
" About/Disclaimer: MindMachine is a prototype and not a medical device. Use at your own risk. For immersive visual sessions, keep your eyes closed. " ,
2026-04-09 20:51:39 -05:00
color = MaterialTheme . colorScheme . onBackground
)
2026-03-10 22:50:50 -05:00
}
}
@Composable
2026-04-09 20:51:39 -05:00
fun PositioningScreen ( ) {
2026-03-10 23:14:33 -05:00
Column (
2026-03-24 18:01:01 -05:00
Modifier
. fillMaxSize ( )
. background ( MaterialTheme . colorScheme . background )
. safeDrawingPadding ( )
. padding ( 16. dp ) ,
2026-03-10 23:14:33 -05:00
verticalArrangement = Arrangement . spacedBy ( 8. dp )
) {
2026-04-09 20:51:39 -05:00
Text ( " Positioning Guidance " , style = MaterialTheme . typography . headlineSmall , color = MaterialTheme . colorScheme . onBackground )
2026-04-09 21:01:02 -05:00
2026-04-09 20:51:39 -05:00
Text ( " • Lie on your back in a safe, comfortable place. " , color = MaterialTheme . colorScheme . onBackground )
Text ( " • Rest the phone across the upper nose/forehead area so it stays stable. " , color = MaterialTheme . colorScheme . onBackground )
Text ( " • Keep your eyes closed during immersive visual sessions. " , color = MaterialTheme . colorScheme . onBackground )
2026-04-09 21:01:02 -05:00
Text ( " • Do not rest the phone on your eyes or put pressure on your face. " , color = MaterialTheme . colorScheme . onBackground )
2026-04-09 20:51:39 -05:00
Text ( " • Ensure comfortable breathing/airflow and stop if you feel discomfort. " , color = MaterialTheme . colorScheme . onBackground )
2026-04-09 21:01:02 -05:00
Spacer ( Modifier . height ( 12. dp ) )
Text ( " Disclaimer " , style = MaterialTheme . typography . titleMedium , color = MaterialTheme . colorScheme . onBackground )
Text (
" MindMachine is provided \" as is \" for informational and experimental purposes only, without warranties of any kind. You assume all risks of use. MindMachine is not a medical device and does not provide medical advice. To the maximum extent permitted by law, the developers and distributors disclaim all liability for any claims, damages, losses, or injuries arising from or related to use of the app. " ,
color = MaterialTheme . colorScheme . onBackground
)
2026-03-10 22:50:50 -05:00
}
}