2022-11-27 08:58:19 +01:00
|
|
|
import { DarkStarsUtility } from "./dark-stars-utility.js";
|
|
|
|
|
|
|
|
export class DarkStarsRollDialog extends Dialog {
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
static async create(actor, rollData) {
|
|
|
|
|
|
|
|
let options = { classes: ["DarkStarsDialog"], width: 540, height: 340, 'z-index': 99999 };
|
2022-12-04 12:16:25 +01:00
|
|
|
let html = await renderTemplate('systems/fvtt-dark-stars/templates/roll-dialog-generic.hbs', rollData);
|
2022-11-27 08:58:19 +01:00
|
|
|
|
|
|
|
return new DarkStarsRollDialog(actor, rollData, html, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
constructor(actor, rollData, html, options, close = undefined) {
|
|
|
|
let conf = {
|
|
|
|
title: (rollData.mode == "skill") ? "Skill" : "Attribute",
|
|
|
|
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() {
|
|
|
|
DarkStarsUtility.rollDarkStars(this.rollData)
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
async refreshDialog() {
|
2022-12-04 12:16:25 +01:00
|
|
|
const content = await renderTemplate("systems/fvtt-dark-stars/templates/roll-dialog-generic.hbs", this.rollData)
|
2022-11-27 08:58:19 +01:00
|
|
|
this.data.content = content
|
|
|
|
this.render(true)
|
|
|
|
}
|
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
activateListeners(html) {
|
|
|
|
super.activateListeners(html);
|
|
|
|
|
|
|
|
var dialog = this;
|
|
|
|
function onLoad() {
|
|
|
|
}
|
|
|
|
$(function () { onLoad(); });
|
|
|
|
|
|
|
|
html.find('#advantage').change((event) => {
|
|
|
|
this.rollData.advantage = event.currentTarget.value
|
|
|
|
})
|
|
|
|
html.find('#disadvantage').change((event) => {
|
|
|
|
this.rollData.disadvantage = event.currentTarget.value
|
|
|
|
})
|
|
|
|
html.find('#rollAdvantage').change((event) => {
|
|
|
|
this.rollData.rollAdvantage = event.currentTarget.value
|
|
|
|
})
|
|
|
|
html.find('#useshield').change((event) => {
|
|
|
|
this.rollData.useshield = event.currentTarget.checked
|
|
|
|
})
|
|
|
|
html.find('#hasCover').change((event) => {
|
|
|
|
this.rollData.hasCover = event.currentTarget.value
|
|
|
|
})
|
|
|
|
html.find('#situational').change((event) => {
|
|
|
|
this.rollData.situational = event.currentTarget.value
|
|
|
|
})
|
|
|
|
html.find('#distanceBonusDice').change((event) => {
|
|
|
|
this.rollData.distanceBonusDice = Number(event.currentTarget.value)
|
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|