-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjuego01.php
328 lines (279 loc) · 11.2 KB
/
juego01.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
<?php
//error_reporting(E_ALL);
//ini_set('display_errors', 1);
include_once('config.php');
$pidE = (isset($_GET['pid'])) ? $_GET['pid'] : 0;
$pid = decrypt($pidE, $_SESSION['k']);
$rel = (isset($_GET['rel'])) ? $_GET['rel'] : -1;
$retry = (isset($_GET['retry'])) ? 1 : 0;
if (isset($_SESSION['username'])){
include_once('jupiter/code/fxModelo.php');
include_once('jupiter/code/fxVista.php');
include_once('jupiter/code/db_procter.php');
$game = 'j1-'. $pid;
if ( $rel == 1 ) { $_SESSION[$game]['history'] = array(0); };
$_SESSION[$game]['history'] = ( empty($_SESSION[$game]['history']) ) ? array(0) : $_SESSION[$game]['history'];
$_SESSION[$game]['history'] = ( count($_SESSION[$game]['history'])>7 ) ? array(0) : $_SESSION[$game]['history'];
$repetidos = implode(',', $_SESSION[$game]['history']);
$resultados = getJuegoRnd($pid, 1, 1, $repetidos, $db);
$nextRel = ($rel < 5) ? $rel + 1 : 5;
// Permisos
$enroll = checkEnrollStatus($_SESSION['userID'], 'pg_juegos1', $pid, $db);
$status = $enroll['status'];
$gameID = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_id']) : '';
$question = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_pregunta']) : '';
$c1 = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_distractor1']) : '';
$c2 = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_distractor2']) : '';
$c3 = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_respuesta']) : '';
$c4 = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_distractor3']) : '';
$pista = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_pista']) : '';
$feedback = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_feedback']) : '';
$portada = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_portada']) : '';
$fondo = ( count($resultados) ) ? html_entity_decode($resultados[0]['juego_fondo']) : '';
$_SESSION[$game]['puntos'] = ( isset($_SESSION[$game]['puntos']) ) ? $_SESSION[$game]['puntos'] : 0;
$juego_puntos = '+'. $_SESSION[$game]['puntos'];
$portada = ( strlen($portada)>3 ) ? $portada : 'portada01.jpg';
$portada = genPathPicture($portada, 'juegos/');
$fondo = ( strlen($fondo)>3 ) ? $fondo : 'fondo01.jpg';
$fondo = genPathPicture($fondo, 'juegos/');
$rptas = array( 'a' => $c1, 'b' => $c2, 'c' => $c3, 'd' => $c4 );
$rpta = array_rand($rptas);
$temp1 = ''; $temp2 = '';
if ($rpta != 'c'){
$temp1 = $rptas['c'];
$temp2 = $rptas[$rpta];
$rptas['c'] = $temp2;
$rptas[$rpta] = $temp1;
}
$ok = 'box-'. $rpta;
array_push($_SESSION[$game]['history'], $gameID);
$_SESSION[$game]['retry'] = ( isset($_SESSION[$game]['retry']) ) ? $_SESSION[$game]['retry'] : 0;
$retry = ( $retry === 0 ) ? 0 : $_SESSION[$game]['retry'];
$debug = ''; //$ok. ' :: '. $retry;
$puntos = '<h3>...</h3><h4><i class="fa fa-spinner fa-spin"></i> Puntos</h4>';
// Vars
$mTbl = 'pg_juegos1';
$title = 'Desafio 1 P&G';
include_once('jupiter/code/fxMenu.php');
$mnuMain = crearMnuMain('dashboard', null);
$mnuMainMobile = crearMnuMainMobile('dashboard', null);
$linaje = getLinajeOne(0, 0, $pid, $db);
$arrGame = array('url' => 'juego01.php?rel='. $rel. '&pid='. $pidE, 'link' => 'Desafio 1' );
$bread = genBreadCrumbs('dashboard', 5, 'Desafio 1', $arrGame, $linaje);
} else {
// User No logeado
header ('Location: index.php');
}
?>
<!doctype html>
<html class="no-js" lang="es">
<head>
<?php include_once('code/header.php'); ?>
</head>
<body>
<div class="off-canvas-wrap" data-offcanvas>
<div class="inner-wrap">
<!-- Off Canvas Menu -->
<aside class="left-off-canvas-menu">
<?php print($mnuMainMobile); ?>
</aside>
<!-- Nav -->
<nav class="top-bar" data-topbar role="navigation">
<?php include_once('code/top-bar-title.php'); ?>
<section class="top-bar-section">
<?php include_once('code/top-bar-user.php'); ?>
</section>
</nav>
<!-- Menu -->
<div class="left-sidebar show-for-large-up">
<?php print($mnuMain); ?>
</div>
<main id="page" role="main" class="main mIzq45">
<section>
<div class="row pTop1">
<div class="medium-12 columns">
<div class="text-left">
<ul class="breadcrumbs mDown0">
<?php print($bread); ?>
</ul>
<h1 class="m0 azulMain">DESAFIO 1 <span class="round label"><?php print $juego_puntos; ?></span></h1>
<h5 class="subheader azulSub"></h5>
</div>
<hr class="mTop0" />
<div class="row">
<div id="juego1" class="hide">
<img src="<?php print($portada); ?>" alt="juego">
<a id="btnJugar1" href="#" class="btnJugar button large round success btnShadow">Empezar Juego</a>
</div>
<div id="juego2" class="hide">
<img src="<?php print($fondo); ?>" alt="juego">
<div id="caja1" class="suelta" class="suelta btn btn-default" role="button">
<span><?php print($question); ?></span>
</div>
<a href="box-a" class="box box1"><?Php print($rptas['a']); ?></a>
<a href="box-b" class="box box2"><?Php print($rptas['b']); ?></a>
<a href="box-c" class="box box3"><?Php print($rptas['c']); ?></a>
<a href="box-d" class="box box4"><?Php print($rptas['d']); ?></a>
</div>
</div>
</div>
</div>
</section>
<footer>
<?php print $debug; ?>
<?php include_once('code/footer.php'); ?>
</footer>
</main>
<!-- close the off-canvas menu -->
<a class="exit-off-canvas"></a>
</div>
</div>
<div id="Instrucciones" class="reveal-modal" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog">
<h3>¡INSTRUCCIONES!</h3>
<div>
<p class="lead">Clic a la respuesta correcta para pasar al siguiente nivel.</p>
</div>
<a class="close-reveal-modal" aria-label="Close">×</a>
</div>
<div id="juegoNext" class="reveal-modal msgOk" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog" style="background: url('/code/show-image.php?p=ok&i=celebra') top center no-repeat;">
<div class="msgDialog">
<?php print($puntos); ?><hr/>
<p>Superaste los niveles, ahora pasa al siguiente juego</p>
<a href="tema.php?pid=<?php print($pidE);?>" class="btnMsg button large round info">Avanzar</a>
</div>
</div>
<div id="juegoOk" class="reveal-modal msgOk" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog" style="background: url('/code/show-image.php?p=ok&i=gana') top center no-repeat;">
<div class="msgDialog">
<?php print($puntos); ?><hr/>
<a href="juego01.php?rel=<?php print($nextRel); ?>&pid=<?php print($pidE);?>" class="btnMsg button large round info">Avanzar</a>
</div>
</div>
<div id="juegoPista" class="reveal-modal msgAlert" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog" style="background: url('/code/show-image.php?p=alert&i=feedback') top center no-repeat;">
<div class="msgDialog">
<h3>¡SIGUE INTENTANDO!</h3><hr/>
<p><strong>PISTA:</strong> <?php print($pista); ?></p>
<a href="#" id="btnPista" class="btnMsg button large round info">Reintentar</a>
</div>
</div>
<div id="juegoFeedback" class="reveal-modal msgBad" data-reveal aria-labelledby="modalTitle" aria-hidden="true" role="dialog" style="background: url('/code/show-image.php?p=bad&i=pierde') top center no-repeat;">
<div class="msgDialog">
<h3>¡VUELVE A INTENTARLO!</h3><hr/>
<p><?php print($feedback); ?></p><hr/>
<a href="tema.php?pid=<?php print $pidE; ?>&retry=<?php print $pid; ?>" class="btnMsg button large round info">Reiniciar</a>
</div>
</div>
<?php include_once('code/script.php'); ?>
<script src="js/jquery.pep.min.js"></script>
<script>
$(document).on('ready', iniciar);
var n = 0;
var ajaxReq = "jupiter/api.php";
var puntos = 0;
var ok = "<?php print($ok); ?>";
var msg = '';
var rel = parseInt("<?php print $rel; ?>");
var auth = 0;
var retry = <?php print $retry; ?>;
var pid = <?php print $pid; ?>;
var mp3Pista = new Audio('static/sound/pista.mp3');
var mp3Ok = new Audio('static/sound/ok.mp3');
var mp3Bad = new Audio('static/sound/bad.mp3');
var game = 'j1-';
var gameID = "<?php print $gameID; ?>";
var mTbl = "<?php print $mTbl; ?>";
var nextTB = "pg_juegos2";
var mID = "<?php print $pid; ?>";
var linaje = "<?php print $linaje[0]['linaje']; ?>";
var estado = "<?php print $status; ?>";
var fin = false;
function iniciar(){
$(document).foundation();
$('#btnJugar1').on('click', abrirJuego2);
$('#btnPista').on('click', goPista);
$('#juego2 a').on('click', jugar);
if (rel>1){
$( "#juego1" ).hide();
$( "#juego2" ).show();
} else {
$( "#juego1" ).show();
$( "#juego2" ).hide();
}
};
function abrirJuego2(){
$( "#juego1" ).fadeOut( "slow" );
$( "#juego2" ).fadeIn( "slow" );
}
function abrirJuego3(){
$( "#juego2" ).fadeOut( "slow" );
$( "#juego3" ).fadeIn( "slow" );
}
function goPista(){
$('#juegoPista').foundation('reveal', 'close');
retry = 1;
//$( "#juego2" ).fadeOut( "slow" );
//$( "#juego1" ).fadeIn( "slow" );
return false;
};
// Game
function jugar(e){
e.preventDefault();
var res = $(this).attr('href');
if (res === ok){
grabarWin(); // Ganar
//$.pep.toggleAll(false); // Desactivar
} else {
n++;
if (retry == 1){
grabarFeedback();
}
if ( n == 1 ){
grabarPista();
} else {
grabarFeedback();
}
}
}
function grabarWin(){
mp3Ok.play();
if (rel == 5) {
fin = true;
grabarGame("saveGameWinFull", $('#juegoNext'));
} else {
grabarGame("saveGameWin", $('#juegoOk'));
$('#juegoOk').foundation('reveal', 'open');
}
//$(".arrastrable").draggable('disable');
};
function grabarFeedback(){
grabarGame("saveGameFail", $('#juegoFeedback'));
mp3Bad.play();
$('#juegoFeedback').foundation('reveal', 'open');
//$(".arrastrable").draggable('disable');
};
function grabarPista(){
grabarGame("saveGamePista", $('#juegoPista'));
mp3Pista.play();
$('#juegoPista').foundation('reveal', 'open');
};
function grabarGame(action, modal){
$.post(ajaxReq, {action:action, eAuth:auth, ePid:pid, eRel:rel, eGame:game, eGameId:gameID, eStatus:estado, rand:Math.random()},
function(data){
modal.find('h3').text(data.rpta.msg);
modal.find('h4').text(data.pje + ' Puntos');
if (fin) {
grabarAccion('juegoFinal1', 18);
$('#juegoNext').foundation('reveal', 'open');
fin = false;
}
});
};
function grabarAccion(hito, hitoID){
$.post(ajaxReq, {action:"updateAction", eAuth:auth, eHito:hito, eGame:game, eHitoID:hitoID, eTabla:mTbl, eTblNext:nextTB, eRel:mID, eLinaje:linaje, eStatus:estado, ePid:pid, rand:Math.random()},
function(data){
var pje = parseInt($('#lblPuntaje span').text());
$('#lblPuntaje span').text( pje + parseInt(data.rpta) );
});
};
</script>
</body>
</html>