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

This Month's Specials

ATF: Armored Task Force- Save $8.00
War Plan Pacific- Save $8.00

   







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

Reply
 
Thread Tools Display Modes
  #391  
Old June 4th, 2003, 02:23 PM

teal teal is offline
Corporal
 
Join Date: Apr 2003
Location: New York State
Posts: 112
Thanks: 0
Thanked 0 Times in 0 Posts
teal is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

I wish you could sort the planet list by size and distance from existing colonizers. These are the attributes that I usually care the most about...
Reply With Quote
  #392  
Old June 4th, 2003, 05:34 PM

Phoenix-D Phoenix-D is offline
National Security Advisor
 
Join Date: Nov 2000
Posts: 5,085
Thanks: 0
Thanked 0 Times in 0 Posts
Phoenix-D is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

Rigelian: Gold adds a -lot- of stuff in the patches, though a lot of it is for better modding. It also fixes the stupid player order determines who shoots first thing.

"Not being able to assign the same build to multiple queues at a time"

And that, if it wasn't in 1.49. Shift-click the build lists you want then click Multi Add.
__________________
Phoenix-D

I am not senile. I just talk to myself because the rest of you don't provide adequate conversation.
-Digger
Reply With Quote
  #393  
Old June 4th, 2003, 08:59 PM
Fyron's Avatar

Fyron Fyron is offline
Shrapnel Fanatic
 
Join Date: Jul 2001
Location: Southern CA, USA
Posts: 18,394
Thanks: 0
Thanked 12 Times in 10 Posts
Fyron is an unknown quantity at this point
Default Re: SE5, Tell Aaron what\'s on your Wish List

Multi add was added in 1.60 (gold). One thing it does not allow is multi adding facilities. But you can always use Fill Queues to make filling new planets a snap.
__________________
It's not whether you win or lose that counts: it's how much pain you inflict along the way.
--- SpaceEmpires.net --- RSS --- SEnet ModWorks --- SEIV Modding 101 Tutorial
--- Join us in the #SpaceEmpires IRC channel on the Freenode IRC network.
--- Due to restrictively low sig limits, you must visit this link to view the rest of my signature.
Reply With Quote
  #394  
Old June 5th, 2003, 11:39 AM
Me Loonn's Avatar

Me Loonn Me Loonn is offline
Corporal
 
Join Date: Feb 2003
Location: Syntax Err
Posts: 86
Thanks: 0
Thanked 0 Times in 0 Posts
Me Loonn is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

Hope the repeat order in queue to be made so that each item in the queue get built in order, top first then second and so on to the bottom. And THEN repeat it from the top again. Current repeat only does the top over and over. Its good to have but it lacks something.
__________________
Reality is merely an illusion, albeit a very persistent one.
Reply With Quote
  #395  
Old June 5th, 2003, 08:40 PM
Fyron's Avatar

Fyron Fyron is offline
Shrapnel Fanatic
 
Join Date: Jul 2001
Location: Southern CA, USA
Posts: 18,394
Thanks: 0
Thanked 12 Times in 10 Posts
Fyron is an unknown quantity at this point
Default Re: SE5, Tell Aaron what\'s on your Wish List

That should be a separate order..
__________________
It's not whether you win or lose that counts: it's how much pain you inflict along the way.
--- SpaceEmpires.net --- RSS --- SEnet ModWorks --- SEIV Modding 101 Tutorial
--- Join us in the #SpaceEmpires IRC channel on the Freenode IRC network.
--- Due to restrictively low sig limits, you must visit this link to view the rest of my signature.
Reply With Quote
  #396  
Old June 6th, 2003, 10:21 AM
cybersol's Avatar

cybersol cybersol is offline
Corporal
 
Join Date: May 2003
Location: SF Bay Area, CA
Posts: 145
Thanks: 0
Thanked 0 Times in 0 Posts
cybersol is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

Ok, the great rocks-paper-scissors strategy article by Stone Mill got me thinking about a way to improve the ai. I still think a scripting type language would be the most flexible solution for the ai, but I also realize that parsing and compilers are not everyone's specialty!

The idea is to give the AI rocks-papers-scissors capability. I think it could be implemented relatively easily even in the SEIV scheme of things.

