OSDN Git Service

Partly ported plcore.dtx to LuaTeX-ja. Now we can output "tombow".
[luatex-ja/luatexja.git] / src / luatexja-core.sty
1 %
2 % luatexja-core.sty
3 %
4
5 %! 外から読まれるので仰々しくなってます
6 %% Avoid multiple loading.
7 \csname\if11luatexjacoreLoaded\fi\endcsname
8 \edef\x{%
9 \catcode32=\the\catcode32%
10 \catcode33=\the\catcode33%
11 \catcode35=\the\catcode35%
12 \catcode40=\the\catcode40%
13 \catcode41=\the\catcode41%
14 \catcode42=\the\catcode42%
15 \catcode43=\the\catcode43%
16 \catcode44=\the\catcode44%
17 \catcode45=\the\catcode45%
18 \catcode46=\the\catcode46%
19 \catcode58=\the\catcode58%
20 \catcode59=\the\catcode59%
21 \catcode60=\the\catcode60%
22 \catcode61=\the\catcode61%
23 \catcode62=\the\catcode62%
24 \catcode64=\the\catcode64%
25 \catcode91=\the\catcode91%
26 \catcode93=\the\catcode93%
27 \catcode94=\the\catcode94%
28 \catcode95=\the\catcode95%
29 \catcode126=\the\catcode126%
30 \endlinechar=\the\endlinechar
31 \relax}
32 \catcode32=10 %< >
33 \catcode33=12 %<">
34 \catcode35=6  %<#>
35 \catcode40=12 %<(>
36 \catcode41=12 %<)>
37 \catcode42=12 %<*>
38 \catcode43=12 %<+>
39 \catcode44=12 %<,>
40 \catcode45=12 %<->
41 \catcode46=12 %<.>
42 \catcode58=12 %<:>
43 \catcode59=12 %<;>
44 \catcode60=12 %<<>
45 \catcode61=12 %<=>
46 \catcode62=12 %<>>
47 \catcode64=11 %<@>
48 \catcode91=12 %<[>
49 \catcode93=12 %<]>
50 \catcode94=7  %<^>
51 \catcode95=8  %<_>
52 \catcode126=13 %<~>
53 \endlinechar=-1 %
54 %! なお, 上のcatcode設定はcoreとcompatで同一にしておく.
55 \edef\ltj@core@AtEnd{\x
56   \noexpand\let\noexpand\ltj@core@AtEnd\relax}
57 \def\luatexjacoreLoaded{\endinput}
58
59 %% Check if LaTeX is used.
60 \begingroup\expandafter\expandafter\expandafter\endgroup
61 \expandafter\ifx\csname RequirePackage\endcsname\relax %<*!LaTeX>
62   \expandafter\let\csname ifltj@in@latex\expandafter\endcsname
63     \csname iffalse\endcsname
64 \else                           %<*LaTeX>
65   \expandafter\let\csname ifltj@in@latex\expandafter\endcsname
66     \csname iftrue\endcsname
67   \NeedsTeXFormat{LaTeX2e}
68   \ProvidesPackage{luatexja-core}[2011/04/01 v0.1]
69 \fi                             %</LaTeX>
70
71 %% Load prerequisite packages.
72 %! 参考: W32TeX の LuaTeX 
73 %!     2010/11/27 v0.65.0 r3988 (LuaTeX-ja の最低要件)
74 %!     2010/07/10 v0.60.2 r3735 (TL2010 とほぼ同じ)
75 \endlinechar=13 %
76 %! 外部パッケージは普通の \endlinechar で読まないと危険.
77 \ifltj@in@latex                 %<*LaTeX>
78   \RequirePackage{luaotfload} [2010/11/11] % v1.21
79   \RequirePackage{infwarerr}  [2010/04/08] % v1.3
80   \RequirePackage{ltxcmds}    [2010/04/26] % v1.7
81   \RequirePackage{pdftexcmds} [2010/04/01] % v0.9
82   \RequirePackage{xkeyval}    [2008/08/13] % v2.6a
83 \else                           %<*!LaTeX>
84   \input luaotfload.sty
85   \input infwarerr.sty
86   \input ltxcmds.sty
87   \input pdftexcmds.sty
88   \input xkeyval
89 \fi                             %</LaTeX>
90 \endlinechar=-1 %
91
92 %% Check if LuaTeX is used
93 \ltx@LocalExpandAfter\ifx\csname directlua\endcsname\relax
94   % Loading is silently aborted, since the notice of the wrong
95   % engine is aldready shown in otfluaload.
96   \ltj@core@AtEnd
97 \expandafter\endinput\fi\relax
98
99 %% Check LuaTeX version.
100 \ifnum\luatexversion<65
101   \@PackageError{luatexja-core}
102     {This LuaTeX engine is too old for this package;\MessageBreak
103      at least v0.65 is needed}
104     {Package loading is aborted now.\MessageBreak}
105 \expandafter\endinput\fi\relax
106
107 %! なお、luatexbase-compat の説明に従うと、LuaTeX 拡張プリミティブは
108 %! plain/LaTeX の両方で \luatex 付の名前(\directlua はそのまま)
109 %! で使えると考えてよい。
110
111 %% \LuaTeXjaAvailable
112 %! 環境検査にパスした時に定義される.
113 \let\LuaTeXjaAvailable=t %
114
115 %%------------------
116
117 %% Load all sub-packages.
118 \ifltj@in@latex                 %<*LaTeX>
119   \RequirePackage{luatexja-cctbreg}[2011/04/01]
120   \RequirePackage{luatexja-base}[2011/04/01]
121 \else                           %<*!LaTeX>
122   \input luatexja-cctbreg.sty %
123   \input luatexja-base.sty %
124 \fi                             %</LaTeX>
125
126 %%------------------
127 \endlinechar=13
128 %! この中に master の luatexja-core.sty の内容を挿入する
129 %! ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
130 % LuaTeX-ja core TeX source
131
132 \catcode"FFFFF=14 %"
133
134 \def\ltj@loaded{hoge}
135
136 \newcount\ltj@tempcnta
137 \newcount\ltj@tempcntb
138 \newcount\ltj@tempcntc
139 \newdimen\ltj@tempdima
140 \newskip\ltj@tempskipa
141
142 \newdimen\ltj@zw
143 \newdimen\ltj@zh
144 \newdimen\jQ \jQ=0.25mm
145 \newdimen\jH \jH=0.25mm
146
147 %%%%%%%% error message
148 \def\ltj@defnum{0}
149 \def\ltj@defdimen{0}
150
151
152 %%%%%%%% Attributes for Japanese typesetting.
153 \newluatexattribute\ltj@curjfnt   % index for ``current Japanese font''
154 \newluatexattribute\jfam          % index for current jfam
155 \newluatexattribute\ltj@charclass % 
156 \newluatexattribute\ltj@yablshift % attribute for \yabaselineshift
157 \newluatexattribute\ltj@ykblshift % attribute for \ykbaselineshift
158 \newluatexattribute\ltj@autospc   % attribute for autospacing
159 \newluatexattribute\ltj@autoxspc  % attribute for autoxspacing
160 \newluatexattribute\ltj@icflag    % attribute for italic correction
161 \newlanguage\ltj@japanese
162
163 %%%%%%%% Loading lua files
164 \directlua{%
165   utf = unicode.utf8
166   ltj = {}
167   function ltj.loadlua(file)
168     local path = assert(kpse.find_file(file, 'tex'),
169       "File '"..file.."' not found")
170     texio.write_nl("("..path..")")
171     dofile(path)
172   end
173   ltj.loadlua('luatexja-core.lua')
174 }
175
176
177 %%%%%%%% Attributes for character ranges
178 \ltj@tempcnta=0
179 \loop\ifnum\ltj@tempcnta<7
180   \expandafter\newluatexattribute%
181     \csname ltj@kcat\the\ltj@tempcnta\endcsname
182   \csname ltj@kcat\the\ltj@tempcnta\endcsname=0
183   \advance\ltj@tempcnta by1
184 \repeat
185
186 %%%%%%%% \asluastring
187 \def\asluastring#1{'\luaescapestring{\detokenize{#1}}'}
188
189 %%%%%%%% Redefine \/
190 %\let\ltj@ic=\/ \protected\def\/{{\ltj@icflag=1\ltj@ic}}
191 \protected\def\/{\directlua{luatexja.jfont.append_italic()}}
192
193 %%%%%%%% \jfont\CS={...:...;jfm=metric;...}, \globaljfont
194 \protected\def\jfont{\afterassignment\ltj@@jfont\directlua{luatexja.jfont.jfontdefX(false)}}
195 \protected\def\globaljfont{%
196   \afterassignment\ltj@@jfont\directlua{luatexja.jfont.jfontdefX(true)}}
197 \def\ltj@@jfont{\directlua{luatexja.jfont.jfontdefY()}}
198
199 \def\zw{\directlua{luatexja.jfont.load_zw()}\ltj@zw}
200 \def\zh{\directlua{luatexja.jfont.load_zh()}\ltj@zh}
201
202 %%%%%%%% \inhibitglue
203 \protected\def\inhibitglue{\directlua{luatexja.jfmglue.create_inhibitglue_node()}}
204
205 %%%%%%%% \yoko, \tate, \ifydir, \iftdir
206 %% At this moment, tategaki mode is not implemented; 
207 %% there is only yokogaki mode now.
208 \let\yoko\relax
209 \let\tate\relax
210 \let\ifydir\iftrue
211 \let\iftdir\iffalse
212
213 %%%%%%%% \ltjdefcharrange<name>{100-200,3000-,5000,...}
214 \protected\def\ltjdefcharrange#1#2{%
215   \ltj@tempcntc=#1 \expandafter\ltj@@dcrange#2,,\ignorespaces}
216 \def\ltj@@dcrange#1,{\def\ltj@temp{#1}%
217   \ifx\ltj@temp\empty\let\@next=\relax\else
218   \ltj@@dcrangeA{#1}\let\@next=\ltj@@dcrange\fi\@next}
219 \def\ltj@@dcrangeA#1{\ltj@@dcrangeB#1--\@nil}
220 \def\ltj@@dcrangeB#1-#2-#3\@nil{\def\ltj@temp{#3}%
221   \ifx\ltj@temp\empty
222     \ltj@tempcnta=#1 \ltj@tempcntb=\ltj@tempcnta
223   \else
224     \def\ltj@temp{#1}%
225     \ifx\ltj@temp\empty\ltj@tempcnta='200 \else\ltj@tempcnta=#1 \fi
226     \def\ltj@temp{#2}%
227     \ifx\ltj@temp\empty\ltj@tempcntb="10FFFF \else\ltj@tempcntb=#2 \fi%"
228   \fi
229   \directlua{luatexja.charrange.add_char_range(\the\ltj@tempcnta,\the\ltj@tempcntb,
230     \the\ltj@tempcntc)}%
231   }
232
233 %%%%%%%% \ltjsetparameter
234 \newcount\ltj@@stack \newcount\ltj@@group@level
235 \ltj@@group@level=0 \ltj@@stack=0
236
237 % prebreakpenalty = {<char_code>, <penalty>}
238 \define@key[ltj]{japaram}{kcatcode}{%
239   \expandafter\ltj@@set@stack#1:{kcat}{0}{0x7FFFFFFF}}
240 \define@key[ltj]{japaram}{prebreakpenalty}{%
241   \expandafter\ltj@@set@stack#1:{pre}{-10000}{10000}}
242 \define@key[ltj]{japaram}{postbreakpenalty}{%
243   \expandafter\ltj@@set@stack#1:{post}{-10000}{10000}}
244 \def\ltj@@set@stack#1,#2:#3#4#5{%
245   \directlua{luatexja.stack.set_stack_table(ltj.isglobal, \asluastring{#3},
246     \ltj@safe@num@or\ltj@defnum{#1},\ltj@safe@num@or\ltj@defnum{#2},#4,#5)}}
247
248 % jatextfont = {<char_code>, <font_cs>}
249 \define@key[ltj]{japaram}{jatextfont}{%
250   \expandafter\ltj@@set@stackfont#1:{mjtext}}
251 \define@key[ltj]{japaram}{jascriptfont}{%
252   \expandafter\ltj@@set@stackfont#1:{mjscr}}
253 \define@key[ltj]{japaram}{jascriptscriptfont}{%
254   \expandafter\ltj@@set@stackfont#1:{mjss}}
255 \def\ltj@@set@stackfont#1,#2:#3{%
256   \ltj@tempcntb=\globaldefs{\globaldefs0 \ltj@curjfnt=-1 #2%
257    \global\ltj@tempcnta=\ltj@curjfnt}\globaldefs\ltj@tempcntb%
258   \ifnum\ltj@tempcnta=-1
259     \@PackageError{luatexja-core}%
260     {\string#2 is not a control sequence that represents \MessageBreak
261      a Japanese font}{}%
262   \else
263     \directlua{luatexja.stack.set_stack_font(ltj.isglobal, \asluastring{#3},
264     \ltj@safe@num@or\ltj@defnum{#1}, \the\ltj@tempcnta)}%
265   \fi}
266
267 % yalbaselineshift = <dimen>
268 % yjabaselineshift = <dimen>
269 \define@key[ltj]{japaram}{yalbaselineshift}{%
270   \directlua{tex.setattribute(ltj.isglobal, 
271     luatexbase.attributes['ltj@yablshift'],
272     \ltj@safe@dimen@or\ltj@defdimen{#1})}}
273 \define@key[ltj]{japaram}{yjabaselineshift}{%
274   \directlua{tex.setattribute(ltj.isglobal, 
275     luatexbase.attributes['ltj@ykblshift'],
276     \ltj@safe@dimen@or\ltj@defdimen{#1})}}
277
278 % jaxspmode = {<char_code>, <mode>}
279 % mode: inhibit, preonly, postonly, allow
280 %    or       0        2         1      3
281 \define@key[ltj]{japaram}{jaxspmode}{%        \inhibitxspcode
282   \expandafter\ltj@set@jaxspmode#1:\relax}
283 \def\ltj@set@jaxspmode#1,#2:{%
284   \lowercase{\edef\ltj@temp{#2}}%
285   \def\ltj@tempa{inhibit}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{0}\fi
286   \def\ltj@tempa{preonly}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{2}\fi
287   \def\ltj@tempa{postonly}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{1}\fi
288   \def\ltj@tempa{allow}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{3}\fi
289   \directlua{luatexja.stack.set_stack_table(ltj.isglobal, 'xsp', 
290     \ltj@safe@num@or\ltj@defnum{#1},
291     \ltj@safe@num@or\ltj@defnum{\ltj@temp},0,3)}}
292
293 % alxspmode = {<char_code>, <mode>}
294 % mode: inhibit, preonly, postonly, allow
295 %    or       0        1         2      3
296 \define@key[ltj]{japaram}{alxspmode}{%        \inhibitxspcode
297   \expandafter\ltj@set@alxspmode#1:\relax}
298 \def\ltj@set@alxspmode#1,#2:{%
299   \lowercase{\edef\ltj@temp{#2}}%
300   \def\ltj@tempa{inhibit}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{0}\fi
301   \def\ltj@tempa{preonly}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{1}\fi
302   \def\ltj@tempa{postonly}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{2}\fi
303   \def\ltj@tempa{allow}\ifx\ltj@temp\ltj@tempa\def\ltj@temp{3}\fi
304   \directlua{luatexja.stack.set_stack_table(ltj.isglobal, 'xsp', 
305     \ltj@safe@num@or\ltj@defnum{#1},
306     \ltj@safe@num@or\ltj@defnum{\ltj@temp},0,3)}}
307
308 % autospacing = <bool> (default: true)
309 \define@boolkey[ltj]{japaram}{autospacing}[true]{%
310   \ifltj@japaram@autospacing
311     \directlua{ltj.ext_print_global()}\ltj@autospc=1
312   \else
313     \directlua{ltj.ext_print_global()}\ltj@autospc=0
314   \fi}
315
316 % autoxspacing = <bool> (default: true)
317 \define@boolkey[ltj]{japaram}{autoxspacing}[true]{%
318   \ifltj@japaram@autoxspacing
319     \directlua{ltj.ext_print_global()}\ltj@autoxspc=1
320   \else
321     \directlua{ltj.ext_print_global()}\ltj@autoxspc=0
322   \fi}
323
324 % [x]]kanjiskip = <dimen>
325 \define@key[ltj]{japaram}{kanjiskip}{%              % SKIP
326   \directlua{luatexja.stack.set_stack_skip(ltj.isglobal, 'kanjiskip', \ltj@safe@glue{#1})}}
327 \define@key[ltj]{japaram}{xkanjiskip}{%             % SKIP
328   \directlua{luatexja.stack.set_stack_skip(ltj.isglobal, 'xkanjiskip', \ltj@safe@glue{#1})}}
329
330 % jcharwidowpenalty = <count>
331 \define@key[ltj]{japaram}{jcharwidowpenalty}{%      %COUNT
332   \ltj@@set@stack0,#1:{jwp}{-10000}{10000}}
333
334 % differentjfm = { large | small | average | both }
335 \define@choicekey*+[ltj]{japaram}{differentjfm}[\ltj@temp\ltj@tempr]%
336   {large,small,average,both}{%
337   \ifcase\ltj@tempr
338     \directlua{luatexja.jfmglue.diffmet_rule = math.max}\or
339     \directlua{luatexja.jfmglue.diffmet_rule = math.min}\or
340     \directlua{luatexja.jfmglue.diffmet_rule = math.two_average}\or
341     \directlua{luatexja.jfmglue.diffmet_rule = math.two_add}
342   \fi
343 }{\ltj@PackageError{luatexja}{invalid argument `#1' for `differentjfm'}{%
344   Argument for `differentjfm' must be one of `large', `small', `average',^^J%
345   and `both'. }}
346   % large, small, average, both
347
348
349 % jacharrange = { +-<range_number> }
350 \define@key[ltj]{japaram}{jacharrange}{\expandafter\ltj@@scrange#1,,}
351 \def\ltj@@scrange#1,{%
352   \edef\ltj@temp{#1}%
353   \ifx\ltj@temp\empty\let\next=\relax\else\let\next=\ltj@@scrange
354     \directlua{luatexja.charrange.toggle_char_range(%
355       ltj.is_global,\ltj@safe@num@or\ltj@defnum{#1})}%
356   \fi\next
357 }
358
359 \protected\def\ltjsetparameter#1{%
360   \ifnum\globaldefs=0\directlua{ltj.isglobal=''}\else\directlua{ltj.isglobal='global'}\fi
361   \setkeys[ltj]{japaram}{#1}\ignorespaces}
362 \protected\def\ltjglobalsetparameter#1{\directlua{ltj.isglobal='global'}%
363   \setkeys[ltj]{japaram}{#1}\ignorespaces}
364
365 %%%%%%%% 
366 \def\ltj@@decl@array@param#1{%
367   \expandafter\let\csname ltj@@array@param/#1\endcsname=t%
368 }
369 \ltj@@decl@array@param{prebreakpenalty}
370 \ltj@@decl@array@param{postbreakpenalty}
371 \ltj@@decl@array@param{jaxspmode}
372 \ltj@@decl@array@param{alxspmode}
373 \ltj@@decl@array@param{kcatcode}
374 \ltj@@decl@array@param{jacharrange}
375 \ltj@@decl@array@param{chartorange}
376 \def\ltjgetparameter#1{%
377   \ifcsname ltj@@array@param/#1\endcsname
378     \expandafter\ltx@firstoftwo
379   \else
380     \expandafter\ltx@secondoftwo
381   \fi
382   {\ltj@@getparam@two{#1}}%
383   {\ltj@@getparam@one{#1}}%
384 }
385 \def\ltj@@getparam@one#1{%
386   \directlua{ltj.ext_get_parameter_unary('#1')}}%
387 \def\ltj@@getparam@two#1#2{%
388   \directlua{ltj.ext_get_parameter_binary('#1', \ltj@safe@num{#2})}%
389 }
390
391
392
393 %\def\ltj@temp{plain}
394 %\ifx\fmtname\ltj@temp
395 %  \message{plain format: loading luatexja-plain.tex}
396 %\fi
397 %\input luatexja-plain.tex
398 %\catcode`\@=12
399 %\endinput
400 %! ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑
401
402 %%------------------ Load module for the format
403
404 \ifltj@in@latex                 %<*LaTeX>
405   \RequirePackage{luatexja-latex}[2011/04/01]
406 \else\ifltj@in@plain            %<*plain>
407   \input luatexja-plain.sty %
408 \fi\fi                          %</LaTeX|plain>
409
410 %%------------------ all done
411 \ltj@core@AtEnd
412 \endinput
413 %% EOF