123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596 |
- \begin{figure}[H]
- % Define the layers to draw the diagram
- \pgfdeclarelayer{tomgombackground}
- \pgfdeclarelayer{tombackground}
- \pgfsetlayers{tomgombackground,tombackground,main}
- % Define a new shape: page with a folded corner
- \makeatletter
- \pgfdeclareshape{flippedpage}{
- \inheritsavedanchors[from=rectangle] % this is nearly a rectangle
- \inheritanchorborder[from=rectangle]
- \inheritanchor[from=rectangle]{center}
- \inheritanchor[from=rectangle]{north}
- \inheritanchor[from=rectangle]{south}
- \inheritanchor[from=rectangle]{west}
- \inheritanchor[from=rectangle]{east}
- % ... and possibly more
- \backgroundpath{% this is new
- % store lower left in xa/ya and upper right in xb/yb
- \southwest \pgf@xa=\pgf@x \pgf@ya=\pgf@y
- \northeast \pgf@xb=\pgf@x \pgf@yb=\pgf@y
- % compute corner of ``flipped page''
- \pgf@xc=\pgf@xb \advance\pgf@xc by-5pt % this should be a parameter
- \pgf@yc=\pgf@yb \advance\pgf@yc by-5pt
- % diagonal path of the corner
- \pgfpathmoveto{\pgfpoint{\pgf@xa}{\pgf@ya}}
- \pgfpathlineto{\pgfpoint{\pgf@xa}{\pgf@yb}}
- \pgfpathlineto{\pgfpoint{\pgf@xc}{\pgf@yb}}
- \pgfpathlineto{\pgfpoint{\pgf@xb}{\pgf@yc}}
- \pgfpathlineto{\pgfpoint{\pgf@xb}{\pgf@ya}}
- \pgfpathclose
- % add little corner
- \pgfpathmoveto{\pgfpoint{\pgf@xc}{\pgf@yb}}
- \pgfpathlineto{\pgfpoint{\pgf@xc}{\pgf@yc}}
- \pgfpathlineto{\pgfpoint{\pgf@xb}{\pgf@yc}}
- \pgfpathlineto{\pgfpoint{\pgf@xc}{\pgf@yc}}
- }
- }
- % Define block styles
- \tikzstyle{compiler}=[draw, fill=blue!20, text width=6em, text centered, minimum height=2.5em, rounded corners]
- %\tikzstyle{compiler2}=[diamond, aspect=2, draw, fill=blue!20, text centered, rounded corners=1]
- \tikzstyle{compiler2}=[diamond, aspect=2, draw, text centered, rounded
- corners=1, text width=5.8em]
- %\tikzstyle{code}=[draw,shape=flippedpage,text width=2.7em, text centered, minimum height=3.7em,fill=white]
- \tikzstyle{code}=[draw,shape=flippedpage,text width=3em, text centered,
- minimum height=4.2em,fill=white]
- \tikzstyle{texttitle}=[fill=white, rounded corners, draw=black!50, dashed]
- \tikzstyle{background}=[fill=yellow!20, rounded corners, draw=black!50, dashed]
- \begin{center}
- %\begin{tikzpicture}[>=latex, node distance=3cm, on grid, auto]
- \begin{tikzpicture}[>=latex, on grid, auto, node distance=2.5cm]
- % Draw diagram elements
- \node (tomcomp) [compiler2] {\figcode{\textbf{Compilateur {\tom}}}};
- \node (tomcode) [code, below of=tomcomp] {\figcode{Tom \\ + \\ Java}};
- \node (mapping) [code, left of=tomcomp,xshift=-1.0cm] {\figcode{Ancrages algébriques}};
- \node (gomcomp) [compiler2, above of=mapping] {\figcode{\textbf{{\gom}}}};
- \node (gomsig) [code, left of=gomcomp,xshift=-1.0cm] {\figcode{Signature} \\ \figcode{Gom}};
-
- %\node (emfmapping) [code, left of=tomcomp,xshift=-1.0cm] {\figcode{Ancrages algébriques}};
- \node (tomemf) [compiler2, below of=mapping] {\figcode{\textbf{{\tomemf}}}};
- \node (emfstruct) [code, left of=tomemf,xshift=-1.0cm] {\figcode{Java EMF (MM)}};
- \node (javacode) [code, right of=tomcomp,xshift=1.0cm] {\figcode{Code Java}};
- \node (datastruct) [code, above of=javacode] {\figcode{Structures \\ de \\ données \\ Java}};
- \node (javacomp) [compiler2, right of=javacode,xshift=1.0cm] {\figcode{\textbf{Compilateur {\java}}}};
- \node (bytecode) [code, right of=javacomp,xshift=1.0cm] {\figcode{110010}\\\figcode{101110}\\\figcode{010100}};
- \path[->] (javacomp) edge (bytecode);
- \node (hand) [left of=mapping,xshift=-1.0cm,text width=3em, text centered]
- {\figcode{\textbf{Écriture à la main}}};
- % Draw arrows between elements
- \path[->] (hand) edge (mapping);
- \path[->] (gomsig) edge (gomcomp);
- \path[->] (gomcomp) edge (mapping);
- \path[->] (mapping) edge (tomcomp);
- %\path[->] (tomemf) edge (emfmapping);
- \path[->] (tomemf) edge (mapping);
- %\path[->] (emfmapping) edge (tomcomp);
- \path[->] (gomcomp.east) edge (datastruct);
- \draw[->] (datastruct) -- ++(3.5,0) -- (javacomp);
- \path[->] (emfstruct) edge (tomemf);
- \path[->] (tomcode) edge (tomcomp);
- \path[->] (tomcomp) edge (javacode);
- \path[->] (javacode) edge (javacomp);
- \draw[->] (emfstruct) -- ++(0,-1) -- ++(14,0) -- (javacomp);
- \end{tikzpicture}
- \end{center}
- \caption{Diagramme d'activité décrivant le processus de compilation d'un programme {\tom}}
- \label{fig:wholeTomProcess2}
- \end{figure}
|