-
Notifications
You must be signed in to change notification settings - Fork 0
/
headingarcade.php
227 lines (194 loc) · 8.42 KB
/
headingarcade.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
<?php
/***************************************************************************
* headingarcade.php
* -------------------
* Version : 1.2
* Commencé le : Jeudi,25 Juin, 2004
* Par : Cano - CanoScan_102@hotmail.com - http://www.gf-phpbb.com
*
***************************************************************************/
if ( !defined('IN_PHPBB') )
{
die("Hacking attempt");
}
//chargement du template
$template->set_filenames(array(
'headingarcade' => 'headingarcade_body.tpl')
);
$class = ($class == 'row1') ? 'row2' : 'row1';
$template->assign_block_vars('arcaderow3',array(
'CLASS' => $class,
'U_TOPARCADE' => append_sid("toparcade.$phpEx"),
'BEST_SCORES' => $lang['best_scores'])
);
$template->assign_vars(array(
'ARCADE_VICTOIRES' => $nbvictoires,
'AVATAR_IMG' => $avatar_img,
'USERNAME' => '<a class="genmed" href="' . append_sid("statarcade.$phpEx?uid=" . $userdata['user_id'] ) . '">' . $userdata['username'] . '</a> ',
'POSTER_RANK' => $poster_rank,
'RANK_IMAGE' => $rank_image,
'L_POSTER_RANK' => $lang['Poster_rank'],
'TOP_PLAYER' => $lang['Topgamers'],
'PLAYER' => $lang['Player'],
'VICTOIRES' => $lang['Victoires'],
'L_AVATAR' => $lang['Avatar'],
'MAXSIZE_AVATAR' => intval($arcade_config['maxsize_avatar'])
)
);
//Fin de chargement du template
// Début de la récuperation des top10 joueur de l'arcade
$sql = "SELECT COUNT(*) AS nbvictoires, g.game_highuser, u.user_id, u.username, u.user_level FROM " . GAMES_TABLE . " g LEFT JOIN
" . USERS_TABLE . " u on g.game_highuser = u.user_id WHERE g.game_highuser<>0 GROUP BY g.game_highuser ORDER BY nbvictoires DESC LIMIT 0,10 ";
if( !($result = $db->sql_query($sql)) )
{
message_die(CRITICAL_ERROR, "Could not query games information", "", __LINE__, __FILE__, $sql);
}
$place=0;
$nbvictprec=15;
while ( $row = $db->sql_fetchrow($result) )
{
if ($nbvictprec<>$row['nbvictoires'])
{
$place++;
$nbvictprec=$row['nbvictoires'];
}
$style_color = '';
if ( $row['user_level'] == ADMIN )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor3'] . '"';
}
else if ( $row['user_level'] == MOD )
{
$row['username'] = '<b>' . $row['username'] . '</b>';
$style_color = 'style="color:#' . $theme['fontcolor2'] . '"';
}
$user_online_link = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '"' . $style_color .'>' . $row['username'] . '</a>';
$template->assign_block_vars('player_row', array(
'CLASSEMENT' => $place,
'USERNAME' => $user_online_link,
'VICTOIRES' => $row['nbvictoires'])
);
}
// Fin de la récuperation des top10 joueur de l'arcade
// Début de la recupération du dernier record aux jeux
$sqlArcade = " SELECT g.* , u.username FROM " . GAMES_TABLE . " g left join " . USERS_TABLE . " u on g.game_highuser = u.user_id ORDER BY game_highdate DESC LIMIT 0,6 ";
if ( !($resultArcade = $db->sql_query($sqlArcade)) )
{
message_die(GENERAL_ERROR, 'Impossible d\'acceder aux tables games/users', '', __LINE__, __FILE__, $sqlArcade);
}
$template->assign_block_vars('arcaderow2',array());
while($rowArcade = $db->sql_fetchrow($resultArcade))
{
$class = ($class == 'row1') ? 'row2' : 'row1' ;
$template->assign_block_vars('arcaderow2.bestscore2',array(
'CLASS' => $class,
'LAST_SCOREGAME' => '<a href="' . append_sid("games.$phpEx?gid=" . $rowArcade['game_id']) . '">' . $rowArcade['game_name'] . '</a>',
'LAST_SCOREDATE' => create_date($board_config['default_dateformat'], $rowArcade['game_highdate'] , $board_config['board_timezone']),
'LAST_SCOREUSER' => '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $rowArcade['game_highuser']) . '">' . $rowArcade['username'] . '</a>',
'LAST_SCORE' => $rowArcade['game_highscore'])
);
}
// Fin de la récuperation du dernier record aux jeux
// Début de la recupération du dernier score éfféctué
$sqlScore = " SELECT u.user_id, u.username, s.game_id, s.score_game, s.score_date, g.game_name FROM " . SCORES_TABLE . " s LEFT JOIN " . USERS_TABLE . " u on s.user_id = u.user_id LEFT JOIN " . GAMES_TABLE . " g ON s.game_id = g.game_id ORDER BY score_date DESC LIMIT 0,1 ";
if ( !($resultScore = $db->sql_query($sqlScore)) )
{
message_die(GENERAL_ERROR, 'Impossible d\'acceder aux tables scores/users', '', __LINE__, __FILE__, $sqlScore);
}
if($rowScore = $db->sql_fetchrow($resultScore))
{
$template->assign_block_vars('arcaderow3.score3',array(
'LAST_SCOREGAME' => '<a href="' . append_sid("games.$phpEx?gid=" . $rowScore['game_id']) . '">' . $rowScore['game_name'] . '</a>',
'LAST_SCOREDATE' => create_date($board_config['default_dateformat'], $rowScore['score_date'], $board_config['board_timezone']),
'LAST_SCOREUSER' => '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $rowScore['user_id']) . '">' . $rowScore['username'] . '</a>',
'LAST_SCORE' => $rowScore['score_game'])
);
}
// Fin de la récuperation du dernier score éfféctué
// Début des recupérations des données du rang
$sql = "SELECT *
FROM " . RANKS_TABLE . "
ORDER BY rank_special, rank_min";
if ( !($result = $db->sql_query($sql)) )
{
message_die(GENERAL_ERROR, 'Could not obtain ranks information', '', __LINE__, __FILE__, $sql);
}
while ( $row = $db->sql_fetchrow($result) )
{
$ranksrow[] = $row;
}
$db->sql_freeresult($result);
$poster_rank = '';
$rank_image = '';
if ( $userdata['user_rank'] )
{
for($i = 0; $i < count($ranksrow); $i++)
{
if ( $userdata['user_rank'] == $ranksrow[$i]['rank_id'] && $ranksrow[$i]['rank_special'] )
{
$poster_rank = $ranksrow[$i]['rank_title'];
$rank_image = ( $ranksrow[$i]['rank_image'] ) ? '<img src="' . $ranksrow[$i]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : '';
}
}
}
else
{
for($i = 0; $i < count($ranksrow); $i++)
{
if ( $userdata['user_posts'] >= $ranksrow[$i]['rank_min'] && !$ranksrow[$i]['rank_special'] )
{
$poster_rank = $ranksrow[$i]['rank_title'];
$rank_image = ( $ranksrow[$i]['rank_image'] ) ? '<img src="' . $ranksrow[$i]['rank_image'] . '" alt="' . $poster_rank . '" title="' . $poster_rank . '" border="0" /><br />' : '';
}
}
}
// Fin des recupérations des données du rang
// Début de la recupération du nombre de victoire du membre
$sql = "SELECT COUNT(*) AS nbvictoires FROM " . GAMES_TABLE . " WHERE game_highuser = " . $userdata['user_id'];
if( !$result = $db->sql_query($sql))
{
message_die(GENERAL_ERROR, 'Could not obtain games information', '', __LINE__, __FILE__, $sql);
}
$row = $db->sql_fetchrow($result);
$nbvictoires = $row['nbvictoires'];
// Fin de la recupération du nombre de victoire du membre
// Début des données pour l'avatar
$avatar_img = '';
if ( $userdata['user_avatar_type'] && $userdata['user_allowavatar'] )
{
switch( $userdata['user_avatar_type'] )
{
case USER_AVATAR_UPLOAD:
$avatar_img = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . '/' . $userdata['user_avatar'] . '" alt="" border="0" onload="resize_avatar(this)"/>' : '';
break;
case USER_AVATAR_REMOTE:
$avatar_img = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $userdata['user_avatar'] . '" alt="" border="0" onload="resize_avatar(this)"/>' : '';
break;
case USER_AVATAR_GALLERY:
$avatar_img = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . '/' . $userdata['user_avatar'] . '" alt="" border="0" onload="resize_avatar(this)"/>' : '';
break;
}
}
IF ( empty($avatar_img) )
{
$avatar_img = '<img src="images/noavatar.gif" alt="Aucun Avatar" border="0" />';
}
// Fin des données pour l'avatar
// Chargement du template No 2
$template->assign_block_vars('arcaderow2',array(
'U_TOPARCADE' => append_sid("toparcade.$phpEx"),
'BEST_SCORES' => $lang['best_scores'])
);
$template->assign_block_vars('arcaderow3',array(
'U_TOPARCADE' => append_sid("toparcade.$phpEx"),
'BEST_SCORES' => $lang['best_scores'])
);
$template->assign_vars(array(
"AVATAR_IMG" => $avatar_img,
"POSTER_RANK" => $poster_rank,
"ARCADE_VICTOIRES" => $nbvictoires
)
);
$template->assign_var_from_handle('HEADINGARCADE', 'headingarcade');
?>