forked from GitHub-Mirrors/foundry-sw5e

add structure for Hull, Shield, and Power Dice to allow for recharge, refitting, and regeneration. Not complete.
117 lines
3.3 KiB
JavaScript
117 lines
3.3 KiB
JavaScript
/**
|
|
* A helper Dialog subclass for rolling Hit Dice on a recharge rest
|
|
* @extends {Dialog}
|
|
*/
|
|
export default class RechargeRestDialog extends Dialog {
|
|
constructor(actor, dialogData={}, options={}) {
|
|
super(dialogData, options);
|
|
|
|
/**
|
|
* Store a reference to the Actor entity which is resting
|
|
* @type {Actor}
|
|
*/
|
|
this.actor = actor;
|
|
|
|
/**
|
|
* Track the most recently used HD denomination for re-rendering the form
|
|
* @type {string}
|
|
*/
|
|
this._denom = null;
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
|
static get defaultOptions() {
|
|
return mergeObject(super.defaultOptions, {
|
|
template: "systems/sw5e/templates/apps/recharge-rest.html",
|
|
classes: ["sw5e", "dialog"]
|
|
});
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/** @override */
|
|
getData() {
|
|
const data = super.getData();
|
|
|
|
// Determine Hull Dice
|
|
data.availableHD = this.actor.data.items.reduce((hd, item) => {
|
|
if ( item.type === "starship" ) {
|
|
const d = item.data;
|
|
const denom = d.hullDice || "d6";
|
|
const available = parseInt(d.hullDiceStart || 1) + parseInt(d.tier || 0) - parseInt(d.hullDiceUsed || 0);
|
|
hd[denom] = denom in hd ? hd[denom] + available : available;
|
|
}
|
|
return hd;
|
|
}, {});
|
|
data.canRoll = this.actor.data.data.attributes.hull.dice > 0;
|
|
data.denomination = this._denom;
|
|
|
|
// Determine rest type
|
|
const variant = game.settings.get("sw5e", "restVariant");
|
|
data.promptNewDay = variant !== "epic"; // It's never a new day when only resting 1 minute
|
|
data.newDay = false; // It may be a new day, but not by default
|
|
return data;
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
|
|
/** @override */
|
|
activateListeners(html) {
|
|
super.activateListeners(html);
|
|
let btn = html.find("#roll-hulld");
|
|
btn.click(this._onRollHullDie.bind(this));
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/**
|
|
* Handle rolling a Hull Die as part of a Recharge Rest action
|
|
* @param {Event} event The triggering click event
|
|
* @private
|
|
*/
|
|
async _onRollHullDie(event) {
|
|
event.preventDefault();
|
|
const btn = event.currentTarget;
|
|
this._denom = btn.form.hulld.value;
|
|
await this.actor.rollHullDie(this._denom);
|
|
this.render();
|
|
}
|
|
|
|
/* -------------------------------------------- */
|
|
|
|
/**
|
|
* A helper constructor function which displays the Short Rest dialog and returns a Promise once it's workflow has
|
|
* been resolved.
|
|
* @param {Actor5e} actor
|
|
* @return {Promise}
|
|
*/
|
|
static async rechargeRestDialog({actor}={}) {
|
|
return new Promise((resolve, reject) => {
|
|
const dlg = new this(actor, {
|
|
title: "Recharge Rest",
|
|
buttons: {
|
|
rest: {
|
|
icon: '<i class="fas fa-bed"></i>',
|
|
label: "Rest",
|
|
callback: html => {
|
|
let newDay = false;
|
|
if (game.settings.get("sw5e", "restVariant") === "gritty")
|
|
newDay = html.find('input[name="newDay"]')[0].checked;
|
|
resolve(newDay);
|
|
}
|
|
},
|
|
cancel: {
|
|
icon: '<i class="fas fa-times"></i>',
|
|
label: "Cancel",
|
|
callback: reject
|
|
}
|
|
},
|
|
close: reject
|
|
});
|
|
dlg.render(true);
|
|
});
|
|
}
|
|
}
|