Ajout de la classe Score et de la connection entre BaseGame et Score
This commit is contained in:
parent
339c1fb466
commit
f0b8b197b3
|
@ -3,4 +3,6 @@
|
|||
<string name="app_name">PtiClic</string>
|
||||
<string name="prefs_name">Préférences</string>
|
||||
<string name="play_label">Jouer</string>
|
||||
<string name="textInfo">Ce projet a été réalisé l</string>
|
||||
<color name="background">#FF0000</color>
|
||||
</resources>
|
||||
|
|
51
code/PtiClic/src/org/pticlic/Score.java
Normal file
51
code/PtiClic/src/org/pticlic/Score.java
Normal file
|
@ -0,0 +1,51 @@
|
|||
package org.pticlic;
|
||||
|
||||
import org.pticlic.model.Constant;
|
||||
import org.pticlic.model.GamePlayed;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
import android.view.View;
|
||||
import android.view.View.OnClickListener;
|
||||
|
||||
public class Score extends Activity implements OnClickListener{
|
||||
|
||||
private GamePlayed gamePlayed;
|
||||
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.score);
|
||||
|
||||
if (getIntent().getExtras() != null) {
|
||||
// Pour JC : GamePlayed contient toutes les infos sur la partie jouee
|
||||
this.gamePlayed = (GamePlayed) getIntent().getExtras().get(Constant.SCORE_INTENT);
|
||||
}
|
||||
// ((TextView)findViewById(R.id.corrects)).setText("Mots corrects : "
|
||||
// + this.corrects);
|
||||
// ((TextView)findViewById(R.id.manquants)).setText("Mots manquants : "
|
||||
// + this.manquants);
|
||||
// ((TextView)findViewById(R.id.mauvais)).setText("Mots mauvais : "
|
||||
// + this.mauvais);
|
||||
// ((TextView)findViewById(R.id.total)).setText("Total de " + total
|
||||
// + "point(s)");
|
||||
// ((Button)findViewById(R.id.jaivu)).setOnClickListener(this);
|
||||
}
|
||||
|
||||
|
||||
|
||||
protected double calculateTotal(){
|
||||
throw new UnsupportedOperationException();
|
||||
//return this.corrects - this.manquants - this.mauvais;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onClick(View v) {
|
||||
if (v.getId()==R.id.jaivu) {
|
||||
startActivity(new Intent(this, Main.class));
|
||||
}
|
||||
|
||||
}
|
||||
}
|
|
@ -1,6 +1,7 @@
|
|||
package org.pticlic.games;
|
||||
|
||||
import org.pticlic.R;
|
||||
import org.pticlic.Score;
|
||||
import org.pticlic.model.Constant;
|
||||
import org.pticlic.model.Game;
|
||||
import org.pticlic.model.GamePlayed;
|
||||
|
@ -8,6 +9,7 @@ import org.pticlic.model.Network;
|
|||
import org.pticlic.model.Network.Mode;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.content.Intent;
|
||||
import android.content.SharedPreferences;
|
||||
import android.os.Bundle;
|
||||
import android.preference.PreferenceManager;
|
||||
|
@ -33,7 +35,7 @@ public class BaseGame extends Activity implements OnClickListener {
|
|||
setContentView(R.layout.game);
|
||||
|
||||
SharedPreferences sp = PreferenceManager.getDefaultSharedPreferences(this);
|
||||
String serverURL = sp.getString(Constant.SERVER_URL, "http://serveur/pticlic.php");
|
||||
String serverURL = sp.getString(Constant.SERVER_URL, "http://serveur/pticlic.php"); // TODO : Mettre comme valeur par defaut l'adresse reel du serveur
|
||||
|
||||
Network network = new Network(serverURL, Mode.SIMPLE_GAME);
|
||||
game = network.getGames(1);
|
||||
|
@ -55,6 +57,8 @@ public class BaseGame extends Activity implements OnClickListener {
|
|||
if (nbrel > 2) { r3.setOnClickListener(this); } else { r3.setVisibility(View.GONE); }
|
||||
if (nbrel > 3) { r4.setOnClickListener(this); } else { r4.setVisibility(View.GONE); }
|
||||
|
||||
|
||||
//TODO : Faudrait gere dynamiquement la gestion des nom des relations.
|
||||
r1.setText("=");
|
||||
r2.setText("Poubelle");
|
||||
r3.setText("∈");
|
||||
|
@ -68,6 +72,9 @@ public class BaseGame extends Activity implements OnClickListener {
|
|||
start();
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette methode permet au mot courant de partir du mot central vers le centre de l'appareil.
|
||||
*/
|
||||
private void arrivalView() {
|
||||
//On recupere la largueur de l'ecran.
|
||||
Display display = getWindowManager().getDefaultDisplay();
|
||||
|
@ -93,17 +100,24 @@ public class BaseGame extends Activity implements OnClickListener {
|
|||
findViewById(R.id.currentWord).startAnimation(set);
|
||||
}
|
||||
|
||||
/**
|
||||
* Cette methode permet de passer au mot courant suivant et de lancer l'animation.
|
||||
*/
|
||||
private void start() {
|
||||
((TextView)findViewById(R.id.currentWord)).setText(Game.getName(game.getWordInCloud(currentWord)));
|
||||
arrivalView();
|
||||
}
|
||||
|
||||
/**
|
||||
* Permet de verifier si la partie est fini auquel cas on lance l'activite Score, sinon on passe au mot suivant.
|
||||
*/
|
||||
private void next() {
|
||||
if (currentWord < nbWord) {
|
||||
currentWord++;
|
||||
start();
|
||||
} else {
|
||||
//TODO : Ajout l'envoie de GamePlayed a Score
|
||||
Intent intent = new Intent(this, Score.class);
|
||||
intent.putExtra(Constant.SCORE_INTENT, gamePlayed);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -2,4 +2,7 @@ package org.pticlic.model;
|
|||
|
||||
public class Constant {
|
||||
public static final String SERVER_URL = "SERVER_URL";
|
||||
|
||||
// Constant pour les intents
|
||||
public static final String SCORE_INTENT = "SCORE_INTENT";
|
||||
}
|
||||
|
|
|
@ -1,13 +1,16 @@
|
|||
package org.pticlic.model;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class GamePlayed {
|
||||
public class GamePlayed implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
private ArrayList<CharSequence> relation1;
|
||||
private ArrayList<CharSequence> relation2;
|
||||
private ArrayList<CharSequence> relation3;
|
||||
private ArrayList<CharSequence> relation4;
|
||||
private Game game;
|
||||
private ArrayList<CharSequence> relation4;
|
||||
private Game game;
|
||||
|
||||
public GamePlayed() {
|
||||
relation1 = new ArrayList<CharSequence>();
|
||||
|
@ -18,6 +21,10 @@ public class GamePlayed {
|
|||
|
||||
public void setGame(Game game) {
|
||||
this.game = game;
|
||||
}
|
||||
|
||||
public Game getGame() {
|
||||
return game;
|
||||
}
|
||||
|
||||
public void add(int relation, CharSequence word) {
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user