|
|
@@ -0,0 +1,162 @@ |
|
|
|
<!DOCTYPE html> |
|
|
|
<html lang="fr"> |
|
|
|
<head> |
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> |
|
|
|
<title>EcoMonde</title> |
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1"> |
|
|
|
<link rel="shortcut icon" href="../../img/favicon.png" type="image/x-icon" /> |
|
|
|
<link rel="stylesheet" href="../../css/bootstrap.css" media="screen"> |
|
|
|
<link rel="stylesheet" href="../../css/bootswatch.min.css"> |
|
|
|
<link rel="stylesheet" href="../../css/ionicons.min.css"> |
|
|
|
<link rel="stylesheet" href="../../css/ecomonde.css"> |
|
|
|
</head> |
|
|
|
<body> |
|
|
|
<?php |
|
|
|
if(!empty($_GET["view"])) |
|
|
|
{ |
|
|
|
$xml = simplexml_load_file($_GET["view"].'.xml'); |
|
|
|
foreach($xml->entry as $entry) |
|
|
|
{ ?> |
|
|
|
|
|
|
|
<!-- phoneview --> |
|
|
|
<div class="well"> |
|
|
|
<a href="index.php" class="btn btn-default btn-lg"><i class="ionicons ion-arrow-left-a"></i></a> |
|
|
|
<a href="index.php?view=<?php echo $entry->nom; ?>" class="btn btn-info btn-lg"><i class="ionicons ion-refresh"></i> Recharger</a> |
|
|
|
<a href="http://wiki.ecomonde.land/doku.php?id=wiki:equipements" class="btn btn-default btn-lg" target="_blank"><i class="ionicons ion-android-book"></i> Wiki:Equipements</a> |
|
|
|
</div> |
|
|
|
<hr /> |
|
|
|
<div class="panel panel-<?php echo $entry->trans; ?>"> |
|
|
|
<div class="panel-heading"> |
|
|
|
<div class="container-fluid"> |
|
|
|
<span class="level_phone"><?php echo $entry->level; ?></span> |
|
|
|
<span class="player_name_phone"><?php echo $entry->nom; ?></span> |
|
|
|
<span class="skill_phone">Att : <?php echo ($entry->attack+$entry->level); ?></span> |
|
|
|
<span class="skill_phone">Def : <?php echo ($entry->defense+$entry->level); ?></span> |
|
|
|
<br /> |
|
|
|
<?php |
|
|
|
$hp_max="10"; |
|
|
|
switch ($entry->level) |
|
|
|
{ |
|
|
|
case 0: |
|
|
|
$hp_max+=0; |
|
|
|
break; |
|
|
|
case 1: |
|
|
|
$hp_max+=2; |
|
|
|
break; |
|
|
|
case 2: |
|
|
|
$hp_max+=5; |
|
|
|
break; |
|
|
|
case 3: |
|
|
|
$hp_max+=10; |
|
|
|
break; |
|
|
|
default: |
|
|
|
echo "?"; |
|
|
|
} |
|
|
|
?> |
|
|
|
<i class="ionicons ion-heart" style="color:red;";></i> <strong><?php echo $entry->hp; ?></strong><sub>/<?php echo $hp_max; ?></sub> |
|
|
|
<i class="ionicons ion-egg" style="color:brown;";></i> <strong><?php echo $entry->money; ?></strong> |
|
|
|
<i class="ionicons ion-flash" style="color:#FFD700;";></i> <strong><?php echo $entry->xp; ?></strong> |
|
|
|
<i class="glyphicon glyphicon-gift" style="color:blue;";></i> <strong><?php echo $entry->gift; ?></strong> |
|
|
|
</div> |
|
|
|
<div class="panel-body"> |
|
|
|
<div class="container-fluid"> |
|
|
|
<div class="progress progress-striped active"> |
|
|
|
<div class="progress-bar-eco verte glow"><span style="width: <?php echo ($entry->ecos->verte)*20; ?>%"><?php echo $entry->ecos->verte; ?></span></div> |
|
|
|
</div> |
|
|
|
<div class="progress progress-striped active"> |
|
|
|
<div class="progress-bar-eco bleue glow"><span style="width: <?php echo ($entry->ecos->bleue)*20; ?>%"><?php echo $entry->ecos->bleue; ?></span></div> |
|
|
|
</div> |
|
|
|
<div class="progress progress-striped active"> |
|
|
|
<div class="progress-bar-eco jaune glow"><span style="width: <?php echo ($entry->ecos->jaune)*20; ?>%"><?php echo $entry->ecos->jaune; ?></span></div> |
|
|
|
</div> |
|
|
|
<div class="progress progress-striped active"> |
|
|
|
<div class="progress-bar-eco rouge glow"><span style="width: <?php echo ($entry->ecos->rouge)*20; ?>%"><?php echo $entry->ecos->rouge; ?></span></div> |
|
|
|
</div> |
|
|
|
<div class="progress progress-striped active"> |
|
|
|
<div class="progress-bar-eco blanche glow"><span style="width: <?php echo ($entry->ecos->blanche)*20; ?>%"><?php echo $entry->ecos->blanche; ?></span></div> |
|
|
|
</div> |
|
|
|
<div class="progress progress-striped active"> |
|
|
|
<div class="progress-bar-eco noire glow"><span style="width: <?php echo ($entry->ecos->noire)*20; ?>%"><?php echo $entry->ecos->noire; ?></span></div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<hr /> |
|
|
|
<div class="list-group col-lg-9"> |
|
|
|
<a class="list-group-item"> |
|
|
|
<h4>Notes :</h4> |
|
|
|
<p class="list-group-item-text"><?php echo $entry->notes ?></p> |
|
|
|
</a> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<!-- /phoneview --> |
|
|
|
|
|
|
|
<?php } |
|
|
|
} |
|
|
|
else { ?> |
|
|
|
<div class="container-fluid"> |
|
|
|
<img class="img-responsive" src="../../img/logo_0.png" alt="logo" /> |
|
|
|
<hr /> |
|
|
|
<div class="panel panel-default"> |
|
|
|
<div class="panel-heading"><i class="ionicons ion-person"></i> <strong>Joueurs :</strong></div> |
|
|
|
<div class="panel-body"> |
|
|
|
<table class="table table-striped table-hover "> |
|
|
|
<tbody> |
|
|
|
<?php |
|
|
|
// liste des gamers |
|
|
|
$folder = "."; |
|
|
|
$dossier = opendir($folder); |
|
|
|
while ($fichier = readdir($dossier)) |
|
|
|
{ |
|
|
|
if ($fichier != "." && $fichier != ".." && $fichier != "map.jpg" && $fichier != "soft.mp3" && $fichier != "tonic.mp3" && $fichier != "hard.mp3" && $fichier != "light.mp3" && $fichier != "dark.mp3" && $fichier != "enemy") |
|
|
|
{ |
|
|
|
$gamers = explode(".xml", $fichier); |
|
|
|
$xml = simplexml_load_file($fichier); |
|
|
|
if (!isset($itemnb)) |
|
|
|
{ |
|
|
|
$itemnb=0; |
|
|
|
} |
|
|
|
else |
|
|
|
{ |
|
|
|
$itemnb++; |
|
|
|
} |
|
|
|
|
|
|
|
foreach($xml->entry as $entry) |
|
|
|
{ |
|
|
|
$hp_max="10"; |
|
|
|
switch ($entry->level) |
|
|
|
{ |
|
|
|
case 0: |
|
|
|
$hp_max+=0; |
|
|
|
break; |
|
|
|
case 1: |
|
|
|
$hp_max+=2; |
|
|
|
break; |
|
|
|
case 2: |
|
|
|
$hp_max+=5; |
|
|
|
break; |
|
|
|
case 3: |
|
|
|
$hp_max+=10; |
|
|
|
break; |
|
|
|
default: |
|
|
|
echo "?"; |
|
|
|
} |
|
|
|
$somme_ecos=$entry->ecos->verte+$entry->ecos->bleue+$entry->ecos->jaune+$entry->ecos->rouge; |
|
|
|
echo '<tr class="active"> |
|
|
|
<td><strong>['.$entry->level.']</strong> '.$entry->nom.'</td> |
|
|
|
<td><i class="ionicons ion-heart" style="color:red;"></i> '.$entry->hp.'/'.$hp_max.'</td> |
|
|
|
<td><a href="index.php?view='.$entry->nom.'" class="btn btn-info btn-sm"><i class="ionicons ion-eye"> VOIR</i></a></td> |
|
|
|
</tr>'; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
closedir($dossier); |
|
|
|
?> |
|
|
|
</tbody> |
|
|
|
</table> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|
<?php } ?> |
|
|
|
</body> |
|
|
|
</html> |