foundryvtt-reve-de-dragon/module/rdd-main.js

346 lines
12 KiB
JavaScript
Raw Normal View History

2020-06-07 23:16:50 +02:00
/**
* RdD system
* Author: LeRatierBretonnien
* Software License: GNU GPLv3
*/
/* -------------------------------------------- */
/* -------------------------------------------- */
// Import Modules
2022-01-29 22:49:34 +01:00
import { SYSTEM_RDD, SYSTEM_SOCKET_ID } from "./constants.js";
2020-06-07 23:16:50 +02:00
import { RdDActor } from "./actor.js";
import { RdDItemSheet } from "./item-sheet.js";
import { RdDActorSheet } from "./actor-sheet.js";
2020-09-20 17:38:21 +02:00
import { RdDActorCreatureSheet } from "./actor-creature-sheet.js";
2021-01-10 22:12:07 +01:00
import { RdDActorVehiculeSheet } from "./actor-vehicule-sheet.js";
2020-11-14 23:24:01 +01:00
import { RdDActorEntiteSheet } from "./actor-entite-sheet.js";
2020-06-07 23:16:50 +02:00
import { RdDUtility } from "./rdd-utility.js";
2020-11-17 16:30:03 +01:00
import { TMRUtility } from "./tmr-utility.js";
2020-09-20 16:36:39 +02:00
import { RdDCalendrier } from "./rdd-calendrier.js";
import { RdDResolutionTable } from "./rdd-resolution-table.js";
2020-12-05 00:04:40 +01:00
import { RdDTokenHud } from "./rdd-token-hud.js";
2020-12-29 00:11:58 +01:00
import { RdDCommands } from "./rdd-commands.js";
2021-02-09 09:18:52 +01:00
import { RdDCombatManager, RdDCombat } from "./rdd-combat.js";
import { ChatUtility } from "./chat-utility.js";
2022-11-06 21:39:03 +01:00
import { StatusEffects } from "./settings/status-effects.js";
2021-01-26 00:25:41 +01:00
import { RddCompendiumOrganiser } from "./rdd-compendium-organiser.js";
2022-11-06 21:39:03 +01:00
import { ReglesOptionelles } from "./settings/regles-optionelles.js";
import { RdDHotbar } from "./rdd-hotbar-drop.js"
import { EffetsDraconiques } from "./tmr/effets-draconiques.js";
2021-04-04 18:37:16 +02:00
import { RdDHerbes } from "./rdd-herbes.js";
import { RdDItem } from "./item.js";
2021-04-29 02:57:56 +02:00
import { RdDDice } from "./rdd-dice.js";
2021-11-11 09:18:25 +01:00
import { RdDPossession } from "./rdd-possession.js";
2021-05-10 19:17:31 +02:00
import { RdDSigneDraconiqueItemSheet } from "./item-signedraconique-sheet.js";
import { Misc } from "./misc.js";
2022-09-17 16:07:38 +02:00
import { Migrations } from './migrations.js';
2022-11-04 20:41:16 +01:00
import { DialogChronologie } from "./dialog-chronologie.js";
2022-11-06 21:39:47 +01:00
import { SystemCompendiums } from "./settings/system-compendiums.js";
import { RdDRencontreItemSheet } from "./item-rencontre-sheet.js";
import { TMRRencontres } from "./tmr-rencontres.js";
import { RdDHerbeItemSheet } from "./item-herbe-sheet.js";
import { Environnement } from "./environnement.js";
import { RdDIngredientItemSheet } from "./item-ingredient-sheet.js";
import { RdDFauneItemSheet } from "./item-faune-sheet.js";
import { RdDConteneurItemSheet } from "./item-conteneur-sheet.js";
2020-06-07 23:16:50 +02:00
/* -------------------------------------------- */
/* Foundry VTT Initialization */
/* -------------------------------------------- */
2020-09-02 22:00:35 +02:00
/************************************************************************************/
Hooks.once("init", async function () {
2020-06-07 23:16:50 +02:00
console.log(`Initializing Reve de Dragon System`);
2020-06-07 23:16:50 +02:00
// preload handlebars templates
RdDUtility.preloadHandlebarsTemplates();
2020-11-12 23:50:37 +01:00
// Create useful storage space
game.system.rdd = {
TMRUtility,
RdDUtility,
2021-11-11 09:18:25 +01:00
RdDHotbar,
RdDPossession,
}
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
game.settings.register(SYSTEM_RDD, "accorder-entite-cauchemar", {
name: "Accorder le rêve aux entités",
hint: "A quel moment les personnages doivent accorder leur rêve aux entités de cauchemar",
scope: "world",
config: true,
type: String,
choices: { // If choices are defined, the resulting setting will be a select menu
"avant-attaque": "Avant l'attaque",
"avant-defense": "Avant la défense",
"avant-encaissement": "Avant l'encaissement",
},
default: "avant-encaissement"
});
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
game.settings.register(SYSTEM_RDD, "calendrier", {
name: "calendrier",
scope: "world",
config: false,
2022-11-04 20:41:16 +01:00
default: RdDCalendrier.createCalendrierInitial(),
type: Object
});
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
2021-11-11 02:43:01 +01:00
game.settings.register(SYSTEM_RDD, "migration-png-webp-1.5.34", {
name: "calendrier",
scope: "world",
config: false,
default: false,
type: Boolean
});
/* -------------------------------------------- */
game.settings.register(SYSTEM_RDD, "liste-nombre-astral", {
name: "liste-nombre-astral",
scope: "world",
config: false,
default: [],
type: Object
});
/* -------------------------------------------- */
game.settings.register(SYSTEM_RDD, "calendrier-pos", {
name: "calendrierPos",
scope: "client",
2020-12-08 21:40:41 +01:00
config: false,
default: RdDCalendrier.createCalendrierPos(),
2020-12-08 21:40:41 +01:00
type: Object
});
2022-11-04 20:41:16 +01:00
/* -------------------------------------------- */
game.settings.register(SYSTEM_RDD, "supprimer-dialogues-combat-chat", {
name: "Supprimer les dialogues de combat",
hint: "Si désactivée, tous les dialogues de combat sont conservés dans la conversation",
scope: "world",
config: true,
default: true,
type: Boolean
});
2021-01-12 20:58:30 +01:00
/* -------------------------------------------- */
game.settings.register(SYSTEM_RDD, "activer-sons-audio", {
2021-01-12 20:58:30 +01:00
name: "Activer les bruitages intégrés",
hint: "Si activé, certaines actions en jeu déclenchent un son d'ambiance",
scope: "world",
config: true,
default: true,
type: Boolean
});
2021-04-06 23:44:57 +02:00
/* -------------------------------------------- */
game.settings.register(SYSTEM_RDD, "appliquer-famine-soif", {
2021-04-06 23:44:57 +02:00
name: "Notifier de la famine et la soif pour",
hint: "Indique si les cas de famine et de soif seront indiqués durant Château Dormant",
scope: "world",
config: true,
type: String,
choices: {
"aucun": "ni la famine, ni la soif",
"famine": "seulement la famine",
"famine-soif": "la famine et la soif",
},
default: "aucun"
});
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
// Set an initiative formula for the system
CONFIG.Combat.initiative = {
2021-01-13 11:35:36 +01:00
formula: "1+(1d6/10)",
decimals: 2
2020-06-07 23:16:50 +02:00
};
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
game.socket.on(SYSTEM_SOCKET_ID, async (sockmsg) => {
console.log(">>>>> MSG RECV", sockmsg);
try {
RdDUtility.onSocketMessage(sockmsg);
RdDCombat.onSocketMessage(sockmsg);
ChatUtility.onSocketMessage(sockmsg);
RdDActor.onSocketMessage(sockmsg);
} catch (e) {
console.error('game.socket.on(SYSTEM_SOCKET_ID) Exception: ', sockmsg, ' => ', e)
}
2020-06-17 20:31:43 +02:00
});
2020-06-07 23:16:50 +02:00
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
// Define custom Entity classes
2021-03-25 03:18:27 +01:00
CONFIG.Actor.documentClass = RdDActor;
CONFIG.Item.documentClass = RdDItem;
CONFIG.RDD = {
resolutionTable: RdDResolutionTable.resolutionTable,
carac_array: RdDUtility.getCaracArray(),
ajustementsConditions: RdDUtility.getAjustementsConditions(),
difficultesLibres: RdDUtility.getDifficultesLibres()
}
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
2020-06-07 23:16:50 +02:00
// Register sheet application classes
Actors.unregisterSheet("core", ActorSheet);
Actors.registerSheet(SYSTEM_RDD, RdDActorSheet, { types: ["personnage"], makeDefault: true });
Actors.registerSheet(SYSTEM_RDD, RdDActorCreatureSheet, { types: ["creature"], makeDefault: true });
Actors.registerSheet(SYSTEM_RDD, RdDActorVehiculeSheet, { types: ["vehicule"], makeDefault: true });
Actors.registerSheet(SYSTEM_RDD, RdDActorEntiteSheet, { types: ["entite"], makeDefault: true });
2020-06-07 23:16:50 +02:00
Items.unregisterSheet("core", ItemSheet);
RdDItemSheet.register(RdDSigneDraconiqueItemSheet);
RdDItemSheet.register(RdDRencontreItemSheet);
RdDItemSheet.register(RdDConteneurItemSheet);
RdDItemSheet.register(RdDHerbeItemSheet);
RdDItemSheet.register(RdDFauneItemSheet);
RdDItemSheet.register(RdDIngredientItemSheet);
Items.registerSheet(SYSTEM_RDD, RdDItemSheet, {
types: [
"competence", "competencecreature",
"recettealchimique", "musique", "chant", "danse", "jeu", "recettecuisine", "oeuvre",
"objet", "arme", "armure", "livre", "potion", "munition",
"monnaie", "nourritureboisson", "gemme",
"meditation", "queue", "ombre", "souffle", "tete", "casetmr", "sort", "sortreserve",
"nombreastral", "tache", "maladie", "poison", "possession",
"tarot", "extraitpoetique"
], makeDefault: true
});
2021-03-25 03:18:27 +01:00
CONFIG.Combat.documentClass = RdDCombatManager;
2020-09-02 22:00:35 +02:00
// préparation des différents modules
2022-11-06 21:39:47 +01:00
SystemCompendiums.init();
2022-11-05 18:06:30 +01:00
DialogChronologie.init();
2021-05-08 20:08:56 +02:00
ReglesOptionelles.init();
RdDUtility.init();
2021-04-29 02:57:56 +02:00
RdDDice.init();
RdDCommands.init();
RdDCombat.init();
RdDCombatManager.init();
RdDTokenHud.init();
RdDActor.init();
2021-01-26 00:25:41 +01:00
RddCompendiumOrganiser.init();
EffetsDraconiques.init()
TMRUtility.init();
RdDHotbar.initDropbar();
2021-11-11 09:18:25 +01:00
RdDPossession.init();
TMRRencontres.init();
Environnement.init();
2020-07-21 23:51:24 +02:00
});
/* -------------------------------------------- */
function messageDeBienvenue() {
2021-01-20 00:44:19 +01:00
if (game.user.isGM) {
ChatUtility.removeChatMessageContaining('<div id="message-bienvenue-rdd">');
ChatMessage.create({
2021-03-25 03:18:27 +01:00
user: game.user.id,
2021-01-20 00:44:19 +01:00
content: `<div id="message-bienvenue-rdd"><span class="rdd-roll-part">Bienvenue dans le Rêve des Dragons !</span>
<br>Vous trouverez quelques informations pour démarrer dans ce document : @Compendium[foundryvtt-reve-de-dragon.rappel-des-regles.7uGrUHGdPu0EmIu2]{Documentation MJ/Joueurs}
<br>La commande <code>/aide</code> dans le chat permet de voir les commandes spécifiques à Rêve de Dragon.</div>
` });
}
2020-11-23 19:51:34 +01:00
}
2022-01-30 16:11:20 +01:00
/* -------------------------------------------- */
// Register world usage statistics
function registerUsageCount(registerKey) {
if (game.user.isGM) {
2022-06-12 13:58:55 +02:00
game.settings.register("world", "world-key", {
2022-01-30 16:11:20 +01:00
name: "Unique world key",
scope: "world",
config: false,
2022-06-12 13:58:55 +02:00
default: "NONE",
2022-01-30 16:11:20 +01:00
type: String
});
2022-06-12 13:58:55 +02:00
let worldKey = game.settings.get("world", "world-key")
if (worldKey == undefined || worldKey == "") {
2022-01-30 16:11:20 +01:00
worldKey = randomID(32)
game.settings.set("world", "world-key", worldKey)
2022-01-30 16:11:20 +01:00
}
2022-06-12 13:58:55 +02:00
let regURL = `https://www.uberwald.me/fvtt_appcount/count.php?name="${registerKey}"&worldKey="${worldKey}"&version="${game.release.generation}.${game.release.build}"&system="${game.system.id}"&systemversion="${game.system.version}"`
2022-03-02 20:19:02 +01:00
$.ajax(regURL)
2022-01-30 16:11:20 +01:00
/* -------------------------------------------- */
}
}
2021-05-07 00:01:07 +02:00
/* -------------------------------------------- */
/* Foundry VTT Initialization */
/* -------------------------------------------- */
2021-06-05 20:53:43 +02:00
Hooks.once("ready", async function () {
2021-11-11 02:43:01 +01:00
await migrationPngWebp_1_5_34()
2022-09-17 16:07:38 +02:00
if (Misc.isUniqueConnectedGM()) {
new Migrations().migrate();
}
StatusEffects.onReady();
2021-04-04 18:37:16 +02:00
RdDHerbes.initializeHerbes();
RdDDice.onReady();
2020-12-08 21:40:41 +01:00
/* -------------------------------------------- */
/* Affiche/Init le calendrier */
let calendrier = new RdDCalendrier();
let templatePath = "systems/foundryvtt-reve-de-dragon/templates/calendar-template.html";
let templateData = {};
renderTemplate(templatePath, templateData).then(html => {
2020-09-20 16:36:39 +02:00
calendrier.render(true);
});
2020-12-08 21:40:41 +01:00
game.system.rdd.calendrier = calendrier; // Reference;
// Avertissement si joueur sans personnage
if (!game.user.isGM && game.user.character == undefined) {
ui.notifications.info("Attention ! Vous n'êtes connecté à aucun personnage !");
ChatMessage.create({
content: "<b>ATTENTION</b> Le joueur " + game.user.name + " n'est connecté à aucun personnage !",
2021-03-25 03:18:27 +01:00
user: game.user.id
});
}
if (Misc.isUniqueConnectedGM()) {
2021-11-11 02:43:01 +01:00
messageDeBienvenue();
registerUsageCount(SYSTEM_RDD);
2021-11-11 02:43:01 +01:00
}
2020-09-20 16:36:39 +02:00
});
2020-07-24 10:51:11 +02:00
2021-11-11 02:43:01 +01:00
async function migrationPngWebp_1_5_34() {
if (!game.settings.get(SYSTEM_RDD, "migration-png-webp-1.5.34")) {
const regexOldPngJpg = /(systems\/foundryvtt-reve-de-dragon\/icons\/.*)\.(png|jpg)/;
const replaceWithWebp = '$1.webp';
function convertImgToWebp(img) {
return img.replace(regexOldPngJpg, replaceWithWebp);
}
function prepareDocumentsImgUpdate(documents) {
return documents.filter(it => it.img && it.img.match(regexOldPngJpg))
2021-11-11 02:43:01 +01:00
.map(it => {
return { _id: it.id, img: convertImgToWebp(it.img) }
});
}
const itemsUpdates = prepareDocumentsImgUpdate(game.items);
const actorsUpdates = prepareDocumentsImgUpdate(game.actors);
//Migrate system png to webp
await Item.updateDocuments(itemsUpdates);
await Actor.updateDocuments(actorsUpdates);
game.actors.forEach(actor => {
2022-09-07 09:01:23 +02:00
if (actor.token?.img && actor.token.img.match(regexOldPngJpg)) {
actor.update({ "token.img": convertImgToWebp(actor.token.img) });
2021-11-11 02:43:01 +01:00
}
const actorItemsToUpdate = prepareDocumentsImgUpdate(actor.items);
actor.updateEmbeddedDocuments('Item', actorItemsToUpdate);
});
game.settings.set(SYSTEM_RDD, "migration-png-webp-1.5.34", true)
}
2021-12-20 10:18:28 +01:00
// CSS patch for v9
if (game.version) {
let sidebar = document.getElementById("sidebar");
sidebar.style.width = "min-content";
}
2022-01-30 16:11:20 +01:00
2021-11-11 02:43:01 +01:00
}
2020-07-21 23:51:24 +02:00
/* -------------------------------------------- */
2021-04-29 02:57:56 +02:00
/* Dice-so-nice ready */
/* -------------------------------------------- */
Hooks.once('diceSoNiceReady', (dice3d) => RdDDice.diceSoNiceReady(dice3d));