Stunts Forum

Stunts - the Game => Stunts Forum & Portal => Car Archive project => Topic started by: Duplode on February 03, 2024, 09:33:39 PM

Title: Version management and coexistence
Post by: Duplode on February 03, 2024, 09:33:39 PM
Here go a few thoughts about handling different versions of the same car. I'll begin with a @dreadnaut quote from another thread:

Quote from: dreadnaut on January 29, 2024, 09:42:23 AMYou might note a version number there. The discussion above made me realise that we need to keep that explicit, because an old competition might want to point to a specific version of the car, and not to the most recent one. Versions can "branch", so it's not simple ordering. I think I'm roughly proposing WXYZ/<version-id> as a versioned car identifier.

This is a good capsule summary of what we'll have to deal with. Compared to the initial draft of the design in the GitHub repository, it also points -- rightly so, IMO -- toward more explicit version management. I'll also quote the relevant bits of the repo docs, just for the sake of providing contrast:

Quote from: cars/README.md in the GitHub repoFor each car:
  • a <WXYZ>.yaml file containing
  • [...]
  • a resources directory containing all the car files
  • an optional history directory, containing subdirectories for previous versions of the car

Such a layout would likely suffice for the happy path, in which cars always have a linear version history, the most recent release by the author is the default choice of version by the community, and there are no replay-incompatible releases once a car has been used in competition. History, though, has a way of playing tricks on us when we least expect.

One particular scenario I see as important to consider is that of a car having an initial release which is used in competitions and then, for whatever reason, gets a replay-incompatible update at a later point. It is worth noting this is not a theoretical concern: a few of Ryoma's cars which were picked up by competitions while he was away in 2022 later had performance-changing updates, most notably the Ferrari 641/2 featured in R4K last year.

With these considerations in mind, here's what, at the moment, I'd feel like adding to the repository layout for the sake of version management. This is a rough sketch, for the consideration and criticism of y'all:

Title: Re: Version management and coexistence
Post by: dreadnaut on February 03, 2024, 10:14:43 PM
Haven't had time to dig into this problem, but a couple of thoughts:

- release_date would be optional as well in my mind, the only requirement is "a version exists";

- I would keep information about all versions in the main INI file, for ease of both editing and processing; the front-end could filter and separate as needed.
Title: Re: Version management and coexistence
Post by: Duplode on February 03, 2024, 11:32:29 PM
@dreadnaut Yup, both points make sense. The version release date should be optional indeed, as sometimes we'll just don't know. As for having the data for the versions in the main file, that may well be more convenient for what we'll be doing, and as you say the front-end can always split it off if we need that for some reason.
Title: Re: Version management and coexistence
Post by: Daniel3D on February 06, 2024, 10:24:11 AM
Maybe split the ini into 3 sections.
- mandatory
- useful (mandatory if applicable)
- optional (the fun and interesting)

It sets a standard to work with, but doesn't restrict either.
Title: Re: Version management and coexistence
Post by: Cas on February 06, 2024, 07:56:30 PM
Well, the good thing about files similar to these is that you can read what you want and ignore the rest. We just need to agree on default values.
Title: Re: Version management and coexistence
Post by: Daniel3D on February 07, 2024, 08:09:07 PM
Quote from: Cas on February 06, 2024, 07:56:30 PMWell, the good thing about files similar to these is that you can read what you want and ignore the rest. We just need to agree on default values.
I know, but it's important to set a basic structure and some requirements so there is a equal base for all cars.