├── gradle.properties ├── artwork ├── screenshot.png └── Kerminal.svg ├── src └── main │ ├── resources │ ├── app.properties │ └── icon.svg │ └── kotlin │ ├── command │ ├── Clear.kt │ ├── Exit.kt │ ├── CommandUtil.kt │ └── Command.kt │ ├── compose │ ├── WindowContent.kt │ ├── Theme.kt │ ├── HandleKeyEvents.kt │ ├── WindowBar.kt │ ├── Window.kt │ └── Console.kt │ ├── model │ └── Config.kt │ ├── screen │ ├── InitialErrorScreen.kt │ └── MainScreen.kt │ ├── CommandProcessor.kt │ ├── Main.kt │ ├── StyleGenerator.kt │ ├── EventHandler.kt │ ├── Settings.kt │ ├── ConsoleHandler.kt │ └── ConsoleState.kt ├── .idea ├── vcs.xml ├── compiler.xml ├── kotlinScripting.xml ├── markdown.xml ├── misc.xml ├── git_toolbox_prj.xml ├── gradle.xml ├── jarRepositories.xml └── inspectionProfiles │ └── Project_Default.xml ├── settings.gradle.kts ├── gradle └── wrapper │ └── gradle-wrapper.properties ├── README.md ├── defaults └── config.toml ├── gradlew.bat ├── .gitignore ├── gradlew └── LICENSE /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official 2 | -------------------------------------------------------------------------------- /artwork/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YektaDev/Kerminal/HEAD/artwork/screenshot.png -------------------------------------------------------------------------------- /src/main/resources/app.properties: -------------------------------------------------------------------------------- 1 | name=Konsole 2 | group=%APP_GROUP% 3 | version=%APP_VERSION% 4 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | pluginManagement { 2 | repositories { 3 | gradlePluginPortal() 4 | maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") 5 | } 6 | } 7 | 8 | rootProject.name = "Kerminal" 9 | -------------------------------------------------------------------------------- /.idea/kotlinScripting.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /src/main/kotlin/command/Clear.kt: -------------------------------------------------------------------------------- 1 | package command 2 | 3 | class Clear : Command( 4 | command = "clear", 5 | help = "Clear the screen" 6 | ) { 7 | override fun run() { 8 | State.console.clear() 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /src/main/kotlin/command/Exit.kt: -------------------------------------------------------------------------------- 1 | package command 2 | 3 | import appScope 4 | import compose.exit 5 | 6 | class Exit : Command( 7 | command = "exit", 8 | help = "Exit!" 9 | ) { 10 | override fun run() = appScope.exit() 11 | } 12 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | distributionBase=GRADLE_USER_HOME 2 | distributionPath=wrapper/dists 3 | distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | -------------------------------------------------------------------------------- /.idea/markdown.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /src/main/kotlin/compose/WindowContent.kt: -------------------------------------------------------------------------------- 1 | package compose 2 | 3 | import Theme 4 | import androidx.compose.runtime.Composable 5 | 6 | @Composable 7 | fun WindowContent(themeConfig: Theme?, content: @Composable () -> Unit) = if (themeConfig != null) { 8 | KerminalTheme(themeConfig) { content() } 9 | } else { 10 | content() 11 | } 12 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Kerminal Icon

2 |

Kerminal

3 |

A customizable terminal emulator implemented in Compose for Desktop.
Not surprisingly, it fully supports Unicode.

4 |
5 |

screenshot

6 | -------------------------------------------------------------------------------- /defaults/config.toml: -------------------------------------------------------------------------------- 1 | [theme] 2 | isDark = true 3 | [theme.color] 4 | front = 0xffcccccc 5 | back = 0xff0c0c0c 6 | primary = 0xff2962ff 7 | secondary = 0xffd500f9 8 | success = 0xff00c853 9 | warning = 0xffffd600 10 | error = 0xffff1744 11 | [window] 12 | widthP = 85 13 | heightP = 85 14 | alwaysOnTop = true 15 | -------------------------------------------------------------------------------- /src/main/kotlin/command/CommandUtil.kt: -------------------------------------------------------------------------------- 1 | package command 2 | 3 | import kotlin.reflect.full.primaryConstructor 4 | 5 | fun String.toCommand(): Command? { 6 | for (kClass in Command::class.sealedSubclasses) { 7 | if (this == (kClass.primaryConstructor?.call() as Command).command) { 8 | return kClass.primaryConstructor?.call() 9 | } 10 | } 11 | return null 12 | } 13 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /src/main/kotlin/model/Config.kt: -------------------------------------------------------------------------------- 1 | data class Config( 2 | val theme: Theme, 3 | val window: Window, 4 | ) 5 | 6 | data class Theme( 7 | val isDark: Boolean, 8 | val color: Color, 9 | ) 10 | 11 | data class Window( 12 | val widthP: Int, 13 | val heightP: Int, 14 | val alwaysOnTop: Boolean, 15 | ) 16 | 17 | data class Color( 18 | val front: Long, 19 | val back: Long, 20 | val primary: Long, 21 | val secondary: Long, 22 | val success: Long, 23 | val warning: Long, 24 | val error: Long, 25 | ) 26 | -------------------------------------------------------------------------------- /artwork/Kerminal.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/git_toolbox_prj.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 14 | 15 | -------------------------------------------------------------------------------- /src/main/resources/icon.svg: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 17 | 18 | -------------------------------------------------------------------------------- /src/main/kotlin/screen/InitialErrorScreen.kt: -------------------------------------------------------------------------------- 1 | package screen 2 | 3 | import androidx.compose.foundation.background 4 | import androidx.compose.foundation.layout.Box 5 | import androidx.compose.foundation.layout.fillMaxSize 6 | import androidx.compose.material.MaterialTheme 7 | import androidx.compose.material.Text 8 | import androidx.compose.runtime.Composable 9 | import androidx.compose.ui.Alignment 10 | import androidx.compose.ui.Modifier 11 | import androidx.compose.ui.graphics.Color 12 | 13 | @Composable 14 | fun InitialErrorPage(error: String) = MaterialTheme { 15 | Box( 16 | modifier = Modifier.background(Color.Black).fillMaxSize(), 17 | contentAlignment = Alignment.Center, 18 | ) { 19 | Text( 20 | text = error, 21 | style = MaterialTheme.typography.h6, 22 | color = Color(41, 171, 226), 23 | ) 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /src/main/kotlin/CommandProcessor.kt: -------------------------------------------------------------------------------- 1 | import command.toCommand 2 | 3 | object CommandProcessor { 4 | fun run(rawInput: String) { 5 | EventHandler.beforeCommand(rawInput) 6 | 7 | val parsedCommand = rawInput.cleanCommand() 8 | when (parsedCommand.size) { 9 | 0 -> { // Ignored 10 | } 11 | 1 -> runCommand(parsedCommand[0]) 12 | else -> runCommand(parsedCommand[0], parsedCommand.copyOfRange(1, parsedCommand.size)) 13 | } 14 | 15 | EventHandler.afterCommand(rawInput) 16 | } 17 | 18 | private fun String.cleanCommand(): Array = this.trim() 19 | .split(' ') 20 | .filter { it.isNotEmpty() } 21 | .toTypedArray().apply { 22 | if (isNotEmpty()) this[0] = this[0].lowercase() 23 | } 24 | 25 | private fun runCommand(command: String, args: Array = arrayOf()) { 26 | command.toCommand()?.run(args) 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /src/main/kotlin/Main.kt: -------------------------------------------------------------------------------- 1 | import com.sksamuel.hoplite.ConfigLoader 2 | import com.sksamuel.hoplite.toml.TomlPropertySource 3 | import compose.launchAppWindow 4 | import screen.InitialErrorPage 5 | import screen.MainPage 6 | import java.io.File 7 | 8 | object Main { 9 | @JvmStatic 10 | fun main(args: Array) { 11 | var error: String? = null 12 | val config = try { 13 | ConfigLoader.Builder() 14 | .addSource(TomlPropertySource(File(Resource.configPath).readText())) 15 | .build() 16 | .loadConfigOrThrow() 17 | } catch (e: Exception) { 18 | error = e.message 19 | null 20 | } 21 | 22 | if (config != null) { 23 | appConfig = config 24 | 25 | launchAppWindow { 26 | MainPage() 27 | } 28 | } else { 29 | launchAppWindow { 30 | InitialErrorPage(error = error ?: "Error: Could not find the file: ${Resource.configPath}") 31 | } 32 | } 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /src/main/kotlin/StyleGenerator.kt: -------------------------------------------------------------------------------- 1 | import androidx.compose.ui.graphics.Color 2 | import androidx.compose.ui.graphics.Color.Companion.Green 3 | import androidx.compose.ui.text.SpanStyle 4 | 5 | class StyleGenerator { 6 | // Only to detect strings quoted with " 7 | private var isInsideString = false 8 | private var shouldChangeColor = false 9 | 10 | // For user-defined color 11 | private var lastColor: Color? = null 12 | 13 | fun generateFor(text: String, index: Int): SpanStyle? { 14 | if (shouldChangeColor) { 15 | isInsideString = false 16 | shouldChangeColor = false 17 | } 18 | 19 | if (text[index] == '\"' && (index == 0 || text[index - 1] != '\\')) { 20 | if (!isInsideString) isInsideString = true 21 | else shouldChangeColor = true 22 | } 23 | 24 | if (isInsideString) return SpanStyle(color = Green) 25 | State.console.colorChangeIndexList[index]?.let { lastColor = Color(it) } 26 | 27 | return if (lastColor != null) 28 | SpanStyle(color = lastColor!!) 29 | else 30 | null 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/main/kotlin/EventHandler.kt: -------------------------------------------------------------------------------- 1 | object EventHandler { 2 | fun onStart() { 3 | val name = """ 4 | |██╗░░██╗███████╗██████╗░███╗░░░███╗██╗███╗░░██╗░█████╗░██╗░░░░░ 5 | |██║░██╔╝██╔════╝██╔══██╗████╗░████║██║████╗░██║██╔══██╗██║░░░░░ 6 | |█████═╝░█████╗░░██████╔╝██╔████╔██║██║██╔██╗██║███████║██║░░░░░ 7 | |██╔═██╗░██╔══╝░░██╔══██╗██║╚██╔╝██║██║██║╚████║██╔══██║██║░░░░░ 8 | |██║░╚██╗███████╗██║░░██║██║░╚═╝░██║██║██║░╚███║██║░░██║███████╗ 9 | |╚═╝░░╚═╝╚══════╝╚═╝░░╚═╝╚═╝░░░░░╚═╝╚═╝╚═╝░░╚══╝╚═╝░░╚═╝╚══════╝ 10 | """.trimMargin() 11 | val separator = buildString { repeat(63) { append("*") } } 12 | 13 | with(State.console) { 14 | printLine(separator, appConfig.theme.color.primary) 15 | printLine(name, appConfig.theme.color.secondary) 16 | printLine(separator, appConfig.theme.color.primary) 17 | printLine("> Hi There!") 18 | } 19 | } 20 | 21 | fun beforeCommand(command: String) { 22 | 23 | } 24 | 25 | fun afterCommand(command: String) { 26 | 27 | } 28 | 29 | fun onEnd() { 30 | 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /src/main/kotlin/compose/Theme.kt: -------------------------------------------------------------------------------- 1 | package compose 2 | 3 | import Theme 4 | import androidx.compose.material.Colors 5 | import androidx.compose.material.MaterialTheme 6 | import androidx.compose.runtime.Composable 7 | import androidx.compose.ui.graphics.Color 8 | 9 | @Composable 10 | fun KerminalTheme(themeConfig: Theme, content: @Composable () -> Unit) { 11 | MaterialTheme( 12 | colors = Colors( 13 | isLight = !themeConfig.isDark, 14 | 15 | primary = Color(themeConfig.color.primary), 16 | primaryVariant = Color(themeConfig.color.primary), 17 | secondary = Color(themeConfig.color.secondary), 18 | secondaryVariant = Color(themeConfig.color.secondary), 19 | 20 | onSurface = Color(themeConfig.color.front), 21 | onBackground = Color(themeConfig.color.front), 22 | onPrimary = Color(themeConfig.color.front), 23 | onSecondary = Color(themeConfig.color.front), 24 | onError = Color(themeConfig.color.front), 25 | 26 | background = Color(themeConfig.color.back), 27 | surface = Color(themeConfig.color.back), 28 | 29 | error = Color(themeConfig.color.error), 30 | ) 31 | ) { 32 | content() 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /.idea/jarRepositories.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 9 | 10 | 14 | 15 | 19 | 20 | 24 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /src/main/kotlin/Settings.kt: -------------------------------------------------------------------------------- 1 | import androidx.compose.ui.graphics.Color 2 | import androidx.compose.ui.window.ApplicationScope 3 | import java.net.URL 4 | import java.util.* 5 | 6 | lateinit var appScope: ApplicationScope 7 | lateinit var appConfig: Config 8 | 9 | object State { 10 | val console = ConsoleState() 11 | } 12 | 13 | object App { 14 | val name: String by lazy { 15 | Resource.properties?.getProperty("name") ?: "[UNRESOLVED_NAME]" 16 | } 17 | val version: String by lazy { 18 | Resource.properties?.getProperty("version") ?: "[UNRESOLVED_VERSION]" 19 | } 20 | val group: String by lazy { 21 | Resource.properties?.getProperty("group") ?: "[UNRESOLVED_GROUP]" 22 | } 23 | } 24 | 25 | object Resource { 26 | const val configPath = "config.toml" 27 | private const val iconPath = "icon.svg" 28 | private const val propertiesPath = "app.properties" 29 | 30 | val transparentBackColor = try { 31 | if (appConfig.theme.isDark) Color(255, 255, 255, 30) 32 | else Color(0, 0, 0, 30) 33 | } catch (_: UninitializedPropertyAccessException) { 34 | Color(0, 0, 0, 0) 35 | } 36 | 37 | val properties: Properties? by lazy { 38 | val stream = Thread.currentThread().contextClassLoader.getResourceAsStream(propertiesPath) 39 | val props = Properties() 40 | props.load(stream) 41 | props 42 | } 43 | val icon: URL? by lazy { 44 | get(iconPath) 45 | } 46 | 47 | fun get(path: String): URL? = Resource::class.java.getResource(path) ?: null 48 | } 49 | -------------------------------------------------------------------------------- /src/main/kotlin/compose/HandleKeyEvents.kt: -------------------------------------------------------------------------------- 1 | package compose 2 | 3 | import State 4 | import androidx.compose.runtime.Composable 5 | import androidx.compose.ui.Modifier 6 | import androidx.compose.ui.input.key.Key 7 | import androidx.compose.ui.input.key.isShiftPressed 8 | import androidx.compose.ui.input.key.key 9 | import androidx.compose.ui.input.key.onKeyEvent 10 | import androidx.compose.ui.text.TextRange 11 | 12 | @Composable 13 | fun Modifier.HandleKeyEvents() = onKeyEvent { event -> 14 | var handled = false 15 | 16 | with(State.console) { 17 | textFieldValue.selection.let { selection -> 18 | when (event.key) { 19 | Key.DirectionRight -> { 20 | val range = if (event.isShiftPressed) TextRange(selection.start, selection.end + 1) 21 | else TextRange(selection.end + 1) 22 | setTextRange(range) 23 | } 24 | 25 | Key.DirectionLeft -> { 26 | val range = if (event.isShiftPressed) TextRange(selection.start, selection.end - 1) 27 | else TextRange(selection.end - 1) 28 | setTextRange(range) 29 | } 30 | 31 | Key.ShiftLeft -> { 32 | } 33 | Key.ShiftRight -> { 34 | } 35 | 36 | else -> { 37 | setTextRange(TextRange(textFieldValue.text.length)) 38 | handled = false 39 | } 40 | } 41 | } 42 | } 43 | 44 | handled 45 | } 46 | 47 | -------------------------------------------------------------------------------- /src/main/kotlin/command/Command.kt: -------------------------------------------------------------------------------- 1 | package command 2 | 3 | import State 4 | import com.github.ajalt.clikt.core.Abort 5 | import com.github.ajalt.clikt.core.CliktCommand 6 | import com.github.ajalt.clikt.core.CliktError 7 | import com.github.ajalt.clikt.core.PrintCompletionMessage 8 | import com.github.ajalt.clikt.core.PrintHelpMessage 9 | import com.github.ajalt.clikt.core.PrintMessage 10 | import com.github.ajalt.clikt.core.ProgramResult 11 | import com.github.ajalt.clikt.core.UsageError 12 | 13 | sealed class Command( 14 | val command: String, 15 | val help: String 16 | ) : CliktCommand(name = command, help = help) { 17 | fun run(args: Array): Unit = with(State.console) { 18 | try { 19 | parse(args) 20 | } catch (e: Exception) { 21 | printError(e.message) 22 | } catch (_: ProgramResult) { 23 | } catch (e: PrintHelpMessage) { 24 | if (e.error) printError(e.command.getFormattedHelp()) 25 | else printWarning(e.command.getFormattedHelp()) 26 | } catch (e: PrintCompletionMessage) { 27 | printInfo(e.message) 28 | } catch (e: PrintMessage) { 29 | if (e.error) printError(e.message) 30 | else printInfo(e.message) 31 | } catch (e: UsageError) { 32 | printError(e.helpMessage()) 33 | } catch (e: CliktError) { 34 | printError(e.message) 35 | } catch (e: Abort) { 36 | if (e.error) printError(currentContext.localization.aborted()) 37 | else printInfo(currentContext.localization.aborted()) 38 | } 39 | } 40 | } 41 | -------------------------------------------------------------------------------- /src/main/kotlin/compose/WindowBar.kt: -------------------------------------------------------------------------------- 1 | package compose 2 | 3 | import androidx.compose.foundation.background 4 | import androidx.compose.foundation.layout.PaddingValues 5 | import androidx.compose.foundation.layout.Row 6 | import androidx.compose.foundation.layout.Spacer 7 | import androidx.compose.foundation.layout.fillMaxWidth 8 | import androidx.compose.foundation.layout.height 9 | import androidx.compose.foundation.layout.size 10 | import androidx.compose.foundation.layout.width 11 | import androidx.compose.foundation.shape.RoundedCornerShape 12 | import androidx.compose.foundation.window.WindowDraggableArea 13 | import androidx.compose.material.IconButton 14 | import androidx.compose.material.TopAppBar 15 | import androidx.compose.runtime.Composable 16 | import androidx.compose.ui.Modifier 17 | import androidx.compose.ui.graphics.Color 18 | import androidx.compose.ui.unit.dp 19 | import androidx.compose.ui.window.WindowScope 20 | import androidx.compose.ui.window.WindowState 21 | 22 | @Composable 23 | fun WindowScope.WindowBar(color: Color, windowState: WindowState, exitClick: () -> Unit) = this.WindowDraggableArea { 24 | TopAppBar( 25 | modifier = Modifier 26 | .height(32.dp) 27 | .fillMaxWidth(), 28 | contentPadding = PaddingValues(horizontal = 32.dp), 29 | backgroundColor = color, 30 | elevation = 0.dp, 31 | ) { 32 | Row { 33 | WindowBarButton(Color(0xffff1744), exitClick) 34 | Spacer(Modifier.width(8.dp)) 35 | WindowBarButton(Color(0xff00e676)) { windowState.switchMaximize() } 36 | Spacer(Modifier.width(8.dp)) 37 | WindowBarButton(Color(0xffffea00)) { windowState.minimize() } 38 | } 39 | } 40 | } 41 | 42 | @Composable 43 | fun WindowBarButton(color: Color, onClick: () -> Unit) = IconButton( 44 | onClick = onClick, 45 | modifier = Modifier 46 | .background( 47 | color = color, 48 | shape = RoundedCornerShape(100) 49 | ) 50 | .size(12.dp) 51 | ) {} 52 | -------------------------------------------------------------------------------- /src/main/kotlin/screen/MainScreen.kt: -------------------------------------------------------------------------------- 1 | package screen 2 | 3 | import Resource.transparentBackColor 4 | import State 5 | import androidx.compose.desktop.ui.tooling.preview.Preview 6 | import androidx.compose.foundation.ScrollbarStyle 7 | import androidx.compose.foundation.VerticalScrollbar 8 | import androidx.compose.foundation.background 9 | import androidx.compose.foundation.layout.Row 10 | import androidx.compose.foundation.layout.fillMaxHeight 11 | import androidx.compose.foundation.layout.padding 12 | import androidx.compose.foundation.rememberScrollState 13 | import androidx.compose.foundation.rememberScrollbarAdapter 14 | import androidx.compose.foundation.shape.RoundedCornerShape 15 | import androidx.compose.foundation.verticalScroll 16 | import androidx.compose.runtime.Composable 17 | import androidx.compose.runtime.remember 18 | import androidx.compose.runtime.rememberCoroutineScope 19 | import androidx.compose.ui.Modifier 20 | import androidx.compose.ui.graphics.Color 21 | import androidx.compose.ui.unit.dp 22 | import appConfig 23 | import compose.Console 24 | import compose.KerminalTheme 25 | import kotlinx.coroutines.delay 26 | import kotlinx.coroutines.launch 27 | 28 | @Preview 29 | @Composable 30 | fun MainPage() = KerminalTheme(appConfig.theme) { 31 | val coroutineScope = rememberCoroutineScope() 32 | val consoleState = remember { State.console } 33 | val verticalScrollState = rememberScrollState(0) 34 | val backgroundColor = Color(appConfig.theme.color.back) 35 | 36 | Row(Modifier.background(backgroundColor)) { 37 | Console( 38 | modifier = Modifier 39 | .background(backgroundColor) 40 | .weight(1f) 41 | .fillMaxHeight() 42 | .verticalScroll(verticalScrollState), 43 | state = consoleState, 44 | coroutineScope = coroutineScope, 45 | afterValueChange = { 46 | coroutineScope.launch { 47 | delay(1) 48 | verticalScrollState.scrollTo(verticalScrollState.maxValue) 49 | } 50 | }, 51 | ) 52 | VerticalScrollbar( 53 | modifier = Modifier.padding(top = 32.dp).background(transparentBackColor).fillMaxHeight(), 54 | adapter = rememberScrollbarAdapter(verticalScrollState), 55 | style = ScrollbarStyle( 56 | minimalHeight = 300.dp, 57 | thickness = 8.dp, 58 | shape = RoundedCornerShape(percent = 50), 59 | hoverDurationMillis = 250, 60 | unhoverColor = backgroundColor, 61 | hoverColor = Color(appConfig.theme.color.secondary), 62 | ) 63 | ) 64 | } 65 | } 66 | -------------------------------------------------------------------------------- /src/main/kotlin/ConsoleHandler.kt: -------------------------------------------------------------------------------- 1 | import androidx.compose.ui.text.AnnotatedString 2 | import androidx.compose.ui.text.input.TextFieldValue 3 | import androidx.compose.ui.text.withStyle 4 | 5 | object ConsoleHandler { 6 | private lateinit var builder: AnnotatedString.Builder 7 | 8 | fun shouldNotChange(newText: String) = ::builder.isInitialized && ( 9 | State.console.prevText == newText || 10 | !identicalLinesExceptLastLineAreEqual(newText, State.console.prevText) || 11 | isAtTheBeginningOfLinesExceptOne(State.console.prevText, newText) 12 | ) 13 | 14 | fun processInput(textFieldValue: TextFieldValue): AnnotatedString { 15 | val text = textFieldValue.text.replace("\r", "") 16 | 17 | if (shouldNotChange(text)) { 18 | return builder.toAnnotatedString() 19 | } 20 | 21 | if (text.isNotEmpty() && text[text.lastIndex] == '\n') { 22 | val rawUserLine = State.console.prevText.substring(State.console.prevText.lastIndexOf('\n') + 1) 23 | CommandProcessor.run(rawUserLine) 24 | } 25 | 26 | State.console.setPrevText(text) 27 | 28 | return buildAnnotatedStringWithColors(text) 29 | } 30 | 31 | private fun buildAnnotatedStringWithColors(text: String): AnnotatedString { 32 | builder = AnnotatedString.Builder() 33 | builder.process(text) 34 | return builder.toAnnotatedString() 35 | } 36 | } 37 | 38 | private fun String.exceptLastLine(): String { 39 | val lastNewLine = lastIndexOf('\n') 40 | return if (lastNewLine == -1) this 41 | else this.substring(0, lastNewLine) 42 | } 43 | 44 | private fun identicalLinesExceptLastLineAreEqual(s1: String, s2: String): Boolean { 45 | val s1LineCount = s1.count { it == '\n' } + 1 46 | val s2LineCount = s2.count { it == '\n' } + 1 47 | 48 | return if (s1LineCount == 1 && s2LineCount == 1) true 49 | else if (s1LineCount == s2LineCount) s1.exceptLastLine() == s2.exceptLastLine() 50 | else { 51 | val smallestIdenticalIndex = if (s1LineCount < s2LineCount) 52 | s1.lastIndexOf('\n') 53 | else 54 | s2.lastIndexOf('\n') 55 | 56 | if (smallestIdenticalIndex == -1) return true 57 | 58 | s1.substring(0, smallestIdenticalIndex + 1) == s2.substring(0, smallestIdenticalIndex + 1) 59 | } 60 | } 61 | 62 | private fun isAtTheBeginningOfLinesExceptOne(prevText: String, newText: String) = 63 | if (prevText.isEmpty() || newText.isEmpty()) 64 | false 65 | else 66 | prevText[prevText.lastIndex] == '\n' && newText.length < prevText.length 67 | 68 | private fun AnnotatedString.Builder.process(fullText: String) { 69 | val generator = StyleGenerator() 70 | 71 | fullText.forEachIndexed { index, char -> 72 | val style = generator.generateFor(fullText, index) 73 | 74 | if (style == null) append(char) 75 | else withStyle(style = style) { append(char) } 76 | } 77 | } 78 | -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- 1 | @rem 2 | @rem Copyright 2015 the original author or authors. 3 | @rem 4 | @rem Licensed under the Apache License, Version 2.0 (the "License"); 5 | @rem you may not use this file except in compliance with the License. 6 | @rem You may obtain a copy of the License at 7 | @rem 8 | @rem https://www.apache.org/licenses/LICENSE-2.0 9 | @rem 10 | @rem Unless required by applicable law or agreed to in writing, software 11 | @rem distributed under the License is distributed on an "AS IS" BASIS, 12 | @rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | @rem See the License for the specific language governing permissions and 14 | @rem limitations under the License. 15 | @rem 16 | 17 | @if "%DEBUG%" == "" @echo off 18 | @rem ########################################################################## 19 | @rem 20 | @rem Gradle startup script for Windows 21 | @rem 22 | @rem ########################################################################## 23 | 24 | @rem Set local scope for the variables with windows NT shell 25 | if "%OS%"=="Windows_NT" setlocal 26 | 27 | set DIRNAME=%~dp0 28 | if "%DIRNAME%" == "" set DIRNAME=. 29 | set APP_BASE_NAME=%~n0 30 | set APP_HOME=%DIRNAME% 31 | 32 | @rem Resolve any "." and ".." in APP_HOME to make it shorter. 33 | for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi 34 | 35 | @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 36 | set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m" 37 | 38 | @rem Find java.exe 39 | if defined JAVA_HOME goto findJavaFromJavaHome 40 | 41 | set JAVA_EXE=java.exe 42 | %JAVA_EXE% -version >NUL 2>&1 43 | if "%ERRORLEVEL%" == "0" goto execute 44 | 45 | echo. 46 | echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 47 | echo. 48 | echo Please set the JAVA_HOME variable in your environment to match the 49 | echo location of your Java installation. 50 | 51 | goto fail 52 | 53 | :findJavaFromJavaHome 54 | set JAVA_HOME=%JAVA_HOME:"=% 55 | set JAVA_EXE=%JAVA_HOME%/bin/java.exe 56 | 57 | if exist "%JAVA_EXE%" goto execute 58 | 59 | echo. 60 | echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME% 61 | echo. 62 | echo Please set the JAVA_HOME variable in your environment to match the 63 | echo location of your Java installation. 64 | 65 | goto fail 66 | 67 | :execute 68 | @rem Setup the command line 69 | 70 | set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar 71 | 72 | 73 | @rem Execute Gradle 74 | "%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %* 75 | 76 | :end 77 | @rem End local scope for the variables with windows NT shell 78 | if "%ERRORLEVEL%"=="0" goto mainEnd 79 | 80 | :fail 81 | rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of 82 | rem the _cmd.exe /c_ return code! 83 | if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1 84 | exit /b 1 85 | 86 | :mainEnd 87 | if "%OS%"=="Windows_NT" endlocal 88 | 89 | :omega 90 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Release/ 2 | config.toml 3 | .gradle 4 | **/build/ 5 | !src/**/build/ 6 | gradle-app.setting 7 | !gradle-wrapper.jar 8 | .gradletasknamecache 9 | .DS_Store 10 | .AppleDouble 11 | .LSOverride 12 | Icon 13 | ._* 14 | .DocumentRevisions-V100 15 | .fseventsd 16 | .Spotlight-V100 17 | .TemporaryItems 18 | .Trashes 19 | .VolumeIcon.icns 20 | .com.apple.timemachine.donotpresent 21 | .AppleDB 22 | .AppleDesktop 23 | Network Trash Folder 24 | Temporary Items 25 | .apdisk 26 | *.class 27 | *.log 28 | *.ctxt 29 | .mtj.tmp/ 30 | *.jar 31 | *.war 32 | *.nar 33 | *.ear 34 | *.zip 35 | *.tar.gz 36 | *.rar 37 | hs_err_pid* 38 | *.apk 39 | *.aar 40 | *.ap_ 41 | *.aab 42 | *.dex 43 | bin/ 44 | gen/ 45 | out/ 46 | .gradle/ 47 | build/ 48 | local.properties 49 | proguard/ 50 | .navigation/ 51 | captures/ 52 | *.iml 53 | .idea/workspace.xml 54 | .idea/tasks.xml 55 | .idea/gradle.xml 56 | .idea/assetWizardSettings.xml 57 | .idea/dictionaries 58 | .idea/libraries 59 | .idea/caches 60 | .idea/modules.xml 61 | .idea/navEditor.xml 62 | .externalNativeBuild 63 | .cxx/ 64 | freeline.py 65 | freeline/ 66 | freeline_project_description.json 67 | fastlane/report.xml 68 | fastlane/Preview.html 69 | fastlane/screenshots 70 | fastlane/test_output 71 | fastlane/readme.md 72 | vcs.xml 73 | lint/intermediates/ 74 | lint/generated/ 75 | lint/outputs/ 76 | lint/tmp/ 77 | *.hprof 78 | *.d 79 | *.o 80 | *.ko 81 | *.obj 82 | *.elf 83 | *.ilk 84 | *.map 85 | *.exp 86 | *.gch 87 | *.pch 88 | *.lib 89 | *.a 90 | *.la 91 | *.lo 92 | *.dll 93 | *.so 94 | *.so.* 95 | *.dylib 96 | *.exe 97 | *.out 98 | *.app 99 | *.i*86 100 | *.x86_64 101 | *.hex 102 | *.dSYM/ 103 | *.su 104 | *.idb 105 | *.pdb 106 | *.mod* 107 | *.cmd 108 | .tmp_versions/ 109 | modules.order 110 | Module.symvers 111 | Mkfile.old 112 | dkms.conf 113 | **/nbproject/private/ 114 | **/nbproject/Makefile-*.mk 115 | **/nbproject/Package-*.bash 116 | nbbuild/ 117 | dist/ 118 | nbdist/ 119 | .nb-gradle/ 120 | CMakeLists.txt.user 121 | CMakeCache.txt 122 | CMakeFiles 123 | CMakeScripts 124 | Testing 125 | Makefile 126 | cmake_install.cmake 127 | install_manifest.txt 128 | compile_commands.json 129 | CTestTestfile.cmake 130 | _deps 131 | Thumbs.db 132 | Thumbs.db:encryptable 133 | ehthumbs.db 134 | ehthumbs_vista.db 135 | *.stackdump 136 | [Dd]esktop.ini 137 | $RECYCLE.BIN/ 138 | *.cab 139 | *.msi 140 | *.msix 141 | *.msm 142 | *.msp 143 | *.lnk 144 | *.slo 145 | *.mod 146 | *.smod 147 | *.lai 148 | _notes 149 | _compareTemp 150 | configs/ 151 | dwsync.xml 152 | dw_php_codehinting.config 153 | *.mno 154 | *~ 155 | .fuse_hidden* 156 | .directory 157 | .Trash-* 158 | .nfs* 159 | .idea/**/workspace.xml 160 | .idea/**/tasks.xml 161 | .idea/**/usage.statistics.xml 162 | .idea/**/dictionaries 163 | .idea/**/shelf 164 | .idea/**/contentModel.xml 165 | .idea/**/dataSources/ 166 | .idea/**/dataSources.ids 167 | .idea/**/dataSources.local.xml 168 | .idea/**/sqlDataSources.xml 169 | .idea/**/dynamic.xml 170 | .idea/**/uiDesigner.xml 171 | .idea/**/dbnavigator.xml 172 | .idea/**/gradle.xml 173 | .idea/**/libraries 174 | cmake-build-*/ 175 | .idea/**/mongoSettings.xml 176 | *.iws 177 | .idea_modules/ 178 | atlassian-ide-plugin.xml 179 | .idea/replstate.xml 180 | com_crashlytics_export_strings.xml 181 | crashlytics.properties 182 | crashlytics-build.properties 183 | fabric.properties 184 | .idea/httpRequests 185 | .idea/caches/build_file_checksums.ser 186 | .vscode/* 187 | !.vscode/settings.json 188 | !.vscode/tasks.json 189 | !.vscode/launch.json 190 | !.vscode/extensions.json 191 | *.code-workspace 192 | .history/ 193 | -------------------------------------------------------------------------------- /src/main/kotlin/ConsoleState.kt: -------------------------------------------------------------------------------- 1 | import androidx.compose.runtime.getValue 2 | import androidx.compose.runtime.mutableStateOf 3 | import androidx.compose.runtime.setValue 4 | import androidx.compose.ui.text.TextRange 5 | import androidx.compose.ui.text.input.TextFieldValue 6 | import kotlinx.coroutines.delay 7 | import kotlinx.coroutines.flow.flow 8 | 9 | class ConsoleState { 10 | private var printQueue = "" 11 | private val initialText = "" 12 | val colorChangeIndexList = hashMapOf() 13 | 14 | var textFieldValue by mutableStateOf(TextFieldValue(initialText, selection = TextRange(initialText.length))) 15 | private set 16 | var prevText by mutableStateOf(initialText) 17 | private set 18 | 19 | @JvmName("setConsoleTextFieldValue") 20 | fun setTextFieldValue(textFieldValue: TextFieldValue) { 21 | if (textFieldValue.text.count { it == '\n' } >= this.textFieldValue.text.count { it == '\n' }) { 22 | this.textFieldValue = textFieldValue 23 | } 24 | } 25 | 26 | fun setText(newText: String, jumpToEnd: Boolean) { 27 | if (newText.count { it == '\n' } >= this.textFieldValue.text.count { it == '\n' }) { 28 | this.textFieldValue = textFieldValue.copy( 29 | text = newText, 30 | selection = if (jumpToEnd) TextRange(newText.length) else this.textFieldValue.selection 31 | ) 32 | } 33 | } 34 | 35 | fun setTextRange(selection: TextRange) { 36 | this.textFieldValue.text.length.let { length -> 37 | if (selection.max <= length) 38 | textFieldValue = textFieldValue.copy(textFieldValue.text, selection) 39 | else if (selection.min <= length) 40 | textFieldValue = textFieldValue.copy(textFieldValue.text, TextRange(selection.min, length)) 41 | } 42 | } 43 | 44 | @JvmName("setConsolePrevText") 45 | fun setPrevText(text: String) { 46 | prevText = text 47 | } 48 | 49 | fun clear() { 50 | prevText = initialText 51 | this.textFieldValue = textFieldValue.copy( 52 | text = "$initialText ", 53 | selection = TextRange(initialText.length) 54 | ) 55 | // TODO: NOT IMPLEMENTED YET 56 | } 57 | 58 | fun print(text: String?, colorCode: Long? = null) { 59 | if (text == null) { 60 | return 61 | } 62 | if (colorCode != null) { 63 | val startIndex = textFieldValue.text.length + printQueue.length 64 | colorChangeIndexList[startIndex] = colorCode 65 | colorChangeIndexList[startIndex + text.length] = appConfig.theme.color.front 66 | } 67 | printQueue += text 68 | } 69 | 70 | fun printLine(line: String? = null, colorCode: Long? = null) = print((line ?: "") + '\n', colorCode) 71 | 72 | fun printError(error: String?) = if (error != null) { 73 | print("[Error] ", appConfig.theme.color.error) 74 | printLine(error) 75 | } else Unit 76 | 77 | fun printInfo(info: String?) = if (info != null) { 78 | print("[Info] ", appConfig.theme.color.secondary) 79 | printLine(info) 80 | } else Unit 81 | 82 | fun printWarning(warning: String?) = if (warning != null) { 83 | print("[Warning] ", appConfig.theme.color.warning) 84 | printLine(warning) 85 | } else Unit 86 | 87 | fun printSuccess(success: String?) = if (success != null) { 88 | print("[Success] ", appConfig.theme.color.success) 89 | printLine(success) 90 | } else Unit 91 | 92 | fun printMessageFlow() = flow { 93 | while (true) { 94 | if (printQueue.isNotEmpty()) { 95 | emit(printQueue) 96 | printQueue = "" 97 | } 98 | delay(50) 99 | } 100 | } 101 | } 102 | -------------------------------------------------------------------------------- /src/main/kotlin/compose/Window.kt: -------------------------------------------------------------------------------- 1 | package compose 2 | 3 | import App 4 | import EventHandler 5 | import Resource 6 | import Resource.transparentBackColor 7 | import androidx.compose.foundation.layout.Box 8 | import androidx.compose.foundation.layout.fillMaxSize 9 | import androidx.compose.runtime.Composable 10 | import androidx.compose.ui.Alignment 11 | import androidx.compose.ui.Modifier 12 | import androidx.compose.ui.graphics.Color 13 | import androidx.compose.ui.platform.LocalDensity 14 | import androidx.compose.ui.res.loadSvgPainter 15 | import androidx.compose.ui.unit.dp 16 | import androidx.compose.ui.window.ApplicationScope 17 | import androidx.compose.ui.window.Window 18 | import androidx.compose.ui.window.WindowPlacement 19 | import androidx.compose.ui.window.WindowPosition 20 | import androidx.compose.ui.window.WindowState 21 | import androidx.compose.ui.window.application 22 | import androidx.compose.ui.window.rememberWindowState 23 | import appConfig 24 | import appScope 25 | import java.awt.Toolkit 26 | import kotlin.math.roundToInt 27 | 28 | fun launchAppWindow(content: @Composable () -> Unit) { 29 | val config = try { 30 | appConfig 31 | } catch (_: UninitializedPropertyAccessException) { 32 | null 33 | } 34 | config?.let { EventHandler.onStart() } 35 | 36 | val barColor = if (config == null) { 37 | // A fallback color in the case the config isn't loaded (InitialError) 38 | Color(255, 255, 255, 30) 39 | } else { 40 | transparentBackColor 41 | } 42 | 43 | application { 44 | appScope = this 45 | val density = LocalDensity.current.fontScale 46 | val screenSize = Toolkit.getDefaultToolkit().screenSize 47 | val screenWidth = screenSize.width / density 48 | val screenHeight = screenSize.height / density 49 | val icon = if (Resource.icon != null) loadSvgPainter(Resource.icon!!.openStream(), LocalDensity.current) else null 50 | 51 | val defaultWindowSizeOfTotal = 0.8f to 0.8f 52 | val sizeOfTotal = config?.let { 53 | val width = config.window.widthP.toFloat() / 100f 54 | val height = config.window.heightP.toFloat() / 100f 55 | 56 | if (width in .3f..1f && height in .3f..1f) { 57 | width to height 58 | } else { 59 | defaultWindowSizeOfTotal 60 | } 61 | } ?: defaultWindowSizeOfTotal 62 | 63 | val windowPlacement = if (sizeOfTotal.first == 1f && sizeOfTotal.second == 1f) { 64 | WindowPlacement.Maximized 65 | } else { 66 | WindowPlacement.Floating 67 | } 68 | 69 | val state = rememberWindowState( 70 | placement = windowPlacement, 71 | position = WindowPosition(Alignment.Center), 72 | width = (screenWidth * sizeOfTotal.first).roundToInt().dp, 73 | height = (screenHeight * sizeOfTotal.second).roundToInt().dp, 74 | ) 75 | 76 | Window( 77 | title = App.name, 78 | icon = icon, 79 | undecorated = true, 80 | onCloseRequest = ::exit, 81 | state = state, 82 | alwaysOnTop = config?.window?.alwaysOnTop ?: false 83 | ) { 84 | Box(modifier = Modifier.fillMaxSize()) { 85 | WindowContent(config?.theme, content) 86 | WindowBar(barColor, state, ::exit) 87 | } 88 | } 89 | } 90 | } 91 | 92 | fun ApplicationScope.exit() { 93 | EventHandler.onEnd() 94 | exitApplication() 95 | } 96 | 97 | fun WindowState.minimize() { 98 | isMinimized = true 99 | } 100 | 101 | fun WindowState.switchMaximize() { 102 | placement = if (placement != WindowPlacement.Maximized && placement != WindowPlacement.Fullscreen) 103 | WindowPlacement.Maximized 104 | else 105 | WindowPlacement.Floating 106 | } 107 | -------------------------------------------------------------------------------- /src/main/kotlin/compose/Console.kt: -------------------------------------------------------------------------------- 1 | package compose 2 | 3 | import ConsoleHandler.processInput 4 | import ConsoleHandler.shouldNotChange 5 | import ConsoleState 6 | import State 7 | import androidx.compose.foundation.text.KeyboardOptions 8 | import androidx.compose.material.TextField 9 | import androidx.compose.material.TextFieldDefaults 10 | import androidx.compose.runtime.Composable 11 | import androidx.compose.runtime.remember 12 | import androidx.compose.runtime.rememberCoroutineScope 13 | import androidx.compose.ui.Modifier 14 | import androidx.compose.ui.graphics.Color 15 | import androidx.compose.ui.graphics.RectangleShape 16 | import androidx.compose.ui.text.TextRange 17 | import androidx.compose.ui.text.TextStyle 18 | import androidx.compose.ui.text.font.FontFamily 19 | import androidx.compose.ui.text.font.FontStyle 20 | import androidx.compose.ui.text.input.ImeAction 21 | import androidx.compose.ui.text.input.KeyboardCapitalization 22 | import androidx.compose.ui.text.input.KeyboardType 23 | import androidx.compose.ui.text.input.OffsetMapping 24 | import androidx.compose.ui.text.input.TextFieldValue 25 | import androidx.compose.ui.text.input.TransformedText 26 | import androidx.compose.ui.unit.em 27 | import androidx.compose.ui.unit.sp 28 | import appConfig 29 | import kotlinx.coroutines.CoroutineScope 30 | import kotlinx.coroutines.flow.collect 31 | import kotlinx.coroutines.launch 32 | 33 | @Composable 34 | fun Console( 35 | modifier: Modifier = Modifier, 36 | state: ConsoleState = remember { State.console }, 37 | coroutineScope: CoroutineScope = rememberCoroutineScope(), 38 | afterValueChange: () -> Unit = {}, 39 | ) { 40 | val colors = with(appConfig.theme.color) { 41 | val front = Color(front) 42 | val back = Color(back) 43 | val primary = Color(primary) 44 | val error = Color(error) 45 | 46 | TextFieldDefaults.textFieldColors( 47 | textColor = front, 48 | disabledTextColor = front, 49 | cursorColor = primary, 50 | backgroundColor = back, 51 | placeholderColor = back, 52 | focusedIndicatorColor = back, 53 | disabledIndicatorColor = back, 54 | disabledLabelColor = back, 55 | disabledLeadingIconColor = back, 56 | disabledPlaceholderColor = back, 57 | disabledTrailingIconColor = back, 58 | errorIndicatorColor = back, 59 | errorLabelColor = back, 60 | errorLeadingIconColor = back, 61 | errorTrailingIconColor = back, 62 | focusedLabelColor = back, 63 | leadingIconColor = back, 64 | trailingIconColor = back, 65 | unfocusedIndicatorColor = back, 66 | unfocusedLabelColor = back, 67 | errorCursorColor = error, 68 | ) 69 | } 70 | val style = TextStyle( 71 | color = Color(appConfig.theme.color.front), 72 | fontFamily = FontFamily.Monospace, 73 | fontStyle = FontStyle.Normal, 74 | fontSize = 18.sp, 75 | lineHeight = 2.5.em, 76 | ) 77 | 78 | TextField( 79 | modifier = modifier.HandleKeyEvents(), 80 | value = state.textFieldValue, 81 | singleLine = false, 82 | maxLines = Int.MAX_VALUE, 83 | colors = colors, 84 | textStyle = style, 85 | shape = RectangleShape, 86 | enabled = true, 87 | readOnly = false, 88 | label = null, 89 | placeholder = null, 90 | leadingIcon = null, 91 | trailingIcon = null, 92 | isError = false, 93 | visualTransformation = { 94 | TransformedText( 95 | processInput(state.textFieldValue), 96 | OffsetMapping.Identity 97 | ) 98 | }, 99 | onValueChange = { value: TextFieldValue -> 100 | if (!shouldNotChange(value.text)) { 101 | val result = processInput(value).toString() 102 | state.setTextFieldValue( 103 | TextFieldValue(result, TextRange(result.length)) 104 | ) 105 | afterValueChange() 106 | } 107 | }, 108 | keyboardOptions = KeyboardOptions( 109 | capitalization = KeyboardCapitalization.None, 110 | autoCorrect = true, 111 | keyboardType = KeyboardType.Text, 112 | imeAction = ImeAction.None, 113 | ), 114 | ) 115 | 116 | coroutineScope.launch { 117 | state.printMessageFlow().collect { 118 | state.setText(processInput(TextFieldValue(state.textFieldValue.text + it)).toString(), true) 119 | } 120 | } 121 | } 122 | -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | # 4 | # Copyright 2015 the original author or authors. 5 | # 6 | # Licensed under the Apache License, Version 2.0 (the "License"); 7 | # you may not use this file except in compliance with the License. 8 | # You may obtain a copy of the License at 9 | # 10 | # https://www.apache.org/licenses/LICENSE-2.0 11 | # 12 | # Unless required by applicable law or agreed to in writing, software 13 | # distributed under the License is distributed on an "AS IS" BASIS, 14 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 15 | # See the License for the specific language governing permissions and 16 | # limitations under the License. 17 | # 18 | 19 | ############################################################################## 20 | ## 21 | ## Gradle start up script for UN*X 22 | ## 23 | ############################################################################## 24 | 25 | # Attempt to set APP_HOME 26 | # Resolve links: $0 may be a link 27 | PRG="$0" 28 | # Need this for relative symlinks. 29 | while [ -h "$PRG" ] ; do 30 | ls=`ls -ld "$PRG"` 31 | link=`expr "$ls" : '.*-> \(.*\)$'` 32 | if expr "$link" : '/.*' > /dev/null; then 33 | PRG="$link" 34 | else 35 | PRG=`dirname "$PRG"`"/$link" 36 | fi 37 | done 38 | SAVED="`pwd`" 39 | cd "`dirname \"$PRG\"`/" >/dev/null 40 | APP_HOME="`pwd -P`" 41 | cd "$SAVED" >/dev/null 42 | 43 | APP_NAME="Gradle" 44 | APP_BASE_NAME=`basename "$0"` 45 | 46 | # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script. 47 | DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"' 48 | 49 | # Use the maximum available, or set MAX_FD != -1 to use that value. 50 | MAX_FD="maximum" 51 | 52 | warn () { 53 | echo "$*" 54 | } 55 | 56 | die () { 57 | echo 58 | echo "$*" 59 | echo 60 | exit 1 61 | } 62 | 63 | # OS specific support (must be 'true' or 'false'). 64 | cygwin=false 65 | msys=false 66 | darwin=false 67 | nonstop=false 68 | case "`uname`" in 69 | CYGWIN* ) 70 | cygwin=true 71 | ;; 72 | Darwin* ) 73 | darwin=true 74 | ;; 75 | MSYS* | MINGW* ) 76 | msys=true 77 | ;; 78 | NONSTOP* ) 79 | nonstop=true 80 | ;; 81 | esac 82 | 83 | CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar 84 | 85 | 86 | # Determine the Java command to use to start the JVM. 87 | if [ -n "$JAVA_HOME" ] ; then 88 | if [ -x "$JAVA_HOME/jre/sh/java" ] ; then 89 | # IBM's JDK on AIX uses strange locations for the executables 90 | JAVACMD="$JAVA_HOME/jre/sh/java" 91 | else 92 | JAVACMD="$JAVA_HOME/bin/java" 93 | fi 94 | if [ ! -x "$JAVACMD" ] ; then 95 | die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME 96 | 97 | Please set the JAVA_HOME variable in your environment to match the 98 | location of your Java installation." 99 | fi 100 | else 101 | JAVACMD="java" 102 | which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. 103 | 104 | Please set the JAVA_HOME variable in your environment to match the 105 | location of your Java installation." 106 | fi 107 | 108 | # Increase the maximum file descriptors if we can. 109 | if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then 110 | MAX_FD_LIMIT=`ulimit -H -n` 111 | if [ $? -eq 0 ] ; then 112 | if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then 113 | MAX_FD="$MAX_FD_LIMIT" 114 | fi 115 | ulimit -n $MAX_FD 116 | if [ $? -ne 0 ] ; then 117 | warn "Could not set maximum file descriptor limit: $MAX_FD" 118 | fi 119 | else 120 | warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT" 121 | fi 122 | fi 123 | 124 | # For Darwin, add options to specify how the application appears in the dock 125 | if $darwin; then 126 | GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\"" 127 | fi 128 | 129 | # For Cygwin or MSYS, switch paths to Windows format before running java 130 | if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then 131 | APP_HOME=`cygpath --path --mixed "$APP_HOME"` 132 | CLASSPATH=`cygpath --path --mixed "$CLASSPATH"` 133 | 134 | JAVACMD=`cygpath --unix "$JAVACMD"` 135 | 136 | # We build the pattern for arguments to be converted via cygpath 137 | ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null` 138 | SEP="" 139 | for dir in $ROOTDIRSRAW ; do 140 | ROOTDIRS="$ROOTDIRS$SEP$dir" 141 | SEP="|" 142 | done 143 | OURCYGPATTERN="(^($ROOTDIRS))" 144 | # Add a user-defined pattern to the cygpath arguments 145 | if [ "$GRADLE_CYGPATTERN" != "" ] ; then 146 | OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)" 147 | fi 148 | # Now convert the arguments - kludge to limit ourselves to /bin/sh 149 | i=0 150 | for arg in "$@" ; do 151 | CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -` 152 | CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option 153 | 154 | if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition 155 | eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"` 156 | else 157 | eval `echo args$i`="\"$arg\"" 158 | fi 159 | i=`expr $i + 1` 160 | done 161 | case $i in 162 | 0) set -- ;; 163 | 1) set -- "$args0" ;; 164 | 2) set -- "$args0" "$args1" ;; 165 | 3) set -- "$args0" "$args1" "$args2" ;; 166 | 4) set -- "$args0" "$args1" "$args2" "$args3" ;; 167 | 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;; 168 | 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;; 169 | 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;; 170 | 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;; 171 | 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;; 172 | esac 173 | fi 174 | 175 | # Escape application args 176 | save () { 177 | for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done 178 | echo " " 179 | } 180 | APP_ARGS=`save "$@"` 181 | 182 | # Collect all arguments for the java command, following the shell quoting and substitution rules 183 | eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS" 184 | 185 | exec "$JAVACMD" "$@" 186 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 54 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | Copyright 2021 Ali Khaleqi Yekta 179 | 180 | Licensed under the Apache License, Version 2.0 (the "License"); 181 | you may not use this file except in compliance with the License. 182 | You may obtain a copy of the License at 183 | 184 | http://www.apache.org/licenses/LICENSE-2.0 185 | 186 | Unless required by applicable law or agreed to in writing, software 187 | distributed under the License is distributed on an "AS IS" BASIS, 188 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 189 | See the License for the specific language governing permissions and 190 | limitations under the License. 191 | --------------------------------------------------------------------------------