Matrix Games Forums

Forums  Register  Login  Photo Gallery  Member List  Search  Calendars  FAQ 

My Profile  Inbox  Address Book  My Subscription  My Forums  Log Out

Loading multiple files feature request

 
View related threads: (in this forum | in all forums)

Logged in as: Guest
Users viewing this topic: none
  Printable Version
All Forums >> [New Releases from Matrix Games] >> Empires in Arms the Napoleonic Wars of 1805 - 1815 >> Loading multiple files feature request Page: [1]
Login
Message << Older Topic   Newer Topic >>
Loading multiple files feature request - 2/2/2010 8:06:24 PM   
Ted1066


Posts: 214
Joined: 12/10/2007
From: Vancouver, BC, Canada
Status: offline
Hey Marshall,

If this has been brought up before, apologies, but it would be freakin fantastic if the game engine could check the commin folder for sequential PBEM phase files and load all in sequence in one go. I.e. Hitting the next turn button grabs the next turn file, then the engine automatically checks the folder for the next, etc., until either (no other turn files || player's turn is up). This would greatly speed up things for the phasing player as he can grab all the intervening files, drop them in the commin folder, hit the advance button once and then proceed with performing his turn.

Thoughts?

Cheers,

Ted
Post #: 1
RE: Loading multiple files feature request - 2/2/2010 9:35:03 PM   
NeverMan

 

Posts: 1722
Joined: 2/24/2004
Status: offline
This has been talked about but I'm not sure your "method" has been suggested before.

It seems to me that this would be pretty easy to do. Just add a button for "load to next turn" (or some such whatever) and then it loads until it can't find the next file.

The "load next turn" button would still need to exist for those that like to look at each turn, one by one.

(in reply to Ted1066)
Post #: 2
RE: Loading multiple files feature request - 2/3/2010 10:34:50 AM   
DCWhitworth


Posts: 676
Joined: 12/15/2007
From: Norwich, England
Status: offline
I'm still uncertain why this feature would be much use. I don't find it especially onerous to click through a few files, not when compared with the other things I'd rather Marshall be putting his efforts into. It would save you barely more than a few seconds and then there's also the issue of wanting to stop and look at things along the way. When hosting a game there have been many occasions whenn I've wanted ot load files to a specific point but no further.

_____________________________

Regards
David

(in reply to NeverMan)
Post #: 3
RE: Loading multiple files feature request - 2/3/2010 12:37:53 PM   
Marshall Ellis


Posts: 5630
Joined: 10/2/2001
From: Dallas
Status: offline
This has been talked about before but I thought that most wanted to see turns as they were loaded??? I'm kind of doing this for Diplomacy and Eco in 1.08 since they are simultaneous now. This is not very important to see since there really is nothing to see when these turns are loaded.



_____________________________

Thank you

Marshall Ellis
Outflank Strategy War Games



(in reply to DCWhitworth)
Post #: 4
RE: Loading multiple files feature request - 2/3/2010 4:25:21 PM   
NeverMan

 

Posts: 1722
Joined: 2/24/2004
Status: offline
quote:

ORIGINAL: DCWhitworth

I'm still uncertain why this feature would be much use. I don't find it especially onerous to click through a few files, not when compared with the other things I'd rather Marshall be putting his efforts into. It would save you barely more than a few seconds and then there's also the issue of wanting to stop and look at things along the way. When hosting a game there have been many occasions whenn I've wanted ot load files to a specific point but no further.


The real problem is having to download possibly a ton of files, but that is for another post.

I agree that this won't save much time, but I can't see this taking more than a few lines of code and possibly 30 minutes to write.

1. Add a button.
2. Check for files, one after the other until a file is not found (the program already knows the names of the files so there is really no hard coding involved here).

Just saying.

(in reply to DCWhitworth)
Post #: 5
RE: Loading multiple files feature request - 2/3/2010 8:38:17 PM   
Ted1066


Posts: 214
Joined: 12/10/2007
From: Vancouver, BC, Canada
Status: offline
For me, its more the annoyance factor. The game could easily know multiple files are present in the commin folder, rather than having the user click the button, press return and repeat until all files are consumed. I tend to not touch the game until its my turn, at which point I have to load all the intervening files. So its 'click advance-press return" multiple times until its my turn. And I agree with Neverman: coding this up would be a pretty simple if-then routine addition to the current process.

Ted

(in reply to NeverMan)
Post #: 6
RE: Loading multiple files feature request - 2/3/2010 9:09:56 PM   
Jimmer

 

Posts: 1968
Joined: 12/5/2007
Status: offline

quote:

ORIGINAL: NeverMan
The real problem is having to download possibly a ton of files, but that is for another post.

I agree that this won't save much time, but I can't see this taking more than a few lines of code and possibly 30 minutes to write.

1. Add a button.
2. Check for files, one after the other until a file is not found (the program already knows the names of the files so there is really no hard coding involved here).

Just saying.

I would make it a bit more complicated:

1. Add a checkbox to the current process. Title: Apply all turn files at once?
2. If checked, check for files ... (as per your #2)

This would allow those who wanted to see all the turns able to see them, and others could ignore them.

In fact, I would probably do both at different times in the game and playing different powers. I can imagine many Spains never checking unless they were at war. Similarly, many Great Britains and Frances would probably check every turn, even while at peace.

_____________________________

At LAST! The greatest campaign board game of all time is finally available for the PC. Can my old heart stand the strain?

(in reply to NeverMan)
Post #: 7
RE: Loading multiple files feature request - 2/3/2010 9:19:14 PM   
NeverMan

 

Posts: 1722
Joined: 2/24/2004
Status: offline
Jimmer,

Ok, check box, extra button, not sure what the difference is but ok.

(in reply to Jimmer)
Post #: 8
RE: Loading multiple files feature request - 2/5/2010 9:45:21 PM   
Jimmer

 

Posts: 1968
Joined: 12/5/2007
Status: offline
Realistically, very little. But, the check box requires the code to perform a decision, which typically adds to debug time. When it's only ONE decision, it's not likely to be a problem. But, it is, as I said, "a bit more complicated".

However, having a check box (or, other decision-making construct) does allow for freedom among players, which was one of the bigger objections. So, it seems like a good addition to me.

_____________________________

At LAST! The greatest campaign board game of all time is finally available for the PC. Can my old heart stand the strain?

(in reply to NeverMan)
Post #: 9
RE: Loading multiple files feature request - 2/6/2010 6:22:10 PM   
NeverMan

 

Posts: 1722
Joined: 2/24/2004
Status: offline

quote:

ORIGINAL: Jimmer

Realistically, very little. But, the check box requires the code to perform a decision, which typically adds to debug time. When it's only ONE decision, it's not likely to be a problem. But, it is, as I said, "a bit more complicated".

However, having a check box (or, other decision-making construct) does allow for freedom among players, which was one of the bigger objections. So, it seems like a good addition to me.


The only thing I would say is that a checkbox will probably takes more clicks for the end user than a button at the top next to the original button.

(in reply to Jimmer)
Post #: 10
RE: Loading multiple files feature request - 2/8/2010 8:52:48 PM   
Jimmer

 

Posts: 1968
Joined: 12/5/2007
Status: offline
Correct: Two clicks versus one. The same thing could be done by having two buttons as well.

_____________________________

At LAST! The greatest campaign board game of all time is finally available for the PC. Can my old heart stand the strain?

(in reply to NeverMan)
Post #: 11
Page:   [1]
All Forums >> [New Releases from Matrix Games] >> Empires in Arms the Napoleonic Wars of 1805 - 1815 >> Loading multiple files feature request Page: [1]
Jump to:





New Messages No New Messages
Hot Topic w/ New Messages Hot Topic w/o New Messages
Locked w/ New Messages Locked w/o New Messages
 Post New Thread
 Reply to Message
 Post New Poll
 Submit Vote
 Delete My Own Post
 Delete My Own Thread
 Rate Posts


Forum Software © ASPPlayground.NET Advanced Edition 2.4.5 ANSI

1.063