This commit is contained in:
Malibu 2015-03-20 18:54:08 +01:00
commit b304722c61
3 changed files with 25 additions and 88 deletions

View File

@ -4,6 +4,7 @@ import MySQLdb as mdb
import sys import sys
import re import re
import httplib import httplib
import sys
def exists(site, path): def exists(site, path):
c = httplib.HTTPConnection(site) c = httplib.HTTPConnection(site)
@ -50,7 +51,7 @@ try :
# Pour chaque oeuvre # Pour chaque oeuvre
for o in root.iter('oeuvre'): for o in root.iter('oeuvre'):
print ".", sys.stdout.write('.')
idtechnique = "NULL" idtechnique = "NULL"
idmatiere = "NULL" idmatiere = "NULL"
iddomaine= "NULL" iddomaine= "NULL"

View File

@ -5,6 +5,7 @@ use App\Referent;
use App\ConfigJeu; use App\ConfigJeu;
use App\Oeuvre; use App\Oeuvre;
use Cookie; use Cookie;
class GameController extends Controller { class GameController extends Controller {
/** /**
@ -23,8 +24,10 @@ class GameController extends Controller {
* @return Response * @return Response
*/ */
public function chooseDifMemo() { public function chooseDifMemo() {
$nbOr = Cookie::get('referent'); return view('frontend/memo_level');
return view('frontend/memo_level', ['nbOr' => $nbOr]); }
public function chooseDifPuzzle() {
return view('frontend/puzzle_level');
} }
public function playMemo($niveau) { public function playMemo($niveau) {
@ -43,98 +46,30 @@ class GameController extends Controller {
return view('frontend/memo', ['oeuvres' => $oes, 'niveau' => $niveau, 'nbBloc'=>$bloc]); return view('frontend/memo', ['oeuvres' => $oes, 'niveau' => $niveau, 'nbBloc'=>$bloc]);
} }
public function chooseDifPuzzle() {
return view('frontend/puzzle_level');
}
public function playPuzzle($niveau) { public function playPuzzle($niveau) {
try {
$idRef = Cookie::get('referent');
$ref = Referent::findOrFail($idRef);
$configjeu = $ref->configjeu()->where('actifPuzzle', '=', '1')->firstOrFail();
$idRef = Cookie::get('referent'); if(count($configjeu->oeuvres->count()) >= 1) {
$ref = Referent::find($idRef); $oes = $configjeu->oeuvres()->select('image')->get();
$params = json_decode($configjeu->parametres);
$configjeu = $ref->configjeu()->where('actifPuzzle', '=', '1')->first(); $nbTab = $params->pt;
$dimension = $params->{"p" . $niveau};
if($configjeu && count($configjeu->oeuvres) >= 1) { if(!(isset($dimension) && is_numeric($dimension))) throw new ModelNotFoundException();
$oes = $configjeu->oeuvres; } else throw new ModelNotFoundException();
$params = json_decode($configjeu->parametres); } catch(ModelNotFoundException $e) {
$nbTab = $params->pt; $oes = Oeuvre::orderByRaw("RAND()")->take(5)->select('image')->get();
$dimension = $params->{ "p".$niveau};
} else {
$oes = Oeuvre::orderByRaw("RAND()")->take(5)->get();
$nbTab = 3; $nbTab = 3;
$dimension = 2; $dimension = 2;
} }
return view('frontend/puzzle', ['oeuvres' => $oes, 'dimension' => $dimension, 'nbTab' => $nbTab, 'niveau' => $niveau]);
return view('frontend/puzzle', ['oeuvres' => $oes, 'dimension' => $dimension, 'nbTab' => $nbTab]);
}
public function index()
{
$res = User::referents()->get();
return view('home',['referent' => $res]);
}
public function findReferents($reg) {
$res = User::referents()->name($reg)->get();
return Response::json($res->toArray());
}
/**
* Show referent games
*
* @param String $id
* @return Response
*/
public function showReferentGames($id)
{
$listeOeuvre = $ListeOeuvre = ListeOeuvre::ofUser($id)->activeListOeuvre()->first();
if($listeOeuvre == '')
$games = [];
else
$games = $listeOeuvre->jeux()->get();
return view('referent_games', ['games' => $games]);
} }
/** public function index() {
* Show one referent game $res = User::referents()->get();
* return view('home', ['referent' => $res]);
* @param String $id
* @param String $idGame
* @return Response
*/
public function showOneReferentGame($id, $idGame)
{
return view('one_referent_game', ['referent' => $id, 'game' => $idGame]);
} }
public function setRecords($idTrophee) {
$values = Cookie::get('trophee');
if ($values === false)
$values = [0, 0, 0];
switch ($idTrophee) {
case '1':
$values[0]++;
break;
case '2':
$values[1]++;
break;
case '3':
$values[2]++;
break;
default:
break;
}
$response->withCookie(Cookie::forever('trophee', $values));
}
} }

View File

@ -180,6 +180,7 @@
trophee.alpha = 0; trophee.alpha = 0;
tween = game.add.tween(trophee).to( { alpha: 1 }, 1000).start(); tween = game.add.tween(trophee).to( { alpha: 1 }, 1000).start();
setTimeout(function(){ setTimeout(function(){
location.href ="{{URL::to('setRecords')}}" + "/" + trophy;
location.href = "{{URL::to('puzzle/jouer')}}" + "/" + trophy; location.href = "{{URL::to('puzzle/jouer')}}" + "/" + trophy;
}, 5000); }, 5000);
// TODO appel ajax // TODO appel ajax