foundryvtt-reve-de-dragon/module/rdd-hotbar-drop.js

101 lines
3.3 KiB
JavaScript
Raw Permalink Normal View History

import { Misc } from "./misc.js";
export class RdDHotbar {
2022-09-07 09:14:42 +02:00
static async createMacro(item, command) {
let macro = await Macro.create({
name: item.name,
type: "script",
img: item.img,
command: command
}, { displaySheet: false })
return macro
}
/**
* Create a macro when dropping an entity on the hotbar
* Item - open roll dialog for item
* Actor - open actor sheet
* Journal - open journal sheet
*/
2022-09-07 09:14:42 +02:00
static initDropbar() {
2022-09-07 09:14:42 +02:00
Hooks.on("hotbarDrop", (bar, documentData, slot) => {
2022-09-06 23:52:21 +02:00
2022-09-07 09:14:42 +02:00
// Create item macro if rollable item - weapon, spell, prayer, trait, or skill
if (documentData.type == "Item") {
let item = fromUuidSync(documentData.uuid)
if (item == undefined) {
item = this.actor.items.get(documentData.uuid)
}
console.log("DROP", documentData, item)
if (!item || (item.type != "arme" && item.type != "competence")) {
return true
}
let command = `game.system.rdd.RdDHotbar.rollMacro("${item.name}", "${item.type}");`;
let macro = game.macros.contents.find(m => (m.name === item.name) && (m.command === command));
if (!macro) {
macro = this.createMacro(item, command)
}
game.user.assignHotbarMacro(macro, slot);
return false
}
2022-09-06 23:52:21 +02:00
2022-09-07 09:14:42 +02:00
// Create a macro to open the actor sheet of the actor dropped on the hotbar
/*else if (documentData.type == "Actor") {
2021-03-25 03:18:27 +01:00
let actor = game.actors.get(documentData.id);
let command = `game.actors.get("${documentData.id}").sheet.render(true)`
let macro = game.macros.contents.find(m => (m.name === actor.name) && (m.command === command));
if (!macro) {
macro = await Macro.create({
2022-09-06 23:52:21 +02:00
name: actor.name,
type: "script",
2022-09-07 09:01:23 +02:00
img: actor.img,
command: command
}, { displaySheet: false })
game.user.assignHotbarMacro(macro, slot);
}
}
2022-09-07 09:14:42 +02:00
// Create a macro to open the journal sheet of the journal dropped on the hotbar
2021-03-25 03:18:27 +01:00
else if (documentData.type == "JournalEntry") {
2022-09-06 23:52:21 +02:00
let journal = fromUuidSync(documentData.uuid)
2021-03-25 03:18:27 +01:00
let command = `game.journal.get("${documentData.id}").sheet.render(true)`
let macro = game.macros.contents.find(m => (m.name === journal.name) && (m.command === command));
if (!macro) {
macro = await Macro.create({
2022-09-06 23:52:21 +02:00
name: journal.name,
type: "script",
2021-11-10 20:03:04 +01:00
img: "systems/foundryvtt-reve-de-dragon/icons/templates/icone_parchement_vierge.webp",
command: command
}, { displaySheet: false })
game.user.assignHotbarMacro(macro, slot);
}
2022-09-07 09:14:42 +02:00
}*/
return true;
});
2022-09-07 09:14:42 +02:00
}
/** Roll macro */
static rollMacro(itemName, itemType, bypassData) {
2022-09-07 09:14:42 +02:00
const speaker = ChatMessage.getSpeaker();
let actor;
if (speaker.token) actor = game.actors.tokens[speaker.token];
if (!actor) actor = game.actors.get(speaker.actor);
2022-09-07 09:14:42 +02:00
let item = actor?.items.find(it => it.name === itemName && it.type == itemType) ?? undefined;
if (!item) {
return ui.notifications.warn(`Impossible de trouver l'objet de cette macro`);
}
2022-09-07 09:14:42 +02:00
// Trigger the item roll
switch (item.type) {
case "arme":
return actor.rollArme(item);
case "competence":
return actor.rollCompetence(itemName);
}
2022-09-07 09:14:42 +02:00
}
}