summaryrefslogtreecommitdiff
path: root/metapost/context/base/mp-grph.mp
blob: 3cd9f2cfbdab3972ef20c1f1e4784d6ff5acbf6d (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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
%D \module
%D   [       file=mp-grph.mp,
%D        version=2000.12.14,
%D          title=\CONTEXT\ \METAPOST\ graphics,
%D       subtitle=graphic text support,
%D         author=Hans Hagen,
%D           date=\currentdate,
%D      copyright={PRAGMA / Hans Hagen \& Ton Otten}]
%C
%C This module is part of the \CONTEXT\ macro||package and is
%C therefore copyrighted by \PRAGMA. See licen-en.pdf for
%C details.

%D Under construction.

if unknown context_tool :    input mp-tool ; fi ;
if   known context_grph : endinput         ; fi ;

boolean context_grph ; context_grph := true ;

string CRLF ; CRLF := char 10 & char 13 ;

picture _currentpicture_ ;

def beginfig (expr c) =
  begingroup
  charcode := c ;
  resetfig ;
  scantokens extra_beginfig ;
enddef ;

def resetfig =
  clearxy ;
  clearit ;
  clearpen ;
  pickup defaultpen ;
  interim linecap := linecap ;
  interim linejoin := linejoin ;
  interim miterlimit := miterlimit ;
  save _background_ ; color _background_ ; _background_ :=  background  ;
  save  background  ; color  background  ;  background  := _background_ ;
  drawoptions () ;
enddef ;

def protectgraphicmacros =
  save showtext ;
  save beginfig ; let beginfig = begingraphictextfig ;
  save endfig   ; let endfig   = endgraphictextfig ;
  save end      ; let end      = relax ;
  interim prologues := prologues ;
  resetfig ; % resets currentpicture
enddef ;

numeric currentgraphictext ; currentgraphictext := 0 ;
string  graphictextformat  ; graphictextformat  := "plain" ;
string  graphictextstring  ; graphictextstring  := "" ;
string  graphictextfile    ; graphictextfile    := "dummy.mpo" ;

def data_mpo_file = job_name & "-mpgraph.mpo" enddef ;
def data_mpy_file = job_name & "-mpgraph.mpy" enddef ;

if unknown mplib :

    def savegraphictext (expr str) =
      if (graphictextstring<>"") :
        write graphictextstring to data_mpo_file ;
        graphictextstring := "" ;
      fi ;
      write str to data_mpo_file ;
      let erasegraphictextfile = relax ;
    enddef ;

    def erasegraphictextfile =
      write EOF to data_mpo_file ;
      let erasegraphictextfile = relax ;
    enddef ;

    extra_beginfig := extra_beginfig & " erasegraphictextfile ;" ;

fi ;

def begingraphictextfig (expr n) =
  foundpicture := n ; scratchpicture := nullpicture ;
enddef ;

def endgraphictextfig =
  if foundpicture = currentgraphictext :
    expandafter endinput
  else :
    scratchpicture := nullpicture ;
  fi ;
enddef ;

def loadfigure primary filename =
  doloadfigure (filename)
enddef ;

def doloadfigure (expr filename) text figureattributes =
  begingroup ;
  save figurenumber, figurepicture, number, fixedplace ;
  numeric figurenumber  ; figurenumber := 0 ;
  boolean figureshift ; figureshift := true ;
  picture figurepicture ; figurepicture := currentpicture ;
  def number primary n = hide(figurenumber := n) enddef ;
  def fixedplace = hide(figureshift := false) enddef ;
  protectgraphicmacros ;
  % defaults
  interim linecap    := rounded ;
  interim linejoin   := rounded ;
  interim miterlimit := 10 ;
  %
  currentpicture := nullpicture ;
  draw fullcircle figureattributes ; % expand number
  currentpicture := nullpicture ;
  def beginfig (expr n) =
    currentpicture := nullpicture ;
    if (figurenumber=n) or (figurenumber=0) :
      let endfig = endinput ;
    fi ;
  enddef ;
  let endfig = relax ;
  readfile(filename) ;
  if figureshift :
    currentpicture := currentpicture shifted -llcorner currentpicture ;
  fi ;
  addto figurepicture also currentpicture figureattributes ;
  currentpicture := figurepicture  ;
  endgroup ;
enddef ;

def graphictext primary t =
  dographictext(t)
enddef ;

def dographictext (expr t) =
  begingroup ;
  save figurepicture ; picture figurepicture ;
  figurepicture := currentpicture ; currentpicture := nullpicture ;
  if graphictextformat<>"" :
    graphictextstring :=
      "% format=" & graphictextformat & CRLF & graphictextstring ;
    graphictextformat := "" ;
  fi ;
  currentgraphictext := currentgraphictext + 1 ;
  if unknown mplib :
    savegraphictext ("\startTEXpage[scale=10000]" & t & "\stopTEXpage") ;
  fi ;
  dofinishgraphictext
enddef ;

def redographictext primary t =
  regraphictext(t)
enddef ;

def regraphictext (expr t) =
  begingroup ;
  save figurepicture ; picture figurepicture ;
  figurepicture := currentpicture ; currentpicture := nullpicture ;
  save currentgraphictext ; numeric currentgraphictext ;
  currentgraphictext := t ;
  dofinishgraphictext
enddef ;

%D Believe it or not, but it took me half a day to uncover
%D the following neccessity:
%D
%D \starttypen
%D save withfillcolor, withdrawcolor ;
%D \stoptypen
%D
%D When we have more than one graphictext, these will be
%D defined after the first graphic. For some obscure reason,
%D this means that in the next graphic they will be called, but
%D afterwards the data and boolean are not set. Don't ask me
%D why.

def dofinishgraphictext text x_op_x =
  protectgraphicmacros ; % resets currentpicture
  interim linecap    := butt ;     % normally rounded
  interim linejoin   := mitered ;  % normally rounded
  interim miterlimit := 10 ;       % todo
  let normalwithshade = withshade ;
  save foundpicture, scratchpicture, str ;
  save fill, draw, withshade, reversefill, outlinefill ;
  save withfillcolor, withdrawcolor ; % quite important
  numeric foundpicture ; picture scratchpicture ; string str ;
  def draw expr p =
    % the first, naive implementation was:
    %   addto scratchpicture doublepath p withpen currentpen ;
    % but it is better to turn lines into fills
    addto scratchpicture contour boundingbox
      image (addto currentpicture doublepath p withpen currentpen) ;
  enddef ;
  def fill expr p =
    addto scratchpicture contour p withpen currentpen ;
  enddef ;
  def f_op_f = enddef ; boolean f_color ; f_color := false ;
  def d_op_d = enddef ; boolean d_color ; d_color := false ;
  def s_op_s = enddef ; boolean s_color ; s_color := false ;
  boolean reverse_fill ; reverse_fill := false ;
  boolean outline_fill ; outline_fill := false ;
  def reversefill =
    hide(reverse_fill := true )
  enddef ;
  def outlinefill =
    hide(outline_fill := true )
  enddef ;
  def withshade primary c =
    hide(def s_op_s = normalwithshade c enddef ; s_color := true )
  enddef ;
  def withfillcolor primary c =
    hide(def f_op_f = withcolor c enddef ; f_color := true )
  enddef ;
  def withdrawcolor primary c =
    hide(def d_op_d = withcolor c enddef ; d_color := true )
  enddef ;
  scratchpicture := nullpicture ;
  addto scratchpicture doublepath origin x_op_x ; % pre-roll
  for i within scratchpicture : % Below here is a dirty tricky test!
    if (urcorner dashpart i) = origin : outline_fill := false ; fi ;
  endfor ;
  scratchpicture := nullpicture ;
  readfile(data_mpy_file) ;
  scratchpicture := (scratchpicture shifted -llcorner scratchpicture) scaled (1/10) ;
  if not d_color and not f_color : d_color := true ; fi
  if s_color : d_color := false ; f_color := false ; fi ;
  currentpicture := figurepicture ;
  if d_color and not reverse_fill :
    for i within scratchpicture :
      if f_color and outline_fill :
        addto currentpicture doublepath pathpart i _op_ x_op_x f_op_f
          dashed nullpicture ;
      fi ;
      if filled i :
        addto currentpicture doublepath pathpart i _op_ x_op_x d_op_d ;
      fi ;
    endfor ;
  fi ;
  if f_color :
    for i within scratchpicture :
      if filled i :
        addto currentpicture contour pathpart i _op_ x_op_x f_op_f
          withpen pencircle scaled 0 ;
      fi ;
    endfor ;
  fi ;
  if d_color and reverse_fill :
    for i within scratchpicture :
      if filled i :
        addto currentpicture doublepath pathpart i _op_ x_op_x d_op_d ;
      fi ;
    endfor ;
  fi ;
  if s_color :
    for i within scratchpicture :
      if filled i :
        addto currentpicture contour pathpart i _op_ x_op_x s_op_s ;
      fi ;
    endfor ;
  else :
    for i within scratchpicture :
      if stroked i :
        addto currentpicture doublepath pathpart i _op_ x_op_x d_op_d ;
      fi ;
    endfor ;
  fi ;
  endgroup ;
enddef ;

def resetgraphictextdirective =
  graphictextstring := "" ;
enddef ;

def graphictextdirective text t =
  graphictextstring := graphictextstring & t & CRLF ;
enddef ;

endinput

% example

input mp-grph ;

  graphictextformat := "context" ;
% graphictextformat := "plain" ;
% graphictextformat := "latex" ; graphictextdirective "\documentclass[]{article}" ;

beginfig (1) ;
  graphictext
    "\vbox{\hsize10cm \input tufte }"
    scaled 8
    withdrawcolor blue
    withfillcolor red
    withpen pencircle scaled 2pt ;
endfig ;

beginfig(1) ;
  loadfigure "gracht.mp" rotated 20 ;
  loadfigure "koe.mp" number 1 scaled 2 ;
endfig ;

end