ntg-context - mailing list for ConTeXt users
 help / color / mirror / Atom feed
* mp inclusions etc
@ 2013-02-18 14:55 Hans Hagen
  0 siblings, 0 replies; only message in thread
From: Hans Hagen @ 2013-02-18 14:55 UTC (permalink / raw)
  To: mailing list for ConTeXt users

Hi,

I updated the inclusion mechanism a bit. It's now:

% initializations:
%
% - pass settings from tex to mp (delayed expansion)
% - used by context core (and modules)
% - cummulative definitions
% - flushed each graphic
% - can be disabled per instance
% - managed at the tex end
%
% extensions:
%
% - add mp functionality (immediate expansion)
% - cummulative
% - all instances or subset of instances
% - can be disabled per instance
% - managed at the lua/mp end
% - could be managed at the tex end but no real reason and also messy
%
% definitions:
%
% - add mp functionality (delayed expansion)
% - cummulative
% - per instance
% - managed at the tex end
%
% inclusions:
%
% - add mp functionality (delayed expansion)
% - cummulative only when [+]
% - per instance
% - managed at the tex end
%
% order of execution:
%
%   definitions
%   extensions
%   inclusions
%   beginfig
%     initializations
%     graphic
%   endfig

So, the main differences are:

(1) inclusions bound to default or specific instanced
(2) extensions more flexible

\starttext

\startMPextensions
     color ColorOne   ; ColorOne   := red ;
     color ColorTwo   ; ColorTwo   := green ;
     color ColorThree ; ColorThree := blue ;
\stopMPextensions

\startMPextensions{doublefun}
     color ColorThree ; ColorThree := magenta ;
\stopMPextensions

\startMPinclusions
     def DoWhatever = draw textext("N") ; enddef ;
\stopMPinclusions

\startMPinclusions
     def DoWhatever = draw textext("Y") ; enddef ;
\stopMPinclusions

\startMPinclusions{doublefun}
     def DoWhatever = draw textext("Y") ; enddef ;
\stopMPinclusions

\startMPinclusions[+]{doublefun}
     def DoWhatever = draw textext("YY") ; enddef ;
\stopMPinclusions

\startMPcode{metafun}
     draw fullcircle scaled 1cm withcolor ColorOne   withpen pencircle 
scaled 1mm ;
     draw fullcircle scaled 2cm withcolor ColorTwo   withpen pencircle 
scaled 1mm ;
     draw fullcircle scaled 3cm withcolor ColorThree withpen pencircle 
scaled 1mm ;
     DoWhatever ;
\stopMPcode


\startMPcode{doublefun}
     draw fullcircle scaled 1cm withcolor ColorOne   withpen pencircle 
scaled 1mm ;
     draw fullcircle scaled 2cm withcolor ColorTwo   withpen pencircle 
scaled 1mm ;
     draw fullcircle scaled 3cm withcolor ColorThree withpen pencircle 
scaled 1mm ;
     DoWhatever ;
\stopMPcode

\stoptext

Hans

-----------------------------------------------------------------
                                           Hans Hagen | PRAGMA ADE
               Ridderstraat 27 | 8061 GH Hasselt | The Netherlands
     tel: 038 477 53 69 | voip: 087 875 68 74 | www.pragma-ade.com
                                              | www.pragma-pod.nl
-----------------------------------------------------------------
___________________________________________________________________________________
If your question is of interest to others as well, please add an entry to the Wiki!

maillist : ntg-context@ntg.nl / http://www.ntg.nl/mailman/listinfo/ntg-context
webpage  : http://www.pragma-ade.nl / http://tex.aanhet.net
archive  : http://foundry.supelec.fr/projects/contextrev/
wiki     : http://contextgarden.net
___________________________________________________________________________________


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2013-02-18 14:55 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-02-18 14:55 mp inclusions etc Hans Hagen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).