blob: ba3a3e8cace59aa1f698aefc2cc404a1cd437653 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
package fountain
import (
"github.com/lapingvino/lexington/lex"
"strings"
"bufio"
"io"
)
func Parse(file io.Reader) (out lex.Screenplay) {
var err error
var s string
var toParse []string
f := bufio.NewReader(file)
for err == nil {
s, err = f.ReadString('\n')
toParse = append(toParse, s)
}
for i, row := range toParse {
row = strings.TrimSpace(row)
action := "action"
if row == strings.ToUpper(row) {
action = "allcaps"
}
if row == "" {
action = "empty"
} else {
if i > 0 {
switch out[i-1].Type {
case "allcaps":
out[i-1].Type = "speaker"
if row[0] == '(' && row[len(row)-1] == ')' {
action = "paren"
} else {
action = "dialog"
}
case "paren", "dialog":
action = "dialog"
}
}
}
out = append(out, lex.Line{action, row})
}
return out
}
|