First, for each ship type, say "Light Attack Ship", in designcreation the hard code keeps stats (over the most recent 20 turns for example) on the total damage done by each weapon family to that ship type. At redesign time note the weapon to do the most damage.

Then under weapons family pick for that type in designcreation you use some special family like -1 or something to indicate that ship type uses rock-paper-scissor capability. If it does, then that same ship type will be found in a rock-paper-scissors.txt file. In this file you first list the ship type then family pairs. For example, 2->6 for point defense to counter capital ship missles. If the first majority (or secondary) weapon family is the special one then it looks into the rocks-paper-scissors file with the most damaging weapon family number (say 2 CSM in this case) to find the counter weapon family number (6 point defense here). Then it uses that counter weapon family as the majority (or secondary) weapon type for this redesign period.

The changes required would be to keep the statistics and parse the extra rocks-papers-scissors file (and the fun error checking between the two files). All in all, not too hard to implement, but it would greatly increases the ability of the ai to respond dynamically to situations.

Also, it would still be fully moddable!
Reply With Quote
  #397  
Old June 6th, 2003, 10:58 AM
dogscoff's Avatar

dogscoff dogscoff is offline
General
 
Join Date: Mar 2001
Location: UK
Posts: 4,245
Thanks: 0
Thanked 0 Times in 0 Posts
dogscoff is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

Nice idea for the AI there.

As for the repeat build thing- I've said it before and I'll say it again: Programming-type functions for ship orders.
(If/Then, Loop, Gretaer than/ less than etc, and a whole bunch of variables pulled from the game environment to pwork with)

If these were implemented, it probably wouldn't be too hard to extend some similar functionality into construction queues as well:

code:
Build [spaceport]

repeat
{
Build [mineral miner]
}
until [facilities_on_planet(mineralminer)>=4]

build [robotoid factory]

repeat
{
Build [mineral miner]
}
until [facilities_slots_free=0]

Do
{
Build[fighter_design_1]
}
Loop

Crappy pseudocode but you get the idea.
Reply With Quote
  #398  
Old June 6th, 2003, 03:44 PM
Erax's Avatar

Erax Erax is offline
Captain
 
Join Date: Oct 2002
Location: Brazil
Posts: 827
Thanks: 0
Thanked 0 Times in 0 Posts
Erax is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

Just elaborating on some of the more recent ideas :

- Retrofitting - should be a job in the construction queue. It takes up manpower resources same as building a ship, right ? A simultaneous build option would also be nice.

- Alternating fire - give each ship/base/satellite/fighter/platform an 'initiative rating' based on their size, speed and type. Let them move and fire in order of initiative.
__________________
Have you ever had... the sudden feeling... that God is out to GET YOU?
Well, my girl dumped me and I'm stuck with the raftmates from Hell in the middle of the sea and... what was the question again???
Reply With Quote
  #399  
Old June 6th, 2003, 03:52 PM
Suicide Junkie's Avatar
Suicide Junkie Suicide Junkie is offline
Shrapnel Fanatic
 
Join Date: Feb 2001
Location: Waterloo, Ontario, Canada
Posts: 11,451
Thanks: 1
Thanked 4 Times in 4 Posts
Suicide Junkie is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

Retrofitting does use up your worker's time...
It just uses the repair crew to install replacement parts instead of the build workers.

With real time combat, you will get an infinitely fine-grained initiative system.
Reply With Quote
  #400  
Old June 6th, 2003, 09:26 PM
Erax's Avatar

Erax Erax is offline
Captain
 
Join Date: Oct 2002
Location: Brazil
Posts: 827
Thanks: 0
Thanked 0 Times in 0 Posts
Erax is on a distinguished road
Default Re: SE5, Tell Aaron what\'s on your Wish List

Your repair crew is the absolute minimum number of people required to keep everything running. If you take on a big job like a retrofit, you hire more people or pull them off other projects. And your industry has to build the spare parts, which could have been used on a brand new ship, etc. etc. (I don't think you'd keep a spare ion engine just lying around, if you need something big like that you build it).

Regarding RT combat, I wish Malfador would go the X-Com Apocalypse way and give us both options : regular turn-based tactical or real-time tactical combat.
__________________
Have you ever had... the sudden feeling... that God is out to GET YOU?
Well, my girl dumped me and I'm stuck with the raftmates from Hell in the middle of the sea and... what was the question again???
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 07:25 PM.


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