forked from public/fvtt-yggdrasill
101 lines
3.4 KiB
JavaScript
101 lines
3.4 KiB
JavaScript
|
/**
|
||
|
* YggDrasill system
|
||
|
* Author: Uberwald
|
||
|
* Software License: Prop
|
||
|
*/
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
// Import Modules
|
||
|
import { YggdrasillActor } from "./yggdrasill-actor.js";
|
||
|
import { YggdrasillItemSheet } from "./yggdrasill-item-sheet.js";
|
||
|
import { YggdrasillActorSheet } from "./yggdrasill-actor-sheet.js";
|
||
|
import { YggdrasillFigurantSheet } from "./yggdrasill-figurant-sheet.js";
|
||
|
import { YggdrasillUtility } from "./yggdrasill-utility.js";
|
||
|
import { YggdrasillCombat } from "./yggdrasill-combat.js";
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
/* Foundry VTT Initialization */
|
||
|
/* -------------------------------------------- */
|
||
|
|
||
|
/************************************************************************************/
|
||
|
Hooks.once("init", async function () {
|
||
|
console.log(`Initializing Yggdrasill`);
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
// preload handlebars templates
|
||
|
YggdrasillUtility.preloadHandlebarsTemplates();
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
// Set an initiative formula for the system
|
||
|
CONFIG.Combat.initiative = {
|
||
|
formula: "1d20",
|
||
|
decimals: 0
|
||
|
};
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
game.socket.on("system.fvtt-yggdrasill", data => {
|
||
|
YggdrasillUtility.onSocketMesssage(data);
|
||
|
});
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
// Define custom Entity classes
|
||
|
CONFIG.Actor.documentClass = YggdrasillActor;
|
||
|
CONFIG.Combat.documentClass = YggdrasillCombat;
|
||
|
CONFIG.Yggdrasill = {
|
||
|
}
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
// Register sheet application classes
|
||
|
Actors.unregisterSheet("core", ActorSheet);
|
||
|
Actors.registerSheet("fvtt-yggdrasill", YggdrasillActorSheet, { types: ["personnage"], makeDefault: true });
|
||
|
Actors.registerSheet("fvtt-yggdrasill", YggdrasillFigurantSheet, { types: ["figurant"], makeDefault: false });
|
||
|
Items.unregisterSheet("core", ItemSheet);
|
||
|
Items.registerSheet("fvtt-yggdrasill", YggdrasillItemSheet, { makeDefault: true });
|
||
|
|
||
|
// Init/registers
|
||
|
Hooks.on('renderChatLog', (log, html, data) => {
|
||
|
//YggdrasillUtility.registerChatCallbacks(html);
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
function welcomeMessage() {
|
||
|
//ChatUtility.removeMyChatMessageContaining('<div id="welcome-message-sos">');
|
||
|
ChatMessage.create({
|
||
|
user: game.user.id,
|
||
|
whisper: [game.user.id],
|
||
|
content: `<div id="welcome-message-yggdrasill"><span class="rdd-roll-part">Bienvenue !</div>
|
||
|
` });
|
||
|
}
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
/* Foundry VTT Initialization */
|
||
|
/* -------------------------------------------- */
|
||
|
Hooks.once("ready", function () {
|
||
|
|
||
|
// User warning
|
||
|
if (!game.user.isGM && game.user.character == undefined) {
|
||
|
ui.notifications.info("Attention ! Vous n'est connecté à aucun personnage");
|
||
|
ChatMessage.create({
|
||
|
content: "<b>WARNING</b> Le joueur " + game.user.name + " n'est pas connecté à un personnage !",
|
||
|
user: game.user._id
|
||
|
});
|
||
|
}
|
||
|
welcomeMessage();
|
||
|
});
|
||
|
|
||
|
/* -------------------------------------------- */
|
||
|
/* Foundry VTT Initialization */
|
||
|
/* -------------------------------------------- */
|
||
|
Hooks.on("chatMessage", (html, content, msg) => {
|
||
|
if (content[0] == '/') {
|
||
|
let regExp = /(\S+)/g;
|
||
|
let commands = content.toLowerCase().match(regExp);
|
||
|
console.log(commands);
|
||
|
}
|
||
|
return true;
|
||
|
});
|