.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
World Supremacy- Save $9.00

   







Go Back   .com.unity Forums > Shrapnel Community > Space Empires: IV & V

Reply
 
Thread Tools Display Modes
  #131  
Old October 23rd, 2006, 12:03 PM

tmcc tmcc is offline
Corporal
 
Join Date: Sep 2006
Posts: 130
Thanks: 0
Thanked 0 Times in 0 Posts
tmcc is on a distinguished road
Default Re: Balance Mod Available for SE:V

Quote:
Captain Kwok said:
Resupply Depots are now the second facility after Spaceports to be built in a new system. Although this doesn't appear as the only hiccup for expansion, but it does seem to help somewhat.
Captain Kwok, with all due respect I think it is more logical to build the Resupply Depots first. Either way it is six turns until the colony is building "revenue" generating facilities, assuming no emergency build. If you build the Resupply first then 3 of those 6 turns the planet will be generating supply and ordnance. If the Spaceport is 1st then it just sits there providing no value for 3 turns while Resupply is being built.

The one exception that I use is when another very high value planet in the same system will be colonized and have it's first facility complete in less than 6 turns. In that case I will build the Spaceport first, but only if I need the resources pretty urgently. Probably too complex a decision for the AI though.
Reply With Quote
  #132  
Old October 23rd, 2006, 01:07 PM
Captain Kwok's Avatar

Captain Kwok Captain Kwok is offline
National Security Advisor
 
Join Date: Oct 2001
Location: Toronto, Canada
Posts: 5,623
Thanks: 1
Thanked 14 Times in 12 Posts
Captain Kwok is on a distinguished road
Default Re: Balance Mod Available for SE:V

I did place the RDs first but for some reason the AI wouldn't get to building a spaceport for a much longer time and lots of resources would be lost when other planets were colonized - although this is not what should have happened. I did note at the time though there was some resource issues and dropped construction so I'll have to do more testing to identify the cause. But I agree that is the most "human" behaviour to build the RD first.

It's not really possible to have the AI to use the "hop" method of colonizing to claim as much space as possible because you can't explicity tell it to build a colony ship at the frontier colony etc.
__________________
Space Empires Depot | SE:V Balance Mod
Reply With Quote
  #133  
Old October 23rd, 2006, 03:06 PM
AngleWyrm's Avatar

AngleWyrm AngleWyrm is offline
Second Lieutenant
 
Join Date: Mar 2005
Location: Seattle, WA
Posts: 417
Thanks: 0
Thanked 0 Times in 0 Posts
AngleWyrm is on a distinguished road
Default Re: Balance Mod Available for SE:V

Thinking about Frontier Space Yards concept, I came up with this idea:

lst_Frontier_WarpPoints : int

which is a count of warp point space objects in colonized systems that don't lead to other colonized systems.

I'm not sure how sorting works in this game; is it parallel lists? If so, it might be possible to sort a list of colonies, filtered by spaceyard, on lst_Frontier_WarpPoints.
Reply With Quote
  #134  
Old October 23rd, 2006, 03:33 PM
Captain Kwok's Avatar

Captain Kwok Captain Kwok is offline
National Security Advisor
 
Join Date: Oct 2001
Location: Toronto, Canada
Posts: 5,623
Thanks: 1
Thanked 14 Times in 12 Posts
Captain Kwok is on a distinguished road
Default Re: Balance Mod Available for SE:V

The script already marks "frontier" WPs as those that are not explored or ones that are connected to systems owned by other empires. The code is in the Fx[Examine_Solar_System] in Script_AI_Lists.txt which marks them for primary and secondary "patrol" locations. They are also interpreted as locations to drop satellites, mines, and build bases if SY Ships are around.
__________________
Space Empires Depot | SE:V Balance Mod
Reply With Quote
  #135  
Old October 23rd, 2006, 04:18 PM
AngleWyrm's Avatar

AngleWyrm AngleWyrm is offline
Second Lieutenant
 
Join Date: Mar 2005
Location: Seattle, WA
Posts: 417
Thanks: 0
Thanked 0 Times in 0 Posts
AngleWyrm is on a distinguished road
Default Re: Balance Mod Available for SE:V

Not sure if I'm reading this right, but it looks like after executing Examine_Solar_System which contains:Code:
      // Warp Points to unseen systems or systems with enemies.
