aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore7
-rw-r--r--.project7
-rw-r--r--.texlipse14
-rwxr-xr-xbin/Manifest.txt1
-rwxr-xr-xbin/README.TXT20
-rw-r--r--report/bibliography.bib0
-rw-r--r--report/cover.tex49
-rw-r--r--report/document.tex44
-rw-r--r--report/project.tex105
-rw-r--r--report/report.tex20
-rw-r--r--report/resources/Logo_ESIEE_Paris_mono.pdfbin0 -> 2544 bytes
-rw-r--r--report/style/pascience-defaults.tex14
-rw-r--r--report/style/pascience-listings.tex19
-rw-r--r--report/style/pascience-numbering.tex19
-rw-r--r--report/style/pascience-pages.tex19
-rw-r--r--report/style/pascience-texts.tex25
-rw-r--r--report/style/pascience-titles.tex33
-rw-r--r--report/style/pascience-toc.tex5
-rw-r--r--report/work.tex1
-rw-r--r--website/assets/css/style.css76
-rw-r--r--website/assets/img/favicon.pngbin0 -> 503 bytes
-rw-r--r--website/assets/js/deployJava.js1305
-rw-r--r--website/assets/js/script.js48
-rw-r--r--website/index.html26
-rw-r--r--website/map.svg2
25 files changed, 1799 insertions, 60 deletions
diff --git a/.gitignore b/.gitignore
index c69c966..a819b04 100644
--- a/.gitignore
+++ b/.gitignore
@@ -77,3 +77,10 @@ local.properties
77 77
78*.bluej 78*.bluej
79*.ctxt 79*.ctxt
80
81######################
82# TeXlipse
83######################
84
85report/out/**
86report/tmp/** \ No newline at end of file
diff --git a/.project b/.project
index 7d9a832..fb4b1d7 100644
--- a/.project
+++ b/.project
@@ -2,17 +2,22 @@
2<projectDescription> 2<projectDescription>
3 <name>a3p-esieequest</name> 3 <name>a3p-esieequest</name>
4 <comment></comment> 4 <comment></comment>
5 <comment></comment>
6 <projects> 5 <projects>
7 </projects> 6 </projects>
8 <buildSpec> 7 <buildSpec>
9 <buildCommand> 8 <buildCommand>
9 <name>net.sourceforge.texlipse.builder.TexlipseBuilder</name>
10 <arguments>
11 </arguments>
12 </buildCommand>
13 <buildCommand>
10 <name>org.eclipse.jdt.core.javabuilder</name> 14 <name>org.eclipse.jdt.core.javabuilder</name>
11 <arguments> 15 <arguments>
12 </arguments> 16 </arguments>
13 </buildCommand> 17 </buildCommand>
14 </buildSpec> 18 </buildSpec>
15 <natures> 19 <natures>
20 <nature>net.sourceforge.texlipse.builder.TexlipseNature</nature>
16 <nature>org.eclipse.jdt.core.javanature</nature> 21 <nature>org.eclipse.jdt.core.javanature</nature>
17 </natures> 22 </natures>
18</projectDescription> 23</projectDescription>
diff --git a/.texlipse b/.texlipse
new file mode 100644
index 0000000..083a50d
--- /dev/null
+++ b/.texlipse
@@ -0,0 +1,14 @@
1#TeXlipse project settings
2#Wed Feb 12 10:30:04 CET 2014
3markTmpDer=true
4builderNum=2
5outputDir=report/out
6makeIndSty=
7bibrefDir=
8outputFormat=pdf
9tempDir=report/tmp
10mainTexFile=document.tex
11outputFile=document.pdf
12langSpell=en
13markDer=true
14srcDir=report
diff --git a/bin/Manifest.txt b/bin/Manifest.txt
deleted file mode 100755
index fcd916a..0000000
--- a/bin/Manifest.txt
+++ /dev/null
@@ -1 +0,0 @@
1Main-Class: esieequest.Main
diff --git a/bin/README.TXT b/bin/README.TXT
deleted file mode 100755
index bffd48d..0000000
--- a/bin/README.TXT
+++ /dev/null
@@ -1,20 +0,0 @@
1
2PROJECT TITLE:
3 ESIEEquest
4
5PURPOSE OF PROJECT:
6 A simple adventure game made as part of unit IGI-1002 (Java) at ESIEE Paris.
7
8VERSION or DATE:
9 2014 (E1)
10
11HOW TO START THIS PROJECT:
12 -
13
14AUTHORS:
15 Group 3F:
16 Pacien TRAN-GIRARD
17 Benoît LUBRANO DI SBARAGLIONE
18
19USER INSTRUCTIONS:
20 -
diff --git a/report/bibliography.bib b/report/bibliography.bib
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/report/bibliography.bib
diff --git a/report/cover.tex b/report/cover.tex
new file mode 100644
index 0000000..7fe943a
--- /dev/null
+++ b/report/cover.tex
@@ -0,0 +1,49 @@
1%%%%%%%%%%%%%%%%%%%%
2%% COVER
3%%%%%%%%%%%%%%%%%%%%
4
5\thispagestyle{empty}
6
7{\sffamily\centering\Large
8
9 ~\vspace{\fill}
10
11 {\Huge\bfseries
12 ESIEEquest - Project report
13 }
14
15 \vspace{0.4cm}
16
17 {\Huge
18 IGI-1002 A3P
19 }
20
21 \vspace{2.75cm}
22
23 {\Large\textcolor{gray25}{
24 Pacien TRAN-GIRARD
25 }}
26
27 {\Large\textcolor{gray25}{
28 Benoît LUBRANO DI SBARAGLIONE
29 }}
30
31 \vspace{0.25cm}
32
33% {\Large\textcolor{gray25}{
34% Supervisor: Pr. Cave JOHNSON
35% }}
36
37 \vspace{4cm}
38
39 \vspace{\fill}
40
41 \includegraphics{resources/Logo_ESIEE_Paris_mono}
42
43 \vspace{0.5cm}
44
45 {\large\textcolor{gray25}{
46 April 2014
47 }}
48
49}
diff --git a/report/document.tex b/report/document.tex
new file mode 100644
index 0000000..007276a
--- /dev/null
+++ b/report/document.tex
@@ -0,0 +1,44 @@
1%%%%%%%%%%%%%%%%%%%%
2%% HEADER
3%%%%%%%%%%%%%%%%%%%%
4
5\input{style/pascience-defaults}
6
7%\usepackage[francais]{babel}
8
9\input{style/pascience-pages}
10\input{style/pascience-numbering}
11
12\input{style/pascience-titles}
13\input{style/pascience-texts}
14
15\input{style/pascience-toc}
16
17\input{style/pascience-listings}
18
19
20%%%%%%%%%%%%%%%%%%%%
21%% DOCUMENT
22%%%%%%%%%%%%%%%%%%%%
23
24\begin{document}
25
26\input{cover}
27
28\clearpage
29%\cleardoublepage
30
31\tableofcontents*
32
33\clearpage
34
35
36\input{project}
37
38\input{work}
39
40\bibliographystyle{unsrt}
41\bibliography{bibliography}
42
43
44\end{document} \ No newline at end of file
diff --git a/report/project.tex b/report/project.tex
new file mode 100644
index 0000000..ea9c5ff
--- /dev/null
+++ b/report/project.tex
@@ -0,0 +1,105 @@
1\chapter{The project}
2
3\section{About}
4
5\subsection{Context}
6
7The development of this game was conducted in part of the project-based
8learning unit IGI-1002, in which students are asked to write a
9simple adventure game in Java.
10
11\subsection{Authors}
12
13This game was fully developped by Pacien TRAN-GIRARD and Benoît LUBRANO DI
14SBARAGLIONE, two first year students ('18) at ESIEE Paris.
15
16\section{The game}
17
18\subsection{Theme}
19
20A student attends a presentation at ESIEE Paris, when the Universe
21suddenly crashes. He must then find a way to reboot it.
22
23\subsection{Map}
24
25The map was divided into two parts: one playable, and one off-script.
26
27\subsubsection{Main map}
28
29The main map is the one in which the story unfolds, and where the player can
30move.
31The layout is based on the architecture of the building of the school, and only essential rooms are there.
32
33[Main map]
34
35\subsubsection{Off-script map}