summaryrefslogtreecommitdiff
path: root/tex/context/base/mkiv/mlib-pdf.mkiv
blob: 6dc73a153528eea820478cd2b11ed23c63f98e33 (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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
%D \module
%D   [       file=mlib-pdf,
%D        version=2008.03.25,
%D          title=\METAPOST\ Integrated Graphics,
%D       subtitle=Conversion to PDF,
%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.

\unprotect

% We use bit more code that needed because we want to limit the
% amount of boxing.

\registerctxluafile{mlib-pdf}{}

%D Some code is shared between MPLIB and MPS. The following variables
%D are also available for introspection and other purposes.

\ifdefined\MPwidth  \else \newdimen\MPwidth  \fi
\ifdefined\MPheight \else \newdimen\MPheight \fi

\ifdefined\MPllx    \else \newdimen\MPllx    \fi
\ifdefined\MPlly    \else \newdimen\MPlly    \fi
\ifdefined\MPurx    \else \newdimen\MPurx    \fi
\ifdefined\MPury    \else \newdimen\MPury    \fi

\ifdefined\MPbox    \else \newbox  \MPbox    \fi

\unexpanded\def\setMPboundingbox#1#2#3#4% at some point we might pass them as base or scaled points
  {\global\MPllx   #1\onebasepoint
   \global\MPlly   #2\onebasepoint
   \global\MPurx   #3\onebasepoint
   \global\MPury   #4\onebasepoint
   \global\MPwidth \dimexpr\MPurx-\MPllx\relax
   \global\MPheight\dimexpr\MPury-\MPlly\relax}

\unexpanded\def\resetMPboundingbox
  {\global\MPwidth \zeropoint
   \global\MPheight\zeropoint
   \global\MPllx   \zeropoint
   \global\MPlly   \zeropoint
   \global\MPurx   \zeropoint
   \global\MPury   \zeropoint}

\let\popMPboundingbox\relax

\unexpanded\def\pushMPboundingbox
  {\edef\popMPboundingbox
     {\global\MPwidth \the\MPwidth
      \global\MPheight\the\MPheight
      \global\MPllx   \the\MPllx
      \global\MPlly   \the\MPlly
      \global\MPurx   \the\MPurx
      \global\MPury   \the\MPury
      \relax}}

\unexpanded\def\repositionMPboxindeed
  {\setbox\MPbox\hpack\bgroup
     \kern-\MPllx
     \raise-\MPlly
     \box\MPbox
   \egroup}

\unexpanded\def\repositionMPbox
  {\ifzeropt\MPllx
     \ifzeropt\MPlly
       % okay
     \else
       \repositionMPboxindeed
     \fi
   \else
     \repositionMPboxindeed
   \fi}

\unexpanded\def\finalizeMPbox
  {\repositionMPbox
   \setbox\MPbox\vpack to \MPheight\bgroup
     \vfill
     \hsize\MPwidth
     \smashbox\MPbox
     \box\MPbox
   \egroup
   \wd\MPbox\MPwidth
   \ht\MPbox\MPheight}

% \unexpanded\def\MPtextext#1#2#3#4#5% beware: we use a different method now (see mlib-pps)
%   {\begingroup
%    \setbox\MPbox\hbox{\font\temp=#1\space at #2\onebasepoint \let\c\char \temp #3}% text
%    \MPllx-#4\onebasepoint
%    \MPlly-#5\onebasepoint
%    \repositionMPbox
%    \smashbox\MPbox
%    \box\MPbox
%    \endgroup}

% MPLIB specific:

\def\MPLIBtoPDF{\clf_mpflushliteral} % expanded

\unexpanded\def\startMPLIBtoPDF#1#2#3#4%
  {\meta_process_graphic_figure_start
   \dostarttagged\t!mpgraphic\empty
   \naturalhpack attr \imageattribute \plusone \bgroup
   \dousecolorparameter\s!black\forcecolorhack
   \setMPboundingbox{#1}{#2}{#3}{#4}%
   \setbox\MPbox\vpack\bgroup
 % \forgetall % already done elsewhere
   \noindent} % forces the proper cm in the backend

\unexpanded\def\stopMPLIBtoPDF
  {\egroup
   \finalizeMPbox
   \box\MPbox
   \egroup
   \dostoptagged
   \meta_process_graphic_figure_stop}

\def\MPLIBflushreset % This can (will) move to the Lua end.
  {\clf_mpflushreset}

%D Kind of special:
%
% test.mp:
%
% beginfig(1) fill fullcircle scaled 10cm withcolor red  ; endfig ;
% beginfig(2) draw fullcircle scaled  5cm withcolor blue ; endfig ;
% beginfig(3) draw textext("just some text")             ; endfig ;
%
% standalone pages:
%
% \starttext
%     \directMPgraphic{input "test.mp" ;}
% \stoptext

\let\normalstartMPLIBtoPDF\startMPLIBtoPDF
\let\normalstopMPLIBtoPDF \stopMPLIBtoPDF

\unexpanded\def\directstartMPLIBtoPDF{\startTEXpage\normalstartMPLIBtoPDF}
\unexpanded\def\directstopMPLIBtoPDF {\normalstopMPLIBtoPDF\stopTEXpage}

\unexpanded\def\directMPgraphic
  {\dodoublegroupempty\mlib_direct_graphic}

% \def\mlib_direct_graphic#1#2% makes pages (todo: make boxes)
%   {\meta_begin_graphic_group{#1}%
%    \let\startMPLIBtoPDF\directstartMPLIBtoPDF
%    \let\stopMPLIBtoPDF \directstopMPLIBtoPDF
%    \meta_start_current_graphic
%    \forgetall
%    \edef\p_extensions{\MPinstanceparameter\s!extensions}%
%    \normalexpanded{\noexpand\ctxlua{metapost.graphic {
%        instance        = "\currentMPinstance",
%        format          = "\currentMPformat",
%        data            = \!!bs#2;\!!es,
%        initializations = \!!bs\meta_flush_current_initializations\!!es,
%     % useextensions   = "\MPinstanceparameter\s!extensions",
% \ifx\p_extensions\v!yes
%        extensions      = \!!bs\clf_getmpextensions{\currentMPinstance}\!!es,
% \fi
%        inclusions      = \!!bs\meta_flush_current_inclusions\!!es,
%        definitions     = \!!bs\meta_flush_current_definitions\!!es,
%        figure          = "all",
%        method          = "\MPinstanceparameter\c!method",
%      }}}%
%    \meta_stop_current_graphic
%    \meta_end_graphic_group}

\def\mlib_direct_graphic#1#2% makes pages (todo: make boxes)
  {\meta_begin_graphic_group{#1}%
   \let\startMPLIBtoPDF\directstartMPLIBtoPDF
   \let\stopMPLIBtoPDF \directstopMPLIBtoPDF
   \meta_start_current_graphic
     \forgetall
     \edef\p_extensions{\MPinstanceparameter\s!extensions}%
     \normalexpanded{\noexpand\clf_mpgraphic
         instance        {\currentMPinstance}%
         format          {\currentMPformat}%
         data            {#2;}%
         initializations {\meta_flush_current_initializations}%
    \ifx\p_extensions\v!yes
         extensions      {\clf_getmpextensions{\currentMPinstance}}%
    \fi
         inclusions      {\meta_flush_current_inclusions}%
         definitions     {\meta_flush_current_definitions}%
         figure          {all}%
         method          {\MPinstanceparameter\c!method}%
     \relax}%
   \meta_stop_current_graphic
   \meta_end_graphic_group}

\protect \endinput