if (plr_has_colony) then
if (not Sys_Have_Seen_System(sys_long_Player_ID, dest_sys)) or (lst_AI_Enemy_System_Strengths.Get(dest_sys) > 0) then
call lst_AI_Patrol_System.add(sys_index)
call lst_AI_Patrol_Sector.add(wp_sect)
else
// Warp Points in system where we have colonies to systems where we don't.
if (not Sys_Player_Has_Colony_In_System(sys_long_Player_ID , dest_sys)) then
call lst_AI_Patrol_Secondary_System.add(sys_index)
call lst_AI_Patrol_Secondary_Sector.add(wp_sect)
endif
endif
endif


will result in lst_AI_Patrol_System with a list of frontier systems, and lst_AI_Patrol_Secondary_System will contain a list of adjoining unexplored/enemy systems.

If so, then maybe we get/sort a list of colony shipyards that are in PatrolSystems. Then that list of shipyards would be well suited for expansion colony ships
Reply With Quote
  #136  
Old October 23rd, 2006, 04:23 PM

Uncle_Joe Uncle_Joe is offline
Corporal
 
Join Date: Mar 2005
Posts: 159
Thanks: 0
Thanked 1 Time in 1 Post
Uncle_Joe is on a distinguished road
Default Re: Balance Mod Available for SE:V

I'm holding out a lot of hope for this mod. Because really, I've given up on the base game. Hopefully y'all can get the AI sorted out!
Reply With Quote
  #137  
Old October 23rd, 2006, 07:25 PM
Captain Kwok's Avatar

Captain Kwok Captain Kwok is offline
National Security Advisor
 
Join Date: Oct 2001
Location: Toronto, Canada
Posts: 5,623
Thanks: 1
Thanked 14 Times in 12 Posts
Captain Kwok is on a distinguished road
Default Re: Balance Mod Available for SE:V

Excellent news. I compiled the scripts I made earlier today when I got home and the difference is amazing. The only problem now is that the AI is not finding planets fast enough to colonize!

Here are the turn 25 stats of a test game with AI low bonus only:


As soon as I fix up the silly treaty business I'll upload the new version.
Attached Images
File Type: png 461931-balancemod-ai-turn25.png (49.3 KB, 150 views)
__________________
Space Empires Depot | SE:V Balance Mod
Reply With Quote
  #138  
Old October 23rd, 2006, 07:30 PM
Tim_Ward's Avatar

Tim_Ward Tim_Ward is offline
Corporal
 
Join Date: Feb 2005
Posts: 152
Thanks: 0
Thanked 0 Times in 0 Posts
Tim_Ward is on a distinguished road
Default Re: Balance Mod Available for SE:V

That is a sight for sore eyes.

Quote:
Uncle_Joe said:
I'm holding out a lot of hope for this mod. Because really, I've given up on the base game. Hopefully y'all can get the AI sorted out!
As far as I'm concerned, this *is* stock.
__________________
"Why the blazes didn't we utilise the abandoned Martian War Machines to retain Empire? I demand immediate resignations."
Reply With Quote
  #139  
Old October 23rd, 2006, 07:51 PM

Raapys Raapys is offline
First Lieutenant
 
Join Date: Jan 2005
Posts: 689
Thanks: 0
Thanked 0 Times in 0 Posts
Raapys is on a distinguished road
Default Re: Balance Mod Available for SE:V

Ooooh, excellent! Kwok saves the day( and the game).

When the research paths have been optimized this should definitely be considered for a stock-patch IMO. 1.08 stock is frankly a joke.
Reply With Quote
  #140  
Old October 23rd, 2006, 08:37 PM
Tim_Ward's Avatar

Tim_Ward Tim_Ward is offline
Corporal
 
Join Date: Feb 2005
Posts: 152
Thanks: 0
Thanked 0 Times in 0 Posts
Tim_Ward is on a distinguished road
Default Re: Balance Mod Available for SE:V

Compare and contrast. Turn 25 of version 0.91. Same settings as Kowk. I'd changed settings so that planets and warp points can be seen without exploring a system, to aid the AI in it's finding planets to colonise (I'd notice it not exploring systems, and just leaving a ship at the warp point for a bit then sending it home, thus leaving potentual breathable atmosphere planets just out of sight.) Without that, I don't the AI would even have done this well.



(No, I wasn't trying very hard, just spamming colony ships and moving a few frigates I built around. still got third.)

You'll notice that the top rated AI player has a score lower than the lowest ranked AI player in latest version. And that was the Eee, who should benefit more from being able to see all the planets. No other AI came close.
__________________
"Why the blazes didn't we utilise the abandoned Martian War Machines to retain Empire? I demand immediate resignations."
Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 02:48 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2024, Shrapnel Games, Inc. - All Rights Reserved.