www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 32dfe4070256e7508690e915e906bcd9bb4bb9f6
parent d5fc4f59c1fd11f50da99e46c74f447fb62b83fd
Author: Bertrand BRUN <bertrand0brun@gmail.com>
Date:   Mon, 23 May 2011 17:17:55 +0200

Merge branch 'unstable' of https://github.com/jsmaniac/2011-m1s2-ter into unstable

Diffstat:
Mpresentation/presentation.tex | 36++++++++++++++++++++++++++++++++++--
1 file changed, 34 insertions(+), 2 deletions(-)

diff --git a/presentation/presentation.tex b/presentation/presentation.tex @@ -5,6 +5,8 @@ \usetikzlibrary{shapes,positioning,snakes,calc} \usetheme{Warsaw} +% \setbeamercolor{alerted text}{fg=blue} + \def\android{Android\texttrademark} \title{FMIN200 \\ TER~: Reconception du jeu PtiClic sous \android{}} @@ -106,7 +108,6 @@ \end{itemize} \end{frame} - \begin{frame} \begin{figure}[h!] \centering @@ -281,5 +282,36 @@ Merci de votre attention... \\ Avez-vous des questions~? \end{frame} -\end{document} +\begin{frame} + \begin{tikzpicture}[ + state/.style={draw, text width=2.3cm}, + transition/.style={dashed,->} + ] + \node[state] (frontpage) {\begin{center}Page de garde\end{center}}; + \node[state, below=of frontpage] (game) {\begin{center}Jeu\end{center}}; + \node[state, below=of game] (score) {\begin{center}Score\end{center}}; + + \draw[transition] (frontpage) -- (game); + \draw[transition] (game) -- (score); + \draw[transition] (score) -- ++(-2cm,0) |- (frontpage); + \draw[transition] (game.north east) ++(-0.3cm,0) arc (180:-90:0.3cm); + + \node[state,text width=1.2cm, right=of frontpage] (activite) {Activité}; + \draw[transition] ($(activite.south)+(-.75cm,-.5cm)$) -- node[auto,swap,font=\footnotesize,scale=0.8] {\shortstack{\shortstack{Évènement\\(Intent)}}} ($(activite.south)+(.75cm,-.5cm)$); + \end{tikzpicture} +\end{frame} +\begin{frame} + \begin{tikzpicture}[bend angle=10, shorten >=0.1cm, shorten <=0.1cm] + \node[draw] (activite) {Activité}; + \node[draw,below right=of activite] (modele) {Modèle}; + \node[draw,below left=of activite] (xml) {Vue (XML)}; + \draw[->] (activite) edge[bend right] (modele); + \draw[->] (modele) edge[bend right] (activite); + \draw[->] (activite) edge[bend left] (xml); + \draw[->] (xml) edge[bend left] (activite); + \end{tikzpicture} +\end{frame} + + +\end{document}