[Freeciv-Dev] Re: [Patch] CMA 1.0
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
I've been reviewing your patches, both sma6.diff and
cma1_0 diff. The cma1_0 diff is clearly
missing a lot that was in your earlier patch. When is
the rest of code going to be submitted?
There is clearly a lot of server and client side
duplication of code. So are both going to be
kept or is the AI finally going to migrate only to the
client side?
After reading the below function:
static int can_use_specialist(struct city *pcity,
enum specialist_type specialist_type)
{
if (specialist_type == SP_ELVIS)
return 1;
if (pcity->size >= 5)
return 1;
return 0;
}
and optimize_people
if (!can_use_specialist(pcity, SP_ELVIS)
&& extra_entertainers > 0)
Shouldn't it just be (if extra_entertainers > 0)
because it will always return one
if the specialist is an elvis.
The problem with the below function
apply_result_on_server
is the pointless conversion of the entire population
to entertainers before you
can convert them to what is needed. Why was this
necessary?
There is a lack of examples of how to code agents. An
example with comments would be
helpful. Ten is far too few for max agents.
The function try_to_find_primary has the comment that
calculation of upkeeps is not exact.
Can you please explain, in great detail, exactly how
you are calculating upkeep?
Where is the code to handle diplomacy? Are you
planning to add this at all or do you want
contributions?
I am sorry for all the criticism. Now let me praise
the code. It's very well written. Above all it
has clarity. This is one small step for freeciv, but a
gigantic leap for the AI code.
__________________________________________________
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger.
http://im.yahoo.com
- [Freeciv-Dev] [Patch] CMA 1.0, Raimar Falke, 2001/09/20
- [Freeciv-Dev] Re: [Patch] CMA 1.0, Andreas Kemnade, 2001/09/21
- [Freeciv-Dev] Re: [Patch] CMA 1.0, Gregory Berkolaiko, 2001/09/21
- [Freeciv-Dev] Re: [Patch] CMA 1.0,
Raahul Kumar <=
- [Freeciv-Dev] Re: [Patch] CMA 1.0, Raimar Falke, 2001/09/22
- [Freeciv-Dev] The AI Strikes Back: CMA 1.0, Raahul Kumar, 2001/09/22
- [Freeciv-Dev] Re: The AI Strikes Back: CMA 1.0, Raimar Falke, 2001/09/23
- [Freeciv-Dev] Re: The AI Strikes Back: CMA 1.0, Raahul Kumar, 2001/09/23
- [Freeciv-Dev] Re: The AI Strikes Back: CMA 1.0, Raahul Kumar, 2001/09/23
- [Freeciv-Dev] Re: The AI Strikes Back: CMA 1.0, Raimar Falke, 2001/09/23
[Freeciv-Dev] Re: [Patch] CMA 1.0, Raahul Kumar, 2001/09/22
|
|