1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198
| ////////////////////////////////
// PorkyFighter //
// Logiciel de location de //
// terrains pour le TCG //
// 2006 //
// porkyfighter@hotmail.com //
////////////////////////////////
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
void DeclarationSemaine();
int main (int argc, char *argv[])
{
DeclarationSemaine();
system("PAUSE");
return EXIT_SUCCESS;
}
void DeclarationSemaine()
{
typedef struct journee journee;
struct journee
{
int d8a9;
int d9a10;
int d10a11;
int d11a12;
int d12a13;
int d13a14;
int d14a15;
int d15a16;
int d16a17;
int d17a18;
int d18a19;
int d19a20;
};
journee Lundi[3];
journee Mardi[3];
journee Mercredi[3];
journee Jeudi[3];
journee Vendredi[3];
journee Samedi[3];
journee Dimanche[3];
int iL, iM, iMe, iJ, iV, iS, iD, u;
char ChaineTest[1000] = {0};
char chaine[1000];
char ChaineTestx[1000];
//Declaration des differentes heures de cours sur chaque terrain, chaque tableau contient les 3 terrains, 0 est le terrain 1, 1 le terrain 2, 2 le terrain 3.
//Utilisation d'un booleen pour le statut des terrains, 0 si le terrain est libre, 1 si il est pris. Cela sera plus facile plus tard pour tester la disponibilité des terrainst
for (iL = 0; iL < 3 ; iL++)
{
Lundi[iL].d8a9 = 0;
Lundi[iL].d9a10 = 0;
Lundi[iL].d10a11 = 0;
Lundi[iL].d11a12 = 0;
Lundi[iL].d12a13 = 0;
Lundi[iL].d13a14 = 0;
Lundi[iL].d14a15 = 0;
Lundi[iL].d15a16 = 0;
Lundi[iL].d16a17 = 0;
Lundi[iL].d17a18 = 1;
Lundi[iL].d18a19 = 1;
Lundi[iL].d19a20 = 1;
}
for(iM = 0; iM < 3 ; iM++)
{
Mardi[iM].d8a9 = 0;
Mardi[iM].d9a10 = 0;
Mardi[iM].d10a11 = 0;
Mardi[iM].d11a12 = 0;
Mardi[iM].d12a13 = 0;
Mardi[iM].d13a14 = 0;
Mardi[iM].d14a15 = 0;
Mardi[iM].d15a16 = 0;
Mardi[iM].d16a17 = 0;
Mardi[iM].d17a18 = 1;
Mardi[iM].d18a19 = 1;
Mardi[iM].d19a20 = 1;
}
for(iMe = 0; iMe < 3 ; iMe++)
{
Mercredi[iMe].d8a9 = 0;
Mercredi[iMe].d9a10 = 0;
Mercredi[iMe].d10a11 = 0;
Mercredi[iMe].d11a12 = 0;
Mercredi[iMe].d12a13 = 0;
Mercredi[iMe].d13a14 = 1;
Mercredi[iMe].d14a15 = 1;
Mercredi[iMe].d15a16 = 1;
Mercredi[iMe].d16a17 = 1;
Mercredi[iMe].d17a18 = 1;
Mercredi[iMe].d18a19 = 1;
Mercredi[iMe].d19a20 = 1;
}
for(iJ = 0; iJ < 3 ; iJ++)
{
Jeudi[iJ].d8a9 = 0;
Jeudi[iJ].d9a10 = 0;
Jeudi[iJ].d10a11 = 0;
Jeudi[iJ].d11a12 = 0;
Jeudi[iJ].d12a13 = 0;
Jeudi[iJ].d13a14 = 0;
Jeudi[iJ].d14a15 = 0;
Jeudi[iJ].d15a16 = 0;
Jeudi[iJ].d16a17 = 0;
Jeudi[iJ].d17a18 = 1;
Jeudi[iJ].d18a19 = 1;
Jeudi[iJ].d19a20 = 1;
}
for(iV = 0; iV < 3 ; iV++)
{
Vendredi[iV].d8a9 = 0;
Vendredi[iV].d9a10 = 0;
Vendredi[iV].d10a11 = 0;
Vendredi[iV].d11a12 = 0;
Vendredi[iV].d12a13 = 0;
Vendredi[iV].d13a14 = 0;
Vendredi[iV].d14a15 = 0;
Vendredi[iV].d15a16 = 0;
Vendredi[iV].d16a17 = 0;
Vendredi[iV].d17a18 = 1;
Vendredi[iV].d18a19 = 1;
Vendredi[iV].d19a20 = 1;
}
for(iS = 0; iS < 3; iS++)
{
Samedi[iS].d8a9 = 0;
Samedi[iS].d9a10 = 0;
Samedi[iS].d10a11 = 0;
Samedi[iS].d11a12 = 0;
Samedi[iS].d12a13 = 0;
Samedi[iS].d13a14 = 1;
Samedi[iS].d14a15 = 1;
Samedi[iS].d15a16 = 1;
Samedi[iS].d16a17 = 1;
Samedi[iS].d17a18 = 1;
Samedi[iS].d18a19 = 1;
Samedi[iS].d19a20 = 1;
}
for(iD = 0; iD < 3; iD++)
{
Dimanche[iD].d8a9 = 0;
Dimanche[iD].d9a10 = 0;
Dimanche[iD].d10a11 = 0;
Dimanche[iD].d11a12 = 0;
Dimanche[iD].d12a13 = 0;
Dimanche[iD].d13a14 = 0;
Dimanche[iD].d14a15 = 0;
Dimanche[iD].d15a16 = 0;
Dimanche[iD].d16a17 = 0;
Dimanche[iD].d17a18 = 0;
Dimanche[iD].d18a19 = 0;
Dimanche[iD].d19a20 = 0;
}
FILE* Test = NULL;
Test = fopen("config.cfg", "r");
if (Test != NULL)
{
while (fgets(chaine, 1000, Test) != NULL)
{
sprintf(ChaineTestx, "%s", chaine);
strcat(ChaineTest, ChaineTestx);
}
FILE* Copie = NULL;
Copie = fopen("save/config.cfg", "w+");
fprintf(Copie, "%s", ChaineTest);
fclose(Copie);
fclose(Test);
}
// Si le fichier existe, le sauvegarder dans le sous dossier \sauvegarde
////Ecriture dans le fichier
FILE* Fichier = NULL;
Fichier = fopen("config.cfg", "w+");
for (u = 0; u < 3 ; u++)
{
//Lundi
fprintf(Fichier,"%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n", Lundi[u].d8a9, Lundi[u].d9a10, Lundi[u].d10a11, Lundi[u].d11a12, Lundi[u].d12a13, Lundi[u].d13a14, Lundi[u].d14a15, Lundi[u].d15a16, Lundi[u].d16a17, Lundi[u].d17a18, Lundi[u].d18a19, Lundi[u].d19a20);
//Mardi
fprintf(Fichier,"%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n", Mardi[u].d8a9, Mardi[u].d9a10, Mardi[u].d10a11, Mardi[u].d11a12, Mardi[u].d12a13, Mardi[u].d13a14, Mardi[u].d14a15, Mardi[u].d15a16, Mardi[u].d16a17, Mardi[u].d17a18, Mardi[u].d18a19, Mardi[u].d19a20);
//Mercredi
fprintf(Fichier,"%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n", Mercredi[u].d8a9, Mercredi[u].d9a10, Mercredi[u].d10a11, Mercredi[u].d11a12, Mercredi[u].d12a13, Mercredi[u].d13a14, Mercredi[u].d14a15, Mercredi[u].d15a16, Mercredi[u].d16a17, Mercredi[u].d17a18, Mercredi[u].d18a19, Mercredi[u].d19a20);
//Jeudi
fprintf(Fichier,"%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n", Jeudi[u].d8a9, Jeudi[u].d9a10, Jeudi[u].d10a11, Jeudi[u].d11a12, Jeudi[u].d12a13, Jeudi[u].d13a14, Jeudi[u].d14a15, Jeudi[u].d15a16, Jeudi[u].d16a17, Jeudi[u].d17a18, Jeudi[u].d18a19, Jeudi[u].d19a20);
//Vendredi
fprintf(Fichier,"%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n", Vendredi[u].d8a9, Vendredi[u].d9a10, Vendredi[u].d10a11, Vendredi[u].d11a12, Vendredi[u].d12a13, Vendredi[u].d13a14, Vendredi[u].d14a15, Vendredi[u].d15a16, Vendredi[u].d16a17, Vendredi[u].d17a18, Vendredi[u].d18a19, Vendredi[u].d19a20);
//Samedi
fprintf(Fichier,"%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n", Samedi[u].d8a9, Samedi[u].d9a10, Samedi[u].d10a11, Samedi[u].d11a12, Samedi[u].d12a13, Samedi[u].d13a14, Samedi[u].d14a15, Samedi[u].d15a16, Samedi[u].d16a17, Samedi[u].d17a18, Samedi[u].d18a19, Samedi[u].d19a20);
//Dimanche
fprintf(Fichier,"%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n%d\n", Dimanche[u].d8a9, Dimanche[u].d9a10, Dimanche[u].d10a11, Dimanche[u].d11a12, Dimanche[u].d12a13, Dimanche[u].d13a14, Dimanche[u].d14a15, Dimanche[u].d15a16, Dimanche[u].d16a17, Dimanche[u].d17a18, Dimanche[u].d18a19, Dimanche[u].d19a20);
}
fclose(Fichier);
printf("Semaine remise a zero\n");
} |
Partager