View Single Post
  #15  
Old March 13th, 2019, 05:53 PM
ErikCumps's Avatar

ErikCumps ErikCumps is offline
Corporal
 
Join Date: Jan 2019
Location: Leuven, Belgium
Posts: 70
Thanks: 27
Thanked 89 Times in 29 Posts
ErikCumps is on a distinguished road
Smile Re: Battle dates: year, month, day, hour?

Quote:
Originally Posted by DRG View Post
When a campaign game is saved in mid turn the turn is recorded along with both nations and the month and year as well as the battle location and the mission type

Does the program know when it starts recording a campaign this campaign is set up to run X number of Battles between Month Y and month Z ?
DRG, I have to thank you again!

Your question has put me on a different line of thinking about the problem and I may have found an elegant solution.

Let me explain.

Note: all of this is based on the assumption that the data extracted from the savegame is correct.
But everything that warcab 'knows' about a savegame has been discovered by trial and error and
experimentation and not all of the data is currently understood. None of this has ever been officialy
declared to be correct.



This is some of the campaign-related information known by warcab from section 37 of the savegame:

Code:
offset	size	type	description

0x0075	1	UINT1	Campaign battles fought
...
0x00E8	2	UINT2	Campaign max battles
0x00EA	2	UINT2	Campaign start date month
0x00EC	2	UINT2	Campaign start date year (-1900)
0x00EE	2	UINT2	Campaign end date month
0x00F0	2	UINT2	Campaign end date year (-1900)
So, when a savegame is to be added to a campaign: if it can be more-or-less verified first that,
indeed, the savegame belongs to the campaign, than I believe the 'Campaign battles fought' can
be used as an indication of the relative position of the battle in the campaign, neatly avoiding
the problem of figuring out where the battle belongs on the timeline based on the incomplete
battle date, or on the behavior of the user.

Note: again, based on the assumption that this data is correctly interpreted from the savegame.

To be reasonably certain that a savegame belongs to a campaign, I think it will suffice to verify that:
  • the player's OOB ID matches
  • the count of core formations matches
  • the count of core units matches
  • the campaign start year/month matches
  • the campaign end year/month matches
  • the campaign max battles matches

Of course, this verification will not prevent mixing savegames from two different but otherwise identical
campaigns, but would it be unreasonable to require of the user to keep track of which savegames belong
to which campaigns and to avoid mixing them in warcab?

I will consider this idea a bit more, but it certainly looks promising and in terms of work quite feasible.

Erik
Reply With Quote
The Following User Says Thank You to ErikCumps For This Useful Post: