summaryrefslogtreecommitdiff
path: root/tex/context/base/scrp-ini.mkiv
blob: bf8b580c79ae9e30ca3732fe0cf507ff944c6848 (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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
%D \module
%D   [       file=scrp-ini,
%D        version=2009.02.06,
%D          title=\CONTEXT\ Script Macros,
%D       subtitle=Initialization,
%D         author=Hans Hagen,
%D           date=\currentdate,
%D      copyright={PRAGMA ADE \& \CONTEXT\ Development Team}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See mreadme.pdf for
%C details.

% here we collect code from other places (was organized differently)

\registerctxluafile{scrp-ini}{1.001}
\registerctxluafile{scrp-cjk}{1.001}
\registerctxluafile{scrp-eth}{1.001}

\definesystemattribute[preproc][public]
\definesystemattribute[prestat][public]

%D Since scripts need specific \LUA\ code we use hard coded attribute
%D values, but we might have more tricks at some time, so we use a
%D proper define macro too.

\unprotect

\installcorenamespace{script}

\installcommandhandler \??script {script} \??script

\let\setupscripts\setupscript % be nice

% presets are global and are currently defined in lua

\appendtoks
    \setuevalue\currentscript{\setscript[\currentscript]}%
\to \everydefinescript

\unexpanded\def\scripts_basics_set
  {\ctxlua{scripts.set("\currentscript","\scriptparameter\c!method","\scriptparameter\c!preset")}}

\unexpanded\def\setscript[#1]%
  {\edef\currentscript{#1}%
   \scripts_basics_set}

\unexpanded\def\resetscript
  {\ctxlua{scripts.reset()}}

\unexpanded\def\startscript[#1]%
  {\begingroup
   \edef\currentscript{#1}%
   \scripts_basics_set}

\unexpanded\def\stopscript
  {\endgroup}

% \setscript[hangul] \hangul \startscript[hangul]

\definescript[hangul]  [\c!method=hangul]
\definescript[hanzi]   [\c!method=hanzi]
\definescript[nihongo] [\c!method=nihongo]

\definescript[ethiopic][\c!method=ethiopic]

\definescript[latin]   [\c!method=]        %  resets the attribute (also currentscript)

% a new trick (at some point we will predefine more scripts and consider a link with the above)

\appendtoks
    \ifx\currentscript\empty
        \doifelse{\scriptparameter\s!features}\v!auto\enableautofontscript\disableautofontscript
    \fi
\to \everysetupscript

\unexpanded\def\enableautofontscript {\ctxcommand{enableautofontscript ()}}
\unexpanded\def\disableautofontscript{\ctxcommand{disableautofontscript()}}

\definefontfeature[latn][script=latn]
\definefontfeature[grek][script=grek]

\protect \endinput