From 43dc39c7c157acd597a6bdf5fe1d8f017af2e7bd Mon Sep 17 00:00:00 2001 From: Svornost <11434-svornost@users.noreply.gitgud.io> Date: Mon, 23 Dec 2019 14:59:20 -0800 Subject: [PATCH] Add utility function for calculating "disobedience factor" --- src/js/utilJS.js | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/js/utilJS.js b/src/js/utilJS.js index b15f8aaccec..ef3b9883654 100644 --- a/src/js/utilJS.js +++ b/src/js/utilJS.js @@ -3217,3 +3217,22 @@ window.mapIdList = function(list) { } return mappedList; }; + +/** + * Returns a "disobedience factor" between 0 (perfectly obedient) and 100 (completely defiant) + * @param {App.Entity.SlaveState} slave + * @returns {number} + */ +window.disobedience = function(slave) { + const devotionBaseline = 20; // with devotion above this number slaves will obey completely + const trustBaseline = -20; // with trust below this number slaves will obey completely + + if (slave.devotion > devotionBaseline || slave.trust < trustBaseline) { + return 0; // no chance of disobedience + } + + // factors are between 0 (right on the boundary of perfectly obedient) and 10 (completely disobedient) + let devotionFactor = 10 - ((10 * (slave.devotion + 100))/(devotionBaseline + 100)); + let trustFactor = (10 * (slave.trust - trustBaseline))/(100 - trustBaseline); + return Math.round(devotionFactor * trustFactor); +}; -- GitLab