Skip to content
Snippets Groups Projects
Commit f77a657d authored by lowercasedonkey's avatar lowercasedonkey
Browse files

fully replace the twine version with DOM

parent 3987434f
No related branches found
No related tags found
No related merge requests found
...@@ -7,7 +7,7 @@ ...@@ -7,7 +7,7 @@
<<capture $i>> <<capture $i>>
<br style="clear:both"><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>> <br style="clear:both"><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>>
[[$slaves[$i].slaveName|Slave Interact][$activeSlave = $slaves[$i]]] will $slaves[$i].assignment. [[$slaves[$i].slaveName|Slave Interact][$activeSlave = $slaves[$i]]] will $slaves[$i].assignment.
<<SlaveExpenses $slaves[$i]>> <<includeDOM SlaveExpenses (V.slaves[V.i])>>
<</capture>> <</capture>>
<</for>> <</for>>
......
...@@ -8,6 +8,6 @@ ...@@ -8,6 +8,6 @@
<<capture $i>> <<capture $i>>
<br style="clear:both"><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>> <br style="clear:both"><<if $lineSeparations == 0>><br><<else>><hr style="margin:0"><</if>>
[[$slaves[$i].slaveName|Slave Interact][$activeSlave = $slaves[$i]]] will $slaves[$i].assignment. [[$slaves[$i].slaveName|Slave Interact][$activeSlave = $slaves[$i]]] will $slaves[$i].assignment.
<<SlaveExpenses $slaves[$i]>> <<includeDOM SlaveExpenses (V.slaves[V.i])>>
<</capture>> <</capture>>
<</for>> <</for>>
:: Cost widgets [nobr widget]
<<widget "SlaveExpenses">>
<<set _individualCosts = 0>>
<<setLocalPronouns $args[0]>>
/* Generate the lines of the report */
<<for _line range getSlaveCostArray($args[0])>>
<div class="indent">
<<= _line.text>>: <<=cashFormatColor(_line.value)>>
</div>
<</for>>
/* Total expenses */
<<set _individualCosts = Math.trunc(getSlaveCost($args[0]))>>
<div class="double-indent">
__Predicted expense__: @@.red;<<print cashFormat(Math.trunc(_individualCosts))>>@@
</div>
/* Income from last week vs expense gives net, assistant gated */
<<if $assistant.power > 0>>
<<if $args[0].lastWeeksCashIncome > 0>>
<div class="indent">
Income: <<print cashFormatColor($args[0].lastWeeksCashIncome)>>
</div>
<<set _total = (Math.trunc($args[0].lastWeeksCashIncome - _individualCosts))>>
<div class="double-indent">
__Total__: <<print cashFormatColor(Math.trunc(_total))>>
</div>
<</if>>
<</if>>
<<SlaveExpensesExtra $args[0]>>
<</widget>>
<<widget "SlaveExpensesExtra">>
<<setLocalPronouns $args[0]>>
/* Background and original cost */
<<if $args[0].origin != 0>>
<div class="indent">
$args[0].origin
</div>
<</if>>
<div class="indent">
<<if $args[0].slaveCost < 0>>
You bought $him for: @@.red;<<print cashFormat($args[0].slaveCost)>>.@@
<<set _Cost = $args[0].slaveCost>>
<<elseif $args[0].slaveCost == 0>>
You spent nothing to acquire $him.
<<set _Cost = $args[0].slaveCost>>
<<else>>
You have no record of how much <<if $args[0].origin != 0>>this<<else>>$he originally<</if>> cost.
<<set _Cost = 0>>
<</if>>
</div>
/* Lifetime totals, assistant gated */
<<if $assistant.power > 0>>
<<set _weeksOwned = $week - $args[0].weekAcquired>>
/* Lifetime expense */
<div class="indent">
<<if $args[0].lifetimeCashExpenses < 0>>
In $his <<if _weeksOwned > 0>>_weeksOwned <<if _weeksOwned == 1>>week<<else>>weeks<</if>><<else>>time<</if>> with you, $he has cost @@.red;<<print cashFormat($args[0].lifetimeCashExpenses)>>.@@
<<set _Expense = $args[0].lifetimeCashExpenses>>
<<else>>
You have no record of $him costing you any ¤.
<<set _Expense = 0>>
<</if>>
</div>
/* Lifetime income */
<div class="indent">
<<if $args[0].lifetimeCashIncome > 0>>
In $his <<if _weeksOwned > 0>>_weeksOwned <<if _weeksOwned == 1>>week<<else>>weeks<</if>><<else>>time<</if>> with you, $he has earned @@.yellowgreen;<<print cashFormat($args[0].lifetimeCashIncome)>>.@@
<<set _Income = $args[0].lifetimeCashIncome>>
<<else>>
You have no record of $him making you any ¤.
<<set _Income = 0>>
<</if>>
</div>
/* Lifetime total */
<div class="indent">
Overall,
<<if (_Income + _Cost + _Expense) > 0>>
you have made @@.yellowgreen;<<print cashFormat(_Income + _Cost + _Expense)>>@@ net from $his labors.
<<elseif (_Income + _Cost + _Expense) == 0>>
$he is even in cost and income.
<<else>>
$he has cost you @@.red;<<print cashFormat(_Income + _Cost + _Expense)>>.@@
<</if>>
</div>
/* Reputation: */
<div>
<<if ($args[0].lifetimeRepIncome != 0 || $args[0].lifetimeRepExpenses != 0)>>
<<set _repTotal = ($args[0].lifetimeRepIncome + $args[0].lifetimeRepExpenses)>>
<<if ($cheatMode == 1 || $debugMode == 1)>>
<<if $args[0].lifetimeRepIncome != 0>>
<div class="indent">
This week $he has
<<if $args[0].lastWeeksRepIncome == 0>>
had no positive effect on your reputation, but
<<else>>
improved your reputation by @@.green;<<print num($args[0].lastWeeksRepIncome)>>@@ and
<</if>>
over $his entire time with you, $he gained @@.green;<<print num($args[0].lifetimeRepIncome)>>.@@
</div>
<</if>>
<<if $args[0].lifetimeRepExpenses != 0>>
<div class="indent">
This week $he has
<<if $args[0].lastWeeksRepExpenses == 0>>
had no negative effect on your reputation, but
<<else>>
lowered your reputation by @@.red;<<print num($args[0].lastWeeksRepExpenses)>>@@ and
<</if>>
over $his entire time with you, $he cost @@.red;<<print num($args[0].lifetimeRepExpenses)>>.@@
</div>
<</if>>
<div class="indent">
Overall then, $he has changed your reputation by
<<if _repTotal > 0>>
@@.green;<<print num(_repTotal)>>@@
<<elseif _repTotal < 0>>
@@.red;<<print num(_repTotal)>>@@
<<else>>
<<print num(_repTotal)>>
<</if>>
</div>
<<else>> /* lowercasedonkey: TODO: I don't like how vague my placeholder is. Probably need to set up some kind of sliding scale to describe how much rep (roughly) she has made or lost. Need to get a sense of common ranges. */
<div class="indent">
Overall, $he has
<<if _repTotal == 0>>
had no impact on your reputation.
<<elseif _repTotal > 0>>
@@.green;increased@@ your reputation.
<<elseif _repTotal < 0>>
@@.red;decreased@@ your reputation.
<</if>>
</div>
<</if>>
<</if>>
</div>
<</if>>
<</widget>>
...@@ -238,6 +238,6 @@ You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSl ...@@ -238,6 +238,6 @@ You stop and consider the cow, from $his titanic breasts to $his <<if ($activeSl
<div class="indent"> <div class="indent">
$His current task is to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>. $His current task is to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
</div> </div>
<<SlaveExpenses $activeSlave>> <<includeDOM slaveExpenses(V.activeSlave)>>
</div> </div>
<</if>> /* closes validity check */ <</if>> /* closes validity check */
...@@ -132,7 +132,7 @@ proffered by an attentive slave _girlU, he seems almost bashful. ...@@ -132,7 +132,7 @@ proffered by an attentive slave _girlU, he seems almost bashful.
<div class="indent"> <div class="indent">
$His current task is to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>. $His current task is to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
</div> </div>
<<SlaveExpensesExtra $activeSlave>> <<includeDOM slaveImpactLongTerm(V.activeSlave)>>
</div> </div>
<</if>> <</if>>
...@@ -202,5 +202,5 @@ at the moment of $his scheduled emancipation, $he seems willing to consider a sh ...@@ -202,5 +202,5 @@ at the moment of $his scheduled emancipation, $he seems willing to consider a sh
<div class="indent"> <div class="indent">
$His most recent task was to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>. $His most recent task was to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
</div> </div>
<<SlaveExpensesExtra $activeSlave>> <<includeDOM slaveImpactLongTerm(V.activeSlave)>>
</div> </div>
\ No newline at end of file
...@@ -388,7 +388,7 @@ ...@@ -388,7 +388,7 @@
<div class="indent"> <div class="indent">
$His most recent task was to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>. $His most recent task was to <<print $activeSlave.assignment>><<if $assignmentRecords[$activeSlave.ID]>>, and before that to <<print $assignmentRecords[$activeSlave.ID]>><</if>>.
</div> </div>
<<SlaveExpensesExtra $activeSlave>> <<includeDOM slaveImpactLongTerm(V.activeSlave)>>
</div> </div>
<<if $retired == 0>> /* retiring during the end week */ <<if $retired == 0>> /* retiring during the end week */
......
...@@ -728,7 +728,7 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu ...@@ -728,7 +728,7 @@ A reputable slave appraiser arrives promptly to inspect $him and certify $his qu
<br><br> <br><br>
__Financial Records__ __Financial Records__
<<SlaveExpenses $activeSlave>> <<includeDOM slaveExpenses(V.activeSlave)>>
<</if>> /* CLOSES APPRAISAL */ <</if>> /* CLOSES APPRAISAL */
<</if>> /* closes breeding mark */ <</if>> /* closes breeding mark */
......
...@@ -325,7 +325,6 @@ ...@@ -325,7 +325,6 @@
<h3>Financial</h3> <h3>Financial</h3>
<p> <p>
<<includeDOM slaveExpenses(V.activeSlave)>> <<includeDOM slaveExpenses(V.activeSlave)>>
<<SlaveExpenses $activeSlave>>
</p> </p>
<p> <p>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment