diff --git a/src/npc/startingGirls/editFamily.js b/src/npc/startingGirls/editFamily.js new file mode 100644 index 0000000000000000000000000000000000000000..0717927c390b7870290117a5294e10f36c3b26e1 --- /dev/null +++ b/src/npc/startingGirls/editFamily.js @@ -0,0 +1,495 @@ +App.Intro.editFamily = function(slave) { + const el = new DocumentFragment(); + const _allowPCFamily = (V.freshPC === 1 || V.saveImported === 0); + const {His} = getPronouns(slave); + + // Checks to make sure a slave is not the active slave's parent. + const isNotMom = (s) => ((s.mother !== slave.mother) || (slave.mother === 0)); + const isNotDad = (s) => ((s.father !== slave.father) || (slave.father === 0)); + + const editFamily = makeElWithID("edit-family"); + + const familyTable = makeElWithID("family-table"); + familyTable.append(summary()); + familyTable.append(makeElWithID("dont-be-dumb")); + familyTable.append(mother()); + if (slave.mother) { + familyTable.append(sameMotherAs()); + } + familyTable.append(father()); + if (slave.father) { + familyTable.append(sameFatherAs()); + } + familyTable.append(motherOfTheChildren()); + familyTable.append(fatherOfTheChildren()); + if (_allowPCFamily) { + familyTable.append(resetAllRelativesOfPC()); + } + editFamily.append(familyTable); + editFamily.append(makeElWithID("family-tree")); + el.append(editFamily); + + return el; + + function summary() { + const familySummary = makeElWithID("familySummary", "p"); + $(familySummary).append(App.Desc.family(slave)); + return familySummary; + } + + function mother() { + const div = document.createElement("div"); + const linkArray = []; + + div.append(`${slave.slaveName}'s mother is `); + + const nameEl = makeElWithID("motherName", "span"); + nameEl.append(parentName("mother"), " "); + div.append(nameEl); + + linkArray.push( + App.UI.DOM.link( + "Reset", + () => { + slave.mother = 0; + refresh(); + } + ) + ); + + if (V.PC.vagina > 0 && isNotMom(V.PC) && ((V.PC.actualAge - slave.actualAge) >= V.fertilityAge) && _allowPCFamily) { + linkArray.push( + App.UI.DOM.link( + "You", + () => { + slave.mother = V.PC.ID; + refresh(); + } + ) + ); + } + + for (const potentialRel of V.slaves) { + if (potentialRel.vagina > 0 && isNotMom(potentialRel) && ((potentialRel.actualAge - slave.actualAge) >= potentialRel.pubertyAgeXX) && potentialRel.newGamePlus === 0) { + linkArray.push( + App.UI.DOM.link( + potentialRel.slaveName, + () => { + slave.mother = potentialRel.ID; + refresh(); + } + ) + ); + } + } + + div.append(App.UI.DOM.generateLinksStrip(linkArray)); + + return div; + } + + function father() { + const div = document.createElement("div"); + const linkArray = []; + + div.append(`${slave.slaveName}'s father is `); + + const nameEl = makeElWithID("fatherName", "span"); + nameEl.append(parentName("father"), " "); + div.append(nameEl); + + linkArray.push( + App.UI.DOM.link( + "Reset", + () => { + slave.father = 0; + refresh(); + } + ) + ); + + if (V.PC.dick > 0 && isNotDad(V.PC) && ((V.PC.actualAge - slave.actualAge) >= V.potencyAge) && _allowPCFamily) { + linkArray.push( + App.UI.DOM.link( + "You", + () => { + slave.father = V.PC.ID; + refresh(); + } + ) + ); + } + + for (const potentialRel of V.slaves) { + if (potentialRel.dick > 0 && isNotDad(potentialRel) && ((potentialRel.actualAge - slave.actualAge) >= potentialRel.pubertyAgeXY) && potentialRel.newGamePlus === 0) { + linkArray.push( + App.UI.DOM.link( + potentialRel.slaveName, + () => { + slave.father = potentialRel.ID; + refresh(); + } + ) + ); + } + } + + div.append(App.UI.DOM.generateLinksStrip(linkArray)); + + return div; + } + + function sameMotherAs() { + const div = document.createElement("div"); + const linkArray = []; + + div.append(`${His} mom, ${getSlave(slave.mother).slaveName}, is also the mother of: `); + + const nameEl = makeElWithID("sameMotherNames", "span"); + nameEl.append(App.StartingGirls.listOfSlavesWithParent('mother', slave.mother), " "); + div.append(nameEl); + + linkArray.push( + App.UI.DOM.link( + "Reset", + () => { + slave.mother = 0; + refresh(); + } + ) + ); + + if ((slave.mother !== V.PC.ID) && (V.PC.mother !== slave.ID) && _allowPCFamily) { + linkArray.push( + App.UI.DOM.link( + "You", + () => { + setRel(V.PC); + refresh(); + } + ) + ); + } + + for (const potentialRel of V.slaves) { + if ((slave.mother !== potentialRel.ID) && (potentialRel.mother !== slave.ID) && potentialRel.newGamePlus === 0) { + linkArray.push( + App.UI.DOM.link( + potentialRel.slaveName, + () => { + setRel(potentialRel); + refresh(); + } + ) + ); + } + } + + div.append(App.UI.DOM.generateLinksStrip(linkArray)); + + return div; + + function setRel(potentialRel) { + if (potentialRel.mother !== 0) { + slave.mother = potentialRel.mother; + } else if (slave.mother !== 0) { + potentialRel.mother = slave.mother; + } else { + slave.mother = -20 - 2*slave.ID; + potentialRel.mother = slave.mother; + } + } + } + + function sameFatherAs() { + const div = document.createElement("div"); + const linkArray = []; + + div.append(`${His} dad, ${getSlave(slave.father).slaveName}, is also the father of: `); + + const nameEl = makeElWithID("sameFatherNames", "span"); + nameEl.append(App.StartingGirls.listOfSlavesWithParent('father', slave.father), " "); + div.append(nameEl); + + + linkArray.push( + App.UI.DOM.link( + "Reset", + () => { + slave.father = 0; + refresh(); + } + ) + ); + + if ((slave.father !== V.PC.ID) && (V.PC.father !== slave.ID) && _allowPCFamily) { + linkArray.push( + App.UI.DOM.link( + "You", + () => { + setRel(V.PC); + refresh(); + } + ) + ); + } + + for (const potentialRel of V.slaves) { + if ((slave.father !== potentialRel.ID) && (potentialRel.father !== slave.ID) && potentialRel.newGamePlus === 0) { + linkArray.push( + App.UI.DOM.link( + potentialRel.slaveName, + () => { + setRel(potentialRel); + refresh(); + } + ) + ); + } + } + + div.append(App.UI.DOM.generateLinksStrip(linkArray)); + + return div; + + function setRel(potentialRel) { + if (potentialRel.father !== 0) { + slave.father = potentialRel.father; + } else if (slave.father !== 0) { + potentialRel.father = slave.father; + } else { + slave.father = -20 - 2*slave.ID; + potentialRel.father = slave.father; + } + } + } + + function motherOfTheChildren() { + const div = document.createElement("div"); + const linkArray = []; + + div.append(motheredNames()); + + linkArray.push( + App.UI.DOM.link( + "Reset", + () => { + for (const s of V.slaves) { + if (s.mother === slave.ID && s.newGamePlus === 0) { + s.mother = 0; + } + } + if (V.PC.mother === slave.ID && _allowPCFamily) { + V.PC.mother = 0; + } + refresh(); + } + ) + ); + + if (slave.vagina >= 0) { + if (isNotMom(V.PC) && (slave.actualAge - V.PC.actualAge) >= V.fertilityAge && _allowPCFamily) { + linkArray.push( + App.UI.DOM.link( + "You", + () => { + setRel(V.PC); + refresh(); + } + ) + ); + } + + for (const potentialRel of V.slaves) { + if (isNotMom(potentialRel) && ((potentialRel.actualAge - slave.actualAge) >= potentialRel.pubertyAgeXX) && potentialRel.newGamePlus === 0) { + linkArray.push( + App.UI.DOM.link( + potentialRel.slaveName, + () => { + setRel(potentialRel); + refresh(); + } + ) + ); + } + } + } + + div.append(App.UI.DOM.generateLinksStrip(linkArray)); + + return div; + + function setRel(potentialRel) { + potentialRel.mother = slave.ID; + if (slave.vagina === 0) { + slave.vagina = 1; + } + } + } + + function motheredNames() { + const children = App.StartingGirls.listOfSlavesWithParent("mother", slave.ID); + const nameEl = makeElWithID("motheredNames", "span"); + if (children) { + nameEl.append(`${slave.slaveName} is the mother of these children: ${children}. Add: `); + } else { + nameEl.append(`${slave.slaveName} is not a mother to any children yet. Add: `); + } + return nameEl; + } + + function fatherOfTheChildren() { + const div = document.createElement("div"); + const linkArray = []; + + div.append(fatheredNames()); + + linkArray.push( + App.UI.DOM.link( + "Reset", + () => { + for (const s of V.slaves) { + if (s.father === slave.ID && s.newGamePlus === 0) { + s.father = 0; + } + } + if (V.PC.father === slave.ID && _allowPCFamily) { + V.PC.father = 0; + } + refresh(); + } + ) + ); + + if (slave.dick > 0) { + if (isNotDad(V.PC) && (slave.actualAge - V.PC.actualAge) >= V.potencyAge && _allowPCFamily) { + linkArray.push( + App.UI.DOM.link( + "You", + () => { + V.PC.father = slave.ID; + refresh(); + } + ) + ); + } + + for (const potentialRel of V.slaves) { + if (isNotDad(potentialRel) && ((potentialRel.actualAge - slave.actualAge) >= potentialRel.pubertyAgeXX) && potentialRel.newGamePlus === 0) { + linkArray.push( + App.UI.DOM.link( + potentialRel.slaveName, + () => { + potentialRel.father = slave.ID; + refresh(); + } + ) + ); + } + } + } + + div.append(App.UI.DOM.generateLinksStrip(linkArray)); + + return div; + } + + function fatheredNames() { + const children = App.StartingGirls.listOfSlavesWithParent("father", slave.ID); + const nameEl = makeElWithID("fatheredNames", "span"); + if (children) { + nameEl.append(`${slave.slaveName} is the father of these children: ${children}. Add: `); + } else { + nameEl.append(`${slave.slaveName} is not a father to any children yet. Add: `); + } + return nameEl; + } + + function resetAllRelativesOfPC() { + return App.UI.DOM.makeElement( + "div", + App.UI.DOM.link( + "Reset ALL PC Relatives", + () => { + let _sameMother = 0; + let _sameFather = 0; + + for (const s of V.slaves) { + if (s.newGamePlus === 0) { + if (s.mother === V.PC.ID) { + s.mother = 0; + } + if (s.father === V.PC.ID) { + s.father = 0; + } + if (s.mother === V.PC.mother) { + _sameMother++; + } + if (s.father === V.PC.father) { + _sameFather++; + } + } + } + if (_sameMother === 0 && slave.mother === V.PC.mother) { + slave.mother = 0; + } + if (_sameFather === 0 && slave.father === V.PC.father) { + slave.father = 0; + } + for (let _efw = 0; (_efw < V.slaves.length && (_sameMother === 1 || _sameFather === 1)); _efw++) { + if (V.slaves[_efw].newGamePlus === 0) { + if (V.slaves[_efw].mother === V.PC.mother && _sameMother === 1) { + V.slaves[_efw].mother = 0; + _sameMother = 0; + } + if (V.slaves[_efw].father === V.PC.father && _sameFather === 1) { + V.slaves[_efw].father = 0; + _sameFather = 0; + } + } + } + if (slave.mother === V.PC.ID) { + slave.mother = 0; + } + if (slave.father === V.PC.ID) { + slave.father = 0; + } + V.PC.father = 0; + V.PC.mother = 0; + refresh(); + } + ) + ); + } + + function makeElWithID(id, elType = "div") { + const el = document.createElement(elType); + el.id = id; + return el; + } + + /** + * + * @param {string} rel "mother", etc. Property of slave object. + */ + function parentName(rel) { + if (slave[rel] === V.PC.ID) { + return `You`; + } else { + const relObj = getSlave(slave[rel]); + return relObj ? relObj.slaveName : "unknown to you."; + } + } + + function refresh() { + jQuery('#dont-be-dumb').empty().append(App.UI.DOM.makeElement("div", "You will break things by making impossible relations such as being your own father. If you do this, clearing all PC relations will fix it. Probably.", "note")); + jQuery('#fatheredNames').empty().append(fatheredNames()); + jQuery('#motheredNames').empty().append(motheredNames()); + jQuery('#familySummary').empty().append(App.Desc.family(slave)); + jQuery('#motherName').empty().append(parentName("mother"), " "); + jQuery('#fatherName').empty().append(parentName("father"), " "); + jQuery('#sameMotherNames').empty().append(App.StartingGirls.listOfSlavesWithParent("mother", slave.mother), " "); + jQuery('#sameFatherNames').empty().append(App.StartingGirls.listOfSlavesWithParent("father", slave.father), " "); + App.StartingGirls.uncommittedFamilyTree(slave); + } +}; diff --git a/src/npc/startingGirls/startingGirls.tw b/src/npc/startingGirls/startingGirls.tw index d6725d87aad3bda27525b826db77885f6b3b8ea4..0cabf80ab677e03e1d5b99e9bd99ddbb74e625a8 100644 --- a/src/npc/startingGirls/startingGirls.tw +++ b/src/npc/startingGirls/startingGirls.tw @@ -894,7 +894,7 @@ <div id="Family" class="tab-content"> <div class="content"> - <<editFamily>> + <<includeDOM App.Intro.editFamily($activeSlave)>> </div> </div> diff --git a/src/utility/extendedFamilyWidgets.tw b/src/utility/extendedFamilyWidgets.tw deleted file mode 100644 index af8d2cc357d5925de8467e7208d1fb4041fe7f36..0000000000000000000000000000000000000000 --- a/src/utility/extendedFamilyWidgets.tw +++ /dev/null @@ -1,307 +0,0 @@ -:: extended family widgets [nobr widget] - -<<widget "parentName">> -<<if $activeSlave[$args[0]] == $PC.ID>> - You -<<else>> - <<set _j = $slaveIndices[$activeSlave[$args[0]]]>> - <<if def _j>> - <<print $slaves[_j].slaveName>> - <<else>> - Unknown - <</if>> -<</if>> -<</widget>> - -<<widget "redisplayFamily">> -<<replace '#dont-be-dumb'>><br> //You will break things by making impossible relations such as being your own father. If you do this, clearing all PC relations will fix it. Probably.//<</replace>> -<<replace '#fatheredNames'>><<= App.StartingGirls.listOfSlavesWithParent("father", $activeSlave.ID)>><</replace>> -<<replace '#motheredNames'>><<= App.StartingGirls.listOfSlavesWithParent("mother", $activeSlave.ID)>><</replace>> -<<replace '#familySummary'>><<= App.Desc.family($activeSlave)>><</replace>> -<<replace '#motherName'>><<parentName "mother">><</replace>> -<<replace '#fatherName'>><<parentName "father">><</replace>> -<<replace '#sameMotherNames'>><<= App.StartingGirls.listOfSlavesWithParent("mother", $activeSlave.mother)>><</replace>> -<<replace '#sameFatherNames'>><<= App.StartingGirls.listOfSlavesWithParent("father", $activeSlave.father)>><</replace>> -<<run App.StartingGirls.uncommittedFamilyTree($activeSlave)>> -<</widget>> - -<<widget "editFamily">> -<<set _allowPCFamily = ($freshPC == 1 || $saveImported == 0)>> -<div id="edit-family"><div id="family-table"> - -<span id="dont-be-dumb"></span> - -<br>''Mother:'' <span id="motherName"><<parentName "mother">></span> -<<link "Reset">> - <<set $activeSlave.mother = 0>> - <<redisplayFamily>> -<</link>> -<<if $PC.vagina > 0 && (($PC.actualAge - $activeSlave.actualAge) >= $fertilityAge) && (($PC.mother != $activeSlave.mother) || ($activeSlave.mother == 0)) && _allowPCFamily>> - | <<link "You">><<set $activeSlave.mother = $PC.ID>><<redisplayFamily>><</link>> -<</if>> -<<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].vagina > 0 && (($slaves[_efw].actualAge - $activeSlave.actualAge) >= $slaves[_efw].pubertyAgeXX) && (($slaves[_efw].mother != $activeSlave.mother) || ($activeSlave.mother == 0)) && $slaves[_efw].newGamePlus == 0>> - | - <<set _id = $slaves[_efw].ID>> - <<set _slaveName = $slaves[_efw].slaveName>> - <<print " - <<link _slaveName>> - <<set $activeSlave.mother = " + _id + ">> - <<redisplayFamily>> - <</link>> - ">> - <</if>> -<</for>> - -<br>''Father:'' <span id="fatherName"><<parentName "father">></span> -<<link "Reset">> - <<set $activeSlave.father = 0>> - <<redisplayFamily>> -<</link>> -<<if ($PC.dick > 0) && (($PC.actualAge - $activeSlave.actualAge) >= $potencyAge) && (($PC.father != $activeSlave.father) || ($activeSlave.father == 0)) && _allowPCFamily>> - | <<link "You">><<set $activeSlave.father = $PC.ID>><<redisplayFamily>><</link>> -<</if>> -<<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if ($slaves[_efw].dick > 0) && ((($slaves[_efw].actualAge - $activeSlave.actualAge) >= $slaves[_efw].pubertyAgeXY)) && (($slaves[_efw].father != $activeSlave.father) || ($activeSlave.father == 0)) && $slaves[_efw].newGamePlus == 0>> - | - <<set _id = $slaves[_efw].ID>> - <<set _slaveName = $slaves[_efw].slaveName>> - <<print " - <<link _slaveName>> - <<set $activeSlave.father = " + _id + ">> - <<redisplayFamily>> - <</link>> - ">> - <</if>> -<</for>> - -<br>''Same mother as:'' <span id="sameMotherNames"><<= App.StartingGirls.listOfSlavesWithParent('mother', $activeSlave.mother)>></span> -<<link "Reset">> - <<set $activeSlave.mother = 0>> - <<redisplayFamily>> -<</link>> -<<if ($activeSlave.mother != $PC.ID) && ($PC.mother != $activeSlave.ID) && _allowPCFamily>> - | - <<link "You">> - <<if $PC.mother != 0>> - <<set $activeSlave.mother = $PC.mother>> - <<elseif $activeSlave.mother != 0>> - <<set $PC.mother = $activeSlave.mother>> - <<else>> - <<set $activeSlave.mother = -20 - 2*$activeSlave.ID>> - <<set $PC.mother = $activeSlave.mother>> - <</if>> - <<redisplayFamily>> - <</link>> -<</if>> -<<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].newGamePlus == 0>> - <<if $saveImported == 1>>|<</if>> - <<set _slaveName = $slaves[_efw].slaveName>> - <<set _slave = $slaves[_efw]>> - <<if ($activeSlave.mother != _slave.ID) && (_slave.mother != $activeSlave.ID)>> - | - <<print " - <<link _slaveName>> - <<set _slave = $slaves[" + _efw + "]>> - <<if _slave.mother != 0>> - <<set $activeSlave.mother = _slave.mother>> - <<elseif $activeSlave.mother != 0>> - <<set _slave.mother = $activeSlave.mother>> - <<else>> - <<set $activeSlave.mother = -20 - 2*$activeSlave.ID>> - <<set _slave.mother = $activeSlave.mother>> - <</if>> - <<redisplayFamily>> - <</link>> - ">> - <</if>> - <</if>> -<</for>> - -<br>''Same father as:'' <span id="sameFatherNames"><<= App.StartingGirls.listOfSlavesWithParent('father', $activeSlave.father)>></span> -<<link "Reset">> - <<set $activeSlave.father = 0>> - <<replace '#fatherName'>><</replace>> - <<replace '#sameFatherNames'>><</replace>> - <<redisplayFamily>> -<</link>> -<<if ($activeSlave.father != $PC.ID) && ($PC.father != $activeSlave.ID) && _allowPCFamily>> - | - <<link "You">> - <<if $PC.father != 0>> - <<set $activeSlave.father = $PC.father>> - <<elseif $activeSlave.father != 0>> - <<set $PC.father = $activeSlave.father>> - <<else>> - <<set $activeSlave.father = (-20 - 2*$activeSlave.ID -1)>> - <<set $PC.father = $activeSlave.father>> - <</if>> - <<redisplayFamily>> - <</link>> -<</if>> -<<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].newGamePlus == 0>> - <<if $saveImported == 1>>|<</if>> - <<set _slaveName = $slaves[_efw].slaveName>> - <<set _slave = $slaves[_efw]>> - <<if ($activeSlave.father != _slave.ID) && (_slave.father != $activeSlave.ID)>> - | - <<print " - <<link _slaveName>> - <<set _slave = $slaves[" + _efw + "]>> - <<if _slave.father != 0>> - <<set $activeSlave.father = _slave.father>> - <<elseif $activeSlave.father != 0>> - <<set _slave.father = $activeSlave.father>> - <<else>> - <<set $activeSlave.father = (-20 - 2*$activeSlave.ID -1)>> - <<set _slave.father = $activeSlave.father>> - <</if>> - <<redisplayFamily>> - <</link>> - ">> - <</if>> - <</if>> -<</for>> - -<br>''Mother of the children:'' <span id="motheredNames"><<= App.StartingGirls.listOfSlavesWithParent("mother", $activeSlave.ID)>></span> -<<link "Reset">> - <<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].mother == $activeSlave.ID && $slaves[_efw].newGamePlus == 0>> - <<set $slaves[_efw].mother = 0>> - <</if>> - <</for>> - <<if $PC.mother == $activeSlave.ID && _allowPCFamily>> - <<set $PC.mother = 0>> - <</if>> - <<redisplayFamily>> -<</link>> -<<if $activeSlave.vagina >= 0>> - <<if (($activeSlave.actualAge - $PC.actualAge) >= $fertilityAge) && (($PC.mother != $activeSlave.mother) || ($activeSlave.mother == 0)) && _allowPCFamily>> - | - <<link "You">> - <<set $PC.mother = $activeSlave.ID>> - <<if $activeSlave.vagina == 0>> - <<set $activeSlave.vagina = 1>> - <</if>> - <<redisplayFamily>> - <</link>> - <</if>> - - <<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].newGamePlus == 0>> - <<set _slaveName = $slaves[_efw].slaveName>> - <<set _slave = $slaves[_efw]>> - <<if (($activeSlave.actualAge - _slave.actualAge) >= $fertilityAge) && ((_slave.mother != $activeSlave.mother) || ($activeSlave.mother == 0))>> - | - <<print " - <<link _slaveName>> - <<set _slave = $slaves[" + _efw + "]>> - <<set _slave.mother = $activeSlave.ID>> - <<if $activeSlave.vagina == 0>> - <<set $activeSlave.vagina = 1>> - <</if>> - <<redisplayFamily>> - <</link>> - ">> - <</if>> - <</if>> - <</for>> -<</if>> - -<br>''Father of the children:'' <span id="fatheredNames"><<= App.StartingGirls.listOfSlavesWithParent("father", $activeSlave.ID)>></span> -<<link "Reset">> - <<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].father == $activeSlave.ID && $slaves[_efw].newGamePlus == 0>> - <<set $slaves[_efw].father = 0>> - <</if>> - <</for>> - <<if $PC.father == $activeSlave.ID && _allowPCFamily>> - <<set $PC.father = 0>> - <</if>> - <<redisplayFamily>> -<</link>> -<<if $activeSlave.dick > 0>> - <<if (($activeSlave.actualAge - $PC.actualAge) >= $potencyAge) && (($PC.father != $activeSlave.father) || ($activeSlave.father == 0)) && _allowPCFamily>> - | - <<link "You">> - <<set $PC.father = $activeSlave.ID>> - <<redisplayFamily>> - <</link>> - <</if>> - - <<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].newGamePlus == 0>> - <<set _slaveName = $slaves[_efw].slaveName>> - <<set _slave = $slaves[_efw]>> - <<if (($activeSlave.actualAge - _slave.actualAge) >= $potencyAge) && ((_slave.father != $activeSlave.father) || ($activeSlave.father == 0))>> - | - <<print " - <<link _slaveName>> - <<set _slave = $slaves[" + _efw + "]>> - <<set _slave.father = $activeSlave.ID>> - <<redisplayFamily>> - <</link>> - ">> - <</if>> - <</if>> - <</for>> -<</if>> - -<br> -<<if _allowPCFamily>> - <<link "Reset ALL PC Relatives">> - <<set _sameMother = 0, _sameFather = 0>> - <<for _efw = 0; _efw < $slaves.length; _efw++>> - <<if $slaves[_efw].newGamePlus == 0>> - <<if $slaves[_efw].mother == $PC.ID>> - <<set $slaves[_efw].mother = 0>> - <</if>> - <<if $slaves[_efw].father == $PC.ID>> - <<set $slaves[_efw].father = 0>> - <</if>> - <<if $slaves[_efw].mother == $PC.mother>> - <<set _sameMother++>> - <</if>> - <<if $slaves[_efw].father == $PC.father>> - <<set _sameFather++>> - <</if>> - <</if>> - <</for>> - <<if _sameMother == 0 && $activeSlave.mother == $PC.mother>> - <<set $activeSlave.mother = 0>> - <</if>> - <<if _sameFather == 0 && $activeSlave.father == $PC.father>> - <<set $activeSlave.father = 0>> - <</if>> - <<for _efw = 0; (_efw < $slaves.length && (_sameMother == 1 || _sameFather == 1)); _efw++>> - <<if $slaves[_efw].newGamePlus == 0>> - <<if $slaves[_efw].mother == $PC.mother && _sameMother == 1>> - <<set $slaves[_efw].mother = 0, _sameMother = 0>> - <</if>> - <<if $slaves[_efw].father == $PC.father && _sameFather == 1>> - <<set $slaves[_efw].father = 0, _sameFather = 0>> - <</if>> - <</if>> - <</for>> - <<if $activeSlave.mother == $PC.ID>> - <<set $activeSlave.mother = 0>> - <</if>> - <<if $activeSlave.father == $PC.ID>> - <<set $activeSlave.father = 0>> - <</if>> - <<set $PC.father = 0>> - <<set $PC.mother = 0>> - <<redisplayFamily>> - <</link>> -<</if>> - -<br> - <span id="familySummary"><<= App.Desc.family($activeSlave)>></span> -<br> -</div> -<div id="family-tree"></div> -</div> - -<</widget>>