gestionFichiers.cpp 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #include "gestionFichiers.h"
  2. using namespace std;
  3. int haveNbJoueurs()
  4. {
  5. string const nomFichierParametre("config.txt");
  6. ifstream fluxIn(nomFichierParametre.c_str());
  7. if (fluxIn)
  8. {
  9. //Ouverture fichier succés
  10. int nbJoueurs;
  11. fluxIn >> nbJoueurs;
  12. return nbJoueurs;
  13. }
  14. else
  15. {
  16. //Echec ouverture fichier
  17. cout << "ERREUR: impossible de lire le fichier " << nomFichierParametre << " ." << endl;
  18. return -1;
  19. }
  20. }
  21. int haveNbBlocs(char axe)
  22. {
  23. //[1] Ouverture du flux
  24. string const nomFichierParametre("config.txt");
  25. ifstream fluxIn(nomFichierParametre.c_str());
  26. if (!fluxIn)
  27. {
  28. //Echec ouverture fichier
  29. cout << "ERREUR: impossible de lire le fichier " << nomFichierParametre << " ." << endl;
  30. return -1;
  31. }
  32. //[2] Création de divers variables
  33. string lineJumper("Permet de sauter des lignes");
  34. int nbBlocs(0);
  35. //[3] Lectures et return
  36. switch (axe)
  37. {
  38. case 'x':
  39. getline(fluxIn,lineJumper);
  40. fluxIn >> nbBlocs;
  41. return nbBlocs;
  42. break;
  43. case 'y':
  44. getline(fluxIn,lineJumper);
  45. getline(fluxIn,lineJumper);
  46. fluxIn >> nbBlocs;
  47. return nbBlocs;
  48. break;
  49. }
  50. return -1;
  51. }