2 // Copyright 2008 Grégory Burri
4 // This file is part of Euphorik.
6 // Euphorik is free software: you can redistribute it and/or modify
7 // it under the terms of the GNU General Public License as published by
8 // the Free Software Foundation, either version 3 of the License, or
9 // (at your option) any later version.
11 // Euphorik is distributed in the hope that it will be useful,
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // but WITHOUT ANY WARRANTY; without even the implied warranty of
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with Euphorik. If not, see <http://www.gnu.org/licenses/>.
19 /*jslint laxbreak:true */
22 * Permet d'executer des commandes tapées par l'utilisateur.
23 * les commandes sont entrées directement dans la ligne de saisie du message sous la forme :
24 * /<commande> <paramètres>
26 * Voici les commandes supportées :
27 * /nick <nouveau nick>
28 * Modifie le pseudo courant
30 euphorik
.Commandes = function(client
, pageMinichat
, util
, formateur
) {
31 var thisCommandes
= this;
34 this.pageMinichat
= pageMinichat
;
36 this.formateur
= formateur
;
38 // construction du texte d'aide (liste des commandes) de manière statique
39 this.texteAide
= "<div id=\"aideCommandes\"><h1>Commandes</h1><ul>";
41 euphorik
.Commandes
.liste
,
42 function(nom
, commande
) {
43 thisCommandes
.texteAide
+= "<li><span class=\"usage\">" + thisCommandes
.formateur
.traitementComplet(commande
.usage
) + "</span> : " + thisCommandes
.formateur
.traitementComplet(commande
.description
) + "</li>";
46 this.texteAide
+= "</ul></div>";
49 euphorik
.Commandes
.statut
= {ok : 0, pas_une_commande : 1, erreur_commande : 2};
51 euphorik
.Commandes
.liste
= {
53 description : "Change le pseudo courant",
54 usage : "/nick <nouveau pseudo>",
55 exec : function(args
, client
) {
57 if (args
.length
=== 0) {
58 return [euphorik
.Commandes
.statut
.erreur_commande
, 'Utilisation de la commande : ' + this.usage
];
61 client
.pseudo
= args
[0];
62 $("form#posterMessage input.pseudo").val(client
.pseudo
);
64 return [euphorik
.Commandes
.statut
.ok
, ''];
68 description : "Envoie le message \"C'est pas faux\"",
70 exec : function(args
, client
, pageMinichat
) {
71 pageMinichat
.envoyerMessage("C'est pas faux");
72 return [euphorik
.Commandes
.statut
.ok
, ''];
78 * Execute une commande.
79 * @return [statut, message], 'message' n'est utilisé que pour le statut 'erreur_commande'.
81 euphorik
.Commandes
.prototype.exec = function(chaine
) {
82 chaine
= chaine
.trim();
84 var fragments
= chaine
.split(/\s+/);
85 if (fragments
.length
=== 0 || fragments
[0].charAt(0) != '/') {
86 return [euphorik
.Commandes
.statut
.pas_une_commande
, ''];
89 var nomCommande
= fragments
[0].slice(1);
90 var args
= fragments
.slice(1);
92 if (nomCommande
=== "") {
93 return [euphorik
.Commandes
.statut
.erreur_commande
, 'La commande est vide'];
95 // commandes spéciales pour afficher l'aide : "?", "h", "help", "aide"
96 if (nomCommande
=== "?" || nomCommande
=== "h" || nomCommande
=== "help" || nomCommande
=== "aide") {
97 this.util
.messageDialogue(
99 euphorik
.Util
.messageType
.informatif
,
100 {"fermer" : function(){}},
104 return [euphorik
.Commandes
.statut
.ok
, ''];
107 if (euphorik
.Commandes
.liste
.hasOwnProperty(nomCommande
)) {
108 return euphorik
.Commandes
.liste
[nomCommande
].exec(args
, this.client
, this.pageMinichat
);
111 return [euphorik
.Commandes
.statut
.erreur_commande
, 'La commande /' + nomCommande
+ ' est inconnue'];