-
Notifications
You must be signed in to change notification settings - Fork 0
/
batiments.php
335 lines (271 loc) · 17.1 KB
/
batiments.php
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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
<?php session_start();
if(!isset($_SESSION['pseudo'])) {header('Location:index.php');}
include_once'actu.php';
include_once'connectes.php'; ?>
<!DOCTYPE html>
<html>
<link rel="icon" type="image/ico" href="favicon.ico" />
<head>
<meta charset="utf-8"/>
<link rel="stylesheet" href="design.css" />
<title>Bâtiments</title>
</head>
<body onload="augmentation_ressource()">
<?php include_once'header.php'; ?>
<div id="g_section">
<div id="band_l"></div> <div id="band_r"></div>
<section>
<?php include_once'menu.php'; ?>
<div id="corps">
<h1>Bâtiments</h1>
<?php
require_once'cnx.php';
$req1 = $bdd->prepare('SELECT fer,roche,gold,bois,titan,mur FROM production WHERE id=?');
$req1->execute(array($_SESSION['id']));
$production = $req1->fetch();
$req2 = $bdd->prepare('SELECT fer_bois,fer_roche,bois_fer,bois_roche,roche_fer,roche_bois,gold_fer,gold_bois,gold_roche,titan_bois,titan_fer,roche_mur,forge,fer_temple,bois_temple FROM cout WHERE id = ?');
$req2->execute(array($_SESSION['id']));
$cout = $req2->fetch();
$req3 = $bdd->prepare('SELECT level,decret,coupe FROM membres WHERE id=?');
$req3->execute(array($_SESSION['id']));
$membre = $req3->fetch();
$req4 = $bdd->prepare('SELECT fer,roche,gold,bois,titan,mur,forge,temple FROM niveau WHERE id=?');
$req4->execute(array($_SESSION['id']));
$niveau = $req4->fetch();
$req5 = $bdd->prepare('SELECT guerrisseur FROM ressources WHERE id=?');
$req5->execute(array($_SESSION['id']));
$ressources = $req5->fetch();
?>
<!--------------On calcul les valeurs des next niveau/prod--------------->
<?php
include_once'fonction.php';
$prod_fer_f = ($production['fer']*1.1)+(8*$niveau['fer']);
$prod_fer_f = DegTruncation(floor($prod_fer_f));
$niv_fer_f=$niveau['fer']+1;
$prod_bois_f = ($production['bois']*1.1)+(8*$niveau['bois']);
$prod_bois_f = DegTruncation(floor($prod_bois_f));
$niv_bois_f=$niveau['bois']+1;
$prod_roche_f = ($production['roche']*1.1)+(8*$niveau['roche']);
$prod_roche_f = DegTruncation(floor($prod_roche_f));
$niv_roche_f=$niveau['roche']+1;
$prod_gold_f = ($production['gold']*1.1)+(8*$niveau['gold']);
$prod_gold_f = DegTruncation(floor($prod_gold_f));
$niv_gold_f = $niveau['gold']+1;
$def_mur_f=DegTruncation($production['mur']*2);
$roche_mur=$cout['roche_mur'];
$niv_mur_f=$niveau['mur']+1;
$prod_gold = $production['gold'];
$prod_fer = $production['fer'];
$prod_bois = $production['bois'];
$prod_roche = $production['roche'];
if($membre['decret'] == 1)
{
$prod_gold = floor($production['gold']*1.05);
$prod_gold_f = floor($prod_gold_f*1.05);
}
if($membre['decret'] == 2)
{
$prod_fer = floor($production['fer']*1.02);
$prod_bois = floor($production['bois']*1.02);
$prod_roche = floor($production['roche']*1.02);
$prod_fer_f = floor($prod_fer_f*1.02);
$prod_bois_f = floor($prod_bois_f*1.02);
$prod_roche_f = floor($prod_roche_f*1.02);
}
?>
<h3>Bâtiments de base :</h3>
<?php
if($membre['coupe']==3 || $membre['coupe']==4)
{
$fer_bois = floor($cout['fer_bois']*0.85);
$fer_roche = floor($cout['fer_roche']*0.85);
$bois_fer = floor($cout['bois_fer']*0.85);
$bois_roche = floor($cout['bois_roche']*0.85);
$roche_fer = floor($cout['roche_fer']*0.85);
$roche_bois = floor($cout['roche_bois']*0.85);
$gold_fer = floor($cout['gold_fer']*0.85);
$gold_bois = floor($cout['gold_bois']*0.85);
$gold_roche = floor($cout['gold_roche']*0.85);
$roche_mur = floor($cout['roche_mur']*0.85);
if($membre['level'] >= 3)
{
$fer_temple = $cout['fer_temple']*0.85;
$bois_temple = $cout['bois_temple']*0.85;
}
if($membre['level'] >= 5)
{
$titan_fer = $cout['titan_fer']*0.85;
$titan_bois = $cout['titan_bois']*0.85;
}
}
else
{
$fer_bois = $cout['fer_bois'];
$fer_roche = $cout['fer_roche'];
$bois_fer = $cout['bois_fer'];
$bois_roche = $cout['bois_roche'];
$roche_fer = $cout['roche_fer'];
$roche_bois = $cout['roche_bois'];
$gold_fer = $cout['gold_fer'];
$gold_bois = $cout['gold_bois'];
$gold_roche = $cout['gold_roche'];
$roche_mur = $cout['roche_mur'];
if($membre['level'] >= 3)
{
$fer_temple = $cout['fer_temple'];
$bois_temple = $cout['bois_temple'];
}
if($membre['level'] >= 5)
{
$titan_fer = $cout['titan_fer'];
$titan_bois = $cout['titan_bois'];
}
}
?>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/fer.png" alt="Mine de fer" title="Mine de fer"/></td>
<td class="bat-r">
<div class="bat2"><p>Actuel :<strong> <?php if($membre['decret'] == 2){ echo '<span class="bleu">'.number_format($prod_fer, 0, '.', ' ').'</span>';}else{echo number_format($prod_fer, 0, '.', ' ');}?></strong> <img src="images/fer_icon.png" alt="Icon fer" align="top" title="Fer"/> / heure</p></div>
<div class="bat3"><p>Niveau <?php echo $niv_fer_f;?> : <strong><?php if($membre['decret'] == 2){ echo '<span class="bleu">'.number_format($prod_fer_f, 0, '.', ' ').'</span>';}else{echo number_format($prod_fer_f, 0, '.', ' ');}?></strong> <img src="images/fer_icon.png" alt="Icon fer" align="top" title="Fer"/> / heure</p></p></div>
<div class="bat4"><p>Coût : <strong><?php echo number_format($fer_bois, 0, '.', ' ');?></strong> <img src="images/bois_icon.png" alt="Icon bois" align="top" title="Bois"/> | <strong><?php echo number_format($fer_roche, 0, '.', ' ');?></strong> <img src="images/roche_icon.png" alt="Icon roche" align="top" title="Roche"/></p>
<form method="post" action="traitement/batiments/fer.php" class="center_align">
<input type="submit" name="subf" value="Niveau suivant" />
</form></div></td>
<td class="debug"><h5 class="bat_titre">Mine de fer</h5><p>Ce batiment fourni votre production principale de fer. </p></td>
</tr>
</table>
<?php if((isset($_GET['error'])) && ($_GET['error']=='b_fer')) { ?> <p class="msg_ress">Vous n'avez pas assez de ressources !</p> <?php } ?>
<br/>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/bois.png" alt="Mine de bois" title="Mine de bois"/></td>
<td class="bat-r">
<div class="bat2"><p>Actuel :<strong> <?php if($membre['decret'] == 2){ echo '<span class="bleu">'.number_format($prod_bois, 0, '.', ' ').'</span>';}else{echo number_format($prod_bois, 0, '.', ' ');}?></strong> <img src="images/bois_icon.png" alt="Icon bois" align="top" title="Bois"/> / heure</p></div>
<div class="bat3"><p>Niveau <?php echo $niv_bois_f;?> : <strong><?php if($membre['decret'] == 2){ echo '<span class="bleu">'.number_format($prod_bois_f, 0, '.', ' ').'</span>';}else{echo number_format($prod_bois_f, 0, '.', ' ');}?></strong> <img src="images/bois_icon.png" alt="Icon bois" align="top" title="Bois"/> / heure</p></p></div>
<div class="bat4"><p>Coût : <strong><?php echo number_format($bois_fer, 0, '.', ' ');?></strong> <img src="images/fer_icon.png" alt="Icon fer" align="top" title="Fer"/> | <strong><?php echo number_format($bois_roche, 0, '.', ' ');?></strong> <img src="images/roche_icon.png" alt="Icon roche" align="top" title="Roche"/></p>
<form method="post" action="traitement/batiments/bois.php" class="center_align">
<input type="submit" name="subb" value="Niveau suivant" />
</form></div></td>
<td class="debug"><h5 class="bat_titre">Récolteur de bois</h5><p>Ce batiment fourni votre production principale de bois.</p></td>
</tr>
</table>
<?php if((isset($_GET['error'])) && ($_GET['error']=='b_bois')) { ?> <p class="msg_ress">Vous n'avez pas assez de ressources !</p> <?php } ?>
<br/>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/roche.png" alt="Mine de roche" title="Mine de roche"/></td>
<td class="bat-r">
<div class="bat2"><p>Actuel :<strong> <?php if($membre['decret'] == 2){ echo '<span class="bleu">'.number_format($prod_roche, 0, '.', ' ').'</span>';}else{echo number_format($prod_roche, 0, '.', ' ');}?></strong> <img src="images/roche_icon.png" alt="Icon roche" align="top" title="Roche"/> / heure</p></div>
<div class="bat3"><p>Niveau <?php echo $niv_roche_f;?> : <strong><?php if($membre['decret'] == 2){ echo '<span class="bleu">'.number_format($prod_roche_f, 0, '.', ' ').'</span>';}else{echo number_format($prod_roche_f, 0, '.', ' ');}?></strong> <img src="images/roche_icon.png" alt="Icon roche" align="top" title="Roche"/> / heure</p></p></div>
<div class="bat4"><p>Coût : <strong><?php echo number_format($roche_fer, 0, '.', ' ');?></strong> <img src="images/fer_icon.png" alt="Icon fer" align="top" title="Fer"/> | <strong><?php echo number_format($roche_bois, 0, '.', ' ');?></strong> <img src="images/bois_icon.png" alt="Icon bois" align="top" title="Bois"/></p>
<form method="post" action="traitement/batiments/roche.php" class="center_align">
<input type="submit" name="subr" value="Niveau suivant" />
</form></div></td>
<td class="debug"><h5 class="bat_titre">Extracteur de roche</h5><p>Ce batiment vous fourni en roche.</td>
</tr>
</table>
<?php if((isset($_GET['error'])) && ($_GET['error']=='b_roche')) { ?> <p class="msg_ress">Vous n'avez pas assez de ressources !</p> <?php } ?>
<br/>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/or.png" alt="Générateur d'or" title="Générateur d'or"/></td>
<td class="bat-r">
<div class="bat2"><p>Actuel :<strong> <?php if($membre['decret'] == 1){ echo '<span class="bleu">'.number_format($prod_gold, 0, '.', ' ').'</span>';}else{echo number_format($prod_gold, 0, '.', ' ');}?></strong> <img src="images/gold_icon.png" alt="Icon or" align="top" title="Or"/> / heure</p></div>
<div class="bat3"><p>Niveau <?php echo $niv_gold_f;?> : <strong><?php if($membre['decret'] == 1){ echo '<span class="bleu">'.number_format($prod_gold_f, 0, '.', ' ').'</span>';}else{echo number_format($prod_gold_f, 0, '.', ' ');}?></strong> <img src="images/gold_icon.png" alt="Icon or" align="top" title="Or"/> / heure</p></p></div>
<div class="bat4"><p>Coût : <strong><?php echo number_format($gold_fer, 0, '.', ' ');?></strong> <img src="images/fer_icon.png" alt="Icon fer" align="top" title="Fer"/> | <strong><?php echo number_format($gold_bois, 0, '.', ' ');?></strong> <img src="images/bois_icon.png" alt="Icon bois" align="top" title="Bois"/> | <strong><?php echo number_format($gold_roche, 0, '.', ' ');?></strong> <img src="images/roche_icon.png" alt="Icon roche" align="top" title="Roche"/></p>
<form method="post" action="traitement/batiments/gold.php" class="center_align">
<input type="submit" name="subo" value="Niveau suivant" />
</form></div></td>
<td class="debug"><h5 class="bat_titre">Générateur d'or</h5><p>Ce batiment fourni votre production principale d'or. Il fournit une des ressources la plus importante du jeu. </p></td>
</tr>
</table>
<?php if((isset($_GET['error'])) && ($_GET['error']=='b_gold')) { ?> <p class="msg_ress">Vous n'avez pas assez de ressources !</p> <?php } ?>
<br/>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/mur.jpg" alt="Le mur" title="Le mur" height="100" width="100" /></td>
<td class="bat-r">
<div class="bat2"><p>Actuel :<strong> +<?php echo number_format($production['mur'], 0, '.', ' ');?></strong> Défense</p></div>
<div class="bat3"><p>Niveau <?php echo $niv_mur_f;?> : <strong> +<?php echo number_format($def_mur_f, 0, '.', ' ');?></strong> Défense</p></p></div>
<div class="bat4"><p>Coût : <strong><?php echo number_format($roche_mur, 0, '.', ' ');?></strong> <img src="images/roche_icon.png" alt="Icon roche" align="top" title="Roche"/></p>
<form method="post" action="traitement/batiments/mur.php" class="center_align">
<input type="submit" name="subm" value="Niveau suivant" />
</form></div></td>
<td class="debug"><h5 class="bat_titre">Le mur</h5><p>Le mur vous protège de vos ennemis. Il augmente votre défense mais il vous faut beaucoup de roche pour le construire.</p></td>
</tr>
</table>
<?php if((isset($_GET['error'])) && ($_GET['error']=='r_mur')) { ?> <p class="msg_ress">Vous n'avez pas assez de roche !</p> <?php } ?>
<br/>
<?php
if($membre['level']>=3)
{ ?>
<h3>Bâtiments de niveau 3 :</h3> <?php
$temple_future = $niveau['temple']*2+2;
$niv_temple_f = $niveau['temple']+1;
?>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/temple.png" alt="Temple des voeux" title="Temple des voeux"/></td>
<td class="bat-r">
<div class="bat2"><p>Actuel : Permet <strong><?php echo number_format(($niveau['temple']*2), 0, '.', ' ');?> guérisseurs </strong></p></div>
<div class="bat3"><p>Niveau <?php echo $niveau['temple'];?> : Permet <strong><?php echo number_format($niveau['temple']*2+2, 0, '.', ' ');?> guérisseurs</strong></p></p></div>
<div class="bat4"><p>Coût : <strong><?php echo number_format($fer_temple, 0, '.', ' ');?></strong> <img src="images/fer_icon.png" alt="Icon fer" align="top" title="Fer"/> | <strong><?php echo number_format($bois_temple, 0, '.', ' ');?></strong> <img src="images/bois_icon.png" alt="Icon bois" align="top" title="Bois"/></p>
<form method="post" action="traitement/batiments/temple.php" class="center_align">
<input type="submit" name="subtemple" value="Niveau suivant" />
</form><p>Vous avez actuellement <strong><?php echo $ressources['guerrisseur']; ?></strong> guérrisseur(s)</p></div></td>
<td class="debug"><h5 class="bat_titre">Temple des voeux</h5><p>Le temple des voeux permet d'accueillir des guerrisseurs. Chaque guérisseur permet de réssuciter 0.5% de ses troupes après chaque combat. La limite de ce bâtiment est de 20% des troupes perdues</td>
</tr>
</table><br/>
<?php if((isset($_GET['msg'])) && ($_GET['msg']=='temple')) { ?> <p class="msg_ress">Vous n'avez pas assez de ressources pour augementer le temple.</p> <?php }}
if($membre['level']>=5)
{
?>
<h3>Bâtiments de niveau 5 :</h3> <?php
$prod_titan_f = DegTruncation(floor($production['titan']*1.1+4*$niveau['titan']));
$niv_titan_f = $niveau['titan']+1;
?>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/titan.png" alt="Mine de titan" title="Mine de titan"/></td>
<td class="bat-r">
<div class="bat2"><p>Actuel :<strong> <?php echo number_format($production['titan'], 0, '.', ' ');?></strong> <img src="images/titane_icon.png" alt="Icon titane" align="top" title="Titane"/>/ heure</p></div>
<div class="bat3"><p>Niveau <?php echo $niv_titan_f;?> : <strong><?php echo number_format($prod_titan_f, 0, '.', ' ');?></strong> <img src="images/titane_icon.png" alt="Icon titane" align="top" title="Titane"/>/ heure</p></p></div>
<div class="bat4"><p>Coût : <strong><?php echo number_format($titan_fer, 0, '.', ' ');?></strong> <img src="images/fer_icon.png" alt="Icon fer" align="top" title="Fer"/> | <strong><?php echo number_format($titan_bois, 0, '.', ' ');?></strong> <img src="images/bois_icon.png" alt="Icon bois" align="top" title="Bois"/></p>
<form method="post" action="traitement/batiments/titan.php" class="center_align">
<input type="submit" name="subt" value="Niveau suivant" />
</form></div></td>
<td class="debug"><h5 class="bat_titre">Mine de titan</h5><p>Ce batiment fourni votre production principale de titan. Il se débloque après avoir passé le niveau 5</td>
</tr>
</table><br/>
<?php if((isset($_GET['error'])) && ($_GET['error']=='b_titan')) { ?> <p class="msg_ress">Vous n'avez pas assez de ressources !</p> <?php } ?>
<?php $niv_forge_f=$niveau['forge']+1; $prod_forge = $niveau['forge']*3; $prod_forge_f = $prod_forge+3; $forge_titane=$cout['forge']; ?>
<table class="bat05">
<tr class="bat1">
<td class="bat-a"><img src="images/batiments/forge.png" alt="Forge" title="Forge"/></td>
<td class="bat-r">
<div class="bat2"><p>Actuel :<strong> <?php if($niveau['forge']>=1){echo number_format($prod_forge, 0, '.', ' ').'</strong> % d\'attaque supplémentaire';}else{echo 'Aucun bonus';}?></strong></p></div>
<div class="bat3"><p><?php if($niveau['forge']==5){echo 'Niveau max atteint.';}else{ ?> Niveau <?php echo $niv_forge_f;?> : <strong><?php echo number_format($prod_forge_f, 0, '.', ' ');?>%</strong> d'attaque supplémentaire <?php } ?></p></p></div>
<div class="bat4"><p><?php
if($niveau['forge']==5){echo 'Votre forgeron développe les meilleurs armes qui existent sur le marché !';}
else{ ?>
Coût : <strong><?php echo number_format($forge_titane, 0, '.', ' '); ?></strong> <img src="images/titane_icon.png" alt="Icon titane" align="top" title="Titane"/></p>
<form method="post" action="traitement/batiments/forge.php" class="center_align">
<input type="submit" name="subfo" value="Niveau suivant" />
</form></div></td> <?php } ?>
<td class="debug"><h5 class="bat_titre">Forge</h5><p>La forge est un outil puissant qui vous permet d'augmenter l'attaque des vos troupes en leur fournissant des armes de qualité.</td>
</tr>
</table>
<?php if((isset($_GET['erreur'])) && ($_GET['erreur']=='forge')) { ?> <p class="msg_ress">Vous n'avez pas assez de titan pour ameliorer la forge !</p> <?php } ?>
<?php } ?> <!--Fin du level 5-->
<?php
$req1->closeCursor();
$req2->closeCursor();
$req_connecte = $bdd->query('SELECT COUNT(*) FROM connectes');
$connectes = $req_connecte->fetchColumn(); ?>
</div>
<?php include_once'footer.php'; ?>
</section>
</div>
</body >
</html>