Release 0.44b 2021-06-10 and 0.45 (Early Access)

Following Darthen into the alley, you can now talk to him and convince
him to hand over parts of his uniform and the key to the staff parts of
the civilian guard building. Dismissing him completes the optional “pardon
Darthen” part of the revenge parents quest.

Getting this part of Darthen’s quest line to work has involved a major change
to the text substitution and expression evaluator. It’s now evolved into an
actual programming language in it’s own right with variables, loops, and
conditionals. Additionally evaluation of statements is handed off to a thread
pool in the first part of not having the user interface hang while processing
actions (and abort any infinite loops in the scripting language).

If anyone experiences any “Evaluation timed out” warnings please report them!

New stuff:

  • Darthen’s “pardon” route, with a second way to gain access to the guard building
  • Added dorm area, sergeant’s and captain’s rooms to the guard building
  • Add Sleep and Idle jobs for sergeant, and sleep for Darthen
  • Mark civ uniform parts as being part of the uniform
  • Within the staff parts of the guard building, guards expect people to be in uniform
  • Add leave job for Darthen
  • Fix DarthenUrinateJob so he pauses outside the bar allowing the player to catch up with him

User interface stuff:

  • Unchanged

Other bits:

  • Fixed combat not shutting down cleanly and leaving “zombie” characters behind
  • Add setProp(String, String) and setProps(String) to GameBase.
  • Add checkFoe, foeTest, ignoreList to JobIdle.
  • Fix JobSleep finding a free bed. Added cooldown.
  • Moved all food related classes to their own package
  • Reworked flavour system so it is no longer a singleton and can be configured with XML
  • Fixed use of keyword “try” and built-in “has” in text substitutions
  • Verify enableId and disableId in Answer
  • Add verification to actor’s questions and answers
  • Change {change,xxx} to use statements, removed legacy mode, re-worked NPC talks
  • Add persistent hidden state to QuestPart to preserve programmatic changes prior to quest part start
  • Fix NPE in death message
  • Fix new with derived types of required parameters
  • Add ThreadPool for eval statement with timeout
  • Add evalTimeoutMs to Globals, applied on game load
  • Add parseTermAlpha to remove some backtracking in ReflectUtilEval
  • Add evalStmts syntaxCheckStmts to ReflectUtilEval
  • Refactored Result out of ReflectUtilEval
  • Text substitution and expression evaluator now have:
  • do-while loop
  • for loop
  • foreach loop
  • while loop
  • break and continue
  • class literals
  • static field and method access
  • import statements

Metrics:

  • 113 different locations (and another 126 in the advent dream)
  • 28 NPC characters
  • 6 quests (2 unfinished)
  • 1573 Java classes (274k+ lines, 6.1Mbytes of source code)
  • 62 Story files (16k+ lines, 393kbytes)
  • 881 Unit tests

Known bugs:

  • Bandits becoming unreasonably horny while you are caged by Nug.
  • Kobold guards have been caught eating their own “weapons” - it’s emergent behaviour (sort of)
  • Starting character sizes may be a little off after changes and need some further tuning

As usual, download from the usual place, and start a new game. Previous saves will not have the new content, and will likely fail to load.

If you would like to support the development you can do so on Patreon where there are a number of different rewards, including walk-throughs, early access, developer documentation, and more… .

Release v0.45 (Patreon Early Access) includes:

  • New experimental potions in the still area ready for future magic shop
  • Potions describe sizes after they have taken effect
  • Fixes for existing potions
  • Internal error logging facility making save games more useful for diagnosis
  • Many bug fixes for item containment that lead to warnings in dreams

Alternatively, if Patreon isn’t your thing I have a tip jar on ko-fi

5 Likes

What was your favorite thing to develop in the newest update?

In 0.44 probably the expression parser changes, if only for the sense of satisfaction of creating a programming language and a parser to use it. I didn’t feel that way when I was actually doing it though! It was hard work and the parser is easily the largest single class in the game (5,500++ lines). The bit I enjoyed doing most was Darthen’s quest.

In 0.45 there was a lot of bug hunting, and then backporting fixes to 0.43 and 0.44, which all took time. I was happy to be able to finally add the other potions into the game, the core of which have been done but unfinished since 2016 or so!

is it already known that the bustsize doesn’t change when you have the statue and/or drink the boobgrowth potion? I had the statue ingame for quite a while, only the butt and thighs show growth.

The potions work by re-distrubuting fat, and yes the bust one does work. However if you are skinny to start with it doesn’t have a lot to work with, so while it is changing it might not be enough to register in descriptions or stats.

The statues effects are random (one of 7 effects), so you may just have been unlucky.