Upgrade Kotlin to 2.3.0, refine MainView, and update dependencies
Updated Kotlin Multiplatform to 2.3.0 for enhanced compatibility and improvements. Streamlined `MainView` with cleaner structure, added responsive scaling, and introduced a `HiddenCss` class. Upgraded various dependencies, including `vst-ui-base` to 2.2.3 and `midi-arrays` to 0.3.6, ensuring better functionality and consistency. Added changes to build task configurations for improved build pipelines.
This commit is contained in:
9
.run/JS.run.xml
Normal file
9
.run/JS.run.xml
Normal file
@@ -0,0 +1,9 @@
|
||||
<component name="ProjectRunConfigurationManager">
|
||||
<configuration default="false" name="JS" type="JavascriptDebugType" engineId="98ca6316-2f89-46d9-a9e5-fa9e2b0625b3"
|
||||
uri="http://localhost:9005">
|
||||
<method v="2">
|
||||
<option name="Gradle.BeforeRunTask" enabled="false" tasks="buildJS" externalProjectPath="$PROJECT_DIR$" vmOptions=""
|
||||
scriptParameters=""/>
|
||||
</method>
|
||||
</configuration>
|
||||
</component>
|
||||
@@ -17,11 +17,11 @@
|
||||
</ExternalSystemSettings>
|
||||
<ExternalSystemDebugServerProcess>false</ExternalSystemDebugServerProcess>
|
||||
<ExternalSystemReattachDebugProcess>true</ExternalSystemReattachDebugProcess>
|
||||
<ExternalSystemDebugDisabled>false</ExternalSystemDebugDisabled>
|
||||
<DebugAllEnabled>false</DebugAllEnabled>
|
||||
<RunAsTest>false</RunAsTest>
|
||||
<method v="2">
|
||||
<option name="Gradle.BeforeRunTask" enabled="true" tasks="clean build" externalProjectPath="$PROJECT_DIR$"
|
||||
vmOptions="" scriptParameters=""/>
|
||||
</method>
|
||||
<GradleProfilingDisabled>false</GradleProfilingDisabled>
|
||||
<GradleCoverageDisabled>false</GradleCoverageDisabled>
|
||||
<method v="2"/>
|
||||
</configuration>
|
||||
</component>
|
||||
@@ -40,7 +40,7 @@ kotlin {
|
||||
val commonMain by getting {
|
||||
dependencies {
|
||||
implementation("nl.astraeus:vst-worklet-base:1.0.1")
|
||||
implementation("nl.astraeus:midi-arrays:0.3.4")
|
||||
implementation("nl.astraeus:midi-arrays:0.3.6")
|
||||
}
|
||||
}
|
||||
val jsMain by getting
|
||||
|
||||
@@ -5,12 +5,8 @@ package nl.astraeus.vst.chip
|
||||
import nl.astraeus.midi.message.SortedTimedMidiMessageList
|
||||
import nl.astraeus.midi.message.TimedMidiMessage
|
||||
import nl.astraeus.tba.SlicedByteArray
|
||||
import nl.astraeus.vst.ADSR
|
||||
import nl.astraeus.vst.AudioWorkletProcessor
|
||||
import nl.astraeus.vst.currentTime
|
||||
import nl.astraeus.vst.*
|
||||
import nl.astraeus.vst.midi.MidiMessageHandler
|
||||
import nl.astraeus.vst.registerProcessor
|
||||
import nl.astraeus.vst.sampleRate
|
||||
import org.khronos.webgl.Float32Array
|
||||
import org.khronos.webgl.get
|
||||
import org.khronos.webgl.set
|
||||
@@ -392,8 +388,8 @@ class VstChipProcessor : AudioWorkletProcessor() {
|
||||
val delaySampleIndex =
|
||||
(note.sample + note.combDelayBuffer.length) % note.combDelayBuffer.length
|
||||
|
||||
left[i] = left[i] + (note.combDelayBuffer[delaySampleIndex] * feedback.toFloat())
|
||||
right[i] = right[i] + (note.combDelayBuffer[delaySampleIndex] * feedback.toFloat())
|
||||
//left[i] = left[i] + (note.combDelayBuffer[delaySampleIndex] * feedback.toFloat())
|
||||
//right[i] = right[i] + (note.combDelayBuffer[delaySampleIndex] * feedback.toFloat())
|
||||
|
||||
note.combDelayBuffer[delaySampleIndex] = (left[i] + right[i]) / 2f
|
||||
// end - comb filter delay
|
||||
|
||||
@@ -56,8 +56,8 @@ kotlin {
|
||||
sourceSets {
|
||||
val commonMain by getting {
|
||||
dependencies {
|
||||
api("nl.astraeus:vst-ui-base:2.0.0")
|
||||
implementation("nl.astraeus:midi-arrays:0.3.4")
|
||||
api("nl.astraeus:vst-ui-base:2.2.3")
|
||||
implementation("nl.astraeus:midi-arrays:0.3.6")
|
||||
}
|
||||
}
|
||||
val jsMain by getting
|
||||
@@ -85,6 +85,17 @@ tasks.register<Copy>("buildJS") {
|
||||
from(layout.projectDirectory.dir("web2"))
|
||||
into(layout.projectDirectory.dir("web"))
|
||||
}
|
||||
tasks.register<Copy>("buildJSProd") {
|
||||
duplicatesStrategy = DuplicatesStrategy.INCLUDE
|
||||
dependsOn("audio-worklet:jsBrowserDistribution")
|
||||
dependsOn("jsBrowserDistribution")
|
||||
|
||||
from(layout.projectDirectory.dir("web1"))
|
||||
into(layout.projectDirectory.dir("web"))
|
||||
|
||||
from(layout.projectDirectory.dir("web2"))
|
||||
into(layout.projectDirectory.dir("web"))
|
||||
}
|
||||
|
||||
/* Hardcoded deploy configuration */
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
group = "nl.astraeus"
|
||||
version = "0.1.0"
|
||||
version = "0.2.0"
|
||||
|
||||
allprojects {
|
||||
repositories {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
pluginManagement {
|
||||
plugins {
|
||||
kotlin("multiplatform") version "2.1.20"
|
||||
kotlin("multiplatform") version "2.3.0"
|
||||
}
|
||||
repositories {
|
||||
gradlePluginPortal()
|
||||
|
||||
@@ -2,34 +2,13 @@
|
||||
|
||||
package nl.astraeus.vst.chip.view
|
||||
|
||||
import kotlinx.browser.document
|
||||
import kotlinx.browser.window
|
||||
import kotlinx.html.InputType
|
||||
import kotlinx.html.canvas
|
||||
import kotlinx.html.classes
|
||||
import kotlinx.html.div
|
||||
import kotlinx.html.h1
|
||||
import kotlinx.html.input
|
||||
import kotlinx.html.*
|
||||
import kotlinx.html.js.onChangeFunction
|
||||
import kotlinx.html.js.onClickFunction
|
||||
import kotlinx.html.js.onInputFunction
|
||||
import kotlinx.html.option
|
||||
import kotlinx.html.select
|
||||
import kotlinx.html.span
|
||||
import nl.astraeus.css.properties.AlignItems
|
||||
import nl.astraeus.css.properties.BoxSizing
|
||||
import nl.astraeus.css.properties.Display
|
||||
import nl.astraeus.css.properties.FlexDirection
|
||||
import nl.astraeus.css.properties.FontWeight
|
||||
import nl.astraeus.css.properties.JustifyContent
|
||||
import nl.astraeus.css.properties.Position
|
||||
import nl.astraeus.css.properties.Transform
|
||||
import nl.astraeus.css.properties.em
|
||||
import nl.astraeus.css.properties.hsla
|
||||
import nl.astraeus.css.properties.prc
|
||||
import nl.astraeus.css.properties.px
|
||||
import nl.astraeus.css.properties.rem
|
||||
import nl.astraeus.css.properties.vh
|
||||
import nl.astraeus.css.properties.vw
|
||||
import nl.astraeus.css.properties.*
|
||||
import nl.astraeus.css.style.Style
|
||||
import nl.astraeus.css.style.cls
|
||||
import nl.astraeus.komp.HtmlBuilder
|
||||
@@ -50,10 +29,7 @@ import nl.astraeus.vst.ui.css.Css.noTextSelect
|
||||
import nl.astraeus.vst.ui.css.CssName
|
||||
import nl.astraeus.vst.ui.css.hover
|
||||
import org.khronos.webgl.get
|
||||
import org.w3c.dom.CanvasRenderingContext2D
|
||||
import org.w3c.dom.HTMLCanvasElement
|
||||
import org.w3c.dom.HTMLInputElement
|
||||
import org.w3c.dom.HTMLSelectElement
|
||||
import org.w3c.dom.*
|
||||
|
||||
object WaveformView : Komponent() {
|
||||
|
||||
@@ -102,9 +78,11 @@ object WaveformView: Komponent() {
|
||||
class MainView : Komponent() {
|
||||
private var messages: MutableList<String> = ArrayList()
|
||||
var started = false
|
||||
var firstRender = true
|
||||
|
||||
init {
|
||||
css()
|
||||
window.addEventListener("resize", { requestUpdate() }, Any())
|
||||
}
|
||||
|
||||
fun addMessage(message: String) {
|
||||
@@ -122,14 +100,20 @@ class MainView : Komponent() {
|
||||
|
||||
override fun HtmlBuilder.render() {
|
||||
div(MainDivCss.name) {
|
||||
id = "fixed-container"
|
||||
style = scaleContainer(currentElement(), 1920, 1080)
|
||||
|
||||
div(InnerDivCss.name) {
|
||||
if (!started) {
|
||||
div(StartSplashCss.name) {
|
||||
div(StartBoxCss.name) {
|
||||
div(StartButtonCss.name) {
|
||||
id = "start-button"
|
||||
+"START"
|
||||
}
|
||||
}
|
||||
onClickFunction = {
|
||||
document.getElementById("start-button")?.classList?.add(HiddenCss.name)
|
||||
VstChipWorklet.create {
|
||||
started = true
|
||||
requestUpdate()
|
||||
@@ -420,9 +404,29 @@ class MainView : Komponent() {
|
||||
include(WaveformView)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private fun scaleContainer(
|
||||
container: Element,
|
||||
containerWidth: Int,
|
||||
containerHeight: Int,
|
||||
): String {
|
||||
val vpWidth = window.innerWidth
|
||||
val vpHeight = window.innerHeight
|
||||
|
||||
val scaleX: Double = vpWidth / containerWidth.toDouble()
|
||||
val scaleY: Double = vpHeight / containerHeight.toDouble()
|
||||
|
||||
val scale = if (scaleX < scaleY) scaleX else scaleY
|
||||
val left = (vpWidth - containerWidth * scale) / 2
|
||||
val top = (vpHeight - containerHeight * scale) / 2
|
||||
|
||||
return "transform: translate(${left}px, ${top}px) scale($scale);"
|
||||
}
|
||||
|
||||
companion object MainViewCss : CssName() {
|
||||
object MainDivCss : CssName()
|
||||
object InnerDivCss : CssName()
|
||||
object ActiveCss : CssName()
|
||||
object ButtonCss : CssName()
|
||||
object ButtonBarCss : CssName()
|
||||
@@ -431,6 +435,7 @@ class MainView : Komponent() {
|
||||
object StartSplashCss : CssName()
|
||||
object StartBoxCss : CssName()
|
||||
object StartButtonCss : CssName()
|
||||
object HiddenCss : CssName()
|
||||
object ControlsCss : CssName()
|
||||
|
||||
private fun css() {
|
||||
@@ -445,10 +450,12 @@ class MainView : Komponent() {
|
||||
select("html", "body") {
|
||||
margin(0.px)
|
||||
padding(0.px)
|
||||
width(100.prc)
|
||||
height(100.prc)
|
||||
overflow(Overflow.hidden)
|
||||
}
|
||||
select("html", "body") {
|
||||
backgroundColor(Css.currentStyle.mainBackgroundColor)
|
||||
backgroundColor(Css.currentStyle.mainBackgroundColor.darken(10))
|
||||
color(Css.currentStyle.mainFontColor)
|
||||
|
||||
fontFamily("JetbrainsMono, monospace")
|
||||
@@ -478,7 +485,17 @@ class MainView : Komponent() {
|
||||
minHeight(4.rem)
|
||||
}
|
||||
select(cls(MainDivCss)) {
|
||||
margin(1.rem)
|
||||
backgroundColor(Css.currentStyle.mainBackgroundColor)
|
||||
width(1920.px)
|
||||
height(1080.px)
|
||||
position(Position.absolute)
|
||||
top(0.px)
|
||||
left(0.px)
|
||||
transformOrigin("0 0")
|
||||
|
||||
select(cls(InnerDivCss)) {
|
||||
padding(1.rem)
|
||||
}
|
||||
}
|
||||
select("select") {
|
||||
plain("appearance", "none")
|
||||
@@ -496,17 +513,17 @@ class MainView : Komponent() {
|
||||
position(Position.fixed)
|
||||
left(0.px)
|
||||
top(0.px)
|
||||
width(100.vw)
|
||||
height(100.vh)
|
||||
width(1920.px)
|
||||
height(1080.px)
|
||||
zIndex(100)
|
||||
backgroundColor(hsla(32, 0, 5, 0.65))
|
||||
|
||||
select(cls(StartBoxCss)) {
|
||||
position(Position.relative)
|
||||
left(25.vw)
|
||||
top(25.vh)
|
||||
width(50.vw)
|
||||
height(50.vh)
|
||||
left(100.px)
|
||||
top(100.px)
|
||||
width(1720.px)
|
||||
height(880.px)
|
||||
backgroundColor(hsla(239, 50, 10, 1.0))
|
||||
borderColor(Css.currentStyle.mainFontColor)
|
||||
borderWidth(2.px)
|
||||
@@ -531,6 +548,9 @@ class MainView : Komponent() {
|
||||
padding(1.rem)
|
||||
backgroundColor(Css.currentStyle.mainBackgroundColor)
|
||||
}
|
||||
select(HiddenCss.cls()) {
|
||||
display(Display.none)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user