diff --git a/src/main/kotlin/de/moritzruth/lampenfieber/act/First.kt b/src/main/kotlin/de/moritzruth/lampenfieber/act/First.kt index bcb093b..4e4d4d9 100644 --- a/src/main/kotlin/de/moritzruth/lampenfieber/act/First.kt +++ b/src/main/kotlin/de/moritzruth/lampenfieber/act/First.kt @@ -105,7 +105,7 @@ fun ShowBuilderContext.firstAct() = act("Erster Akt") { } } - scene("1") { + scene("Szene 1") { step(StepCue.MusicEnd) { actors { +"Richy / durch den Mittelgang" @@ -183,7 +183,7 @@ fun ShowBuilderContext.firstAct() = act("Erster Akt") { } } - scene("2") { + scene("Szene 2") { step(StepCue.Light(StepCue.Light.State.OFF, false)) { actors { +"David / sitzt am Klavier" @@ -210,7 +210,7 @@ fun ShowBuilderContext.firstAct() = act("Erster Akt") { } } - scene("3") { + scene("Szene 3") { step(StepCue.Custom("Paula sitzt")) { actors { +"Tina / von rechts, mit Tasche" @@ -241,7 +241,7 @@ fun ShowBuilderContext.firstAct() = act("Erster Akt") { } } - scene("5") { + scene("Szene 5") { step(StepCue.Text("Maria", "Schreib mich auch dazu!")) { actors { -"Tina" diff --git a/src/main/kotlin/de/moritzruth/lampenfieber/act/Fourth.kt b/src/main/kotlin/de/moritzruth/lampenfieber/act/Fourth.kt index 1aa77ed..be5db12 100644 --- a/src/main/kotlin/de/moritzruth/lampenfieber/act/Fourth.kt +++ b/src/main/kotlin/de/moritzruth/lampenfieber/act/Fourth.kt @@ -17,7 +17,7 @@ import kotlin.time.Duration.Companion.minutes import kotlin.time.Duration.Companion.seconds fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { - scene("1") { + scene("Szene 1") { step(StepCue.MusicStart("Ende der Pause", 69.seconds)) { val sideColor = Color(60.degrees, saturation = 10.percent) sideLight.color1.static(sideColor) @@ -88,7 +88,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("2") { + scene("Szene 2") { step(StepCue.MusicEnd) { curtainState = CurtainState.CLOSED } @@ -146,7 +146,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("3") { + scene("Szene 3") { step(StepCue.MusicStart("?", 69.seconds)) { actors { +"Paula" @@ -167,7 +167,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("4") { + scene("Szene 4") { step(StepCue.MusicEnd) { actors { } @@ -202,7 +202,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("5") { + scene("Szene 5") { step(StepCue.MusicEnd) { onRun { sideLight.fadeColorsToClassroom(5.seconds) @@ -232,7 +232,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("6") { + scene("Szene 6") { step(StepCue.MusicEnd) { actors { -"Richy" @@ -270,7 +270,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("7") { + scene("Szene 7") { step(StepCue.Text("David", "Aber auf jeden Fall nicht hier.")) { actors { +"Theaterlehrer" @@ -366,7 +366,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("8") { + scene("Szene 8") { step(StepCue.MusicStart("Angstballet", 69.seconds)) { onRun { // TODO: Song @@ -374,7 +374,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("9") { + scene("Szene 9") { step(StepCue.MusicEnd) { actors { +"Kai" @@ -402,7 +402,7 @@ fun ShowBuilderContext.fourthAct() = act("Vierter Akt") { } } - scene("10") { + scene("Szene 10") { step(StepCue.Text("Kai", "Hilfe, los, runter!")) { curtainState = CurtainState.OPEN diff --git a/src/main/kotlin/de/moritzruth/lampenfieber/act/Second.kt b/src/main/kotlin/de/moritzruth/lampenfieber/act/Second.kt index d6442d6..1d04dfc 100644 --- a/src/main/kotlin/de/moritzruth/lampenfieber/act/Second.kt +++ b/src/main/kotlin/de/moritzruth/lampenfieber/act/Second.kt @@ -14,7 +14,7 @@ import kotlin.time.Duration.Companion.milliseconds import kotlin.time.Duration.Companion.seconds fun ShowBuilderContext.secondAct() = act("Zweiter Akt") { - scene("1") { + scene("Szene 1") { step(StepCue.MusicStart("Umbaumusik", 69.seconds)) { onRun { // TODO @@ -22,7 +22,7 @@ fun ShowBuilderContext.secondAct() = act("Zweiter Akt") { } } - scene("2") { + scene("Szene 2") { step(StepCue.MusicEnd) { actors { +"Heike" @@ -35,7 +35,7 @@ fun ShowBuilderContext.secondAct() = act("Zweiter Akt") { } } - scene("3") { + scene("Szene 3") { step(StepCue.Text("Sven", "Okay!")) { actors { -"Heike" @@ -110,7 +110,7 @@ fun ShowBuilderContext.secondAct() = act("Zweiter Akt") { } } - scene("4") { + scene("Szene 4") { step(StepCue.MusicEnd) { } diff --git a/src/main/kotlin/de/moritzruth/lampenfieber/act/Third.kt b/src/main/kotlin/de/moritzruth/lampenfieber/act/Third.kt index feb6df8..c9b7f92 100644 --- a/src/main/kotlin/de/moritzruth/lampenfieber/act/Third.kt +++ b/src/main/kotlin/de/moritzruth/lampenfieber/act/Third.kt @@ -15,7 +15,7 @@ import kotlin.time.Duration.Companion.seconds @Suppress("DuplicatedCode") fun ShowBuilderContext.thirdAct() = act("Dritter Akt") { - scene("1") { + scene("Szene 1") { step(StepCue.Stub) { actors { +"Jacob" @@ -34,14 +34,14 @@ fun ShowBuilderContext.thirdAct() = act("Dritter Akt") { } } - scene("2") { + scene("Szene 2") { step(StepCue.Stub) { } // Licht aus am Ende } - scene("3") { + scene("Szene 3") { step(StepCue.MusicStart("Tischballet", 69.seconds)) { actors { +"David" @@ -64,7 +64,7 @@ fun ShowBuilderContext.thirdAct() = act("Dritter Akt") { } } - scene("4") { + scene("Szene 4") { step(StepCue.MusicEnd) { onRun { FrontLights.all.forEach { it.brightness.fade(75.percent, 8.seconds) } @@ -98,7 +98,7 @@ fun ShowBuilderContext.thirdAct() = act("Dritter Akt") { } } - scene("5") { + scene("Szene 5") { step(StepCue.Custom("Kathi ruft Paula")) { actors { +"Paula" @@ -131,7 +131,7 @@ fun ShowBuilderContext.thirdAct() = act("Dritter Akt") { } } - scene("6") { + scene("Szene 6") { step(StepCue.MusicStart("Umbaumusik", 69.seconds)) { Tops.both.forEach { it.pointAtStageMiddleOffCenterMarking() @@ -291,7 +291,7 @@ fun ShowBuilderContext.thirdAct() = act("Dritter Akt") { } } - scene("7") { + scene("Szene 7") { step(StepCue.MusicEnd) { } @@ -309,7 +309,7 @@ fun ShowBuilderContext.thirdAct() = act("Dritter Akt") { } } - scene("8") { + scene("Szene 8") { step(StepCue.MusicEnd) { } diff --git a/ui/src/components/CueBox.vue b/ui/src/components/CueBox.vue index baf7521..29b68d8 100755 --- a/ui/src/components/CueBox.vue +++ b/ui/src/components/CueBox.vue @@ -40,7 +40,7 @@ ? ArrowsInLineHorizontalIcon : ArrowsOutLineHorizontalIcon - case "LIGHTS": return HeadlightsIcon + case "LIGHT": return HeadlightsIcon case "TEXT": return ChatCircleTextIcon case "MUSIC_START": return MusicNoteIcon case "MUSIC_END": return StopIcon @@ -59,7 +59,7 @@ return cue.whileMoving ? "Der Vorhang schließt sich" : "Der Vorhang ist geschlossen" } - case "LIGHTS": + case "LIGHT": if (cue.state === "on") { return cue.whileFading ? "Das Licht geht an" : "Das Licht ist an" } else { diff --git a/ui/src/components/MotionsList.vue b/ui/src/components/MotionsList.vue index 336b356..61be62d 100755 --- a/ui/src/components/MotionsList.vue +++ b/ui/src/components/MotionsList.vue @@ -1,71 +1,18 @@ diff --git a/ui/src/components/MotionsListAct.vue b/ui/src/components/MotionsListAct.vue new file mode 100644 index 0000000..80289c4 --- /dev/null +++ b/ui/src/components/MotionsListAct.vue @@ -0,0 +1,83 @@ + + + + + \ No newline at end of file diff --git a/ui/src/components/MotionsListScene.vue b/ui/src/components/MotionsListScene.vue deleted file mode 100644 index d0e7cdb..0000000 --- a/ui/src/components/MotionsListScene.vue +++ /dev/null @@ -1,7 +0,0 @@ - - - \ No newline at end of file diff --git a/ui/src/components/MotionsListStep.vue b/ui/src/components/MotionsListStep.vue index 89954ef..6d0c41b 100644 --- a/ui/src/components/MotionsListStep.vue +++ b/ui/src/components/MotionsListStep.vue @@ -2,8 +2,8 @@
- -
+ +
-
- +
+
+ + {{ act.name }} + +
+
+ +
diff --git a/ui/src/components/StepSelectionScene.vue b/ui/src/components/StepSelectionScene.vue index 0764486..c6b012c 100644 --- a/ui/src/components/StepSelectionScene.vue +++ b/ui/src/components/StepSelectionScene.vue @@ -1,10 +1,10 @@