Hard Light Productions Forums

Modding, Mission Design, and Coding => FS2 Open Coding - The Source Code Project (SCP) => Topic started by: Kie99 on July 24, 2008, 11:53:05 am

Title: Feature Request - Completed Campaigns List in Barracks
Post by: Kie99 on July 24, 2008, 11:53:05 am
Would it be possible to have a list of campaigns each pilot has completed, and how many times, underneath the kills stats in the Barracks?  Something like every time a campaign is started, the name of that campaign is added to the pilot file along with an Integer, then upon each completion of the campaign, 1 is added to it, then it gets displayed in the Barracks?

Obviously it's nothing ground breaking, just one of those little things that would be cool.
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Solatar on July 24, 2008, 06:05:21 pm
I never use the same pilot file long enough for this to make a difference, lol.

Still, could be a neat little feature. Might be some problems with it when you uninstall campaigns, etc. Not sure how it would/could be implemented, but that's the first potential issue I can see.
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: karajorma on July 25, 2008, 12:59:22 am
It's a nice idea. It would have to wait for 3.7 though since Taylor has massively changed the pilot file and the code won't be committed until then.
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Al Tarket on July 25, 2008, 05:47:25 am
something like this?...

(http://img295.imageshack.us/img295/6483/fs22mi6.th.png) (http://img295.imageshack.us/my.php?image=fs22mi6.png)
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Kie99 on July 26, 2008, 11:31:44 am
I never use the same pilot file long enough for this to make a difference, lol.

Still, could be a neat little feature. Might be some problems with it when you uninstall campaigns, etc. Not sure how it would/could be implemented, but that's the first potential issue I can see.

Considered that, but if my idea were implemented, when you uninstall campaigns it doesn't matter because the name of the campaign is already stored in the pilot file, with the amount of times completed.  If you had two campaigns of the same name you might run into a problem though.

something like this?...

(http://img295.imageshack.us/img295/6483/fs22mi6.th.png) (http://img295.imageshack.us/my.php?image=fs22mi6.png)

Not quite, you'd have a list with the name of the campaign and a number next to it saying how many times it's been completed.

It's a nice idea. It would have to wait for 3.7 though since Taylor has massively changed the pilot file and the code won't be committed until then.

I see.  Would it be difficult to implement after that?
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: karajorma on July 26, 2008, 03:51:14 pm
I've not seen Taylor's new pilot file code so I have no idea. Given that his general idea was to make it it robust enough that we could throw anything at it and not break it I presume it would make it easier or as difficult as it is now.
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Gregster2k on July 26, 2008, 11:08:59 pm
I wonder if the new pilot file code will let us save our progress in one campaign while we play another one?
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Aardwolf on July 26, 2008, 11:27:13 pm
I wonder if the new pilot file code will let us save our progress in one campaign while we play another one?

I would say that pilots exist for several reasons:

In my opinion, being able to use a single pilot to play multiple campaigns simultaneously is a bad idea. The statistics collected in one campaign are supposed to be kept separate from those collected in others. If that were the case, players could artificially obtain medals, stats, etc. while playing their own, user-made campaigns, and it would become impossible to accurately judge a player's skill without observing them in combat--and completely impossible to judge their accomplishments.
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Gregster2k on July 26, 2008, 11:48:19 pm
The statistics / medals collected in one campaign would be kept separate from those collected in others. I meant that you could pause your progress in a campaign and work on another one. The second one would create and maintain its own separate statistics, not affecting the paused one (not even global variables).
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Al Tarket on July 27, 2008, 03:54:53 am
if you have only done 3 missions of a 30 mission campaign then

Code: [Select]
Campaigns played: 0.1
Mission started: Lion at the door

it would make a few differences to each campaign you play.
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: Kie99 on October 26, 2009, 08:55:11 pm
:bump:
Is this any closer to being implementable?
Title: Re: Feature Request - Completed Campaigns List in Barracks
Post by: The E on October 27, 2009, 08:03:46 am
It'll still take a rewrite of the pilot file code.