2020-11-11 22:39:36 +01:00
|
|
|
import { RdDResolutionTable } from "./rdd-resolution-table.js";
|
|
|
|
|
2020-06-03 21:35:18 +02:00
|
|
|
/**
|
|
|
|
* Extend the base Dialog entity by defining a custom window to perform roll.
|
|
|
|
* @extends {Dialog}
|
|
|
|
*/
|
|
|
|
export class RdDRollDialog extends Dialog {
|
2020-11-11 22:39:36 +01:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
2020-06-03 21:35:18 +02:00
|
|
|
constructor(mode, html, rollData, actor) {
|
2020-11-11 22:39:36 +01:00
|
|
|
|
|
|
|
let myButtons
|
2020-07-26 17:26:17 +02:00
|
|
|
if (mode == "sort") {
|
2020-11-11 22:39:36 +01:00
|
|
|
myButtons = {
|
|
|
|
rollButton: { label: "Lancer le sort", callback: html => this.performRollSort(html, false) },
|
|
|
|
reserveButton: { label: "Mettre en reserve", callback: html => this.performRollSort(html, true) }
|
|
|
|
}
|
2020-07-26 17:26:17 +02:00
|
|
|
}
|
2020-11-11 22:39:36 +01:00
|
|
|
else {
|
|
|
|
myButtons = {
|
|
|
|
rollButton: { label: "Lancer", callback: html => this.actor.performRoll(this.rollData) }
|
|
|
|
};
|
2020-07-26 17:26:17 +02:00
|
|
|
}
|
2020-11-11 22:39:36 +01:00
|
|
|
|
|
|
|
// Common conf
|
|
|
|
let dialogConf = { content: html, title: "Test", buttons: myButtons, default: "rollButton" }
|
|
|
|
let dialogOptions = { classes: ["rdddialog"], width: 600, height: 400 }
|
|
|
|
|
2020-06-03 21:35:18 +02:00
|
|
|
// Select proper roll dialog template and stuff
|
2020-11-11 22:39:36 +01:00
|
|
|
if (mode == "competence") {
|
|
|
|
dialogConf.title = "Test de compétence"
|
|
|
|
dialogConf.height = 400
|
2020-06-07 23:16:29 +02:00
|
|
|
} else if (mode == "arme") {
|
2020-11-11 22:39:36 +01:00
|
|
|
dialogConf.title = "Test de combat/arme"
|
|
|
|
dialogConf.height = 430
|
2020-06-12 22:46:04 +02:00
|
|
|
} else if (mode == "carac") {
|
2020-11-11 22:39:36 +01:00
|
|
|
dialogConf.title = "Test de caractéristique"
|
|
|
|
dialogOptions.height = 350
|
2020-07-23 22:09:40 +02:00
|
|
|
} else if (mode == "sort") {
|
2020-11-11 22:39:36 +01:00
|
|
|
dialogConf.title = "Lancer un sort"
|
|
|
|
dialogConf.height = 450
|
2020-06-07 23:16:29 +02:00
|
|
|
}
|
2020-11-11 22:39:36 +01:00
|
|
|
super(dialogConf, dialogOptions)
|
2020-06-03 21:35:18 +02:00
|
|
|
|
2020-11-11 22:39:36 +01:00
|
|
|
this.mode = mode
|
|
|
|
this.rollData = rollData
|
|
|
|
this.actor = actor
|
|
|
|
}
|
2020-06-03 21:35:18 +02:00
|
|
|
|
2020-11-11 22:39:36 +01:00
|
|
|
/* -------------------------------------------- */
|
2020-11-14 03:16:03 +01:00
|
|
|
performRollSort(html, isSortReserve = false) {
|
|
|
|
this.rollData.isSortReserve = isSortReserve;
|
2020-11-11 22:39:36 +01:00
|
|
|
this.actor.performRoll(this.rollData);
|
2020-06-03 21:35:18 +02:00
|
|
|
}
|
|
|
|
|
2020-11-11 22:39:36 +01:00
|
|
|
/* -------------------------------------------- */
|
|
|
|
activateListeners(html) {
|
2020-06-03 21:35:18 +02:00
|
|
|
super.activateListeners(html);
|
2020-11-11 22:39:36 +01:00
|
|
|
|
2020-06-03 21:35:18 +02:00
|
|
|
// Get the rollData stuff
|
2020-11-11 22:39:36 +01:00
|
|
|
var rollData = this.rollData;
|
|
|
|
|
|
|
|
function updateRollResult(rollData) {
|
|
|
|
let caracValue = parseInt(rollData.selectedCarac.value)
|
|
|
|
let rollLevel = RdDRollDialog._computeFinalLevel(rollData);
|
|
|
|
|
|
|
|
rollData.finalLevel = rollLevel;
|
|
|
|
rollData.finalLevelStr = (rollLevel > 0 ? "+" : "") + rollLevel;
|
2020-11-12 16:35:51 +01:00
|
|
|
rollData.rollTarget = RdDResolutionTable.computeChances(rollData.selectedCarac.value, rollData.finalLevel);
|
2020-11-13 11:24:56 +01:00
|
|
|
|
|
|
|
// Sort management
|
|
|
|
if ( rollData.selectedSort ) {
|
|
|
|
//console.log("Toggle show/hide", rollData.selectedSort);
|
|
|
|
if (rollData.selectedSort.data.difficulte.toLowerCase() == "variable") {
|
|
|
|
$("#div-sort-difficulte").show();
|
|
|
|
} else {
|
|
|
|
$("#div-sort-difficulte").hide();
|
|
|
|
}
|
2020-11-14 03:26:21 +01:00
|
|
|
if (rollData.selectedSort.data.ptreve.toLowerCase() == "variable" || rollData.selectedSort.data.ptreve.indexOf("+")>=0) {
|
2020-11-13 11:24:56 +01:00
|
|
|
$("#div-sort-ptreve").show();
|
|
|
|
} else {
|
|
|
|
$("#div-sort-ptreve").hide();
|
|
|
|
}
|
|
|
|
}
|
2020-11-11 22:39:36 +01:00
|
|
|
|
|
|
|
$("#roll-param").text(rollData.selectedCarac.value + " / " + rollData.finalLevelStr);
|
|
|
|
$("#compdialogTitle").text(RdDRollDialog._getTitle(rollData));
|
2020-06-03 21:35:18 +02:00
|
|
|
$(".table-resolution").remove();
|
2020-11-12 23:37:12 +01:00
|
|
|
$("#resolutionTable").append(RdDResolutionTable.buildHTMLTableExtract(caracValue, rollLevel));
|
2020-06-03 21:35:18 +02:00
|
|
|
}
|
2020-11-11 22:39:36 +01:00
|
|
|
|
2020-06-03 21:35:18 +02:00
|
|
|
// Setup everything onload
|
2020-11-11 22:39:36 +01:00
|
|
|
$(function () {
|
2020-06-03 21:35:18 +02:00
|
|
|
// Update html, according to data
|
2020-06-12 22:46:04 +02:00
|
|
|
if (rollData.competence) {
|
|
|
|
// Set the default carac from the competence item
|
2020-11-13 11:24:56 +01:00
|
|
|
//console.log("RdDDialogRoll", rollData.competence.data.defaut_carac, rollData.carac);
|
2020-06-12 22:46:04 +02:00
|
|
|
rollData.selectedCarac = rollData.carac[rollData.competence.data.defaut_carac];
|
2020-11-11 22:39:36 +01:00
|
|
|
$("#carac").val(rollData.competence.data.defaut_carac);
|
2020-06-12 22:46:04 +02:00
|
|
|
}
|
2020-11-14 20:30:30 +01:00
|
|
|
// Si sort, for les points de reve à 1
|
2020-11-14 21:22:29 +01:00
|
|
|
if (rollData.selectedSort && !rollData.selectedSort.data.ptreve_reel)
|
2020-11-14 20:30:30 +01:00
|
|
|
rollData.selectedSort.data.ptreve_reel = 1;
|
2020-11-11 22:39:36 +01:00
|
|
|
$("#bonusmalus").val(rollData.bmValue);
|
2020-06-03 21:35:18 +02:00
|
|
|
updateRollResult(rollData);
|
|
|
|
});
|
2020-11-13 11:24:56 +01:00
|
|
|
|
2020-06-03 21:35:18 +02:00
|
|
|
// Update !
|
2020-11-11 22:39:36 +01:00
|
|
|
html.find('#bonusmalus').click((event) => {
|
2020-06-03 21:35:18 +02:00
|
|
|
rollData.bmValue = event.currentTarget.value; // Update the selected bonus/malus
|
2020-11-13 11:24:56 +01:00
|
|
|
//console.log("RdDRollDialog","BM CLICKED !!!", rollData);
|
2020-06-03 21:35:18 +02:00
|
|
|
updateRollResult(rollData);
|
|
|
|
});
|
2020-11-11 22:39:36 +01:00
|
|
|
html.find('#carac').click((event) => {
|
|
|
|
let caracKey = event.currentTarget.value;
|
2020-11-13 11:24:56 +01:00
|
|
|
this.rollData.selectedCarac = rollData.carac[caracKey]; // Update the selectedCarac
|
|
|
|
//console.log("RdDRollDialog","CARAC CLICKED !!!", rollData);
|
2020-06-03 21:35:18 +02:00
|
|
|
updateRollResult(rollData);
|
2020-11-11 22:39:36 +01:00
|
|
|
});
|
|
|
|
html.find('#draconic').click((event) => {
|
2020-11-13 11:24:56 +01:00
|
|
|
let draconicKey = Number(event.currentTarget.value);
|
|
|
|
this.rollData.selectedDraconic = rollData.draconicList[draconicKey]; // Update the selectedCarac
|
|
|
|
//console.log("RdDRollDialog","CARAC CLICKED !!!", rollData);
|
2020-07-23 22:09:40 +02:00
|
|
|
updateRollResult(rollData);
|
2020-11-11 22:39:36 +01:00
|
|
|
});
|
|
|
|
html.find('#sort').click((event) => {
|
2020-11-13 11:24:56 +01:00
|
|
|
let sortKey = Number(event.currentTarget.value);
|
|
|
|
this.rollData.selectedSort = rollData.sortList[sortKey]; // Update the selectedCarac
|
|
|
|
//console.log("RdDRollDialog - Sort selection", rollData.selectedSort);
|
|
|
|
updateRollResult(rollData);
|
|
|
|
});
|
|
|
|
html.find('#ptreve-variable').click((event) => {
|
|
|
|
let ptreve = Number(event.currentTarget.value);
|
|
|
|
this.rollData.selectedSort.data.ptreve_reel = ptreve; // Update the selectedCarac
|
|
|
|
console.log("RdDRollDialog - Cout reve", ptreve);
|
2020-07-23 22:09:40 +02:00
|
|
|
updateRollResult(rollData);
|
2020-11-11 22:39:36 +01:00
|
|
|
});
|
|
|
|
}
|
2020-11-12 16:35:51 +01:00
|
|
|
|
|
|
|
/* -------------------------------------------- */
|
2020-11-11 22:39:36 +01:00
|
|
|
static _computeFinalLevel(rollData) {
|
|
|
|
let etat = rollData.etat === undefined ? 0 : parseInt(rollData.etat);
|
|
|
|
if (rollData.competence) {
|
|
|
|
return etat + parseInt(rollData.competence.data.niveau) + parseInt(rollData.bmValue);
|
|
|
|
}
|
|
|
|
if (rollData.draconicList) {
|
2020-11-13 11:24:56 +01:00
|
|
|
let difficulte = rollData.selectedSort.data.difficulte; // Sort de difficulté variable
|
|
|
|
if (difficulte.toLowerCase() == "variable") {
|
|
|
|
difficulte = parseInt(rollData.bmValue); // Récupérer la valeur de la listbox dans ce cas
|
|
|
|
}
|
|
|
|
return etat + parseInt(rollData.selectedDraconic.data.niveau) + parseInt(difficulte);
|
2020-11-11 22:39:36 +01:00
|
|
|
}
|
|
|
|
return etat + parseInt(rollData.bmValue);
|
2020-06-03 21:35:18 +02:00
|
|
|
}
|
|
|
|
|
2020-11-12 23:50:37 +01:00
|
|
|
/* -------------------------------------------- */
|
2020-11-11 22:39:36 +01:00
|
|
|
static _getTitle(rollData) {
|
|
|
|
if (rollData.competence) {
|
|
|
|
// If a weapon is there, add it in the title
|
|
|
|
let armeTitle = (rollData.arme) ? " (" + rollData.arme.name + ") " : "";
|
|
|
|
let niveauStr = (rollData.competence.data.niveau > 0 ? "+" : "") + rollData.competence.data.niveau;
|
|
|
|
return rollData.selectedCarac.label + "/" + rollData.competence.name + armeTitle + " " + niveauStr
|
|
|
|
}
|
|
|
|
if (rollData.draconicList) {
|
|
|
|
return rollData.selectedDraconic.name + " - " + rollData.selectedSort.name;
|
|
|
|
}
|
|
|
|
return rollData.selectedCarac.label;
|
|
|
|
}
|
2020-06-03 21:35:18 +02:00
|
|
|
}
|