Skip to content

Commit

Permalink
Séparation des morceaux #8
Browse files Browse the repository at this point in the history
  • Loading branch information
Bludwarf committed Mar 17, 2024
1 parent 9d97adf commit 4c5d5e7
Show file tree
Hide file tree
Showing 12 changed files with 221,972 additions and 212,222 deletions.
14 changes: 13 additions & 1 deletion src/app/song/entries/Le jour (le phare).ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,18 @@ const refrain = Pattern.fromData({
fretboard,
})

const bloquee = Pattern.fromData({
key,
name: 'Bloquée',
duration: '1m',
})

const breakBatterie = Pattern.fromData({
key,
name: 'Break batterie',
duration: '1m',
})

const patterns: Pattern[] = [
couplet, couplet, coupletEb, coupletEb, // PYM + David
couplet, couplet, coupletEb, coupletEb, // Groupe
Expand All @@ -44,7 +56,7 @@ const patterns: Pattern[] = [
refrain, refrain,

couplet, couplet,
// block sur G
bloquee, breakBatterie,

couplet, couplet, coupletEb, coupletEb,
couplet, couplet, coupletEb, coupletEb,
Expand Down
2 changes: 1 addition & 1 deletion src/app/song/entries/Le résistant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const silence = Pattern.fromData({
const fin = Pattern.fromData({
key,
name: 'Fin',
chords: '| F | G |',
chords: '| G |',
fretboard,
})

Expand Down
26 changes: 17 additions & 9 deletions src/app/song/entries/Nuages blancs.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import stuctureObject from "../../../assets/structures/Nuages blancs.json";
import {FretboardData, Pattern} from "../../structure/pattern/pattern";
import {Structure} from "../../structure/structure";
import {Key} from "../../notes";
import { FretboardData, Pattern } from "../../structure/pattern/pattern";
import { Structure } from "../../structure/structure";
import { Key } from "../../notes";

const key = Key.Gm
const fretboard: FretboardData = {
Expand All @@ -18,6 +18,13 @@ const i = Pattern.fromData({
fretboard,
})

const fin = Pattern.fromData({
key,
name: 'Fin',
chords: '| G |',
fretboard,
})

const c = Pattern.fromData({
key,
name: 'Couplet',
Expand All @@ -41,12 +48,13 @@ const rp = Pattern.fromData({
})

const patterns: Pattern[] = [
i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, // 16 fois I
c, c, c, r, r, r, rp, i, i, i, i,
c, c, c, r, r, r, rp, i, i, i, i,
i, i, i, i, i, i, i, i, // solo
c, c, c, r, r, r, rp, i, i, i, i,
c, c, c, r, r, r, rp, i, i, i, i, i, i, i, i,
i, i, i, i, i, i, i, i, // 8 fois I
c, c, c, r, r, r, rp, i, i, i, i, i, i, i, i, // 8 fois I
c, c, c, r, r, r, rp, i, i, i, i, i, i, i, i, // 8 fois I
i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, i, // solo = 16 fois I
c, c, c, r, r, r, rp, i, i, i, i, i, i, i, i, // 8 fois I
c, c, c, r, r, r, rp, i, i, i, i, i, i, i, i, // 8 fois I
i, i, i, i, fin, // fin
]

const structure = Structure.builder()
Expand Down
Binary file modified src/assets/als/La femme dragon.als
Binary file not shown.
Loading

0 comments on commit 4c5d5e7

Please sign in to comment.