v10 compatibility

This commit is contained in:
sladecraven 2022-07-17 20:53:25 +02:00
parent e52b62a314
commit 1f0506f5c2
4 changed files with 86 additions and 76 deletions

View File

@ -335,7 +335,7 @@ export class SoSActor extends Actor {
totalWounds: this.system.scores.wound.value totalWounds: this.system.scores.wound.value
} }
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-character-death.html', woundData ); let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-character-death.html', woundData );
ChatMessage.create( { content: html, whisper: [ChatMessage.getWhisperRecipients(this.name), ChatMessage.getWhisperRecipients("GM") ] } ); ChatMessage.create( { content: html, whisper: ChatMessage.getWhisperRecipients(this.name).concat(ChatMessage.getWhisperRecipients("GM") ) } )
} }
} }
@ -369,7 +369,7 @@ export class SoSActor extends Actor {
totalWounds: this.system.scores.wound.value totalWounds: this.system.scores.wound.value
} }
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-consequence.html', woundData ); let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-consequence.html', woundData );
ChatMessage.create( { content: html, whisper: ChatMessage.getWhisperRecipients(this.name).concat(ChatMessage.getWhisperRecipients("GM")) } ); ChatMessage.create( { content: html, whisper: ChatMessage.getWhisperRecipients(this.name).concat(ChatMessage.getWhisperRecipients("GM")) } )
this.checkDeath(); this.checkDeath();
} }
@ -399,7 +399,7 @@ export class SoSActor extends Actor {
async applyWounds( flipData ) { async applyWounds( flipData ) {
if ( flipData.damageStatus == 'no_damage') { if ( flipData.damageStatus == 'no_damage') {
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-nodamage-taken.html', flipData ); let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-nodamage-taken.html', flipData );
ChatMessage.create( { content: html, whisper: [ChatMessage.getWhisperRecipients(this.name), ChatMessage.getWhisperRecipients("GM") ] } ); ChatMessage.create( { content: html, whisper: ChatMessage.getWhisperRecipients(this.name).concat(ChatMessage.getWhisperRecipients("GM")) } );
return; return;
} }
@ -437,7 +437,7 @@ export class SoSActor extends Actor {
flipData.currentWounds = sumWound; flipData.currentWounds = sumWound;
flipData.totalWounds = this.system.scores.wound.value; flipData.totalWounds = this.system.scores.wound.value;
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-taken.html', flipData ); let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-damage-taken.html', flipData );
ChatMessage.create( { content: html, whisper: [ChatMessage.getWhisperRecipients(this.name), ChatMessage.getWhisperRecipients("GM") ] } ); ChatMessage.create( { content: html, whisper: ChatMessage.getWhisperRecipients(this.name).concat(ChatMessage.getWhisperRecipients("GM")) } );
this.checkDeath(); this.checkDeath();
} }

View File

