186 lines
4.3 KiB
JavaScript
186 lines
4.3 KiB
JavaScript
var state = "frontpage"
|
|
|
|
// ==== JavaScript Style général
|
|
function jss() {
|
|
var w = $(window).width();
|
|
var h = $(window).height();
|
|
var iconSize = 72;
|
|
|
|
$(".screen")
|
|
.wh(w, h)
|
|
.northWest({top:0,left:0});
|
|
|
|
$("body, html")
|
|
.css({
|
|
padding: 0,
|
|
margin: 0,
|
|
overflow: "hidden",
|
|
textAlign: "left"
|
|
});
|
|
|
|
$(".screen").hide();
|
|
$("#"+state).show();
|
|
|
|
jss[state](w, h, iconSize);
|
|
};
|
|
|
|
// ==== JavaScript Style pour la frontpage
|
|
jss.frontpage = function(w, h, iconSize) {
|
|
var fp = $("#frontpage.screen");
|
|
var $fp = function() { return fp.find.apply(fp,arguments); };
|
|
$fp("#title-block")
|
|
.wh(w*0.5, h*0.2)
|
|
.north($("#frontpage.screen").north());
|
|
$fp("#title")
|
|
.fitIn("#title-block", 0.2);
|
|
|
|
$fp(".text")
|
|
.fitFont(w*0.25,(h-(iconSize*4))*0.8*0.5,10);
|
|
$fp(".frontpage-button")
|
|
.width(w*0.4);
|
|
|
|
$fp(".frontpage-button.game")
|
|
.northEast({left:w*0.45,top:h*0.3});
|
|
$fp(".frontpage-button.about")
|
|
.northWest({left:w*0.55,top:h*0.3});
|
|
$fp(".frontpage-button.connection")
|
|
.southEast({left:w*0.45,top:h*0.9});
|
|
$fp(".frontpage-button.prefs")
|
|
.southWest({left:w*0.55,top:h*0.9});
|
|
}
|
|
|
|
// ==== JavaScript Style pour le jeu
|
|
jss.game = function(w, h, iconSize) {
|
|
var g = $("#game.screen");
|
|
var $g = function() { return g.find.apply(g,arguments); };
|
|
var mch = h/8, mnh = h*0.075;
|
|
|
|
$g("#mc-caption-block")
|
|
.wh(w, mch)
|
|
.north(g.north());
|
|
|
|
$g("#mc-caption")
|
|
.fitIn("#mc-caption-block", 0.1);
|
|
|
|
$g("#mn-caption-block")
|
|
.css({borderWidth: h/100})
|
|
.wh(w, mnh)
|
|
.north($g("#mc-caption-block").south());
|
|
|
|
$g("#mn-caption")
|
|
.css({zIndex: 10})
|
|
.fitIn("#mn-caption-block");
|
|
|
|
$g(".relationBox:visible")
|
|
.css({
|
|
margin: 10,
|
|
padding: 10,
|
|
MozBorderRadius: 10,
|
|
WebkitBorderRadius: 10
|
|
});
|
|
|
|
$g(".relationBox:visible .icon")
|
|
.wh(iconSize,iconSize)
|
|
.css({
|
|
float: "left",
|
|
marginRight: $g(".relationBox").css("padding-left")
|
|
});
|
|
|
|
$g(".relations")
|
|
.width(w);
|
|
|
|
$g(".relation:visible").fitFont($g(".relationBox:visible").width(), iconSize, 10);
|
|
|
|
$g(".relations")
|
|
.south(g.south());
|
|
}
|
|
|
|
// ==== Code métier général
|
|
$(function() {
|
|
$(window).resize(jss);
|
|
jss();
|
|
frontpage();
|
|
});
|
|
|
|
// ==== Code métier pour la frontpage
|
|
function frontpage() {
|
|
state="frontpage";
|
|
$(".frontpage-button.game").click(function(){
|
|
game();
|
|
});
|
|
}
|
|
|
|
// ==== Code métier pour le jeu
|
|
function game() {
|
|
state="game";
|
|
$.getJSON("getGame.php?callback=?", {
|
|
user:"foo",
|
|
passwd:"bar",
|
|
}, function(game) {
|
|
var currentWordNb = 0;
|
|
var answers = [];
|
|
|
|
var updateText = function() {
|
|
$(".mn").text(game.cloud[currentWordNb].name);
|
|
$(".mc").text(game.center.name);
|
|
jss();
|
|
}
|
|
|
|
var nextWord = function(click, button) {
|
|
answers[currentWordNb++] = $(button).data("rid");
|
|
if (currentWordNb < game.cloud.length) {
|
|
animateNext(click, button);
|
|
} else {
|
|
$(".relations").empty();
|
|
$('#mn-caption').stop().clearQueue();
|
|
alert("Partie terminée !");
|
|
}
|
|
}
|
|
|
|
function animateNext(click, button) {
|
|
var duration = 700;
|
|
|
|
var mn = $("#mn-caption");
|
|
|
|
$(button).addClass("hot").removeClass("hot", duration);
|
|
|
|
(mn)
|
|
.stop() // Attention : stop() et clearQueue() ont aussi un effet
|
|
.clearQueue() // sur la 2e utilisation de mn (ci-dessous).
|
|
.clone()
|
|
.removeClass("mn") // Pour que le texte animé ne soit pas modifié.
|
|
.appendTo("body") // Append to body so we can animate the offset (instead of top/left).
|
|
.offset(mn.offset())
|
|
.animate({left:click.left, top:click.top, fontSize: 0}, duration)
|
|
.queue(function() { $(this).remove(); });
|
|
|
|
updateText();
|
|
var fs = mn.css("fontSize");
|
|
var mncbCenter = $("#mn-caption-block").center();
|
|
|
|
(mn)
|
|
.css("fontSize", 0)
|
|
.animate({fontSize: fs}, {duration:duration, step:function(){mn.center(mncbCenter);}});
|
|
}
|
|
|
|
$.each(game.relations, function(i, relation) {
|
|
$('#templates .relationBox')
|
|
.clone()
|
|
.data("rid", relation.id)
|
|
.find(".text")
|
|
.html(relation.name.replace(/%(m[cn])/g, '<span class="$1"/>'))
|
|
.end()
|
|
.find(".icon")
|
|
.attr("src", "ressources/img/rel/"+relation.id+".png")
|
|
.end()
|
|
.click(function(e) {
|
|
nextWord({left:e.pageX, top:e.pageY}, this);
|
|
})
|
|
.appendTo(".relations");
|
|
});
|
|
|
|
updateText();
|
|
}).error(function(x){
|
|
alert("Erreur fatale. Merci de nous envoyer ce message : "+x.status+" - "+x.statusText+"\n"+x.responseText.substring(0,20)+((x.responseText == '') ? '': '…'));
|
|
});
|
|
} |