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
) {
34 euphorik
.Commandes
.statut
= {ok : 0, pas_une_commande : 1, erreur_commande : 2};
36 euphorik
.Commandes
.liste
= {
38 usage : "/nick <nouveau pseudo>",
39 exec : function(args
, client
) {
41 if (args
.length
=== 0) {
42 return [euphorik
.Commandes
.statut
.erreur_commande
, 'Utilisation de la commande : ' + this.usage
];
45 client
.pseudo
= args
[0];
46 $("form#posterMessage input.pseudo").val(client
.pseudo
);
48 return [euphorik
.Commandes
.statut
.ok
, ''];
54 * Execute une commande.
55 * @return [statut, message], 'message' n'est utilisé que pour le statut 'erreur_commande'.
57 euphorik
.Commandes
.prototype.exec = function(chaine
) {
58 chaine
= chaine
.trim();
60 var fragments
= chaine
.split(/\s+/);
61 if (fragments
.length
=== 0 || fragments
[0].charAt(0) != '/') {
62 return [euphorik
.Commandes
.statut
.pas_une_commande
, ''];
65 var nomCommande
= fragments
[0].slice(1);
66 var args
= fragments
.slice(1);
68 if (nomCommande
=== "") {
69 return [euphorik
.Commandes
.statut
.erreur_commande
, 'La commande est vide'];
72 if (euphorik
.Commandes
.liste
.hasOwnProperty(nomCommande
)) {
73 return euphorik
.Commandes
.liste
[nomCommande
].exec(args
, this.client
);
76 return [euphorik
.Commandes
.statut
.erreur_commande
, 'La commande /' + nomCommande
+ ' est inconnue'];