mirror of
https://github.com/Foundryborne/daggerheart.git
synced 2026-07-22 02:19:54 +02:00
[Fix] Reroll Countdown Automation (#2031)
* Fixed so that automated countdowns reverse progress from Fear when rerolling dice if the duality result changes * . * Removed overprep * Apply suggestion from @CarlosFdez --------- Co-authored-by: Carlos Fernandez <CarlosFdez@users.noreply.github.com>
This commit is contained in:
parent
cc16a726bf
commit
1492491998
2 changed files with 27 additions and 16 deletions
|
|
@ -342,29 +342,31 @@ export default class DhCountdowns extends HandlebarsApplicationMixin(Application
|
||||||
* Sends updates of the countdowns to the GM player. Since this is asynchronous, be sure to
|
* Sends updates of the countdowns to the GM player. Since this is asynchronous, be sure to
|
||||||
* update all the countdowns at the same time.
|
* update all the countdowns at the same time.
|
||||||
*
|
*
|
||||||
* @param {...any} progressTypes Countdowns to be updated
|
* @param {...(string | { type: string; undo?: boolean })} progressTypes Countdowns to be updated
|
||||||
*/
|
*/
|
||||||
static async updateCountdowns(...progressTypes) {
|
static async updateCountdowns(...progressTypes) {
|
||||||
|
progressTypes = progressTypes.map(p => typeof p === 'string' ? { type: p } : p);
|
||||||
const { countdownAutomation } = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation);
|
const { countdownAutomation } = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation);
|
||||||
if (!countdownAutomation) return;
|
if (!countdownAutomation) return;
|
||||||
|
|
||||||
const countdownSetting = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Countdowns);
|
const countdownSetting = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Countdowns);
|
||||||
const updatedCountdowns = Object.keys(countdownSetting.countdowns).reduce((acc, key) => {
|
const updatedCountdowns = Object.keys(countdownSetting.countdowns).reduce((acc, key) => {
|
||||||
const countdown = countdownSetting.countdowns[key];
|
const countdown = countdownSetting.countdowns[key];
|
||||||
if (progressTypes.indexOf(countdown.progress.type) !== -1 && countdown.progress.current > 0) {
|
const progressData = progressTypes.find(x => x.type === countdown.progress.type);
|
||||||
acc.push(key);
|
if (progressData && countdown.progress.current > 0) {
|
||||||
|
acc[key] = { value: progressData.undo ? 1 : -1 };
|
||||||
}
|
}
|
||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
}, []);
|
}, {});
|
||||||
|
|
||||||
const countdownData = countdownSetting.toObject();
|
const countdownData = countdownSetting.toObject();
|
||||||
const settings = {
|
const settings = {
|
||||||
...countdownData,
|
...countdownData,
|
||||||
countdowns: Object.keys(countdownData.countdowns).reduce((acc, key) => {
|
countdowns: Object.keys(countdownData.countdowns).reduce((acc, key) => {
|
||||||
const countdown = foundry.utils.deepClone(countdownData.countdowns[key]);
|
const countdown = foundry.utils.deepClone(countdownData.countdowns[key]);
|
||||||
if (updatedCountdowns.includes(key)) {
|
if (updatedCountdowns[key]) {
|
||||||
countdown.progress.current -= 1;
|
countdown.progress.current += updatedCountdowns[key].value;
|
||||||
}
|
}
|
||||||
|
|
||||||
acc[key] = countdown;
|
acc[key] = countdown;
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,28 @@
|
||||||
import { ResourceUpdateMap } from '../data/action/baseAction.mjs';
|
import { ResourceUpdateMap } from '../data/action/baseAction.mjs';
|
||||||
|
|
||||||
export function updateResourcesForDualityReroll(oldDuality, newDuality, actor) {
|
export function updateResourcesForDualityReroll(oldDuality, newDuality, actor) {
|
||||||
const { hopeFear } = game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation);
|
|
||||||
if (game.user.isGM ? !hopeFear.gm : !hopeFear.players) return;
|
|
||||||
|
|
||||||
const updates = [];
|
|
||||||
const hope = (newDuality >= 0 ? 1 : 0) - (oldDuality >= 0 ? 1 : 0);
|
const hope = (newDuality >= 0 ? 1 : 0) - (oldDuality >= 0 ? 1 : 0);
|
||||||
const stress = (newDuality === 0 ? 1 : 0) - (oldDuality === 0 ? 1 : 0);
|
const stress = (newDuality === 0 ? 1 : 0) - (oldDuality === 0 ? 1 : 0);
|
||||||
const fear = (newDuality === -1 ? 1 : 0) - (oldDuality === -1 ? 1 : 0);
|
const fear = (newDuality === -1 ? 1 : 0) - (oldDuality === -1 ? 1 : 0);
|
||||||
|
|
||||||
if (hope !== 0) updates.push({ key: 'hope', value: hope, enabled: true });
|
const { hopeFear, countdownAutomation } =
|
||||||
if (stress !== 0) updates.push({ key: 'stress', value: -1 * stress, enabled: true });
|
game.settings.get(CONFIG.DH.id, CONFIG.DH.SETTINGS.gameSettings.Automation);
|
||||||
if (fear !== 0) updates.push({ key: 'fear', value: fear, enabled: true });
|
|
||||||
|
|
||||||
const resourceUpdates = new ResourceUpdateMap(actor);
|
if (game.user.isGM ? hopeFear.gm : hopeFear.players) {
|
||||||
resourceUpdates.addResources(updates);
|
const updates = [];
|
||||||
resourceUpdates.updateResources();
|
if (hope !== 0) updates.push({ key: 'hope', value: hope, enabled: true });
|
||||||
|
if (stress !== 0) updates.push({ key: 'stress', value: -1 * stress, enabled: true });
|
||||||
|
if (fear !== 0) updates.push({ key: 'fear', value: fear, enabled: true })
|
||||||
|
|
||||||
|
const resourceUpdates = new ResourceUpdateMap(actor);
|
||||||
|
resourceUpdates.addResources(updates);
|
||||||
|
resourceUpdates.updateResources();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (countdownAutomation && fear !== 0) {
|
||||||
|
game.system.api.applications.ui.DhCountdowns.updateCountdowns({
|
||||||
|
type: CONFIG.DH.GENERAL.countdownProgressionTypes.fear.id,
|
||||||
|
undo: fear === 1 ? false : true
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue