-
Notifications
You must be signed in to change notification settings - Fork 114
/
variants.php
executable file
·121 lines (97 loc) · 4.44 KB
/
variants.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
<?php
/*
Copyright (C) 2004-2010 Kestas J. Kuliukas
This file is part of webDiplomacy.
webDiplomacy is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
webDiplomacy is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with webDiplomacy. If not, see <http://www.gnu.org/licenses/>.
*/
/**
* @package Base
* @subpackage Static
*/
require_once('header.php');
libHTML::starthtml();
print libHTML::pageTitle(l_t('webDiplomacy variants'),l_t('A list of the variants available on this server, with credits and information on variant-specific rules.'));
$variantsOn=array();
$variantsOff=array();
$variants = glob('variants/*');
foreach($variants as $variantDir) {
if( is_dir($variantDir) && file_exists($variantDir.'/variant.php') )
{
$variantDir=substr($variantDir,9);
if( in_array($variantDir, Config::$variants) )
$variantsOn[] = $variantDir;
else
$variantsOff[] = $variantDir;
}
}
if( count($variantsOff) )
print '<a name="top"></a><h4>'.l_t('Active variants').'</h4>';
print '<ul>';
foreach( $variantsOn as $variantName )
{
$Variant = libVariant::loadFromVariantName($variantName);
print '<li><a href="variants.php#' . $Variant->name . '">' . l_t($Variant->fullName) . '</a> '.l_t('(%s Players)',count($Variant->countries)).'';
$sql = 'SELECT COUNT(*) FROM wD_Games WHERE variantID=' . $Variant->id . ' AND phase != "Pre-game"';
list($num) = $DB->sql_row($sql);
print ' - '.l_t('%s game(s) played on this server',$num).'</li>';
}
print '</ul>';
if( count($variantsOff) )
{
print '<h4>'.l_t('Disabled variants').'</h4>';
print '<p>'.l_t('Variants which are present but not activated.').'</p>';
print '<ul>';
foreach( $variantsOff as $variantName )
{
$Variant = libVariant::loadFromVariantName($variantName);
print '<li><a href="variants.php#' . $Variant->name . '">' .l_t( $Variant->name ) . '</a> '.l_t('(%s Players)',count($Variant->countries)).'</li>';
}
print '</ul>';
}
libHTML::pagebreak();
foreach( $variantsOn as $variantName )
{
$Variant = libVariant::loadFromVariantName($variantName);
print '<h2><a name="'. $Variant->name .'"></a>'.l_t( $Variant->fullName ) . ' '.l_t('(%s Players)',count($Variant->countries)).'</h2>';
if (isset($Variant->description))
print l_t($Variant->description)."<br /><br />";
print '<div style="text-align:center"><img id="Image_'. $Variant->name . '" src="';
if (file_exists(l_s(libVariant::cacheDir($Variant->name).'/sampleMap.png')))
print l_s(libVariant::cacheDir($Variant->name).'/sampleMap.png');
else
print 'map.php?variantID=' . $Variant->id;
print '" alt=" " title="'.l_t('The map for the %s Variant',$Variant->name).'" style="width: auto; max-width: 100%;" /></div><br />';
print '<strong>'.l_t('Variant Parameters').'';
if (isset($Variant->version))
print ' '.l_t('(Version: %s)',$Variant->version).'';
print ':</strong>';
print '<ul>';
if (isset($Variant->homepage))
print '<li><a href="'. $Variant->homepage .'">'.l_t('Variant homepage').'</a></li>';
if (isset($Variant->author))
print '<li> '.l_t('Created by: %s',$Variant->author).'</li>';
if (isset($Variant->adapter))
print '<li> '.l_t('Adapted for webDiplomacy by: %s',$Variant->adapter).'</li>';
print '<li> '.l_t('SCs required for solo win: %s',$Variant->supplyCenterTarget).'</li>';
if (!file_exists(l_s('variants/'. $Variant->name .'/rules.html')))
print '<li>'.l_t('Standard Diplomacy Rules Apply').'</li>';
print '</ul>';
if (file_exists(l_s('variants/'. $Variant->name .'/rules.html'))) {
print '<p><strong>'.l_t('Special rules/information:').'</strong></p>';
print '<div>'.file_get_contents(l_s('variants/'. $Variant->name .'/rules.html')).'</div>';
}
print '<div><a href="#top" class="light">'.l_t('Back to top').'</a></div>';
print '<div class="hr"></div>';
}
print '</div>';
libHTML::footer();
?>