|  | 
| 
 
 
 
 
 
 
 
 
    
    
 |  | 
 
    
        | Notices |  
        | 
	Do you own this game?  Write a review  and let others know how you like it.
 |  
 
 
	
		|  |  
	
	
		
	
	
	| 
			
			 
			
				January 1st, 2008, 01:32 PM
			
			
			
		 |  
	| 
		
			
			| 
 Private |  | 
					Join Date: Aug 2006 
						Posts: 11
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 Next turn 
 Any way of advancing to the next turn without using the keyboard(Y or N)?
 Very anoying to have to use the key board.
 
 Thanks
 |  
	
		
	
	
	| 
			
			 
			
				January 1st, 2008, 03:41 PM
			
			
			
		 |  
	| 
		
			|  | 
 Shrapnel Fanatic |  | 
					Join Date: Mar 2005 Location: GWN 
						Posts: 12,712
					 Thanks: 4,159 
		
			
				Thanked 5,950 Times in 2,926 Posts
			
		
	      |  |  
    
	| 
				 Re: Next turn 
 No. It's there as a safety net in case the end turn button is hit by mistake. Consider for a second how annoying ending the turn by accident would be if we hadn't included this safety feature and it will make more sense why we added the Y/N safety.
 Don
 |  
	
		
	
	
	| 
			
			 
			
				January 1st, 2008, 10:52 PM
			
			
			
		 |  
	| 
		
			
			| 
 Private |  | 
					Join Date: Aug 2006 
						Posts: 11
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 Re: Next turn 
 Ok..are there any mods avaialable to take it out? It's killimg me,all games today are primarly point and click using the mouse.
 they were clicking the mouse key by accident?, if there is a confirmation, should not be a problem.
 |  
	
		
	
	
	| 
			
			 
			
				January 2nd, 2008, 06:48 PM
			
			
			
		 |  
	| 
		
			
			| 
 Private |  | 
					Join Date: Mar 2007 Location: new zealand 
						Posts: 43
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 Re: Next turn 
 yeah right; having wiped a game by mistake just leave it as it is.
 happy new year all
 Evan
 |  
	
		
	
	
	| 
			
			 
			
				January 2nd, 2008, 08:08 PM
			
			
			
		 |  
	| 
		
			|  | 
 National Security Advisor |  | 
					Join Date: Mar 2005 Location: Dundee 
						Posts: 6,004
					 Thanks: 496 
		
			
				Thanked 1,943 Times in 1,262 Posts
			
		
	      |  |  
    
	| 
				 Re: Next turn 
 
	Quote: 
	
		| evan said: yeah right; having wiped a game by mistake just leave it as it is.
 
 happy new year all
 Evan
 
 |  The original SSI games as I recall, had no Y/N confirmation, so a mis-click on the end turn button could cause problems.
 
AFAIR - the Y/N confirmation was one of the first things we put in when we got hold of the SSI source, as a much-requested item from the end users.
 
As far as the original poster's request for a "mouse click" item, then the entire game would need to be redesigned, since it is based on the keyboard interface (it was a DOS 1990's game after all). One could use the SP3 type of interface with a message box slap in the centre of the screen - but near everyone detested that!. And it would need 999 different bits of code revisited and recoded and retested, where most folks are happy to simply poke the "Y" key..
 
I already have a message box dialogue in the code, however, it uses the Windows MessageBox - so in full screen mode that gets the palette borked since full screen rewrites all the colours in the video controller, including the 15 low order colours that Windows expects to be untouched, even in 256 colour mode. Would therefore only be useful in a windowed mode only game, as the 256 colours are then mapped by the WinVFX library to 5-5-5 RGB colours, and also one can default buttons if using that widget, so enter would do for the keyboard junkies. However, back in the day, the end user community wanted full-screen mode. I much prefer running in windowed mode (but sized to take the desktop) these days - It leaves the windows task bar (with clock, and email notification visible), and saves problems with those apps that seem to screw about with the Windows full screen palette should you alt-tab - mainly Microsoft Office 97, and Excel in particular. If I am using EXCEL when doing pick list mods (the picks source are in spreadsheets), then I really have to remember to change to windowed mode, to avoid any "psychedelic" mode happening in full-screen mode when testing the mods!.
 
Cheers 
Andy
			
			
			
			
				  |  
	
		
	
	
	| 
			
			 
			
				January 3rd, 2008, 08:13 PM
			
			
			
		 |  
	| 
		
			
			| 
 Private |  | 
					Join Date: Aug 2006 
						Posts: 11
					 Thanks: 0 
		
			
				Thanked 0 Times in 0 Posts
			
		
	      |  |  
    
	| 
				 Re: Next turn 
 
	Quote: 
	
		| Mobhack said: 
 
	The original SSI games as I recall, had no Y/N confirmation, so a mis-click on the end turn button could cause problems.Quote: 
	
		| evan said: yeah right; having wiped a game by mistake just leave it as it is.
 
 happy new year all
 Evan
 
 |  
 AFAIR - the Y/N confirmation was one of the first things we put in when we got hold of the SSI source, as a much-requested item from the end users.
 
 As far as the original poster's request for a "mouse click" item, then the entire game would need to be redesigned, since it is based on the keyboard interface (it was a DOS 1990's game after all). One could use the SP3 type of interface with a message box slap in the centre of the screen - but near everyone detested that!. And it would need 999 different bits of code revisited and recoded and retested, where most folks are happy to simply poke the "Y" key..
 
 I already have a message box dialogue in the code, however, it uses the Windows MessageBox - so in full screen mode that gets the palette borked since full screen rewrites all the colours in the video controller, including the 15 low order colours that Windows expects to be untouched, even in 256 colour mode. Would therefore only be useful in a windowed mode only game, as the 256 colours are then mapped by the WinVFX library to 5-5-5 RGB colours, and also one can default buttons if using that widget, so enter would do for the keyboard junkies. However, back in the day, the end user community wanted full-screen mode. I much prefer running in windowed mode (but sized to take the desktop) these days - It leaves the windows task bar (with clock, and email notification visible), and saves problems with those apps that seem to screw about with the Windows full screen palette should you alt-tab - mainly Microsoft Office 97, and Excel in particular. If I am using EXCEL when doing pick list mods (the picks source are in spreadsheets), then I really have to remember to change to windowed mode, to avoid any "psychedelic" mode happening in full-screen mode when testing the mods!.
 
 
 Cheers
 Andy
 
 |  
I only play in windows mode, so can I have the message box dialogue box?
			
			
			
			
				  |  
	
		
	
	
	
	
	
	
	| Thread Tools |  
	|  |  
	| Display Modes |  
	
	| 
		 Linear Mode |  
	| 
	|  Posting Rules |  
	| 
		
		You may not post new threads You may not post replies You may not post attachments You may not edit your posts 
 HTML code is On 
 |  |  |  |  |