Compare commits
12 Commits
Author | SHA1 | Date |
---|---|---|
Nicolas | ec34ad47b8 | 6 years ago |
Nicolas | 51722ab44e | 6 years ago |
Nicolas | c40d949ccc | 6 years ago |
Nicolas | fc3a9ae075 | 6 years ago |
Nicolas | a33bba5a6e | 6 years ago |
Nicolas | 3385e4cecb | 6 years ago |
Nicolas | d5c34cb3e3 | 6 years ago |
Nicolas | 6611a5b65f | 6 years ago |
Nicolas | 61fec1a10b | 6 years ago |
Nicolas | a159725229 | 6 years ago |
Nicolas | 89d3594fb7 | 6 years ago |
Nicolas | ce4c7d90a4 | 6 years ago |
@ -1,10 +1,20 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
<classpath>
|
<classpath>
|
||||||
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry exported="true" kind="lib" path="/home/nicolas/Bureau/jdbc-support-1.0.23-sources.jar">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry exported="true" kind="lib" path="/home/nicolas/Téléchargements/gson-2.8.5.jar">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry exported="true" kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="module" value="true"/>
|
<attribute name="module" value="true"/>
|
||||||
</attributes>
|
</attributes>
|
||||||
</classpathentry>
|
</classpathentry>
|
||||||
<classpathentry kind="src" path="src"/>
|
|
||||||
<classpathentry kind="output" path="bin"/>
|
<classpathentry kind="output" path="bin"/>
|
||||||
</classpath>
|
</classpath>
|
||||||
|
@ -0,0 +1,33 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<classpath>
|
||||||
|
<classpathentry kind="src" path="src"/>
|
||||||
|
<classpathentry excluding="src/" kind="src" path=""/>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="lib" path="/home/nicolas/Bureau/jdbc-support-1.0.23-sources.jar">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/gson">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="/home/nicolas/Téléchargements"/>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/5">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="lib" path="/home/nicolas/Téléchargements/gson-2.8.5.jar">
|
||||||
|
<attributes>
|
||||||
|
<attribute name="module" value="true"/>
|
||||||
|
</attributes>
|
||||||
|
</classpathentry>
|
||||||
|
<classpathentry kind="lib" path="/home/nicolas/Bureau/java-json.jar"/>
|
||||||
|
<classpathentry kind="output" path="bin"/>
|
||||||
|
</classpath>
|
@ -0,0 +1,17 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<projectDescription>
|
||||||
|
<name>projet</name>
|
||||||
|
<comment></comment>
|
||||||
|
<projects>
|
||||||
|
</projects>
|
||||||
|
<buildSpec>
|
||||||
|
<buildCommand>
|
||||||
|
<name>org.eclipse.jdt.core.javabuilder</name>
|
||||||
|
<arguments>
|
||||||
|
</arguments>
|
||||||
|
</buildCommand>
|
||||||
|
</buildSpec>
|
||||||
|
<natures>
|
||||||
|
<nature>org.eclipse.jdt.core.javanature</nature>
|
||||||
|
</natures>
|
||||||
|
</projectDescription>
|
@ -0,0 +1,12 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.targetPlatform=11
|
||||||
|
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
|
||||||
|
org.eclipse.jdt.core.compiler.compliance=11
|
||||||
|
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.localVariable=generate
|
||||||
|
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
|
||||||
|
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
|
||||||
|
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
|
||||||
|
org.eclipse.jdt.core.compiler.release=enabled
|
||||||
|
org.eclipse.jdt.core.compiler.source=11
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,79 @@
|
|||||||
|
!SESSION 2019-05-05 11:22:39.686 -----------------------------------------------
|
||||||
|
eclipse.buildId=4.10.0.I20181206-0815
|
||||||
|
java.version=11.0.2
|
||||||
|
java.vendor=Oracle Corporation
|
||||||
|
BootLoader constants: OS=linux, ARCH=x86_64, WS=gtk, NL=fr_FR
|
||||||
|
Framework arguments: -product org.eclipse.epp.package.java.product
|
||||||
|
Command-line arguments: -data /home/nicolas/Bureau/PROJET-PMT_STRI1A/JAVA/PROJET-PMT_STRI1A/src/json -os linux -ws gtk -arch x86_64 -product org.eclipse.epp.package.java.product
|
||||||
|
|
||||||
|
!ENTRY org.eclipse.mylyn.bugzilla.core 4 0 2019-05-05 11:22:40.315
|
||||||
|
!MESSAGE FrameworkEvent ERROR
|
||||||
|
!STACK 0
|
||||||
|
org.osgi.framework.BundleException: Could not resolve module: org.eclipse.mylyn.bugzilla.core [262]
|
||||||
|
Unresolved requirement: Require-Bundle: org.apache.xmlrpc
|
||||||
|
-> Bundle-SymbolicName: org.apache.xmlrpc; bundle-version="3.0.0.v20100427-1100"
|
||||||
|
org.apache.xmlrpc [54]
|
||||||
|
Unresolved requirement: Import-Package: javax.xml.bind
|
||||||
|
Unresolved requirement: Require-Bundle: org.eclipse.mylyn.commons.xmlrpc; bundle-version="[3.8.0,4.0.0)"
|
||||||
|
-> Bundle-SymbolicName: org.eclipse.mylyn.commons.xmlrpc; bundle-version="3.24.2.v20180904-2231"; singleton:="true"
|
||||||
|
org.eclipse.mylyn.commons.xmlrpc [279]
|
||||||
|
Unresolved requirement: Require-Bundle: org.apache.xmlrpc; bundle-version="[3.0.0,4.0.0)"
|
||||||
|
-> Bundle-SymbolicName: org.apache.xmlrpc; bundle-version="3.0.0.v20100427-1100"
|
||||||
|
|
||||||
|
at org.eclipse.osgi.container.Module.start(Module.java:451)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1783)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1762)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1725)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1656)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1)
|
||||||
|
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:233)
|
||||||
|
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:343)
|
||||||
|
|
||||||
|
!ENTRY org.eclipse.mylyn.bugzilla.ui 4 0 2019-05-05 11:22:40.320
|
||||||
|
!MESSAGE FrameworkEvent ERROR
|
||||||
|
!STACK 0
|
||||||
|
org.osgi.framework.BundleException: Could not resolve module: org.eclipse.mylyn.bugzilla.ui [264]
|
||||||
|
Unresolved requirement: Require-Bundle: org.eclipse.mylyn.bugzilla.core; bundle-version="[3.8.0,4.0.0)"
|
||||||
|
-> Bundle-SymbolicName: org.eclipse.mylyn.bugzilla.core; bundle-version="3.24.2.v20180905-0003"; singleton:="true"
|
||||||
|
org.eclipse.mylyn.bugzilla.core [262]
|
||||||
|
Unresolved requirement: Require-Bundle: org.apache.xmlrpc
|
||||||
|
-> Bundle-SymbolicName: org.apache.xmlrpc; bundle-version="3.0.0.v20100427-1100"
|
||||||
|
org.apache.xmlrpc [54]
|
||||||
|
Unresolved requirement: Import-Package: javax.xml.bind
|
||||||
|
Unresolved requirement: Require-Bundle: org.eclipse.mylyn.commons.xmlrpc; bundle-version="[3.8.0,4.0.0)"
|
||||||
|
-> Bundle-SymbolicName: org.eclipse.mylyn.commons.xmlrpc; bundle-version="3.24.2.v20180904-2231"; singleton:="true"
|
||||||
|
org.eclipse.mylyn.commons.xmlrpc [279]
|
||||||
|
Unresolved requirement: Require-Bundle: org.apache.xmlrpc; bundle-version="[3.0.0,4.0.0)"
|
||||||
|
-> Bundle-SymbolicName: org.apache.xmlrpc; bundle-version="3.0.0.v20100427-1100"
|
||||||
|
|
||||||
|
at org.eclipse.osgi.container.Module.start(Module.java:451)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1783)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1762)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1725)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1656)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1)
|
||||||
|
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:233)
|
||||||
|
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:343)
|
||||||
|
|
||||||
|
!ENTRY org.eclipse.mylyn.commons.xmlrpc 4 0 2019-05-05 11:22:40.325
|
||||||
|
!MESSAGE FrameworkEvent ERROR
|
||||||
|
!STACK 0
|
||||||
|
org.osgi.framework.BundleException: Could not resolve module: org.eclipse.mylyn.commons.xmlrpc [279]
|
||||||
|
Unresolved requirement: Require-Bundle: org.apache.xmlrpc; bundle-version="[3.0.0,4.0.0)"
|
||||||
|
-> Bundle-SymbolicName: org.apache.xmlrpc; bundle-version="3.0.0.v20100427-1100"
|
||||||
|
org.apache.xmlrpc [54]
|
||||||
|
Unresolved requirement: Import-Package: javax.xml.bind
|
||||||
|
|
||||||
|
at org.eclipse.osgi.container.Module.start(Module.java:451)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1783)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.incStartLevel(ModuleContainer.java:1762)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.doContainerStartLevel(ModuleContainer.java:1725)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1656)
|
||||||
|
at org.eclipse.osgi.container.ModuleContainer$ContainerStartLevel.dispatchEvent(ModuleContainer.java:1)
|
||||||
|
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:233)
|
||||||
|
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:343)
|
||||||
|
|
||||||
|
!ENTRY org.eclipse.mylyn.tasks.core 4 0 2019-05-05 11:22:43.007
|
||||||
|
!MESSAGE Unexpected error while loading repository template extensions
|
||||||
|
!SUBENTRY 1 org.eclipse.mylyn.tasks.core 4 0 2019-05-05 11:22:43.007
|
||||||
|
!MESSAGE Could not load repository template extension contributed by 'org.eclipse.mylyn.bugzilla.ide' with connectorKind 'bugzilla'
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
version=1
|
@ -0,0 +1,9 @@
|
|||||||
|
content_assist_proposals_background=252,252,252
|
||||||
|
content_assist_proposals_foreground=35,38,39
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.jdt.ui.formatterprofiles.version=15
|
||||||
|
org.eclipse.jdt.ui.text.code_templates_migrated=true
|
||||||
|
org.eclipse.jdt.ui.text.custom_code_templates=<?xml version\="1.0" encoding\="UTF-8" standalone\="no"?><templates/>
|
||||||
|
spelling_locale_initialized=true
|
||||||
|
useAnnotationsPrefPage=true
|
||||||
|
useQuickDiffPrefPage=true
|
@ -0,0 +1,2 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.m2e.discovery.pref.projects=
|
@ -0,0 +1,2 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
mylyn.attention.migrated=true
|
@ -0,0 +1,2 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
org.eclipse.mylyn.monitor.activity.tracking.enabled.checked=true
|
@ -0,0 +1,5 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
migrated.task.repositories.secure.store=true
|
||||||
|
org.eclipse.mylyn.tasks.ui.filters.nonmatching=true
|
||||||
|
org.eclipse.mylyn.tasks.ui.filters.nonmatching.encouraged=true
|
||||||
|
org.eclipse.mylyn.tasks.ui.welcome.message=true
|
@ -0,0 +1,5 @@
|
|||||||
|
PROBLEMS_FILTERS_MIGRATE=true
|
||||||
|
eclipse.preferences.version=1
|
||||||
|
platformState=1548420157012
|
||||||
|
quickStart=false
|
||||||
|
tipsAndTricks=true
|
@ -0,0 +1,2 @@
|
|||||||
|
eclipse.preferences.version=1
|
||||||
|
showIntro=false
|
@ -0,0 +1,3 @@
|
|||||||
|
//org.eclipse.ui.commands/state/org.eclipse.ui.navigator.resources.nested.changeProjectPresentation/org.eclipse.ui.commands.radioState=false
|
||||||
|
PLUGINS_NOT_ACTIVATED_ON_STARTUP=;org.eclipse.m2e.discovery;
|
||||||
|
eclipse.preferences.version=1
|
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<typeInfoHistroy/>
|
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<qualifiedTypeNameHistroy/>
|
@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<section name="Workbench">
|
||||||
|
<section name="org.eclipse.jdt.internal.ui.packageview.PackageExplorerPart">
|
||||||
|
<item value="2" key="layout"/>
|
||||||
|
<item value="true" key="group_libraries"/>
|
||||||
|
<item value="<?xml version="1.0" encoding="UTF-8"?>
<packageExplorer group_libraries="1" layout="2" linkWithEditor="0" rootMode="1" workingSetName="Aggregate for window 1557048163961">
<customFilters userDefinedPatternsEnabled="false">
<xmlDefinedFilters>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.StaticsFilter" isEnabled="false"/>
<child filterId="org.eclipse.buildship.ui.packageexplorer.filter.gradle.buildfolder" isEnabled="true"/>
<child filterId="org.eclipse.mylyn.java.ui.MembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer_patternFilterId_.*" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonSharedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.SyntheticMembersFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ContainedLibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.HideInnerClassFilesFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyInnerPackageFilter" isEnabled="true"/>
<child filterId="org.eclipse.m2e.MavenModuleFilter" isEnabled="false"/>
<child filterId="org.eclipse.buildship.ui.packageexplorer.filter.gradle.subProject" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ClosedProjectsFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.DeprecatedMembersFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.EmptyLibraryContainerFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.PackageDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.ImportDeclarationFilter" isEnabled="true"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonJavaElementFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LibraryFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.CuAndClassFileFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.internal.ui.PackageExplorer.EmptyPackageFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.NonPublicFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.LocalTypesFilter" isEnabled="false"/>
<child filterId="org.eclipse.jdt.ui.PackageExplorer.FieldsFilter" isEnabled="false"/>
</xmlDefinedFilters>
</customFilters>
</packageExplorer>" key="memento"/>
|
||||||
|
<item value="1" key="rootMode"/>
|
||||||
|
<item value="false" key="linkWithEditor"/>
|
||||||
|
</section>
|
||||||
|
<section name="JavaElementSearchActions">
|
||||||
|
</section>
|
||||||
|
</section>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1 @@
|
|||||||
|
2019-05-05 11:22:44,020 [Worker-1: Loading available Gradle versions] INFO o.e.b.c.i.u.g.PublishedGradleVersions - Gradle version information cache is up-to-date. Trying to read.
|
@ -0,0 +1,43 @@
|
|||||||
|
<configuration scan="true">
|
||||||
|
<appender name="STDOUT" class="ch.qos.logback.core.ConsoleAppender">
|
||||||
|
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
|
||||||
|
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
|
||||||
|
</encoder>
|
||||||
|
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
||||||
|
<level>OFF</level> <!-- change to DEBUG to mimic '-consolelog' behaviour -->
|
||||||
|
</filter>
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender">
|
||||||
|
<File>${org.eclipse.m2e.log.dir}/0.log</File>
|
||||||
|
<rollingPolicy class="ch.qos.logback.core.rolling.FixedWindowRollingPolicy">
|
||||||
|
<FileNamePattern>${org.eclipse.m2e.log.dir}/%i.log</FileNamePattern>
|
||||||
|
<MinIndex>1</MinIndex>
|
||||||
|
<MaxIndex>10</MaxIndex>
|
||||||
|
</rollingPolicy>
|
||||||
|
<triggeringPolicy class="ch.qos.logback.core.rolling.SizeBasedTriggeringPolicy">
|
||||||
|
<MaxFileSize>100MB</MaxFileSize>
|
||||||
|
</triggeringPolicy>
|
||||||
|
<encoder class="ch.qos.logback.classic.encoder.PatternLayoutEncoder">
|
||||||
|
<pattern>%date [%thread] %-5level %logger{35} - %msg%n</pattern>
|
||||||
|
</encoder>
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<appender name="EclipseLog" class="org.eclipse.m2e.logback.appender.EclipseLogAppender">
|
||||||
|
<filter class="ch.qos.logback.classic.filter.ThresholdFilter">
|
||||||
|
<level>WARN</level>
|
||||||
|
</filter>
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<appender name="MavenConsoleLog" class="org.eclipse.m2e.logback.appender.MavenConsoleAppender">
|
||||||
|
</appender>
|
||||||
|
|
||||||
|
<root level="INFO">
|
||||||
|
<appender-ref ref="FILE" />
|
||||||
|
<appender-ref ref="STDOUT" />
|
||||||
|
<appender-ref ref="EclipseLog" />
|
||||||
|
<appender-ref ref="MavenConsoleLog" />
|
||||||
|
</root>
|
||||||
|
|
||||||
|
<logger name="com.ning.http.client" level="INFO" />
|
||||||
|
</configuration>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<setup:Workspace
|
||||||
|
xmi:version="2.0"
|
||||||
|
xmlns:xmi="http://www.omg.org/XMI"
|
||||||
|
xmlns:setup="http://www.eclipse.org/oomph/setup/1.0"
|
||||||
|
name="workspace"/>
|
@ -0,0 +1,3 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<section name="Workbench">
|
||||||
|
</section>
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<section name="Workbench">
|
||||||
|
<section name="WORKBENCH_SETTINGS">
|
||||||
|
<list key="ENABLED_TRANSFERS">
|
||||||
|
</list>
|
||||||
|
</section>
|
||||||
|
<section name="ChooseWorkspaceDialogSettings">
|
||||||
|
<item value="185" key="DIALOG_X_ORIGIN"/>
|
||||||
|
<item value="114" key="DIALOG_Y_ORIGIN"/>
|
||||||
|
</section>
|
||||||
|
</section>
|
@ -0,0 +1,2 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<state reopen="false"/>
|
@ -0,0 +1,15 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<section name="Workbench">
|
||||||
|
<section name="org.eclipse.ui.internal.QuickAccess">
|
||||||
|
<item value="-1" key="dialogHeight"/>
|
||||||
|
<item value="-1" key="dialogWidth"/>
|
||||||
|
<list key="textEntries">
|
||||||
|
</list>
|
||||||
|
<list key="orderedElements">
|
||||||
|
</list>
|
||||||
|
<list key="orderedProviders">
|
||||||
|
</list>
|
||||||
|
<list key="textArray">
|
||||||
|
</list>
|
||||||
|
</section>
|
||||||
|
</section>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8"?>
|
||||||
|
<workingSetManager>
|
||||||
|
<workingSet editPageId="org.eclipse.jdt.internal.ui.DynamicSourcesWorkingSet" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1557048163502_0" label="Java Main Sources" name="Java Main Sources"/>
|
||||||
|
<workingSet editPageId="org.eclipse.jdt.internal.ui.DynamicSourcesWorkingSet" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1557048163509_1" label="Java Test Sources" name="Java Test Sources"/>
|
||||||
|
<workingSet aggregate="true" factoryID="org.eclipse.ui.internal.WorkingSetFactory" id="1557048163961_2" label="Window Working Set" name="Aggregate for window 1557048163961"/>
|
||||||
|
</workingSetManager>
|
@ -0,0 +1,3 @@
|
|||||||
|
#Sun May 05 11:22:40 CEST 2019
|
||||||
|
org.eclipse.core.runtime=2
|
||||||
|
org.eclipse.platform=4.10.0.v20181206-0815
|
@ -0,0 +1,29 @@
|
|||||||
|
package json;
|
||||||
|
|
||||||
|
|
||||||
|
import java.io.BufferedReader;
|
||||||
|
import java.io.FileNotFoundException;
|
||||||
|
import java.io.FileReader;
|
||||||
|
|
||||||
|
import com.google.gson.Gson;
|
||||||
|
|
||||||
|
import modeles.*;
|
||||||
|
public class Generateur {
|
||||||
|
|
||||||
|
public Labyrinthe labyrithe() {
|
||||||
|
BufferedReader bfr= null;
|
||||||
|
try {
|
||||||
|
bfr = new BufferedReader(new FileReader("/home/nicolas/workspqce_eclipse/projet/src/json/lab.json"));
|
||||||
|
} catch (FileNotFoundException e) {
|
||||||
|
// TODO Auto-generated catch block
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
//FileReader file = new FileReader(json);
|
||||||
|
Gson gson = new Gson();
|
||||||
|
//String str="{\"positionX\":0,\"positionY\":0,\"sortie\":false,\"monstre\":[{\"nom\":\"premier monstre\",\"pAttaque\":5}],\"porte\":[{\"ouvert\":true, \"position\":\"H\"}]}";
|
||||||
|
Labyrinthe labyrithe = gson.fromJson(bfr, Labyrinthe.class);
|
||||||
|
return labyrithe;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,30 @@
|
|||||||
|
package json;
|
||||||
|
import modeles.Salle;
|
||||||
|
import com.google.gson.Gson;
|
||||||
|
|
||||||
|
public class gsonGenerator {
|
||||||
|
String chaineJson;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param chaineJson
|
||||||
|
*/
|
||||||
|
public gsonGenerator() {
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
/*chaine json =
|
||||||
|
"{'positionX':0,
|
||||||
|
'positionY':0,
|
||||||
|
'sortie':false,
|
||||||
|
'monstre':[{'nom':premier monstre,'pAttaque':5}],
|
||||||
|
'porte':[{'ouvert':=true, 'position':"H"}]}"
|
||||||
|
*/
|
||||||
|
public Salle generate(String chaine) {
|
||||||
|
Gson gson = new Gson();
|
||||||
|
Salle salle = gson.fromJson(chaine, Salle.class);
|
||||||
|
System.out.println(salle.estVide());
|
||||||
|
return salle;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
|
||||||
|
{
|
||||||
|
"listePersonnage":[
|
||||||
|
{
|
||||||
|
"nom":"test",
|
||||||
|
"pVieMax":10,
|
||||||
|
"pVie":10,
|
||||||
|
"pAttaque":20,
|
||||||
|
"arme":null,
|
||||||
|
"armure":null,
|
||||||
|
"bourse":null
|
||||||
|
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"listeSalle":[
|
||||||
|
|
||||||
|
{
|
||||||
|
"positionX":0,
|
||||||
|
"positionY":0,
|
||||||
|
"sortie":false,
|
||||||
|
"listeEnnemie":[{"nom":"premiermonstre",
|
||||||
|
"pAttaque":5}
|
||||||
|
],
|
||||||
|
"listePorte":[{"ouvert":true,
|
||||||
|
"orientation":"H"}]
|
||||||
|
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"listeArme":[
|
||||||
|
{"nom":"arme1",
|
||||||
|
"prix":10,
|
||||||
|
"resistance":10,
|
||||||
|
"pArme":10}],
|
||||||
|
"listeArmure":[ {"nom":"armure1",
|
||||||
|
"prix":10,
|
||||||
|
"resistance":10,
|
||||||
|
"pArmure":10}],
|
||||||
|
|
||||||
|
"listePorte":[
|
||||||
|
{
|
||||||
|
"id":1,
|
||||||
|
"ouvert":false,
|
||||||
|
"orientation":"Z",
|
||||||
|
}
|
||||||
|
|
||||||
|
],
|
||||||
|
"listeMonstre":[{"nom":"premiermonstre",
|
||||||
|
"pAttaque":5}]
|
||||||
|
}
|
@ -0,0 +1,22 @@
|
|||||||
|
package json;
|
||||||
|
|
||||||
|
|
||||||
|
import modeles.Arme;
|
||||||
|
import modeles.Labyrinthe;
|
||||||
|
import modeles.Monstre;
|
||||||
|
|
||||||
|
public class main {
|
||||||
|
|
||||||
|
public static void main(String[] args) {
|
||||||
|
gsonGenerator generateur = new gsonGenerator();
|
||||||
|
|
||||||
|
Generateur gene = new Generateur();
|
||||||
|
Labyrinthe lab = gene.labyrithe();
|
||||||
|
//lab.getListeSalle();
|
||||||
|
Monstre monstre =new Monstre("test",5);
|
||||||
|
Arme arme = new Arme("arme1", 10, 10, 10);
|
||||||
|
System.out.println("");
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -1,17 +1,112 @@
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
package modeles;
|
package modeles;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author flavien
|
* @author Nicolas
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class EtreVivant {
|
public class EtreVivant {
|
||||||
private int pVieMax;
|
|
||||||
private int pVie;
|
private String nom;
|
||||||
|
protected int pVieMax;
|
||||||
|
protected int pVie;
|
||||||
private int pAttaque;
|
private int pAttaque;
|
||||||
private Salle salle;
|
protected Salle salle;
|
||||||
private boolean vivant;
|
private boolean vivant;
|
||||||
|
/**
|
||||||
|
* @param nom
|
||||||
|
* @param pVieMax
|
||||||
|
* @param pVie
|
||||||
|
* @param pAttaque
|
||||||
|
* @param salle
|
||||||
|
* @param vivant
|
||||||
|
*/
|
||||||
|
public EtreVivant() {
|
||||||
|
|
||||||
|
}
|
||||||
|
public EtreVivant(String nom, int pVieMax, int pAttaque,Salle salle) {
|
||||||
|
super();
|
||||||
|
this.nom = nom;
|
||||||
|
this.pVieMax = pVieMax;
|
||||||
|
this.pVie = pVieMax;
|
||||||
|
this.pAttaque = pAttaque;
|
||||||
|
this.salle=salle;
|
||||||
|
this.vivant = true;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the nom
|
||||||
|
*/
|
||||||
|
public String getNom() {
|
||||||
|
return nom;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param nom the nom to set
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @return the pVieMax
|
||||||
|
*/
|
||||||
|
public int getpVieMax() {
|
||||||
|
return pVieMax;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param pVieMax the pVieMax to set
|
||||||
|
*/
|
||||||
|
public void setpVieMax(int pVieMax) {
|
||||||
|
this.pVieMax = pVieMax;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the pVie
|
||||||
|
*/
|
||||||
|
public int getpVie() {
|
||||||
|
return pVie;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param pVie the pVie to set
|
||||||
|
*/
|
||||||
|
public void setpVie(int pVie) {
|
||||||
|
this.pVie = pVie;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the pAttaque
|
||||||
|
*/
|
||||||
|
public int getpAttaque() {
|
||||||
|
return pAttaque;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param pAttaque the pAttaque to set
|
||||||
|
*/
|
||||||
|
public void setpAttaque(int pAttaque) {
|
||||||
|
this.pAttaque = pAttaque;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @return the salle
|
||||||
|
|
||||||
|
public Salle getSalle() {
|
||||||
|
return salle;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSalle(Salle salle) {
|
||||||
|
this.salle = salle;
|
||||||
|
}
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @return the vivant
|
||||||
|
*/
|
||||||
|
public boolean isVivant() {
|
||||||
|
return vivant;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* @param vivant the vivant to set
|
||||||
|
*/
|
||||||
|
public void setVivant(boolean vivant) {
|
||||||
|
this.vivant = vivant;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPvMax() {
|
||||||
|
return this.pVieMax;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,56 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
package modeles;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @author nicolas
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public class Menu {
|
||||||
|
public String menuCombat(Monstre mons, Personnage perso) {
|
||||||
|
int degat;
|
||||||
|
int reponse = 0;
|
||||||
|
System.out.println("Un monstre du nom de "+mons.getNom()+" se présente devant vous et il est très en colère :");
|
||||||
|
while (true){
|
||||||
|
System.out.println("\t - 1° attaquer\n\t - 2° Potion \n\t- 3° Fuir");
|
||||||
|
reponse=Clavier.entrerClavierInt();
|
||||||
|
switch (reponse) {
|
||||||
|
case 1:
|
||||||
|
degat = perso.attaquer(mons);
|
||||||
|
System.out.println("Vous avez infligé "+degat+" à votre adversaire.");
|
||||||
|
if (!mons.isVivant()) {
|
||||||
|
perso.salle.cle();
|
||||||
|
return "Votre ennemie trépasse et vous obtenez la clé des portes de la salle.";
|
||||||
|
} else {
|
||||||
|
System.out.println("Au tour de votre adversaire. Il attaque préparez vous ! ");
|
||||||
|
System.out.println("il vous inflige "+ mons.attaquer(perso)+".");
|
||||||
|
if (!perso.isVivant()) {
|
||||||
|
return "C'est ainsi que vous trépassez sous les coups des ténèbres. Reposez vous héros... Vous avez l'éternité.";
|
||||||
|
}
|
||||||
|
else System.out.println("votre ennemie n'est pas encore à bout achever le !");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 2 :
|
||||||
|
if (!perso.getPotion().isEmpty()) {
|
||||||
|
perso.utiliser(perso.getPotion().remove(0));
|
||||||
|
System.out.println("Vous avez utilisé une potion. Votre vie est maintenant au maximum.");
|
||||||
|
} else {
|
||||||
|
System.out.println("Il ne vous reste plus de potion. Désolé.");
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case 3 :
|
||||||
|
System.out.println("Vous tentez de fuir.");
|
||||||
|
Random rd = new Random();
|
||||||
|
if (rd.nextInt(100)<50) {
|
||||||
|
return "Vous avez fuit.";
|
||||||
|
} else {
|
||||||
|
System.out.println("Ce fut un échec !");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}s
|
||||||
|
}
|
@ -1,22 +1,85 @@
|
|||||||
package modeles;
|
package modeles;
|
||||||
|
|
||||||
/**
|
import java.util.ArrayList;
|
||||||
* @author flavien
|
import java.util.List;
|
||||||
*
|
|
||||||
*/
|
|
||||||
public class Personnage extends EtreVivant {
|
public class Personnage extends EtreVivant {
|
||||||
public void equiper(Arme arme, Armure armure) {
|
|
||||||
|
|
||||||
|
private Arme arme;
|
||||||
|
private Armure armure;
|
||||||
|
private Bourse bourse;
|
||||||
|
private List<Potion> listepotion= new ArrayList<Potion>();
|
||||||
|
|
||||||
|
public Personnage(String nom, int pVieMax,int pAttaque, Salle salle) {
|
||||||
|
super(nom, pVieMax, pAttaque, salle);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void equiper(Arme arme) {
|
||||||
|
arme.setProprietaire(this);
|
||||||
|
this.arme=arme;
|
||||||
|
}
|
||||||
|
public void equiper(Armure armure) {
|
||||||
|
armure.setProprietaire(this);
|
||||||
|
this.armure=armure;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void utiliser(Potion potion) {
|
public void utiliser(Potion potion) {
|
||||||
|
soin();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void seDeplacer(Salle salle) {
|
||||||
|
this.salle=salle;
|
||||||
}
|
}
|
||||||
public void seDeplacer() {
|
|
||||||
|
|
||||||
|
public void allerMarche(Salle marche){
|
||||||
|
this.salle=marche;
|
||||||
}
|
}
|
||||||
public void allerMarche(Salle salle){
|
|
||||||
|
|
||||||
|
public List<Potion> getPotion() {
|
||||||
|
return this.listepotion;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void gagnerUnePotion() {
|
||||||
|
Potion potion=new Potion(100);
|
||||||
|
listepotion.add(potion);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void soin() {
|
||||||
|
this.pVie=this.pVieMax;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int attaquer(Monstre monstre) {
|
||||||
|
if(arme!=null) {
|
||||||
|
monstre.pVie=monstre.pVie-(arme.getpArme()+getpAttaque());
|
||||||
|
return arme.getpArme()+getpAttaque();
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
monstre.pVie=monstre.pVie=getpAttaque();
|
||||||
|
return getpAttaque();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Bourse getBourse() {
|
||||||
|
return this.bourse;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void getValeurBourse() {
|
||||||
|
System.out.println(this.getBourse().getValeur());
|
||||||
|
}
|
||||||
|
/* @return the arme
|
||||||
|
*/
|
||||||
|
public Arme getArme() {
|
||||||
|
return arme;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* @return the armure
|
||||||
|
*/
|
||||||
|
public Armure getArmure() {
|
||||||
|
return armure;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void soin(int heal) {
|
||||||
|
if (pVie+heal > pVieMax)pVie=pVieMax;
|
||||||
|
else pVie+=heal;
|
||||||
|
}
|
||||||
}
|
}
|
@ -1,19 +1,66 @@
|
|||||||
/**
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
package modeles;
|
package modeles;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author flavien
|
* @author flavien
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public class Salle {
|
public class Salle {
|
||||||
private int positionX;
|
public static int positionX;
|
||||||
private int positionY;
|
/**
|
||||||
private boolean sortie;
|
* @param positionX
|
||||||
|
* @param positionY
|
||||||
|
* @param sortie
|
||||||
|
* @param listeEnnemie
|
||||||
|
* @param listePorte
|
||||||
|
*/
|
||||||
|
|
||||||
|
public Salle(int positionX, int positionY, boolean sortie, List<Integer> listeEnnemie) {
|
||||||
|
this.positionX=positionX;
|
||||||
|
this.positionY = positionY;
|
||||||
|
this.sortie = sortie;
|
||||||
|
this.listeEnnemie = listeEnnemie;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Salle(int positionX, int positionY, boolean sortie, List<Integer> listeEnnemie, Porte sal) {
|
||||||
|
this.positionX = positionX;
|
||||||
|
this.positionY = positionY;
|
||||||
|
this.sortie = sortie;
|
||||||
|
this.listeEnnemie = listeEnnemie;
|
||||||
|
this.listePorte.add(sal.getId());
|
||||||
|
}
|
||||||
|
|
||||||
|
public Salle() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int positionY;
|
||||||
|
private static boolean sortie;
|
||||||
|
private static List<Integer> listeEnnemie= new ArrayList<Integer>();
|
||||||
|
private static List<Integer> listePorte = new ArrayList<Integer>();
|
||||||
|
|
||||||
public String getType(){
|
public String getType(){
|
||||||
return"type";
|
return "salle";
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPositionX() {
|
||||||
|
return positionX;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getPositionY() {
|
||||||
|
return positionY;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean estSortie() {
|
||||||
|
return sortie;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean estVide() {
|
||||||
|
return listeEnnemie.isEmpty();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -0,0 +1,12 @@
|
|||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
/**
|
||||||
|
* @author nicolas
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
module projet {
|
||||||
|
requires gson;
|
||||||
|
requires java.sql;
|
||||||
|
opens modeles to gson;
|
||||||
|
}
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue