A bit more of the same

b107

* Type Safety and Object Cleanup

I have continued to tighten up type conversions, to aid in the quest for stronger type safety.

I have also created some new objects as typed versions of previously generic systems. This has helpfully exposed some hidden issues, but may surface some others in ways that weren’t obvious.

In some cases, I have elected to change to a different sort of collection or list, if it was also typed. This was usually one that should be faster or have lower overhead when not all the features of the original variety were required for a particular implementation or type of data. This may introduce unexpected errors due to the difference between various types being 0-based or 1-based, and some routines iterating based on assumption of the base. In every case I can think of right now (BasicDamages, DamageBreaks, SkillCosts), I went from a 1-based collection to a 0-based list, so problems may show up in two primary ways: (1) the first value in the list never being seen, or (2) the program crashing as it tries to access an item beyond the end of the list.

These factors have, of course, resulted in some changes to the object model.

NOTE: These few sentences don’t do justice to the full impact this work has, especially since it’s not particularly complex in nature. However, this is the most foundationally impactful and invasive work on the core of GCA5 in years, and affects nearly every system and subsystem in use. Hundreds of lines of code were touched, and thousands more affected by the new custom collections, with many previously generic systems replaced by strongly typed ones. If I touched everything I needed to touch correctly, you shouldn’t even notice; if not. . . all sorts of wrong.

And I’m not done yet.

* Miscellaneous

Removed the remaining code for saving characters back to the old GCA4 format. (Saving to GCA4 format was removed a long time ago; this was just some left over code.)

Disabled/hid the Modifiers and Settings tabs on the Build Campaign Book dialog, as those are nowhere near working yet.

Next day, a bit more

b106

I have been tightening up as many cases of implicit type conversion, to use explicit type conversion, as I can. This may result in errors if I made a mistake in specifying the conversion myself.

I have replaced all uses of the Decimal data type in GCA’s objects with Double. This may result in previously unseen artifacts resulting from floating point math issues, but does fix an annoying artifact resulting from the way Decimal remembers decimal precision.

One more bit in the wall

b105

* Unified View

I have finally removed the Viewport boxes from Unified view, and restored the previous versions of the trait boxes. I hope to revisit Viewports some day, but as of now, they are no longer supported in the UI.

* Miscellaneous

Apparently the newmode() tag for adding modes to traits from datafiles was never supported by Spells. I have fixed that.

I have updated the Classic view so the library in use will be listed in the Library list header for most trait types.

If a character isn’t currently using a loadout, the Loadout options on the right-click menus for traits will be disabled.

Added a setting to control the number of MRU files that are remembered.

Moved the option to change the character’s library from the library toolbar button to the Character menu. Also, improved usability so that the dialog that opens shows the character’s current library selection, and if the user selects nothing, no changes are made.

One primary bit

b104

* Edit Modes dialog

I have implemented the first draft of the Edit Modes dialog. This allows for editing, adding, and removing attack modes for traits. You can also drag the columns around to rearrange the order of the modes.

* Edit Items dialog

Added a button to launch the Edit Modes dialog.

* Advanced Edit dialog

Mode-enabled tags have been removed from the tag list in the Advanced Edit dialog.

With the mode tags removed, I had to add some code to preserve the mode data when moving in and out of this dialog.

Added an Edit Modes button to the bottom of the form, so that you can get to the Edit Modes dialog from here as well.

* Miscellaneous

Fixed a typo on the Options dialog.

Reverted a change I had made to where some event handlers for characters were enabled, due to that change resulting in dialogs and such being called two or more times for some events.

Given the reversion above, I have changed the updating of the UI for Unified view a bit to keep it updated correctly when changing to it when a character was opened in a different View.

Updated the character tab images so that the ‘unsaved’ icon should show when new traits get added to the lists.

Added some Interface references to some of the objects to allow simplifying things in some areas of code.

Made a small visual change to the attack modes in the Simple Edit display.

A mess of bits splattered about

b103

* Accessibility

I have just begun adding proper accessibility names and descriptions for things where I can. This will take time, but the excellent Windows Narrator built into Windows 10 is helping me identify the many places where I need to improve things.

The interface in GCA5 is pretty busy for screen readers. I’ll probably have to offer a stripped down version at some point.

* Miscellaneous

Added some code to let my controls display styled text if I want to update them to do so.

Added some additional error traps.

Restructured some code.

Repaired the code in Updater for integrating libraryupdates.xml into the new system that uses fileupdates.xml. The intent was that the old library update generator would still work for updating library specific book files, while the new general file update generator would allow for all files, including the library files if specified. At some point, the code for actually integrating the libraryupdates.xml information into the process was bypassed, but now it should be included correctly again.

Closing characters in the UI should trigger slightly less chaotic UI refresh behavior.

Characters should no longer be getting marked as Dirty every time they are loaded into GCA.

Having fixed the ‘Dirty’ issue mentioned above, I found that there was also an issue with how tabs were changing the ‘dirty’ or ‘clean’ image for the tab, so I changed how that is set.

Discovered a problem with where I was assigning certain event handlers for characters in the UI. Changed where they are assigned.

Changed some of the graphic elements for the third toolbar, to help clarify which ‘buttons’ are checkbox style, which are either-or radiobox style, and which are selected.

Changed the images used on the character tabs for ‘dirty’ and ‘clean’ characters.

Slightly improved some of the drawing code for trait boxes when drawing traits, group headers, and header information.

Added a character option for “No default level discount,” which effectively turns off the ability to improve skills from the default level, and requires every point spent to buy levels normally, ignoring any discount defaulting might have provided.

Added a button to Unified View which provides a horizontal override, similar to the existing vertical version. This mode limits boxes to the height of the display area, and turns off flow-wrapping of boxes in the worksapce. This allows for a horizontally scrolling workspace, and limits scrolling to within the lists themselves, rather than scrolling the entire workspace to move within long trait lists.

* Plugins

Recompiled for changes in interfaces and structures.

* Trait Viewports

Viewports are a new way of organizing traits for interaction and display. Basically, a Trait Viewport (Viewports for short) is a list of a particular type, such as Spells, that only includes those traits that meet specific criteria, such as all being Druidic. This new way of handling traits allows for much more freedom in what can be displayed and how the user can interact with it, over the previous way of being restricted to one list per type of trait.

In addition, with each Viewport being its own thing, it’s possible to match that up with particular display preferences based on the Viewport, so users can customize how they view different Viewports without it affecting other data of the same type.

GCA still organizes all traits internally by trait type (spell, skill, advantage, etc.), but each character will also track and manage all the viewports that are defined for it, so that they can be carried along whereever the character goes. Importantly, the Viewports are only saved in the character by definition, which is the criteria used to create it; the traits are not saved in the character file with that information actually applied to trait or list data, so you will not be able to just read the XML file to get a list of a Viewport’s traits; the Viewport will have to be created and filled somehow (which GCA does automatically while managing the character).

The display information for each Viewport, however, is user specific, and is not saved with the character at all. Different users or different computers or whatever may call for different display options, so those Viewport display options are maintained with the other user settings for your GCA installation. GCA has default settings for each type of trait, so loading a character with a Viewport that you’ve never specified settings for will result in the default settings for that type being applied.

I have created new trait boxes for Unified View, based on Trait Viewports. These new boxes embrace the whole new Viewport structure, including display options. Because of the changes, I’ve also changed how ordering is indicated in the column headers for the lists. Although the three standard color options (grey, red, yellow) are still provided, since they’re drawn into the header area using transparency, you may find the results often aren’t quite what you’d expect. The default ‘gray’ option tends to look best.

Trait Viewport Usage Notes

When building a Display Template for a Viewport:

You can format the TAG column of a Column two ways, if TagIsFormatted is True. If TagIsFormatted is False, then only the Tag name may be specified and only that value retrieved.

1) You can support String.Format() style substitution by including {X} markers where X is 0 through whatever.
Then include a comma separated list of values that will be inserted into the {X} markers. This list is counted from base 0, so the first item goes into {0}, second in {1}, etc.
This allows you to format the Tag field with whatever values you like, so long as the following list of values are valid Tags.
For example, you could use “{0} lbs, weight” for the Weight column of Equipment, where the value of the Tag ‘weight’ is inserted for {0}.

2) You can specify a numeric format for tag values that are themselves numeric values. If you do this for a non-numeric value, results will be unexpected.
You do this by including the keyword #format followed by the numeric format to use, best enclosed in quotes or braces (required if the format includes a comma).
The format uses the .Net Numeric Format strings, so there’s online docs for that out there.
For example, our Weight column could use “{0} lbs, weight #format {#,0.00}” to build on our example above, which formats the weight value to use commas to separate thousands, and always include two decimal places.

You can use the tag numeric formatting without the substitution, such as “weight #format {#,0.00}” to just show the weight without including the ” lbs” from our example.

Only one Tag can be specified, unless you use the substitution method.

Viewport Development Note

Right now, it looks like Viewports are too much for me to get done, UI wise, for other parts of GCA. So, I’ll probably not be rolling them out to Classic or anywhere else for initial release. However, they’re supported internally.

For this build, and maybe the future (we’ll see), they’re the way the Unified view displays traits. Since the default Viewports are the same as the standard way of doing things, that shouldn’t change anything for you. However, the tools for changing the display outputs, and the viewports themselves, are basically half-baked. They usually work for the first change you make, but then don’t, for some reason. If I can fix that, maybe I’ll keep Viewports here for now. Otherwise, I’ll roll them back in Unified as well.

However, regardless of how that works out, Viewports can still be used programmatically for output sheets if authors want to use them.

Looking back at 2018

This year was basically a failure. I got very little of what I wanted to get done, actually done.

Every time I thought I was getting back to work on GCA, life kicked sand in my face. Work has been stalled for months, and the multiple times I dove back in to get back to it, I was quickly pulled right back out again.

I’m sorry about that, I really am. I did not foresee this kind of downtime.

I’m really hoping I can turn this around next year.

My current plan, once I get some traction again, is to roll back the UI stuff for the last big thing I was doing. I think it’s cool, but it’s not required, and the UI takes a lot of work to make it properly useful for people. The internal stuff is there, and appears to work, so I’ll leave that there for the future; maybe sheets can make use of it as an option for organizing certain outputs.

Anyway, once that’s rolled back, I’ll return to my previous plan: finish, fix, and polish; get everything that is already there ready for public consumption. Then we’ll see what we might do about a larger scale beta to shake things down properly.

Boggage

I’m in a place where I have day job stuff to do, but I have time for GCA. But I’m in a place in GCA where the major things that need doing just take a long time, so I get bogged down and progress slows to a crawl.

So, basically, that’s what’s happening. Sorry for the lack of progress for a while. Just bogged down is all. I’m going to try to break things down into smaller chunks to get updates moving again.

A gap in time

Yeah, sorry about that. My day job tends to get busiest through the tax season, and I kind of got lost in work for a bit there.

It’s not a great look for things here, when I post that I’m still working away and then disappear for a while without another update. But, I’m getting back into some GCA headspace, and hope to get back to what I was working on as soon as I can make my brain work again.

Still working away

I haven’t posted an update for a bit, but since it may be another little bit before I have anything to post, I wanted to let folks know that work hasn’t stopped. In fact, I’m currently spending more time than usual on GCA. However, I’m rejiggering things to support something new and different* in how the data is managed and presented, and I won’t be posting new build notes until that’s all working the way I need it to. At least mostly.

So, still here, still working away.

Next build notes will be up when I’m done with this thing, and I promise you that the build notes will not even remotely reflect the amount of work that this rejiggering represents.

* new and different in GCA, anyway