]> git.lizzy.rs Git - dragonblocks.git/blob - engine/chatcommands.js
Reset file permissions to defaults
[dragonblocks.git] / engine / chatcommands.js
1 /*
2  * chatcommands.js
3  * 
4  * Copyright 2020 Elias Fleckenstein <eliasfleckenstein@web.de>
5  * 
6  * This program 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 2 of the License, or
9  * (at your option) any later version.
10  * 
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  * 
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19  * MA 02110-1301, USA.
20  * 
21  * 
22  */ 
23 dragonblocks.chatcommands = {};
24 dragonblocks.registerChatcommand = function(obj){
25         if(! obj || ! obj.name)
26                 return;
27         obj.desc = obj.desc || obj.description || "No description";
28         obj.param = obj.param || obj.parameters || "";
29         dragonblocks.chatcommands[obj.name] = obj;
30 }
31 dragonblocks.registerOnChatMessage(msg => {
32         if( ! msg.startsWith("/"))
33                 return true;
34         msg += " ";
35         let command = msg.slice(msg.search("/") + 1, msg.search(" "));
36         let arg = msg.slice(msg.search(" ") + 1);
37         arg = arg.slice(0, arg.length - 1);
38         if(dragonblocks.chatcommands[command]){
39                 try {
40                         dragonblocks.chatcommands[command].func(arg);
41                 }
42                 catch(e){
43                         dragonblocks.chatMessage("!HTML <span style=\"color: red; font-width: bold\"> " + e.toString() + "</span>");
44                 }
45         }
46         else
47                 dragonblocks.chatMessage("Invalid Command: " + command);
48         return false;
49 });