2022-07-19 23:16:03 +02:00
|
|
|
import { CrucibleUtility } from "./crucible-utility.js";
|
|
|
|
|
|
|
|
export class CrucibleRollDialog extends Dialog {
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
static async create(actor, rollData) {
|
|
|
|
|
2022-07-26 21:40:42 +02:00
|
|
|
let options = { classes: ["CrucibleDialog"], width: 420, height: 280, 'z-index': 99999 };
|
2022-07-19 23:16:03 +02:00
|
|
|
let html = await renderTemplate('systems/fvtt-crucible-rpg/templates/roll-dialog-generic.html', rollData);
|
|
|
|
|
|
|
|
return new CrucibleRollDialog(actor, rollData, html, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
constructor(actor, rollData, html, options, close = undefined) {
|
|
|
|
let conf = {
|
2022-07-26 21:40:42 +02:00
|
|
|
title: (rollData.mode == "skill") ? "Skill" : "Attribute",
|
2022-07-19 23:16:03 +02:00
|
|
|
content: html,
|
|
|
|
buttons: {
|
|
|
|
roll: {
|
|
|
|
icon: '<i class="fas fa-check"></i>',
|
|
|
|
label: "Roll !",
|
|
|
|
callback: () => { this.roll() }
|
|
|
|
},
|
|
|
|
cancel: {
|
|
|
|
icon: '<i class="fas fa-times"></i>',
|
|
|
|
label: "Cancel",
|
|
|
|
callback: () => { this.close() }
|
|
|
|
}
|
|
|
|
},
|
|
|
|
close: close
|
|
|
|
}
|
|
|
|
|
|
|
|
super(conf, options);
|
|
|
|
|
|
|
|
this.actor = actor;
|
|
|
|
this.rollData = rollData;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
roll() {
|
|
|
|
CrucibleUtility.rollCrucible(this.rollData)
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async refreshDialog() {
|
|
|
|
const content = await renderTemplate("systems/fvtt-crucible-rpg/templates/roll-dialog-generic.html", this.rollData)
|
|
|
|
this.data.content = content
|
|
|
|
this.render(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
activateListeners(html) {
|
|
|
|
super.activateListeners(html);
|
|
|
|
|
|
|
|
var dialog = this;
|
|
|
|
function onLoad() {
|
|
|
|
}
|
|
|
|
$(function () { onLoad(); });
|
|
|
|
|
2022-07-26 21:40:42 +02:00
|
|
|
html.find('#none-clicked').change((event) => {
|
|
|
|
this.rollData.advantage = "none"
|
2022-07-19 23:16:03 +02:00
|
|
|
this.refreshDialog()
|
|
|
|
})
|
2022-07-26 21:40:42 +02:00
|
|
|
html.find('#advantage-clicked').change((event) => {
|
|
|
|
this.rollData.advantage = "advantage"
|
2022-07-19 23:16:03 +02:00
|
|
|
this.refreshDialog()
|
|
|
|
})
|
2022-07-26 21:40:42 +02:00
|
|
|
html.find('#disadvantage-clicked').change((event) => {
|
|
|
|
this.rollData.advantage = "disadvantage"
|
2022-07-19 23:16:03 +02:00
|
|
|
this.refreshDialog()
|
|
|
|
})
|
2022-07-30 23:29:55 +02:00
|
|
|
html.find('#roll-with-advantage-clicked').change((event) => {
|
|
|
|
this.rollData.rollAdvantage = !this.rollData.rollAdvantage
|
|
|
|
this.refreshDialog()
|
|
|
|
})
|
2022-07-30 22:54:08 +02:00
|
|
|
html.find('#featDieName').change((event) => {
|
|
|
|
this.rollData.featDieName = event.currentTarget.value
|
|
|
|
})
|
|
|
|
html.find('#featDieSL').change((event) => {
|
|
|
|
this.rollData.featDieSL = event.currentTarget.value
|
|
|
|
})
|
|
|
|
|
2022-07-19 23:16:03 +02:00
|
|
|
}
|
|
|
|
}
|