135 lines
4.8 KiB
JavaScript
135 lines
4.8 KiB
JavaScript
/**
|
|
* Heritiers system
|
|
* Author: Uberwald
|
|
* Software License: Prop
|
|
*/
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/* -------------------------------------------- */
|
|
// Import Modules
|
|
import { HeritiersActor } from "./heritiers-actor.js";
|
|
import { HeritiersItemSheet } from "./heritiers-item-sheet.js";
|
|
import { HeritiersActorSheet } from "./heritiers-actor-sheet.js";
|
|
import { HeritiersActorPNJSheet } from "./heritiers-actor-pnj-sheet.js";
|
|
import { HeritiersUtility } from "./heritiers-utility.js";
|
|
import { HeritiersCombat } from "./heritiers-combat.js";
|
|
import { HeritiersItem } from "./heritiers-item.js";
|
|
import { HERITIERS_CONFIG } from "./heritiers-config.js";
|
|
|
|
/* -------------------------------------------- */
|
|
/* Foundry VTT Initialization */
|
|
/* -------------------------------------------- */
|
|
|
|
/************************************************************************************/
|
|
Hooks.once("init", async function () {
|
|
console.log(`Initializing Heritiers RPG`);
|
|
|
|
/* -------------------------------------------- */
|
|
// preload handlebars templates
|
|
HeritiersUtility.preloadHandlebarsTemplates()
|
|
|
|
/* -------------------------------------------- */
|
|
// Set an initiative formula for the system
|
|
CONFIG.Combat.initiative = {
|
|
formula: "1d10",
|
|
decimals: 1
|
|
};
|
|
|
|
/* -------------------------------------------- */
|
|
game.socket.on("system.fvtt-les-heritiers", data => {
|
|
HeritiersUtility.onSocketMesssage(data)
|
|
});
|
|
|
|
/* -------------------------------------------- */
|
|
// Define custom Entity classes
|
|
CONFIG.Combat.documentClass = HeritiersCombat
|
|
CONFIG.Actor.documentClass = HeritiersActor
|
|
CONFIG.Item.documentClass = HeritiersItem
|
|
// Create an object of bonus/malus from -6 to +6 signed
|
|
HERITIERS_CONFIG.bonusMalus = Array.from({ length: 7 }, (v, k) => toString(k - 6))
|
|
game.system.lesheritiers = {
|
|
HeritiersUtility,
|
|
config: HERITIERS_CONFIG
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
// Register sheet application classes
|
|
Actors.unregisterSheet("core", ActorSheet);
|
|
Actors.registerSheet("fvtt-les-heritiers", HeritiersActorSheet, { types: ["personnage"], makeDefault: true })
|
|
Actors.registerSheet("fvtt-les-heritiers", HeritiersActorPNJSheet, { types: ["pnj"], makeDefault: true })
|
|
|
|
Items.unregisterSheet("core", ItemSheet);
|
|
Items.registerSheet("fvtt-les-heritiers", HeritiersItemSheet, { makeDefault: true })
|
|
|
|
HeritiersUtility.init()
|
|
|
|
});
|
|
|
|
/* -------------------------------------------- */
|
|
function welcomeMessage() {
|
|
ChatMessage.create({
|
|
user: game.user.id,
|
|
whisper: [game.user.id],
|
|
content: `<div id="welcome-message-heritiers"><span class="rdd-roll-part">
|
|
<strong>Bienvenue dans Les Heritiers et la Belle Epoque !</strong>
|
|
<p>Les livres du JDR Les Heritiers sont nécessaires pour jouer : https://www.titam-france.fr</p>
|
|
<p>Les Heritiers est jeu de rôle publié par Titam France/Sombres projets, tout les droits leur appartiennent.</p>
|
|
<p>Système développé par LeRatierBretonnien, support sur le <a href="https://discord.gg/pPSDNJk">Discord FR de Foundry</a>.</p>
|
|
` });
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
async function importDefaultScene() {
|
|
let exists = game.scenes.find(j => j.name == "Accueil");
|
|
if (!exists) {
|
|
const scenes = await HeritiersUtility.loadCompendium("fvtt-les-heritiers.scenes")
|
|
let newDocuments = scenes.filter(i => i.name == "Accueil");
|
|
await game.scenes.documentClass.create(newDocuments);
|
|
game.scenes.find(i => i.name == "Accueil").activate();
|
|
}
|
|
}
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
/* Foundry VTT Initialization */
|
|
/* -------------------------------------------- */
|
|
Hooks.once("ready", function () {
|
|
|
|
HeritiersUtility.ready()
|
|
|
|
// User warning
|
|
if (!game.user.isGM && game.user.character == undefined) {
|
|
ui.notifications.info("Attention ! Aucun personnage n'est relié au joueur !");
|
|
ChatMessage.create({
|
|
content: "<b>ATTENTION</b> Le joueur " + game.user.name + " n'est relié à aucun personnage !",
|
|
user: game.user._id
|
|
});
|
|
}
|
|
|
|
import("https://www.uberwald.me/fvtt_appcount/count-class-ready.js").then(moduleCounter=>{
|
|
console.log("ClassCounter loaded", moduleCounter)
|
|
moduleCounter.ClassCounter.registerUsageCount()
|
|
}).catch(err=>
|
|
console.log("No stats available, giving up.")
|
|
)
|
|
welcomeMessage();
|
|
importDefaultScene();
|
|
|
|
});
|
|
|
|
/* -------------------------------------------- */
|
|
/* Foundry VTT Initialization */
|
|
/* -------------------------------------------- */
|
|
Hooks.on("chatMessage", (html, content, msg) => {
|
|
if (content[0] == '/') {
|
|
let regExp = /(\S+)/g;
|
|
let commands = content.match(regExp);
|
|
if (game.system.lesheritiers.commands.processChatCommand(commands, content, msg)) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
});
|
|
|