Copie de Jeu de role emile
35
JDR/src/Presentation/Plateau_de_jeu.form
Normal file
@ -0,0 +1,35 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<Form version="1.3" maxVersion="1.9" type="org.netbeans.modules.form.forminfo.JFrameFormInfo">
|
||||
<Properties>
|
||||
<Property name="defaultCloseOperation" type="int" value="3"/>
|
||||
</Properties>
|
||||
<SyntheticProperties>
|
||||
<SyntheticProperty name="formSizePolicy" type="int" value="1"/>
|
||||
<SyntheticProperty name="generateCenter" type="boolean" value="false"/>
|
||||
</SyntheticProperties>
|
||||
<AuxValues>
|
||||
<AuxValue name="FormSettings_autoResourcing" type="java.lang.Integer" value="0"/>
|
||||
<AuxValue name="FormSettings_autoSetComponentName" type="java.lang.Boolean" value="false"/>
|
||||
<AuxValue name="FormSettings_generateFQN" type="java.lang.Boolean" value="true"/>
|
||||
<AuxValue name="FormSettings_generateMnemonicsCode" type="java.lang.Boolean" value="false"/>
|
||||
<AuxValue name="FormSettings_i18nAutoMode" type="java.lang.Boolean" value="false"/>
|
||||
<AuxValue name="FormSettings_layoutCodeTarget" type="java.lang.Integer" value="1"/>
|
||||
<AuxValue name="FormSettings_listenerGenerationStyle" type="java.lang.Integer" value="0"/>
|
||||
<AuxValue name="FormSettings_variablesLocal" type="java.lang.Boolean" value="false"/>
|
||||
<AuxValue name="FormSettings_variablesModifier" type="java.lang.Integer" value="2"/>
|
||||
</AuxValues>
|
||||
|
||||
<Layout>
|
||||
<DimensionLayout dim="0">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<EmptySpace min="0" pref="400" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
<DimensionLayout dim="1">
|
||||
<Group type="103" groupAlignment="0" attributes="0">
|
||||
<EmptySpace min="0" pref="300" max="32767" attributes="0"/>
|
||||
</Group>
|
||||
</DimensionLayout>
|
||||
</Layout>
|
||||
</Form>
|
82
JDR/src/Presentation/Plateau_de_jeu.java
Normal file
@ -0,0 +1,82 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/GUIForms/JFrame.java to edit this template
|
||||
*/
|
||||
package Presentation;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author emile.lalorcey
|
||||
*/
|
||||
public class Plateau_de_jeu extends javax.swing.JFrame {
|
||||
|
||||
/**
|
||||
* Creates new form Plateau_de_jeu
|
||||
*/
|
||||
public Plateau_de_jeu() {
|
||||
initComponents();
|
||||
}
|
||||
|
||||
/**
|
||||
* This method is called from within the constructor to initialize the form.
|
||||
* WARNING: Do NOT modify this code. The content of this method is always
|
||||
* regenerated by the Form Editor.
|
||||
*/
|
||||
@SuppressWarnings("unchecked")
|
||||
// <editor-fold defaultstate="collapsed" desc="Generated Code">//GEN-BEGIN:initComponents
|
||||
private void initComponents() {
|
||||
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
|
||||
|
||||
javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
|
||||
getContentPane().setLayout(layout);
|
||||
layout.setHorizontalGroup(
|
||||
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGap(0, 400, Short.MAX_VALUE)
|
||||
);
|
||||
layout.setVerticalGroup(
|
||||
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
|
||||
.addGap(0, 300, Short.MAX_VALUE)
|
||||
);
|
||||
|
||||
pack();
|
||||
}// </editor-fold>//GEN-END:initComponents
|
||||
|
||||
/**
|
||||
* @param args the command line arguments
|
||||
*/
|
||||
public static void main(String args[]) {
|
||||
/* Set the Nimbus look and feel */
|
||||
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
|
||||
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
|
||||
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
|
||||
*/
|
||||
try {
|
||||
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
|
||||
if ("Nimbus".equals(info.getName())) {
|
||||
javax.swing.UIManager.setLookAndFeel(info.getClassName());
|
||||
break;
|
||||
}
|
||||
}
|
||||
} catch (ClassNotFoundException ex) {
|
||||
java.util.logging.Logger.getLogger(Plateau_de_jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (InstantiationException ex) {
|
||||
java.util.logging.Logger.getLogger(Plateau_de_jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (IllegalAccessException ex) {
|
||||
java.util.logging.Logger.getLogger(Plateau_de_jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
|
||||
java.util.logging.Logger.getLogger(Plateau_de_jeu.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
|
||||
}
|
||||
//</editor-fold>
|
||||
|
||||
/* Create and display the form */
|
||||
java.awt.EventQueue.invokeLater(new Runnable() {
|
||||
public void run() {
|
||||
new Plateau_de_jeu().setVisible(true);
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
// Variables declaration - do not modify//GEN-BEGIN:variables
|
||||
// End of variables declaration//GEN-END:variables
|
||||
}
|
BIN
JDR/src/img/Barbare04.jpg
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
JDR/src/img/Combat.jpg
Normal file
After Width: | Height: | Size: 20 KiB |
BIN
JDR/src/img/CombatPerdu.jpg
Normal file
After Width: | Height: | Size: 26 KiB |
BIN
JDR/src/img/Guerrier05.JPG
Normal file
After Width: | Height: | Size: 2.3 KiB |
BIN
JDR/src/img/Guerrier08.JPG
Normal file
After Width: | Height: | Size: 2.8 KiB |
BIN
JDR/src/img/Guerrier10.JPG
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
JDR/src/img/Guerrier12.JPG
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
JDR/src/img/Simone.JPG
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
JDR/src/img/Sorcier02.JPG
Normal file
After Width: | Height: | Size: 6.6 KiB |
BIN
JDR/src/img/Sorciere1.jpg
Normal file
After Width: | Height: | Size: 7.5 KiB |
BIN
JDR/src/img/adj_1.jpg
Normal file
After Width: | Height: | Size: 9.1 KiB |
BIN
JDR/src/img/des.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
JDR/src/img/famille_1.jpg
Normal file
After Width: | Height: | Size: 12 KiB |
BIN
JDR/src/img/magie.jpg
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
JDR/src/img/panoramix.gif
Normal file
After Width: | Height: | Size: 4.7 KiB |
BIN
JDR/src/img/pierreFeuilleCiseaux.jpg
Normal file
After Width: | Height: | Size: 13 KiB |
37
JDR/src/jeuderole/JeuDeRolePolymorphisme.java
Normal file
@ -0,0 +1,37 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Main.java to edit this template
|
||||
*/
|
||||
package jeuderole;
|
||||
|
||||
import metier.Jeu;
|
||||
|
||||
/**
|
||||
* Test Classe Jeu
|
||||
* @author famille Thevenot
|
||||
*/
|
||||
public class JeuDeRolePolymorphisme {
|
||||
|
||||
/**
|
||||
* @param args the command line arguments
|
||||
*/
|
||||
public static void main(String[] args) {
|
||||
/**
|
||||
mesPersonnages[0].saluer(mesPersonnages[1]);
|
||||
mesPersonnages[2].saluer(mesPersonnages[0]);
|
||||
mesPersonnages[1].saluer(mesPersonnages[2]);**/
|
||||
|
||||
Jeu role = new Jeu();
|
||||
System.out.println(role.getmesPersonnages());
|
||||
System.out.println(".................");
|
||||
System.out.println(role);
|
||||
System.out.println(role.rechercherPerso("Barbare"));
|
||||
System.out.println(role.rechercherPerso("Panoramix"));
|
||||
System.out.println(".................");
|
||||
System.out.println(role.rechercherPerso("Barbare").rencontrer(role.rechercherPerso("Panoramix")));
|
||||
System.out.println(role.rechercherPerso("Raptout").rencontrer(role.rechercherPerso("Barbare")));
|
||||
|
||||
|
||||
}
|
||||
|
||||
}
|
50
JDR/src/metier/Enigme.java
Normal file
@ -0,0 +1,50 @@
|
||||
package metier;
|
||||
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
|
||||
/**
|
||||
*
|
||||
* @author emile.lalorcey
|
||||
*/
|
||||
public class Enigme {
|
||||
String question;
|
||||
String reponse;
|
||||
|
||||
//Constructeurs
|
||||
/**
|
||||
* Cette fonction est un constructeur de Enigme
|
||||
* @param Question
|
||||
* @param Reponse
|
||||
*/
|
||||
public Enigme (String Question , String Reponse){
|
||||
this.question = Question;
|
||||
this.reponse = Reponse;
|
||||
}
|
||||
//Getteur
|
||||
/**
|
||||
* Cette fonction permet d'acceder à la variable question
|
||||
* @return la question
|
||||
*/
|
||||
public String Question(){
|
||||
return this.question;
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction permet d'acceder à la variable reponse
|
||||
* @return la reponse
|
||||
*/
|
||||
public String Reponse(){
|
||||
return this.reponse;
|
||||
}
|
||||
//Setteur
|
||||
public void SetQuestion(String Question){
|
||||
this.question = Question;
|
||||
}
|
||||
|
||||
public void SetReponse(String Reponse){
|
||||
this.reponse = Reponse;
|
||||
}
|
||||
}
|
127
JDR/src/metier/Guerrier.java
Normal file
@ -0,0 +1,127 @@
|
||||
package metier;
|
||||
import java.util.Objects;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JOptionPane;
|
||||
|
||||
/**
|
||||
* Classe Guerrier, hérite de la classe Personnage
|
||||
* @author Dominique_2
|
||||
* @version 20170115
|
||||
*/
|
||||
public class Guerrier extends Personnage{
|
||||
// Variable membre
|
||||
private String arme;
|
||||
|
||||
/**
|
||||
* Valorisation des variables membres
|
||||
* @param nom nom du guerrier
|
||||
* @param img nom de l'image représentant le guerrier
|
||||
* @param energie valeur énergétique du guerrier
|
||||
* @param dureeVie durée de vie du guerrier
|
||||
* @param arme armu du guerrier
|
||||
*/
|
||||
public Guerrier(String nom, String img, int energie, int dureeVie, String arme) {
|
||||
super(nom, img, energie, dureeVie);
|
||||
this.arme = arme;
|
||||
}
|
||||
/**
|
||||
* Permet d'obtenir les valeurs des attributs de l'objet courant
|
||||
* @return liste des attributs avec leurs valeurs
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString() + "\tArme=" + arme;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 7;
|
||||
hash = super.hashCode() + (13 * hash + Objects.hashCode(this.arme));
|
||||
return hash;
|
||||
}
|
||||
/**
|
||||
* Comparaison de l'objet courant avec l'objet passé en paramètre
|
||||
* @param obj objet à comparer avec l'objet courant
|
||||
* @return true : les 2 objets sont identiques, false sinon
|
||||
*/
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
}
|
||||
final Guerrier other = (Guerrier) obj;
|
||||
if (!Objects.equals(this.arme, other.arme)) {
|
||||
return false;
|
||||
}
|
||||
if(!super.equals(obj)){
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of arme
|
||||
*
|
||||
* @return the value of arme
|
||||
*/
|
||||
public String getArme() {
|
||||
return arme;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of arme
|
||||
*
|
||||
* @param arme new value of arme
|
||||
*/
|
||||
public void setArme(String arme) {
|
||||
this.arme = arme;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String saluer(Personnage unPerso){
|
||||
String titre = this.getNom() + " salue " + unPerso.getNom();
|
||||
String message ;
|
||||
/**if(unPerso instanceof Guerrier){
|
||||
message = "Bonjour " + unPerso.getNom() + " Comment allez-vous ajourd'hui";
|
||||
}
|
||||
else{
|
||||
|
||||
}**/
|
||||
message = "Bonjour " + unPerso.getNom() + "Barre toi avant que je n'utilise mon "+ this.arme;
|
||||
//JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE);
|
||||
Icon imgPerso = new javax.swing.ImageIcon(getClass().getResource("/img/" + this.getImg()));
|
||||
JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE, imgPerso);
|
||||
return message;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String rencontrer(Personnage unPerso) {
|
||||
this.saluer(unPerso); //appelle de la contion saluer
|
||||
int pts_attaque = 0;
|
||||
int pts_defense = 0;
|
||||
do{
|
||||
pts_attaque = Jeu.genererNbAleatoire(0, 10);
|
||||
pts_defense = Jeu.genererNbAleatoire(0, 10);
|
||||
}while(pts_attaque == pts_defense);
|
||||
|
||||
if(pts_attaque > pts_defense){
|
||||
unPerso.varierDureeVie(-1);
|
||||
unPerso.varierEnergie(-2);
|
||||
return "Tu as perdu, Tu es maintenant à "+unPerso.getEnergie()+ "energie et "+unPerso.getDureeVie()+ " PV !!";
|
||||
}else{ // pts_defense > pts_attaque
|
||||
this.varierEnergie(-1);
|
||||
unPerso.varierEnergie(2);
|
||||
return "Mon energie est à "+ this.getEnergie() + "et toi qui m'a vaincu tu es à "+ unPerso.getEnergie();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
97
JDR/src/metier/Jeu.java
Normal file
@ -0,0 +1,97 @@
|
||||
/*
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
||||
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
||||
*/
|
||||
package metier;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author emile.lalorcey
|
||||
*/
|
||||
public class Jeu {
|
||||
String nomJeu = "Jeu de Role" ;
|
||||
Personnage[] mesPersonnages = new Personnage[7];
|
||||
|
||||
|
||||
/********* Constructeurs ********/
|
||||
|
||||
/**
|
||||
* Constructeur de Jeu
|
||||
*/
|
||||
public Jeu(){
|
||||
this.chargerLesPersonnages();
|
||||
}
|
||||
|
||||
/********* Guetteur ********/
|
||||
|
||||
|
||||
/**
|
||||
* Getteur de mes personnages
|
||||
* @return mes personnages
|
||||
*/
|
||||
public Personnage[] getmesPersonnages(){
|
||||
return this.mesPersonnages;
|
||||
}
|
||||
|
||||
/********* Setteurs ********/
|
||||
|
||||
|
||||
/********* Fonctions ********/
|
||||
|
||||
/**
|
||||
* Crée les personnages
|
||||
*/
|
||||
private void chargerLesPersonnages(){
|
||||
mesPersonnages = new Personnage[7];
|
||||
mesPersonnages[0] = new Guerrier("Barbare", "", 6, 4, "Hache");
|
||||
mesPersonnages[5] = new Guerrier("Garren","Guerrier08.jpg" , 0, 0, "Gourdin");
|
||||
mesPersonnages[6] = new Guerrier("Hellen","Guerrier08.jpg" , 0, 0, "Gourdin");
|
||||
mesPersonnages[3] = new Personnage("Gaelle", "Barbare04.jpg", 0, 0);
|
||||
mesPersonnages[1] = new Voleur("Raptout", "", 2, 4, "Marteau");
|
||||
mesPersonnages[2] = new Sorcier("Panoramix", "", 10, 5, "Baguette de laurier");
|
||||
mesPersonnages[4] = new Sorcier("Jinx","Barbare04.jpg",0,0, "Bâton");
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette méthode sert à affiché les différents personnages avec leurs affectations
|
||||
* @return String tout les personnages avec leurs capacités
|
||||
*/
|
||||
@Override
|
||||
public String toString(){
|
||||
String mesPersos = "";
|
||||
for (int i = 0; i < mesPersonnages.length; i++){
|
||||
mesPersos += mesPersonnages[i] + "\n" + "\n";
|
||||
}
|
||||
return mesPersos;
|
||||
}
|
||||
|
||||
/**
|
||||
* recherche un personnage
|
||||
* @param n un entier
|
||||
* @return le personnage recherchés
|
||||
*/
|
||||
public Personnage rechercherPerso(String n){
|
||||
int indice = 0;
|
||||
boolean trouver = false;
|
||||
while(indice < this.mesPersonnages.length && !trouver){
|
||||
trouver = (this.mesPersonnages[indice].getNom().equals(n));
|
||||
indice++;
|
||||
}
|
||||
if(trouver){
|
||||
indice--;
|
||||
return this.mesPersonnages[indice];
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction génère un nombre aléatoire
|
||||
* @param min minimum possible pour le nombre
|
||||
* @param max maximum possible pour le nombre
|
||||
* @return le nombre aléatoire
|
||||
*/
|
||||
public static int genererNbAleatoire(int min, int max) {
|
||||
return min + (int)(Math.random() * ((max - min) + 1));
|
||||
}
|
||||
|
||||
}
|
202
JDR/src/metier/Personnage.java
Normal file
@ -0,0 +1,202 @@
|
||||
package metier;
|
||||
import java.util.Objects;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JOptionPane;
|
||||
|
||||
/**
|
||||
* Classe Mère Personnage
|
||||
* @author Dominique_2
|
||||
* @version 20170215
|
||||
*/
|
||||
public class Personnage {
|
||||
// Variables membres
|
||||
private String nom;
|
||||
private String img;
|
||||
private int energie;
|
||||
private int dureeVie;
|
||||
/**
|
||||
* Valorisation des variables membres
|
||||
* @param nom nom du personnage
|
||||
* @param img nom de l'image du personnage
|
||||
* @param energie valeur énergétique
|
||||
* @param dureeVie durée de vie, en année
|
||||
*/
|
||||
public Personnage(String nom, String img, int energie, int dureeVie) {
|
||||
this.nom = nom;
|
||||
this.img = img;
|
||||
this.energie = energie;
|
||||
this.dureeVie = dureeVie;
|
||||
}
|
||||
|
||||
public Personnage() {
|
||||
// throw new UnsupportedOperationException("Not supported yet."); // Generated from nbfs://nbhost/SystemFileSystem/Templates/Classes/Code/GeneratedMethodBody
|
||||
}
|
||||
/**
|
||||
* Permet d'obtenir les valeurs des attributs de l'objet courant
|
||||
* @return liste des attributs avec leurs valeurs
|
||||
*/
|
||||
@Override
|
||||
public String toString() {
|
||||
return "Nom\t" + nom + "\nEnergie\t" + energie + "\nDuree de vie\t" + dureeVie
|
||||
+ "\n"+this.getClass().getSimpleName();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 3;
|
||||
hash = 47 * hash + Objects.hashCode(this.nom);
|
||||
hash = 47 * hash + Objects.hashCode(this.img);
|
||||
hash = 47 * hash + this.energie;
|
||||
hash = 47 * hash + this.dureeVie;
|
||||
return hash;
|
||||
}
|
||||
|
||||
/**
|
||||
* Comparaison de l'objet courant avec l'objet passé en paramètre
|
||||
* @param obj objet à comparer avec l'objet courant
|
||||
* @return true : les 2 objets sont identiques, false sinon
|
||||
*/
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
}
|
||||
final Personnage other = (Personnage) obj;
|
||||
if (this.energie != other.energie) {
|
||||
return false;
|
||||
}
|
||||
if (this.dureeVie != other.dureeVie) {
|
||||
return false;
|
||||
}
|
||||
if (!Objects.equals(this.nom, other.nom)) {
|
||||
return false;
|
||||
}
|
||||
if (!Objects.equals(this.img, other.img)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of energie
|
||||
*
|
||||
* @return the value of energie
|
||||
*/
|
||||
public int getEnergie() {
|
||||
return energie;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of energie
|
||||
*
|
||||
* @param energie new value of energie
|
||||
*/
|
||||
public void setEnergie(int energie) {
|
||||
this.energie = energie;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of dureeVie
|
||||
*
|
||||
* @return the value of dureeVie
|
||||
*/
|
||||
public int getDureeVie() {
|
||||
return dureeVie;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of dureeVie
|
||||
*
|
||||
* @param dureeVie new value of dureeVie
|
||||
*/
|
||||
public void setDureeVie(int dureeVie) {
|
||||
this.dureeVie = dureeVie;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of img
|
||||
*
|
||||
* @return the value of img
|
||||
*/
|
||||
public String getImg() {
|
||||
return img;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of img
|
||||
*
|
||||
* @param img new value of img
|
||||
*/
|
||||
public void setImg(String img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Get the value of nom
|
||||
*
|
||||
* @return the value of nom
|
||||
*/
|
||||
public String getNom() {
|
||||
return nom;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of nom
|
||||
*
|
||||
* @param nom new value of nom
|
||||
*/
|
||||
public void setNom(String nom) {
|
||||
this.nom = nom;
|
||||
}
|
||||
|
||||
public String rencontrer(Personnage unPerso) {
|
||||
String titre = this.getNom() + " rencontre " + unPerso.getNom();
|
||||
String message = "Bonjour " + unPerso.getNom() + " !";
|
||||
JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE);
|
||||
//Icon imgPerso = new javax.swing.ImageIcon(getClass().getResource("/img/" + this.getImg()));
|
||||
//JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE, imgPerso);
|
||||
return message;
|
||||
}
|
||||
|
||||
public String saluer(Personnage unPerso){
|
||||
String titre = this.getNom() + " salue " + unPerso.getNom();
|
||||
String message = "Bonjour " + unPerso.getNom() + " Comment allez-vous ajourd'hui";
|
||||
//JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE);
|
||||
Icon imgPerso = new javax.swing.ImageIcon(getClass().getResource("/img/" + this.getImg()));
|
||||
JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE, imgPerso);
|
||||
return message;
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction permet de faire varier l'energie de l'objet émetteur
|
||||
* @param nb l'énergie à faire varier de this.energie
|
||||
*/
|
||||
public void varierEnergie(int nb){
|
||||
if ( (this.energie+ nb) >= 0){
|
||||
this.energie += nb;
|
||||
}
|
||||
else{
|
||||
JOptionPane.showMessageDialog(null,"Il m'est impossible d'avoir une énergie négative.\n Je dois revenir plus fort","Pouvoir insuffisant !", JOptionPane.INFORMATION_MESSAGE);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette fonction permet de faire varier la vie de l'objet émetteur
|
||||
* @param nb l'énergie à faire varier de this.dureeVie
|
||||
*/
|
||||
public void varierDureeVie(int nb){
|
||||
if ( (this.dureeVie+ nb) >= 0){
|
||||
this.dureeVie += nb;
|
||||
}
|
||||
else{
|
||||
JOptionPane.showMessageDialog(null,"Je me meurt\n Adieu monde cruel","Mortalité !", JOptionPane.INFORMATION_MESSAGE);
|
||||
}
|
||||
}
|
||||
}
|
81
JDR/src/metier/Sorcier.java
Normal file
@ -0,0 +1,81 @@
|
||||
package metier;
|
||||
|
||||
import java.util.Objects;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JOptionPane;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Dominique_2
|
||||
*/
|
||||
public class Sorcier extends Personnage {
|
||||
|
||||
private String baguette;
|
||||
|
||||
public Sorcier(String nom, String img, int energie, int dureeVie, String baguette) {
|
||||
super(nom, img, energie, dureeVie);
|
||||
this.baguette = baguette;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 7;
|
||||
hash = super.hashCode() + (73 * hash + Objects.hashCode(this.baguette));
|
||||
return hash;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
}
|
||||
final Sorcier other = (Sorcier) obj;
|
||||
if (!Objects.equals(this.baguette, other.baguette)) {
|
||||
return false;
|
||||
}
|
||||
if (!super.equals(obj)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString() + "\tBaguette=" + baguette + "\nNb Enigmes";
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of baguette
|
||||
*
|
||||
* @return the value of baguette
|
||||
*/
|
||||
public String getBaguette() {
|
||||
return baguette;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of baguette
|
||||
*
|
||||
* @param baguette new value of baguette
|
||||
*/
|
||||
public void setBaguette(String baguette) {
|
||||
this.baguette = baguette;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String saluer(Personnage unPerso){
|
||||
String titre = this.getNom() + " salue " + unPerso.getNom();
|
||||
String message ;
|
||||
message = "Bonjour " + unPerso.getNom() + " Tu es sous ma dépendance ";
|
||||
//JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE);
|
||||
Icon imgPerso = new javax.swing.ImageIcon(getClass().getResource("/img/" + this.getImg()));
|
||||
JOptionPane.showMessageDialog(null, message, titre, JOptionPane.INFORMATION_MESSAGE, imgPerso);
|
||||
return message;
|
||||
}
|
||||
}
|
112
JDR/src/metier/Voleur.java
Normal file
@ -0,0 +1,112 @@
|
||||
/*
|
||||
* To change this license header, choose License Headers in Project Properties.
|
||||
* To change this template file, choose Tools | Templates
|
||||
* and open the template in the editor.
|
||||
*/
|
||||
package metier;
|
||||
|
||||
import java.util.Objects;
|
||||
import javax.swing.Icon;
|
||||
import javax.swing.JOptionPane;
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Dominique_2
|
||||
*/
|
||||
public class Voleur extends Personnage{
|
||||
|
||||
private String outil;
|
||||
private String [] outils={"Pierre","Feuille","Ciseaux"};
|
||||
|
||||
public Voleur(String nom, String img, int energie, int dureeVie, String outil) {
|
||||
super(nom, img, energie, dureeVie);
|
||||
this.outil = outil;
|
||||
//this.butin = butin;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
int hash = 7;
|
||||
hash = super.hashCode() + (29 * hash + Objects.hashCode(this.outil));
|
||||
return hash;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) {
|
||||
return true;
|
||||
}
|
||||
if (obj == null) {
|
||||
return false;
|
||||
}
|
||||
if (getClass() != obj.getClass()) {
|
||||
return false;
|
||||
}
|
||||
final Voleur other = (Voleur) obj;
|
||||
if (!Objects.equals(this.outil, other.outil)) {
|
||||
return false;
|
||||
}
|
||||
if (!super.equals(obj)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return super.toString() + "\t Outil=" + outil + "\nButin=";
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the value of outil
|
||||
*
|
||||
* @return the value of outil
|
||||
*/
|
||||
public String getOutil() {
|
||||
return outil;
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the value of outil
|
||||
*
|
||||
* @param outil new value of outil
|
||||
*/
|
||||
public void setOutil(String outil) {
|
||||
this.outil = outil;
|
||||
}
|
||||
|
||||
public String rencontrer(Personnage unPerso){
|
||||
int choix_unPerso;
|
||||
int reponse;
|
||||
this.saluer(unPerso);
|
||||
|
||||
Icon PierreFeuilleCiseaux = new javax.swing.ImageIcon("/img/pierreFeuilleCiseaux.jpg");
|
||||
String message = "Que choisis-tu " + unPerso.getNom() + " !";
|
||||
String titre = "Pierre Feuille Ciseaux" + unPerso.getNom();
|
||||
|
||||
do{
|
||||
reponse = JOptionPane.showOptionDialog(null, message, titre, JOptionPane.DEFAULT_OPTION, JOptionPane.QUESTION_MESSAGE,PierreFeuilleCiseaux, outils, 0);
|
||||
System.out.println(reponse);
|
||||
choix_unPerso = Jeu.genererNbAleatoire(0, 2);
|
||||
}while(reponse == choix_unPerso);
|
||||
String voleur = this.outils[reponse];
|
||||
String vole = this.outils[choix_unPerso];
|
||||
|
||||
if((voleur.equals("Pierre")&& vole.equals("Ciseaux"))||
|
||||
(voleur.equals("Feuille")&& vole.equals("Pierre"))||
|
||||
(voleur.equals("Ciseaux")&& vole.equals("Feuille"))){
|
||||
|
||||
this.varierEnergie(1);
|
||||
unPerso.varierEnergie(-1);
|
||||
unPerso.varierDureeVie(-1);
|
||||
return "j'ai gagné wha hahaha !!" ;
|
||||
}else{
|
||||
this.varierEnergie(-1);
|
||||
unPerso.varierEnergie(+1);
|
||||
return "Tu as gagné espèce de fifrelin";
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|