Fin du Tp1, et début du tp2 avec l'ajout de la bare de menu
mais non fonctionnel
This commit is contained in:
parent
0227942584
commit
2dea86f195
@ -1,9 +1,10 @@
|
||||
annotation.processing.enabled=true
|
||||
annotation.processing.enabled.in.editor=false
|
||||
annotation.processing.processor.options=
|
||||
annotation.processing.processors.list=
|
||||
annotation.processing.run.all.processors=true
|
||||
annotation.processing.source.output=${build.generated.sources.dir}/ap-source-output
|
||||
application.title=JDR
|
||||
application.vendor=emile.lalorcey
|
||||
build.classes.dir=${build.dir}/classes
|
||||
build.classes.excludes=**/*.java,**/*.form
|
||||
# This directory is removed when the project is cleaned:
|
||||
@ -32,6 +33,7 @@ dist.jar=${dist.dir}/JDR.jar
|
||||
dist.javadoc.dir=${dist.dir}/javadoc
|
||||
dist.jlink.dir=${dist.dir}/jlink
|
||||
dist.jlink.output=${dist.jlink.dir}/JDR
|
||||
endorsed.classpath=
|
||||
excludes=
|
||||
includes=**
|
||||
jar.compress=false
|
||||
@ -72,7 +74,7 @@ jlink.additionalmodules=
|
||||
jlink.additionalparam=
|
||||
jlink.launcher=true
|
||||
jlink.launcher.name=JDR
|
||||
main.class=jdr.JDR
|
||||
main.class=Presentation.Plateau_de_jeu
|
||||
manifest.file=manifest.mf
|
||||
meta.inf.dir=${src.dir}/META-INF
|
||||
mkdist.disabled=false
|
||||
|
@ -2,36 +2,77 @@
|
||||
|
||||
<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
|
||||
<NonVisualComponents>
|
||||
<Container class="javax.swing.JScrollPane" name="jScrollPane1">
|
||||
<AuxValues>
|
||||
<AuxValue name="autoScrollPane" type="java.lang.Boolean" value="true"/>
|
||||
</AuxValues>
|
||||
|
||||
<Layout class="org.netbeans.modules.form.compat2.layouts.support.JScrollPaneSupportLayout"/>
|
||||
<Menu class="javax.swing.JMenuBar" name="jMenuBar1">
|
||||
<SubComponents>
|
||||
<Component class="javax.swing.JList" name="jList1">
|
||||
<Menu class="javax.swing.JMenu" name="jMenuJeu">
|
||||
<Properties>
|
||||
<Property name="model" type="javax.swing.ListModel" editor="org.netbeans.modules.form.editors2.ListModelEditor">
|
||||
<StringArray count="5">
|
||||
<StringItem index="0" value="Item 1"/>
|
||||
<StringItem index="1" value="Item 2"/>
|
||||
<StringItem index="2" value="Item 3"/>
|
||||
<StringItem index="3" value="Item 4"/>
|
||||
<StringItem index="4" value="Item 5"/>
|
||||
</StringArray>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Jeu"/>
|
||||
</Properties>
|
||||
<AuxValues>
|
||||
<AuxValue name="JavaCodeGenerator_TypeParameters" type="java.lang.String" value="<String>"/>
|
||||
</AuxValues>
|
||||
</Component>
|
||||
<SubComponents>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="jMInewGame">
|
||||
<Properties>
|
||||
<Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor">
|
||||
<KeyStroke key="Ctrl+N"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="New Game"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMInewGameActionPerformed"/>
|
||||
</Events>
|
||||
</MenuItem>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="jMInewPlayer">
|
||||
<Properties>
|
||||
<Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor">
|
||||
<KeyStroke key="ADD"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="New Player"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMInewPlayerActionPerformed"/>
|
||||
</Events>
|
||||
</MenuItem>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="jMIopenGame">
|
||||
<Properties>
|
||||
<Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor">
|
||||
<KeyStroke key="Ctrl+O"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Open Game"/>
|
||||
</Properties>
|
||||
</MenuItem>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="jMIsave">
|
||||
<Properties>
|
||||
<Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor">
|
||||
<KeyStroke key="Ctrl+S"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Save"/>
|
||||
</Properties>
|
||||
</MenuItem>
|
||||
<MenuItem class="javax.swing.JMenuItem" name="jMIquit">
|
||||
<Properties>
|
||||
<Property name="accelerator" type="javax.swing.KeyStroke" editor="org.netbeans.modules.form.editors.KeyStrokeEditor">
|
||||
<KeyStroke key="Ctrl+Q"/>
|
||||
</Property>
|
||||
<Property name="text" type="java.lang.String" value="Exit"/>
|
||||
</Properties>
|
||||
<Events>
|
||||
<EventHandler event="actionPerformed" listener="java.awt.event.ActionListener" parameters="java.awt.event.ActionEvent" handler="jMIquitActionPerformed"/>
|
||||
</Events>
|
||||
</MenuItem>
|
||||
</SubComponents>
|
||||
</Menu>
|
||||
<Menu class="javax.swing.JMenu" name="jMenu2">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" value="Edit"/>
|
||||
</Properties>
|
||||
</Menu>
|
||||
</SubComponents>
|
||||
</Container>
|
||||
</Menu>
|
||||
</NonVisualComponents>
|
||||
<Properties>
|
||||
<Property name="defaultCloseOperation" type="int" value="3"/>
|
||||
</Properties>
|
||||
<SyntheticProperties>
|
||||
<SyntheticProperty name="menuBar" type="java.lang.String" value="jMenuBar1"/>
|
||||
<SyntheticProperty name="formSizePolicy" type="int" value="1"/>
|
||||
<SyntheticProperty name="generateCenter" type="boolean" value="false"/>
|
||||
</SyntheticProperties>
|
||||
@ -53,7 +94,7 @@
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jPanel1" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="-524" max="32767" attributes="0"/>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -62,7 +103,7 @@
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jPanel1" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="14" max="32767" attributes="0"/>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -77,7 +118,7 @@
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jPJeu" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="JPFondListePerso" min="-2" pref="196" max="-2" attributes="0"/>
|
||||
<Component id="JPFondListePerso" min="-2" pref="226" max="-2" attributes="0"/>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
@ -111,9 +152,14 @@
|
||||
</Layout>
|
||||
<SubComponents>
|
||||
<Component class="javax.swing.JLabel" name="jLImageListePerso">
|
||||
<Properties>
|
||||
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
|
||||
<Image iconType="3" name="/img/adj_1.jpg"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Constraints>
|
||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
|
||||
<AbsoluteConstraints x="40" y="10" width="130" height="80"/>
|
||||
<AbsoluteConstraints x="20" y="0" width="190" height="100"/>
|
||||
</Constraint>
|
||||
</Constraints>
|
||||
</Component>
|
||||
@ -126,7 +172,7 @@
|
||||
</AuxValues>
|
||||
<Constraints>
|
||||
<Constraint layoutClass="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout" value="org.netbeans.modules.form.compat2.layouts.DesignAbsoluteLayout$AbsoluteConstraintsDescription">
|
||||
<AbsoluteConstraints x="30" y="100" width="148" height="360"/>
|
||||
<AbsoluteConstraints x="10" y="110" width="210" height="350"/>
|
||||
</Constraint>
|
||||
</Constraints>
|
||||
|
||||
@ -155,23 +201,27 @@
|
||||
<Layout>
|
||||
<DimensionLayout dim="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace pref="15" max="32767" attributes="0"/>
|
||||
<Component id="jPChoixPerso" min="-2" pref="528" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="54" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" attributes="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="215" max="-2" attributes="0"/>
|
||||
<Component id="jLChoixPerso" min="-2" pref="151" max="-2" attributes="0"/>
|
||||
<Group type="102" attributes="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" attributes="0">
|
||||
<EmptySpace min="-2" pref="236" max="-2" attributes="0"/>
|
||||
<Component id="jBGo" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="172" max="-2" attributes="0"/>
|
||||
<Component id="jLChoixPerso" min="-2" pref="239" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace min="0" pref="0" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="236" max="-2" attributes="0"/>
|
||||
<Component id="jBGo" min="-2" max="-2" attributes="0"/>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace min="0" pref="15" max="32767" attributes="0"/>
|
||||
<Component id="jPChoixPerso" min="-2" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -179,8 +229,8 @@
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
<Component id="jLChoixPerso" min="-2" pref="78" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="32" max="-2" attributes="0"/>
|
||||
<Component id="jLChoixPerso" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="jPChoixPerso" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jBGo" min="-2" max="-2" attributes="0"/>
|
||||
@ -191,6 +241,11 @@
|
||||
</Layout>
|
||||
<SubComponents>
|
||||
<Component class="javax.swing.JLabel" name="jLChoixPerso">
|
||||
<Properties>
|
||||
<Property name="icon" type="javax.swing.Icon" editor="org.netbeans.modules.form.editors2.IconEditor">
|
||||
<Image iconType="3" name="/img/famille_1.jpg"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
<Container class="javax.swing.JPanel" name="jPChoixPerso">
|
||||
|
||||
@ -205,7 +260,7 @@
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
<Component id="jPCHoixPersoFond" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="70" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -240,18 +295,18 @@
|
||||
<DimensionLayout dim="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="81" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="101" max="-2" attributes="0"/>
|
||||
<Component id="jCBoxAttaquant" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
<Component id="jCBoxDefenseur" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="75" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="107" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace min="-2" pref="27" max="-2" attributes="0"/>
|
||||
<Component id="jPAttaquant" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="80" max="32767" attributes="0"/>
|
||||
<EmptySpace pref="57" max="32767" attributes="0"/>
|
||||
<Component id="jPDefenseur" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="38" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="26" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
@ -321,24 +376,24 @@
|
||||
<Layout>
|
||||
<DimensionLayout dim="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" attributes="0">
|
||||
<EmptySpace min="-2" pref="25" max="-2" attributes="0"/>
|
||||
<Component id="jLImageAttaquant" min="-2" pref="99" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="51" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane3" pref="0" max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace pref="68" max="32767" attributes="0"/>
|
||||
<Component id="jLImageAttaquant" min="-2" pref="99" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="59" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
<DimensionLayout dim="1">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane3" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane3" min="-2" pref="92" max="-2" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jLImageAttaquant" min="-2" pref="63" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="15" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
@ -361,12 +416,14 @@
|
||||
<SubComponents>
|
||||
<Component class="javax.swing.JTextArea" name="jTAAttaquantCaracteristiques">
|
||||
<Properties>
|
||||
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="0" green="0" red="66" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="columns" type="int" value="20"/>
|
||||
<Property name="rows" type="int" value="5"/>
|
||||
<Property name="cursor" type="java.awt.Cursor" editor="org.netbeans.modules.form.editors2.CursorEditor">
|
||||
<Color id="Text Cursor"/>
|
||||
</Property>
|
||||
<Property name="opaque" type="boolean" value="false"/>
|
||||
</Properties>
|
||||
</Component>
|
||||
</SubComponents>
|
||||
@ -383,24 +440,24 @@
|
||||
<Layout>
|
||||
<DimensionLayout dim="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" attributes="0">
|
||||
<EmptySpace min="-2" pref="31" max="-2" attributes="0"/>
|
||||
<Component id="jLImageDefenseur" min="-2" pref="98" max="-2" attributes="0"/>
|
||||
<EmptySpace pref="38" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane4" pref="0" max="32767" attributes="0"/>
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
</Group>
|
||||
<Group type="102" alignment="1" attributes="0">
|
||||
<EmptySpace pref="64" max="32767" attributes="0"/>
|
||||
<Component id="jLImageDefenseur" min="-2" pref="98" max="-2" attributes="0"/>
|
||||
<EmptySpace min="-2" pref="64" max="-2" attributes="0"/>
|
||||
</Group>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
<DimensionLayout dim="1">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<Group type="102" alignment="0" attributes="0">
|
||||
<EmptySpace max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane4" min="-2" max="-2" attributes="0"/>
|
||||
<EmptySpace type="separate" max="-2" attributes="0"/>
|
||||
<Component id="jScrollPane4" min="-2" pref="92" max="-2" attributes="0"/>
|
||||
<EmptySpace type="unrelated" max="-2" attributes="0"/>
|
||||
<Component id="jLImageDefenseur" min="-2" pref="53" max="-2" attributes="0"/>
|
||||
<EmptySpace max="32767" attributes="0"/>
|
||||
</Group>
|
||||
@ -423,6 +480,9 @@
|
||||
<SubComponents>
|
||||
<Component class="javax.swing.JTextArea" name="jTADefenseurCaracteristiques">
|
||||
<Properties>
|
||||
<Property name="background" type="java.awt.Color" editor="org.netbeans.beaninfo.editors.ColorEditor">
|
||||
<Color blue="0" green="0" red="66" type="rgb"/>
|
||||
</Property>
|
||||
<Property name="columns" type="int" value="20"/>
|
||||
<Property name="rows" type="int" value="5"/>
|
||||
</Properties>
|
||||
|
@ -5,6 +5,8 @@
|
||||
package Presentation;
|
||||
|
||||
import javax.swing.DefaultComboBoxModel;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JOptionPane;
|
||||
import metier.Jeu;
|
||||
import metier.Personnage;
|
||||
|
||||
@ -34,8 +36,6 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
||||
private void initComponents() {
|
||||
|
||||
jScrollPane1 = new javax.swing.JScrollPane();
|
||||
jList1 = new javax.swing.JList<>();
|
||||
jPanel1 = new javax.swing.JPanel();
|
||||
JPFondListePerso = new javax.swing.JPanel();
|
||||
jLImageListePerso = new javax.swing.JLabel();
|
||||
@ -57,19 +57,22 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jScrollPane4 = new javax.swing.JScrollPane();
|
||||
jTADefenseurCaracteristiques = new javax.swing.JTextArea();
|
||||
jBGo = new javax.swing.JButton();
|
||||
|
||||
jList1.setModel(new javax.swing.AbstractListModel<String>() {
|
||||
String[] strings = { "Item 1", "Item 2", "Item 3", "Item 4", "Item 5" };
|
||||
public int getSize() { return strings.length; }
|
||||
public String getElementAt(int i) { return strings[i]; }
|
||||
});
|
||||
jScrollPane1.setViewportView(jList1);
|
||||
jMenuBar1 = new javax.swing.JMenuBar();
|
||||
jMenuJeu = new javax.swing.JMenu();
|
||||
jMInewGame = new javax.swing.JMenuItem();
|
||||
jMInewPlayer = new javax.swing.JMenuItem();
|
||||
jMIopenGame = new javax.swing.JMenuItem();
|
||||
jMIsave = new javax.swing.JMenuItem();
|
||||
jMIquit = new javax.swing.JMenuItem();
|
||||
jMenu2 = new javax.swing.JMenu();
|
||||
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
||||
|
||||
JPFondListePerso.setBackground(new java.awt.Color(102, 0, 0));
|
||||
JPFondListePerso.setLayout(new org.netbeans.lib.awtextra.AbsoluteLayout());
|
||||
JPFondListePerso.add(jLImageListePerso, new org.netbeans.lib.awtextra.AbsoluteConstraints(40, 10, 130, 80));
|
||||
|
||||
jLImageListePerso.setIcon(new javax.swing.ImageIcon(getClass().getResource("/img/adj_1.jpg"))); // NOI18N
|
||||
JPFondListePerso.add(jLImageListePerso, new org.netbeans.lib.awtextra.AbsoluteConstraints(20, 0, 190, 100));
|
||||
|
||||
jScrollPane2.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
|
||||
|
||||
@ -78,10 +81,12 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jTextArea1.setRows(5);
|
||||
jScrollPane2.setViewportView(jTextArea1);
|
||||
|
||||
JPFondListePerso.add(jScrollPane2, new org.netbeans.lib.awtextra.AbsoluteConstraints(30, 100, 148, 360));
|
||||
JPFondListePerso.add(jScrollPane2, new org.netbeans.lib.awtextra.AbsoluteConstraints(10, 110, 210, 350));
|
||||
|
||||
jPJeu.setBackground(new java.awt.Color(255, 255, 255));
|
||||
|
||||
jLChoixPerso.setIcon(new javax.swing.ImageIcon(getClass().getResource("/img/famille_1.jpg"))); // NOI18N
|
||||
|
||||
jLChoixPersoText.setText("Choix Des personnages");
|
||||
|
||||
jPCHoixPersoFond.setBorder(javax.swing.BorderFactory.createLineBorder(new java.awt.Color(0, 0, 0)));
|
||||
@ -112,31 +117,31 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jScrollPane3.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
|
||||
jScrollPane3.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER);
|
||||
|
||||
jTAAttaquantCaracteristiques.setBackground(new java.awt.Color(102, 0, 0));
|
||||
jTAAttaquantCaracteristiques.setColumns(20);
|
||||
jTAAttaquantCaracteristiques.setRows(5);
|
||||
jTAAttaquantCaracteristiques.setCursor(new java.awt.Cursor(java.awt.Cursor.TEXT_CURSOR));
|
||||
jTAAttaquantCaracteristiques.setOpaque(false);
|
||||
jScrollPane3.setViewportView(jTAAttaquantCaracteristiques);
|
||||
|
||||
javax.swing.GroupLayout jPAttaquantLayout = new javax.swing.GroupLayout(jPAttaquant);
|
||||
jPAttaquant.setLayout(jPAttaquantLayout);
|
||||
jPAttaquantLayout.setHorizontalGroup(
|
||||
jPAttaquantLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPAttaquantLayout.createSequentialGroup()
|
||||
.addGap(25, 25, 25)
|
||||
.addComponent(jLImageAttaquant, javax.swing.GroupLayout.PREFERRED_SIZE, 99, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addContainerGap(51, Short.MAX_VALUE))
|
||||
.addGroup(jPAttaquantLayout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(jScrollPane3, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)
|
||||
.addContainerGap())
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPAttaquantLayout.createSequentialGroup()
|
||||
.addContainerGap(68, Short.MAX_VALUE)
|
||||
.addComponent(jLImageAttaquant, javax.swing.GroupLayout.PREFERRED_SIZE, 99, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(59, 59, 59))
|
||||
);
|
||||
jPAttaquantLayout.setVerticalGroup(
|
||||
jPAttaquantLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPAttaquantLayout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(jScrollPane3, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(jScrollPane3, javax.swing.GroupLayout.PREFERRED_SIZE, 92, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(jLImageAttaquant, javax.swing.GroupLayout.PREFERRED_SIZE, 63, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addContainerGap(15, Short.MAX_VALUE))
|
||||
);
|
||||
@ -146,6 +151,7 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jScrollPane4.setHorizontalScrollBarPolicy(javax.swing.ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
|
||||
jScrollPane4.setVerticalScrollBarPolicy(javax.swing.ScrollPaneConstants.VERTICAL_SCROLLBAR_NEVER);
|
||||
|
||||
jTADefenseurCaracteristiques.setBackground(new java.awt.Color(102, 0, 0));
|
||||
jTADefenseurCaracteristiques.setColumns(20);
|
||||
jTADefenseurCaracteristiques.setRows(5);
|
||||
jScrollPane4.setViewportView(jTADefenseurCaracteristiques);
|
||||
@ -154,21 +160,21 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jPDefenseur.setLayout(jPDefenseurLayout);
|
||||
jPDefenseurLayout.setHorizontalGroup(
|
||||
jPDefenseurLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPDefenseurLayout.createSequentialGroup()
|
||||
.addGap(31, 31, 31)
|
||||
.addComponent(jLImageDefenseur, javax.swing.GroupLayout.PREFERRED_SIZE, 98, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addContainerGap(38, Short.MAX_VALUE))
|
||||
.addGroup(jPDefenseurLayout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(jScrollPane4, javax.swing.GroupLayout.PREFERRED_SIZE, 0, Short.MAX_VALUE)
|
||||
.addContainerGap())
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPDefenseurLayout.createSequentialGroup()
|
||||
.addContainerGap(64, Short.MAX_VALUE)
|
||||
.addComponent(jLImageDefenseur, javax.swing.GroupLayout.PREFERRED_SIZE, 98, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(64, 64, 64))
|
||||
);
|
||||
jPDefenseurLayout.setVerticalGroup(
|
||||
jPDefenseurLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPDefenseurLayout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(jScrollPane4, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(18, 18, 18)
|
||||
.addComponent(jScrollPane4, javax.swing.GroupLayout.PREFERRED_SIZE, 92, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(jLImageDefenseur, javax.swing.GroupLayout.PREFERRED_SIZE, 53, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
||||
);
|
||||
@ -178,17 +184,17 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jPCHoixPersoFondLayout.setHorizontalGroup(
|
||||
jPCHoixPersoFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPCHoixPersoFondLayout.createSequentialGroup()
|
||||
.addGap(81, 81, 81)
|
||||
.addGap(101, 101, 101)
|
||||
.addComponent(jCBoxAttaquant, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(jCBoxDefenseur, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(75, 75, 75))
|
||||
.addGap(107, 107, 107))
|
||||
.addGroup(jPCHoixPersoFondLayout.createSequentialGroup()
|
||||
.addGap(27, 27, 27)
|
||||
.addComponent(jPAttaquant, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 80, Short.MAX_VALUE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, 57, Short.MAX_VALUE)
|
||||
.addComponent(jPDefenseur, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(38, 38, 38))
|
||||
.addGap(26, 26, 26))
|
||||
);
|
||||
jPCHoixPersoFondLayout.setVerticalGroup(
|
||||
jPCHoixPersoFondLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
@ -215,7 +221,7 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPChoixPersoLayout.createSequentialGroup()
|
||||
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(jPCHoixPersoFond, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(70, 70, 70))
|
||||
.addContainerGap())
|
||||
);
|
||||
jPChoixPersoLayout.setVerticalGroup(
|
||||
jPChoixPersoLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
@ -238,26 +244,28 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
jPJeu.setLayout(jPJeuLayout);
|
||||
jPJeuLayout.setHorizontalGroup(
|
||||
jPJeuLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPJeuLayout.createSequentialGroup()
|
||||
.addContainerGap(15, Short.MAX_VALUE)
|
||||
.addComponent(jPChoixPerso, javax.swing.GroupLayout.PREFERRED_SIZE, 528, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(54, 54, 54))
|
||||
.addGroup(jPJeuLayout.createSequentialGroup()
|
||||
.addGroup(jPJeuLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPJeuLayout.createSequentialGroup()
|
||||
.addGap(215, 215, 215)
|
||||
.addComponent(jLChoixPerso, javax.swing.GroupLayout.PREFERRED_SIZE, 151, javax.swing.GroupLayout.PREFERRED_SIZE))
|
||||
.addGroup(jPJeuLayout.createSequentialGroup()
|
||||
.addGap(236, 236, 236)
|
||||
.addComponent(jBGo)))
|
||||
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
||||
.addGroup(jPJeuLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPJeuLayout.createSequentialGroup()
|
||||
.addGap(236, 236, 236)
|
||||
.addComponent(jBGo))
|
||||
.addGroup(jPJeuLayout.createSequentialGroup()
|
||||
.addGap(172, 172, 172)
|
||||
.addComponent(jLChoixPerso, javax.swing.GroupLayout.PREFERRED_SIZE, 239, javax.swing.GroupLayout.PREFERRED_SIZE)))
|
||||
.addGap(0, 0, Short.MAX_VALUE))
|
||||
.addGroup(javax.swing.GroupLayout.Alignment.TRAILING, jPJeuLayout.createSequentialGroup()
|
||||
.addGap(0, 15, Short.MAX_VALUE)
|
||||
.addComponent(jPChoixPerso, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)))
|
||||
.addContainerGap())
|
||||
);
|
||||
jPJeuLayout.setVerticalGroup(
|
||||
jPJeuLayout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGroup(jPJeuLayout.createSequentialGroup()
|
||||
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
|
||||
.addComponent(jLChoixPerso, javax.swing.GroupLayout.PREFERRED_SIZE, 78, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addGap(32, 32, 32)
|
||||
.addComponent(jLChoixPerso)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
|
||||
.addComponent(jPChoixPerso, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(jBGo)
|
||||
@ -272,7 +280,7 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
.addContainerGap()
|
||||
.addComponent(jPJeu, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED)
|
||||
.addComponent(JPFondListePerso, javax.swing.GroupLayout.PREFERRED_SIZE, 196, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addComponent(JPFondListePerso, javax.swing.GroupLayout.PREFERRED_SIZE, 226, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
||||
);
|
||||
jPanel1Layout.setVerticalGroup(
|
||||
@ -287,6 +295,50 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
.addContainerGap())
|
||||
);
|
||||
|
||||
jMenuJeu.setText("Jeu");
|
||||
|
||||
jMInewGame.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_N, java.awt.event.InputEvent.CTRL_DOWN_MASK));
|
||||
jMInewGame.setText("New Game");
|
||||
jMInewGame.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
jMInewGameActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
jMenuJeu.add(jMInewGame);
|
||||
|
||||
jMInewPlayer.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_ADD, 0));
|
||||
jMInewPlayer.setText("New Player");
|
||||
jMInewPlayer.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
jMInewPlayerActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
jMenuJeu.add(jMInewPlayer);
|
||||
|
||||
jMIopenGame.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_O, java.awt.event.InputEvent.CTRL_DOWN_MASK));
|
||||
jMIopenGame.setText("Open Game");
|
||||
jMenuJeu.add(jMIopenGame);
|
||||
|
||||
jMIsave.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_S, java.awt.event.InputEvent.CTRL_DOWN_MASK));
|
||||
jMIsave.setText("Save");
|
||||
jMenuJeu.add(jMIsave);
|
||||
|
||||
jMIquit.setAccelerator(javax.swing.KeyStroke.getKeyStroke(java.awt.event.KeyEvent.VK_Q, java.awt.event.InputEvent.CTRL_DOWN_MASK));
|
||||
jMIquit.setText("Exit");
|
||||
jMIquit.addActionListener(new java.awt.event.ActionListener() {
|
||||
public void actionPerformed(java.awt.event.ActionEvent evt) {
|
||||
jMIquitActionPerformed(evt);
|
||||
}
|
||||
});
|
||||
jMenuJeu.add(jMIquit);
|
||||
|
||||
jMenuBar1.add(jMenuJeu);
|
||||
|
||||
jMenu2.setText("Edit");
|
||||
jMenuBar1.add(jMenu2);
|
||||
|
||||
setJMenuBar(jMenuBar1);
|
||||
|
||||
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
||||
getContentPane().setLayout(layout);
|
||||
layout.setHorizontalGroup(
|
||||
@ -301,49 +353,70 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
.addGroup(layout.createSequentialGroup()
|
||||
.addContainerGap()
|
||||
.addComponent(jPanel1, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)
|
||||
.addContainerGap(14, Short.MAX_VALUE))
|
||||
.addContainerGap(javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE))
|
||||
);
|
||||
|
||||
pack();
|
||||
}// </editor-fold>//GEN-END:initComponents
|
||||
|
||||
|
||||
private void jBGoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBGoActionPerformed
|
||||
//Attaquant
|
||||
String attaque = (String) jCBoxAttaquant.getSelectedItem();
|
||||
String nomAttaque = attaque.split(":")[1];
|
||||
Personnage attaquant = leJeu.rechercherPerso(nomAttaque);
|
||||
|
||||
//Defenseur
|
||||
String defense = (String) jCBoxDefenseur.getSelectedItem();
|
||||
String nomDefense = defense.split(":")[1];
|
||||
Personnage defenseur = leJeu.rechercherPerso(nomDefense);
|
||||
|
||||
//Combat
|
||||
if(defenseur.equals(attaquant)){
|
||||
combatImpossible(defenseur);
|
||||
}else{
|
||||
attaquant.rencontrer(defenseur);
|
||||
//mise à jour ath
|
||||
|
||||
}
|
||||
majStatistiquesPersos();
|
||||
|
||||
}//GEN-LAST:event_jBGoActionPerformed
|
||||
|
||||
private void jCBoxDefenseurActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCBoxDefenseurActionPerformed
|
||||
// TODO add your handling code here:
|
||||
String perso = (String) jCBoxDefenseur.getSelectedItem();
|
||||
String nomPerso = perso.split(":")[1];
|
||||
Personnage Perso = leJeu.rechercherPerso(nomPerso);
|
||||
jTADefenseurCaracteristiques.setText(Perso.toString());
|
||||
}//GEN-LAST:event_jCBoxDefenseurActionPerformed
|
||||
|
||||
private void jCBoxAttaquantActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCBoxAttaquantActionPerformed
|
||||
// TODO add your handling code here:
|
||||
String perso = (String) jCBoxAttaquant.getSelectedItem();
|
||||
String nomPerso = perso.split(":")[1];
|
||||
Personnage Perso = leJeu.rechercherPerso(nomPerso);
|
||||
jTAAttaquantCaracteristiques.setText(Perso.toString());
|
||||
jTAAttaquantCaracteristiques.setText(Perso.toString());
|
||||
}//GEN-LAST:event_jCBoxAttaquantActionPerformed
|
||||
|
||||
private void jCBoxAttaquantInputMethodTextChanged(java.awt.event.InputMethodEvent evt) {//GEN-FIRST:event_jCBoxAttaquantInputMethodTextChanged
|
||||
|
||||
}//GEN-LAST:event_jCBoxAttaquantInputMethodTextChanged
|
||||
|
||||
|
||||
private void jCBoxDefenseurActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jCBoxDefenseurActionPerformed
|
||||
private void jMInewPlayerActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMInewPlayerActionPerformed
|
||||
// TODO add your handling code here:
|
||||
String perso = (String) jCBoxDefenseur.getSelectedItem();
|
||||
String nomPerso = perso.split(":")[1];
|
||||
Personnage Perso = leJeu.rechercherPerso(nomPerso);
|
||||
jTADefenseurCaracteristiques.setText(Perso.toString());
|
||||
}//GEN-LAST:event_jCBoxDefenseurActionPerformed
|
||||
}//GEN-LAST:event_jMInewPlayerActionPerformed
|
||||
|
||||
private void jMInewGameActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMInewGameActionPerformed
|
||||
|
||||
}//GEN-LAST:event_jMInewGameActionPerformed
|
||||
|
||||
private void jMIquitActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jMIquitActionPerformed
|
||||
|
||||
}//GEN-LAST:event_jMIquitActionPerformed
|
||||
|
||||
|
||||
private void jBGoActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_jBGoActionPerformed
|
||||
//Attaquant
|
||||
String attaque = (String) jCBoxAttaquant.getSelectedItem();
|
||||
String nomAttaque = attaque.split(":")[1];
|
||||
Personnage attaquant = leJeu.rechercherPerso(nomAttaque);
|
||||
//Defenseur
|
||||
String defense = (String) jCBoxAttaquant.getSelectedItem();
|
||||
String nomDefense = defense.split(":")[1];
|
||||
Personnage defenseur = leJeu.rechercherPerso(nomDefense);
|
||||
//Combat
|
||||
attaquant.rencontrer(defenseur);
|
||||
//mise à jour ath
|
||||
majStatistiquesPersos();
|
||||
}//GEN-LAST:event_jBGoActionPerformed
|
||||
|
||||
|
||||
private void majStatistiquesPersos(){
|
||||
String persos = "Jeu : "+leJeu.getnomJeu();
|
||||
for(Personnage Perso:leJeu.getmesPersonnages()){
|
||||
@ -353,6 +426,16 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
persos += "----------------";
|
||||
}
|
||||
jTextArea1.setText(persos);
|
||||
jTAAttaquantCaracteristiques.setText("");
|
||||
jTADefenseurCaracteristiques.setText("");
|
||||
}
|
||||
|
||||
private void combatImpossible(Personnage perso){
|
||||
String message = "Mais vous êtes devenu fou";
|
||||
String titre = "Folie Incontestable !!";
|
||||
Icon img = new javax.swing.ImageIcon("/img/folie.png");
|
||||
JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE, img);
|
||||
perso.varierEnergie(-1);
|
||||
}
|
||||
/**
|
||||
* @param args the command line arguments
|
||||
@ -400,14 +483,20 @@ public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
private javax.swing.JLabel jLImageAttaquant;
|
||||
private javax.swing.JLabel jLImageDefenseur;
|
||||
private javax.swing.JLabel jLImageListePerso;
|
||||
private javax.swing.JList<String> jList1;
|
||||
private javax.swing.JMenuItem jMInewGame;
|
||||
private javax.swing.JMenuItem jMInewPlayer;
|
||||
private javax.swing.JMenuItem jMIopenGame;
|
||||
private javax.swing.JMenuItem jMIquit;
|
||||
private javax.swing.JMenuItem jMIsave;
|
||||
private javax.swing.JMenu jMenu2;
|
||||
private javax.swing.JMenuBar jMenuBar1;
|
||||
private javax.swing.JMenu jMenuJeu;
|
||||
private javax.swing.JPanel jPAttaquant;
|
||||
private javax.swing.JPanel jPCHoixPersoFond;
|
||||
private javax.swing.JPanel jPChoixPerso;
|
||||
private javax.swing.JPanel jPDefenseur;
|
||||
private javax.swing.JPanel jPJeu;
|
||||
private javax.swing.JPanel jPanel1;
|
||||
private javax.swing.JScrollPane jScrollPane1;
|
||||
private javax.swing.JScrollPane jScrollPane2;
|
||||
private javax.swing.JScrollPane jScrollPane3;
|
||||
private javax.swing.JScrollPane jScrollPane4;
|
||||
|
BIN
JDR/src/img/folie.jpg
Normal file
BIN
JDR/src/img/folie.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 5.7 KiB |
Loading…
x
Reference in New Issue
Block a user