Afficher la fatigue avec les compteurs
This commit is contained in:
parent
da9fe2f1bb
commit
519f9e89b4
@ -106,7 +106,11 @@ export class RdDActorSheet extends ActorSheet {
|
|||||||
data.difficultesLibres = CONFIG.RDD.difficultesLibres;
|
data.difficultesLibres = CONFIG.RDD.difficultesLibres;
|
||||||
|
|
||||||
// low is normal, this the base used to compute the grid.
|
// low is normal, this the base used to compute the grid.
|
||||||
data.data.fatigueHTML = "<table class='table-fatigue'>" + RdDUtility.makeHTMLfatigueMatrix( data.data.sante.fatigue.value, data.data.sante.endurance.max ).html() + "</table>";
|
data.data.fatigue = {
|
||||||
|
malus: RdDUtility.calculMalusFatigue(data.data.sante.fatigue.value, data.data.sante.endurance.max),
|
||||||
|
html: "<table class='table-fatigue'>" + RdDUtility.makeHTMLfatigueMatrix( data.data.sante.fatigue.value, data.data.sante.endurance.max ).html() + "</table>"
|
||||||
|
}
|
||||||
|
|
||||||
RdDUtility.filterItemsPerTypeForSheet(data );
|
RdDUtility.filterItemsPerTypeForSheet(data );
|
||||||
data.data.sortReserve = data.data.reve.reserve.list;
|
data.data.sortReserve = data.data.reve.reserve.list;
|
||||||
|
|
||||||
|
@ -998,7 +998,10 @@ export class RdDActor extends Actor {
|
|||||||
}
|
}
|
||||||
|
|
||||||
let data = {
|
let data = {
|
||||||
fatigueHTML:"<table class='table-fatigue'>" + RdDUtility.makeHTMLfatigueMatrix( this.data.data.sante.fatigue.value, this.data.data.sante.endurance.max ).html() + "</table>",
|
fatigue: {
|
||||||
|
malus: RdDUtility.calculMalusFatigue(this.data.data.sante.fatigue.value, this.data.data.sante.endurance.max),
|
||||||
|
html: "<table class='table-fatigue'>" + RdDUtility.makeHTMLfatigueMatrix( this.data.data.sante.fatigue.value, this.data.data.sante.endurance.max ).html() + "</table>"
|
||||||
|
},
|
||||||
draconic: this.getDraconicList(),
|
draconic: this.getDraconicList(),
|
||||||
sort: this.getSortList(),
|
sort: this.getSortList(),
|
||||||
caracReve: this.data.data.carac.reve.value,
|
caracReve: this.data.data.carac.reve.value,
|
||||||
|
@ -31,18 +31,33 @@ const ajustementsConditions = [-10, -9, -8, -7, -6, -5, -4, -3, -2, -1, 0, +1,
|
|||||||
function _buildAllSegmentsFatigue(max) {
|
function _buildAllSegmentsFatigue(max) {
|
||||||
const cycle = [5, 2, 4, 1, 3, 0];
|
const cycle = [5, 2, 4, 1, 3, 0];
|
||||||
let fatigue = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]];
|
let fatigue = [[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0]];
|
||||||
for (let i = 0; i <= 40; i++) {
|
for (let i = 0; i <= max; i++) {
|
||||||
const ligneFatigue= duplicate(fatigue[i]);
|
const ligneFatigue= duplicate(fatigue[i]);
|
||||||
const caseIncrementee = cycle[i % 6];
|
const caseIncrementee = cycle[i % 6];
|
||||||
ligneFatigue[caseIncrementee]++;
|
ligneFatigue[caseIncrementee]++;
|
||||||
ligneFatigue[caseIncrementee + 6]++;
|
ligneFatigue[caseIncrementee + 6]++;
|
||||||
ligneFatigue.fatigueMax = 2 * (i + 1);
|
ligneFatigue.fatigueMax = 2 * (i + 1);
|
||||||
fatigue[i + 1] = ligneFatigue ;
|
fatigue[i + 1] = ligneFatigue ;
|
||||||
|
|
||||||
}
|
}
|
||||||
return fatigue;
|
return fatigue;
|
||||||
}
|
}
|
||||||
|
function _cumulSegmentsFatigue(matrix) {
|
||||||
|
let cumulMatrix = [];
|
||||||
|
for (let line of matrix)
|
||||||
|
{
|
||||||
|
let cumul = duplicate(line);
|
||||||
|
|
||||||
|
for (let i = 1; i < 12; i++) {
|
||||||
|
cumul[i] += cumul[i - 1];
|
||||||
|
}
|
||||||
|
cumulMatrix.push(cumul);
|
||||||
|
}
|
||||||
|
return cumulMatrix;
|
||||||
|
}
|
||||||
|
|
||||||
const fatigueMatrix = _buildAllSegmentsFatigue(30);
|
const fatigueMatrix = _buildAllSegmentsFatigue(30);
|
||||||
|
const cumulFatigueMatrix = _cumulSegmentsFatigue(fatigueMatrix);
|
||||||
|
|
||||||
const fatigueMalus = [ 0, 0, 0, -1, -1, -1, -2, -3, -4, -5, -6, -7 ]; // Provides the malus for each segment of fatigue
|
const fatigueMalus = [ 0, 0, 0, -1, -1, -1, -2, -3, -4, -5, -6, -7 ]; // Provides the malus for each segment of fatigue
|
||||||
const fatigueLineSize = [ 3, 6, 7, 8, 9, 10, 11, 12];
|
const fatigueLineSize = [ 3, 6, 7, 8, 9, 10, 11, 12];
|
||||||
@ -372,20 +387,24 @@ export class RdDUtility {
|
|||||||
data.compteurs.chance.max = data.carac.chance.value;
|
data.compteurs.chance.max = data.carac.chance.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
static getSegmentsFatigue(endurance) {
|
static getSegmentsFatigue(maxEnd) {
|
||||||
endurance = Math.max(endurance, 1);
|
maxEnd = Math.max(maxEnd, 1);
|
||||||
endurance = Math.min(endurance, fatigueMatrix.length);
|
maxEnd = Math.min(maxEnd, fatigueMatrix.length);
|
||||||
return fatigueMatrix[endurance];
|
return fatigueMatrix[maxEnd];
|
||||||
}
|
}
|
||||||
|
|
||||||
static cumulSegments(segments) {
|
static calculMalusFatigue(fatigue, maxEnd)
|
||||||
let cumuls = [segments[0]];
|
{
|
||||||
for (let i = 1; i < 12; i++) {
|
maxEnd = Math.max(maxEnd, 1);
|
||||||
cumuls[i] = segments[i] + cumuls[i - 1];
|
maxEnd = Math.min(maxEnd, cumulFatigueMatrix.length);
|
||||||
|
let segments = cumulFatigueMatrix[maxEnd];
|
||||||
|
for (let i=0; i<12; i++) {
|
||||||
|
if (fatigue <= segments[i]) {
|
||||||
|
return fatigueMalus[i]
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return cumuls;
|
return -7;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* -------------------------------------------- */
|
/* -------------------------------------------- */
|
||||||
// Build the nice (?) html table used to manage fatigue.
|
// Build the nice (?) html table used to manage fatigue.
|
||||||
// max should be the endurance max value
|
// max should be the endurance max value
|
||||||
|
@ -871,3 +871,34 @@ background: rgba(0, 0, 0, 0.5);
|
|||||||
position: relative;
|
position: relative;
|
||||||
bottom: 6px;
|
bottom: 6px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Tooltip container */
|
||||||
|
.tooltip {
|
||||||
|
position: relative;
|
||||||
|
display: inline-block;
|
||||||
|
border-bottom: 1px dotted black; /* If you want dots under the hoverable text */
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Tooltip text */
|
||||||
|
.tooltip .tooltiptext {
|
||||||
|
visibility: hidden;
|
||||||
|
width: 360px;
|
||||||
|
text-align: center;
|
||||||
|
padding: 5px 0;
|
||||||
|
border-radius: 6px;
|
||||||
|
|
||||||
|
/* Position the tooltip text */
|
||||||
|
position: absolute;
|
||||||
|
z-index: 1;
|
||||||
|
left: -100%;
|
||||||
|
|
||||||
|
/* Fade in tooltip */
|
||||||
|
opacity: 0;
|
||||||
|
transition: opacity 0.3s;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Show the tooltip text when you mouse over the tooltip container */
|
||||||
|
.tooltip:hover .tooltiptext {
|
||||||
|
visibility: visible;
|
||||||
|
opacity: 1;
|
||||||
|
}
|
@ -8,27 +8,32 @@
|
|||||||
<h1 class="charname"><input name="name" type="text" value="{{actor.name}}" placeholder="Name"/></h1>
|
<h1 class="charname"><input name="name" type="text" value="{{actor.name}}" placeholder="Name"/></h1>
|
||||||
</div>
|
</div>
|
||||||
<div class="flexrow">
|
<div class="flexrow">
|
||||||
<div class="flex-group-center flex-hp">
|
<div class="flex-group-center flex-hp">
|
||||||
<div>
|
<div>
|
||||||
<span>Vie <a id="vie-plus">+</a> / <a id="vie-moins">-</a></span>
|
<span>Vie <a id="vie-plus">+</a> / <a id="vie-moins">-</a></span>
|
||||||
<input class="resource-content" type="text" name="data.sante.vie.value" value="{{data.sante.vie.value}}" data-dtype="Number"/>/{{data.sante.vie.max}}
|
<input class="resource-content" type="text" name="data.sante.vie.value" value="{{data.sante.vie.value}}" data-dtype="Number"/>/{{data.sante.vie.max}}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span>Endurance <a id="endurance-plus">+</a> / <a id="endurance-moins">-</a></span>
|
<span>Endurance <a id="endurance-plus">+</a> / <a id="endurance-moins">-</a></span>
|
||||||
<input class="resource-content" type="text" name="data.sante.endurance.value" value="{{data.sante.endurance.value}}" data-dtype="Number"/>/{{data.sante.endurance.max}}
|
<input class="resource-content" type="text" name="data.sante.endurance.value" value="{{data.sante.endurance.value}}" data-dtype="Number"/>/{{data.sante.endurance.max}}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
<span>Sonné :</span>
|
<span>Fatigue <a id="fatigue-plus">+</a> / <a id="fatigue-moins">-</a></span>
|
||||||
<input class="resource-content" type="checkbox" name="data.sante.sonne.value" value="{{data.sante.sonne.value}}" {{#if data.sante.sonne.value}}checked{{/if}} />
|
<input class="resource-content" id="fatigue-value" type="text" name="data.sante.fatigue.value" value="{{data.sante.fatigue.value}}" data-dtype="Number" />/{{data.sante.fatigue.max}}
|
||||||
</div>
|
</div>
|
||||||
<div>
|
<div>
|
||||||
|
<span>Sonné :</span>
|
||||||
|
<input class="resource-content" type="checkbox" name="data.sante.sonne.value" value="{{data.sante.sonne.value}}" {{#if data.sante.sonne.value}}checked{{/if}} />
|
||||||
|
</div>
|
||||||
|
<div>
|
||||||
<span><span class="ptreve-actuel"><a>Rêve</a></span> <a id="ptreve-actuel-plus">+</a> / <a id="ptreve-actuel-moins">-</a></span>
|
<span><span class="ptreve-actuel"><a>Rêve</a></span> <a id="ptreve-actuel-plus">+</a> / <a id="ptreve-actuel-moins">-</a></span>
|
||||||
<input class="resource-content" id="pointsreve-value" type="text" name="data.reve.reve.value" value="{{data.reve.reve.value}}" data-dtype="Number" />/{{data.reve.seuil.value}}
|
<input class="resource-content" id="pointsreve-value" type="text" name="data.reve.reve.value" value="{{data.reve.reve.value}}" data-dtype="Number" />/{{data.reve.seuil.value}}
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="flex-group-center flex-fatigue">
|
</div>
|
||||||
Fatigue <a id="fatigue-plus">+</a> / <a id="fatigue-moins">-</a>
|
<div class="flex-group-center flex-fatigue">
|
||||||
<span>{{{data.fatigueHTML}}}</span>
|
<div class="tooltip">Malus de fatigue : {{data.fatigue.malus}}
|
||||||
|
<span class="tooltiptext">{{{data.fatigue.html}}}</span>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="flexrow flex-wound">
|
<div class="flexrow flex-wound">
|
||||||
|
@ -25,7 +25,7 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="flex-group-center flex-fatigue">
|
<div class="flex-group-center flex-fatigue">
|
||||||
Fatigue
|
Fatigue
|
||||||
<span id="fatigue-table">{{{fatigueHTML}}}</span>
|
<span id="fatigue-table">{{{fatigue.html}}}</span>
|
||||||
</div>
|
</div>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
Loading…
Reference in New Issue
Block a user