@ -9,22 +9,26 @@ export class SoSCombat extends Combat {
/* -------------------------------------------- */ /* -------------------------------------------- */
requestActions() { requestActions() {
if (game.user.isGM && !this.actionsRequested) { if (game.user.isGM && !this.actionsRequested) {
console.log("REQUEST ACTIONS !!!"); console.log("REQUEST ACTIONS !!!")
this.actionsRequested = true; this.actionsRequested = true;
this.phaseSetup = {}; // Reset each new round/update this.phaseSetup = {}; // Reset each new round/update
for (let combatant of this.combatants) { for (let combatant of this.combatants) {
this.setInitiative(combatant._id, -1 ); // Reset init this.setInitiative(combatant.id, -1); // Reset init
let uniq = randomID(16); let uniq = randomID(16)
const name = combatant.actor ? combatant.actor.name : combatant.name; const name = combatant.actor ? combatant.actor.name : combatant.name;
if ( combatant.players[0]) { if (combatant.players && combatant.players[0]) {
// A player controls this combatant -> message ! // A player controls this combatant -> message !
ChatMessage.create( { content: `New round ! Click on the button below to declare the actions of ${name} for round ${this.round} !<br> ChatMessage.create({
<a class='chat-card-button' id='button-declare-actions' data-uniq-id='${uniq}' data-combatant-id='${combatant._id}' data-combat-id='${this._id}' data-round='${this.round}'>Declare actions</a>`, content: `New round ! Click on the button below to declare the actions of ${name} for round ${this.round} !<br>
whisper: [ combatant.players[0].data._id] } ); <a class='chat-card-button' id='button-declare-actions' data-uniq-id='${uniq}' data-combatant-id='${combatant.id}' data-combat-id='${this.id}' data-round='${this.round}'>Declare actions</a>`,
whisper: [combatant.players[0].id]
});
} else { } else {
ChatMessage.create( { content: `New round ! Click on the button below to declare the actions of ${name} for round ${this.round} !<br> ChatMessage.create({
<a class='chat-card-button' id='button-declare-actions' data-uniq-id='${uniq}' data-combatant-id='${combatant._id}' data-combat-id='${this._id}' data-round='${this.round}'>Declare actions</a>`, content: `New round ! Click on the button below to declare the actions of ${name} for round ${this.round} !<br>
whisper: [ ChatMessage.getWhisperRecipients("GM") ] } ); <a class='chat-card-button' id='button-declare-actions' data-uniq-id='${uniq}' data-combatant-id='${combatant.id}' data-combat-id='${this.id}' data-round='${this.round}'>Declare actions</a>`,
whisper: ChatMessage.getWhisperRecipients("GM"),
});
} }
} }
} }
@ -58,8 +62,9 @@ export class SoSCombat extends Combat {
let actionData = this.phaseSetup[combatantId]; let actionData = this.phaseSetup[combatantId];
if (actionData.phaseArray[phaseIndex].name != 'No Action') { if (actionData.phaseArray[phaseIndex].name != 'No Action') {
let combatant = this.combatants.find(comb => comb._id == actionData.combatantId); let combatant = this.combatants.find(comb => comb._id == actionData.combatantId);
const name = combatant.actor ? combatant.actor.data.name : combatant.name; const name = combatant.actor ? combatant.actor.name : combatant.name;
actionList.push( { combatant: combatant, actionList.push({
combatant: combatant,
action: actionData.phaseArray[phaseIndex], action: actionData.phaseArray[phaseIndex],
isDone: false isDone: false
}); });
@ -77,18 +82,22 @@ export class SoSCombat extends Combat {
for (let action of actionList) { for (let action of actionList) {
let uniq = randomID(16); let uniq = randomID(16);
action.uniqId = uniq; // Easy tracking with chat messages action.uniqId = uniq; // Easy tracking with chat messages
const name = action.combatant.actor ? action.combatant.actor.data.name : action.combatant.name; const name = action.combatant.actor ? action.combatant.actor.name : action.combatant.name;
if (action.combatant.players[0]) { if (action.combatant.players[0]) {
// A player controls this combatant -> message ! // A player controls this combatant -> message !
ChatMessage.create( { content: `Phase ${this.phaseNumber} ! ${name} must perform a <strong>${action.action.name}</strong> action. ChatMessage.create({
content: `Phase ${this.phaseNumber} ! ${name} must perform a <strong>${action.action.name}</strong> action.
When done, click on the button below to close the action. When done, click on the button below to close the action.
<a class='chat-card-button' id='button-end-action' data-uniq-id='${uniq}' data-combatant-id='${action.combatant._id}' data-combat-id='${this._id}' data-round='${this.round}'>Action is done !</a>`, <a class='chat-card-button' id='button-end-action' data-uniq-id='${uniq}' data-combatant-id='${action.combatant.id}' data-combat-id='${this.id}' data-round='${this.round}'>Action is done !</a>`,
whisper: [ action.combatant.players[0].data._id] } ); whisper: [action.combatant.players[0].id]
});
} else { } else {
ChatMessage.create( { content: `Phase ${this.phaseNumber} ! ${name} must perform a <strong>${action.action.name}</strong> action.<br> ChatMessage.create({
content: `Phase ${this.phaseNumber} ! ${name} must perform a <strong>${action.action.name}</strong> action.<br>
When done, click on the button below to close the action. When done, click on the button below to close the action.
<a class='chat-card-button' id='button-end-action' data-uniq-id='${uniq}' data-combatant-id='${action.combatant._id}' data-combat-id='${this._id}' data-round='${this.round}'>Action is done !</a>`, <a class='chat-card-button' id='button-end-action' data-uniq-id='${uniq}' data-combatant-id='${action.combatant.id}' data-combat-id='${this.id}' data-round='${this.round}'>Action is done !</a>`,
whisper: [ ChatMessage.getWhisperRecipients("GM") ] } ); whisper: ChatMessage.getWhisperRecipients("GM")
});
} }
} }
// Save for easy access // Save for easy access
@ -100,8 +109,8 @@ export class SoSCombat extends Combat {
if (game.user.isGM) { if (game.user.isGM) {
for (let combatant of this.combatants) { for (let combatant of this.combatants) {
if (!combatant.actor) continue; // Can't check tokens without assigned actors, Maybe print chat message about bleeding happening so that the GM can manually track this? if (!combatant.actor) continue; // Can't check tokens without assigned actors, Maybe print chat message about bleeding happening so that the GM can manually track this?
let bleeding = combatant.actor.data.items.find( item => item.type == 'consequence' && item.name == 'Bleeding'); let bleeding = combatant.actor.items.find(item => item.type == 'consequence' && item.name == 'Bleeding');
combatant.actor.applyConsequenceWound( bleeding.data.severity, "bleeding" ); combatant.actor.applyConsequenceWound(bleeding.system.severity, "bleeding");
} }
} }
} }
@ -109,8 +118,8 @@ export class SoSCombat extends Combat {
/* -------------------------------------------- */ /* -------------------------------------------- */
closeAction(uniqId) { closeAction(uniqId) {
// Delete message ! // Delete message !
const toDelete = game.messages.filter(it => it.data.content.includes( uniqId )); const toDelete = game.messages.filter(it => it.content.includes(uniqId));
toDelete.forEach(it => it.delete()); toDelete.forEach(it => it.delete())
let action = this.currentActions.find(_action => _action.uniqId == uniqId); let action = this.currentActions.find(_action => _action.uniqId == uniqId);
if (action) { if (action) {
@ -139,8 +148,8 @@ export class SoSCombat extends Combat {
getAPFromActor(actorId) { getAPFromActor(actorId) {
for (let combatant of this.combatants) { for (let combatant of this.combatants) {
//console.log(combatant); //console.log(combatant);
if ( combatant.actor.data._id == actorId ) { if (combatant.actor.id == actorId) {
let phase = this.phaseSetup[combatant._id]; let phase = this.phaseSetup[combatant.id];
return phase.remainingAP; return phase.remainingAP;
} }
} }
@ -151,8 +160,8 @@ export class SoSCombat extends Combat {
decreaseAPFromActor(actorId) { decreaseAPFromActor(actorId) {
for (let combatant of this.combatants) { for (let combatant of this.combatants) {
//console.log(combatant); //console.log(combatant);
if ( combatant.actor.data._id == actorId ) { if (combatant.actor.id == actorId) {
let phase = this.phaseSetup[combatant._id]; let phase = this.phaseSetup[combatant.id];
phase.remainingAP -= 1; phase.remainingAP -= 1;
if (phase.remainingAP < 0) phase.remainingAP = 0; if (phase.remainingAP < 0) phase.remainingAP = 0;
} }
@ -164,8 +173,7 @@ export class SoSCombat extends Combat {
console.log("Setting combat for phase : ", actionConf, actionConf.uniqId); console.log("Setting combat for phase : ", actionConf, actionConf.uniqId);
// Delete message ! // Delete message !
const toDelete = game.messages.filter(it => it.data.content.includes( actionConf.uniqId )); const toDelete = game.messages.filter(it => it.content.includes(actionConf.uniqId));
console.log("MESSAGE : ", toDelete);
toDelete.forEach(it => it.delete()); toDelete.forEach(it => it.delete());
if (!this.phaseSetup) this.phaseSetup = {}; // Opportunistic init if (!this.phaseSetup) this.phaseSetup = {}; // Opportunistic init
@ -182,8 +190,10 @@ export class SoSCombat extends Combat {
} }
if (actionsDone) { if (actionsDone) {
this.actionsRequested = false; this.actionsRequested = false;
ChatMessage.create( { content: `Action declaration has been completed ! Now proceeding with actions.`, ChatMessage.create({
whisper: [ ChatMessage.getWhisperRecipients("GM") ] } ); content: `Action declaration has been completed ! Now proceeding with actions.`,
whisper: ChatMessage.getWhisperRecipients("GM")
})
this.phaseNumber = 3; this.phaseNumber = 3;
this.nextTurn(); this.nextTurn();
} }

View File

@ -12,7 +12,7 @@ export class SoSDialogCombatActions extends Dialog {
actionPoints: SoSUtility.fillRange(0, 6), actionPoints: SoSUtility.fillRange(0, 6),
combatId: combatId, combatId: combatId,
combatantId: combatantId, combatantId: combatantId,
combatantsList: combat.data.combatants, combatantsList: combat.combatants,
uniqId: uniqId, uniqId: uniqId,
round: round round: round
} }

View File

@ -60,7 +60,7 @@ export class SoSGMDeck extends Dialog {
let cardPath = `systems/foundryvtt-shadows-over-sol/img/cards/${card.cardName}.webp`; let cardPath = `systems/foundryvtt-shadows-over-sol/img/cards/${card.cardName}.webp`;
let cardData = { card: card, cardPath: cardPath }; let cardData = { card: card, cardPath: cardPath };
let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-card.html', cardData ); let html = await renderTemplate('systems/foundryvtt-shadows-over-sol/templates/chat-card.html', cardData );
ChatMessage.create( { content: html, whisper: [ ChatMessage.getWhisperRecipients("GM") ] }); ChatMessage.create( { content: html, whisper: ChatMessage.getWhisperRecipients("GM") } );
//dialog.onFlipClose(); //dialog.onFlipClose();
} }