This repository has been archived by the owner on Oct 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
galaxy.php
183 lines (162 loc) · 6.31 KB
/
galaxy.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
<?php
/**
* Tis file is part of XNova:Legacies
*
* @license http://www.gnu.org/licenses/gpl-3.0.txt
* @see http://www.xnova-ng.org/
*
* Copyright (c) 2009-Present, XNova Support Team <http://www.xnova-ng.org>
* All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program 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 General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* --> NOTICE <--
* This file is part of the core development branch, changing its contents will
* make you unable to use the automatic updates manager. Please refer to the
* documentation for further information about customizing XNova.
*
*/
define('INSIDE' , true);
define('INSTALL' , false);
require_once dirname(__FILE__) .'/common.php';
includeLang('galaxy');
$CurrentPlanet = doquery("SELECT * FROM {{table}} WHERE `id` = '". $user['current_planet'] ."';", 'planets', true);
$lunarow = doquery("SELECT * FROM {{table}} WHERE `id` = '". $user['current_luna'] ."';", 'lunas', true);
$galaxyrow = doquery("SELECT * FROM {{table}} WHERE `id_planet` = '". $CurrentPlanet['id'] ."';", 'galaxy', true);
$dpath = (!$user["dpath"]) ? DEFAULT_SKINPATH : $user["dpath"];
$fleetmax = $user['computer_tech'] + 1;
$CurrentPlID = $CurrentPlanet['id'];
$CurrentMIP = $CurrentPlanet['interplanetary_misil'];
$CurrentRC = $CurrentPlanet['recycler'];
$CurrentSP = $CurrentPlanet['spy_sonde'];
$HavePhalanx = $CurrentPlanet['phalanx'];
$CurrentSystem = $CurrentPlanet['system'];
$CurrentGalaxy = $CurrentPlanet['galaxy'];
$CanDestroy = $CurrentPlanet[$resource[213]] + $CurrentPlanet[$resource[214]];
$maxfleet = doquery("SELECT * FROM {{table}} WHERE `fleet_owner` = '". $user['id'] ."';", 'fleets');
$maxfleet_count = mysql_num_rows($maxfleet);
CheckPlanetUsedFields($CurrentPlanet);
CheckPlanetUsedFields($lunarow);
// Imperatif, dans quel mode suis-je (pour savoir dans quel etat j'ere)
if (!isset($mode)) {
if (isset($_GET['mode'])) {
$mode = intval($_GET['mode']);
} else {
// ca ca sent l'appel sans parametres a plein nez
$mode = 0;
}
}
if ($mode == 0) {
// On vient du menu
// Y a pas de parametres de passé
// On met ce qu'il faut pour commencer là ou l'on se trouve
$galaxy = $CurrentPlanet['galaxy'];
$system = $CurrentPlanet['system'];
$planet = $CurrentPlanet['planet'];
} elseif ($mode == 1) {
// On vient du selecteur de galaxie
// Il nous poste :
// $_POST['galaxy'] => Galaxie affichée dans la case a saisir
// $_POST['galaxyLeft'] => <- A ete cliqué
// $_POST['galaxyRight'] => -> A ete cliqué
// $_POST['system'] => Systeme affiché dans la case a saisir
// $_POST['systemLeft'] => <- A ete cliqué
// $_POST['systemRight'] => -> A ete cliqué
if ($_POST["galaxyLeft"]) {
if ($_POST["galaxy"] < 1) {
$_POST["galaxy"] = 1;
$galaxy = 1;
} elseif ($_POST["galaxy"] == 1) {
$_POST["galaxy"] = 1;
$galaxy = 1;
} else {
$galaxy = $_POST["galaxy"] - 1;
}
} elseif ($_POST["galaxyRight"]) {
if ($_POST["galaxy"] > MAX_GALAXY_IN_WORLD OR
$_POST["galaxyRight"] > MAX_GALAXY_IN_WORLD) {
$_POST["galaxy"] = MAX_GALAXY_IN_WORLD;
$_POST["galaxyRight"] = MAX_GALAXY_IN_WORLD;
$galaxy = MAX_GALAXY_IN_WORLD;
} elseif ($_POST["galaxy"] == MAX_GALAXY_IN_WORLD) {
$_POST["galaxy"] = MAX_GALAXY_IN_WORLD;
$galaxy = MAX_GALAXY_IN_WORLD;
} else {
$galaxy = $_POST["galaxy"] + 1;
}
} else {
$galaxy = $_POST["galaxy"];
}
if ($_POST["systemLeft"]) {
if ($_POST["system"] < 1) {
$_POST["system"] = 1;
$system = 1;
} elseif ($_POST["system"] == 1) {
$_POST["system"] = 1;
$system = 1;
} else {
$system = $_POST["system"] - 1;
}
} elseif ($_POST["systemRight"]) {
if ($_POST["system"] > MAX_SYSTEM_IN_GALAXY OR
$_POST["systemRight"] > MAX_SYSTEM_IN_GALAXY) {
$_POST["system"] = MAX_SYSTEM_IN_GALAXY;
$system = MAX_SYSTEM_IN_GALAXY;
} elseif ($_POST["system"] == MAX_SYSTEM_IN_GALAXY) {
$_POST["system"] = MAX_SYSTEM_IN_GALAXY;
$system = MAX_SYSTEM_IN_GALAXY;
} else {
$system = $_POST["system"] + 1;
}
} else {
$system = $_POST["system"];
}
} elseif ($mode == 2) {
// Mais c'est qu'il mordrait !
// A t'on idée de vouloir lancer des MIP sur ce pauvre bonhomme !!
$galaxy = $_GET['galaxy'];
$system = $_GET['system'];
$planet = $_GET['planet'];
} elseif ($mode == 3) {
// Appel depuis un menu avec uniquement galaxy et system de passé !
$galaxy = $_GET['galaxy'];
$system = $_GET['system'];
} else {
// Si j'arrive ici ...
// C'est qu'il y a vraiment eu un bug
$galaxy = 1;
$system = 1;
}
$planetcount = 0;
$lunacount = 0;
$page = InsertGalaxyScripts ( $CurrentPlanet );
$page .= "<body onkeydown=\"javascript: galaxieonkeydown(event);\" style=\"overflow: auto;\" onUnload=\"\"><br>";
$page .= ShowGalaxySelector ( $galaxy, $system );
if ($mode == 2) {
$CurrentPlanetID = $_GET['current'];
$page .= ShowGalaxyMISelector ( $galaxy, $system, $planet, $CurrentPlanetID, $CurrentMIP );
}
$page .= "<table><tbody>";
$page .= ShowGalaxyTitles ( $galaxy, $system );
$page .= ShowGalaxyRows ( $galaxy, $system );
$page .= ShowGalaxyFooter ( $galaxy, $system, $CurrentMIP, $CurrentRC, $CurrentSP);
$page .= "</tbody></table></div>";
display ($page,"Galaxie",true);
// -----------------------------------------------------------------------------------------------------------
// History version
// 1.0 - Created by Perberos
// 1.1 - Modified by -MoF- (UGamela germany)
// 1.2 - 1er Nettoyage Chlorel ...
// 1.3 - 2eme Nettoyage Chlorel ... Mise en fonction et debuging complet
?>