From f9cfec513334c7197711927edbb47763f4480315 Mon Sep 17 00:00:00 2001 From: Leni Aniva Date: Sun, 9 Jun 2024 21:53:43 -0700 Subject: [PATCH] Cleanup compilation error and add intro --- game/broken-moon.ly | 4 +-- game/necrofantasia.ly | 8 +++--- game/the-gensokyo-the-gods-loved.ly | 13 +++++----- game/touhou-intro.ly | 38 +++++++++++++++++++++++++++++ 4 files changed, 52 insertions(+), 11 deletions(-) create mode 100644 game/touhou-intro.ly diff --git a/game/broken-moon.ly b/game/broken-moon.ly index 2eb3321..ed696e1 100644 --- a/game/broken-moon.ly +++ b/game/broken-moon.ly @@ -1,7 +1,8 @@ \version "2.24.0" \language "english" \header { - title = "Broken Moon (Incomplete Version)" + title = "砕月" + subtitle = "東方萃夢想 ~ Immaterial and Missing Power" composer = "ZUN" poet = "Transcribed by Nekorare, Leni Aniva" } @@ -39,7 +40,6 @@ violin = \new Staff \with { g4. f16 g 4 8 c16 d | 4. g8 f ef f g | 4. 8 ef4. c8 | d4. c8 d ef f ef | d4. ef16 d c4. c16 d | - % identical to beginning bf8 c' g f g c ef f | ef bf, 4 g,8 bf,| ef f ef 4 f8 ef | f bf 2 g8 bf | c' bf c' g4 8 ef | diff --git a/game/necrofantasia.ly b/game/necrofantasia.ly index 185396c..82bf3bd 100644 --- a/game/necrofantasia.ly +++ b/game/necrofantasia.ly @@ -1,9 +1,10 @@ \version "2.24.0" \language "english" \header { - title = "Necrofantasia" + title = "ネクロファンタジア" + subtitle = "東方妖々夢 ~ Perfect Cherry Blossom" composer = "ZUN" - poet = "Transcribed by Jacky Yang, Leni Aniva" + poet = "Adapted by Jacky Yang, Leni Aniva" } violin = \new Staff \with { instrumentName = "Violin" @@ -75,11 +76,12 @@ violin = \new Staff \with { e=''4-2 c'-3 b d,8 e~ | e=''2.. r8 | e=''4 d' c b8 c8~ | c='''4 b a g8-2 a~ | a=''4 g e g8 a~ | a=''4 g e g8 ~-2-3 | - 1~ | 2.. r8 + 1~ | 2.. r8 | \volta 2 \fine \volta 1 + | c=''4 e d b8 c8~ | c2.. r8 | c4 d e d8 e8~ | e4 d c b8 c8~ | c4 b a b8 c8~ | c4 b a b8 a8~ | diff --git a/game/the-gensokyo-the-gods-loved.ly b/game/the-gensokyo-the-gods-loved.ly index 1cb17e7..3263a56 100644 --- a/game/the-gensokyo-the-gods-loved.ly +++ b/game/the-gensokyo-the-gods-loved.ly @@ -1,7 +1,8 @@ \version "2.24.0" \language "english" \header { - title = "The Gensokyo the Gods loved" + title = "神々が恋した幻想郷" + subtitle = "東方風神録 ~ Mountain of Faith" composer = "ZUN" poet = "Adapted by Leni Aniva" } @@ -21,13 +22,13 @@ violin = \new Staff \with { \partial 4*2 r8 a\mp\upbow a c' | d'4. c'16 d' c'8 a g c' | a2 r8 a a c' | d'4. c'16 d' f'8\grace{e'16(f'}e'8) d' c' | d'2 r8 c'16 d' c'8 a | - g2 r8 c'16 d' c'8 g | f2 r8 d' d' e' | + g2 r8 c'16 d' c'8 g | f2 r8 e' | f'4. g'8 e'4. d'8 | d'1 | r1 | \tempo 4 = 160 - g1\mf | g2 f | - g2. bf4 | a4. g4. f4 | + 1\mf | 2 | + 2. bf4 | a4. g4. f4 | g2 c' | bf4 a g a | bf4. c'4. d'4~ | d' c' bf a | g1 | g2 f | @@ -36,8 +37,8 @@ violin = \new Staff \with { g1 | r1 | d2\mp a8. g8. f8 | e2 r8 c a,4 | - d1 | d4. e4. f4~ | - f4 r f8. g8. a8 | a2 a8. b8. c'8 | + d1 | r4. d8 d8. e8. f8~ | + f2 f8. g8. a8 | a2 a8. b8. c'8 | c'4 b a c' | d'2 df'4 r8 a16 c'16 | d'8. a8. g8 g8. f8. g8 | d2 d8. e8. f8 f4 e d c | d2 r4. a16 c'16 | diff --git a/game/touhou-intro.ly b/game/touhou-intro.ly new file mode 100644 index 0000000..f59083e --- /dev/null +++ b/game/touhou-intro.ly @@ -0,0 +1,38 @@ + +\version "2.24.0" +\language "english" +\header { + title = "Touhou Intro" + composer = "ZUN" + poet = "Adapted by Leni Aniva" +} +violin = \new Staff \with { + instrumentName = "Violin" + shortInstrumentName = "V." + midiInstrument = "violin" +} +\fixed c' { + \tempo 4 = 130 + \numericTimeSignature + \time 4/4 + + \repeat volta 2 { + \tuplet 3/2 { d4 g a } \tuplet 3/2 { c' a g } | + \tuplet 3/2 { d4 g a } \tuplet 3/2 { c' a g } | + \tuplet 3/2 { e4 f e } c4 d4 | + } +} +\score { + \violin + \layout { + \context { + \Score + } + } +} +\score { + \unfoldRepeats { + \violin + } + \midi { } +}