looks good.
Announcement
Collapse
No announcement yet.
GENERAL: E-Cafe III
Collapse
X
-
-
Yep, that looks fine.Call to Power 2: Apolyton Edition - download the latest version (12th June 2011)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Comment
-
Congratulations Martin...
I don't have the time to work on a french translation at this time. I barely manage to keep up with the news though.
I am currently trying to start a career as a public servant. In France, it means that you have to succeed in a contest against all the other candidates trying to do the same thing (at least against the vast majority of them). Though I am working on this project since october 2007, in order to have a serious chance I still have a lot of work to do (more than a lot actually).
For some months, I am still there but more like a viewer than an active member. Until I succeed."Democracy is the worst form of government there is, except for all the others that have been tried." Sir Winston Churchill
Comment
-
Hi,
I don't have the time to work on a french translation at this time. I barely manage to keep up with the news though.
What would the work entail?
TelliusOnly tyrants need worry about tyrant-killers
Comment
-
Originally posted by Tellius
What would the work entail?
You can also make your CTP2 use the French files so that you can check in game what really needs translation.
But I suggest that you start with the files I pointed to in the translation thread.
If you don't use the repository just post your modified files there.
-MartinCiv2 military advisor: "No complaints, Sir!"
Comment
-
Thanks Tellius, if you have some questions or if you are unsure of a translation send me a PM, a mail or post in the Translation thread.
Though I don't have the time to make the translation myself, I can try to make some proofreading. I will check the files or the strings when they are published."Democracy is the worst form of government there is, except for all the others that have been tried." Sir Winston Churchill
Comment
-
Just figured out that I just need to compile the game with MSVC 6 instead of MSVC 9 and the AI doesn't lose its list of available units.Unfortunately I have no idea whether this is caused by a defect standard library as we have in MSVC 6 or some other problems in the source code that just show up in MSVC 9.
-MartinCiv2 military advisor: "No complaints, Sir!"
Comment
-
Most likely the latter. MSVC6 allows some constructs (e.g. access of non-static member variables from within static functions in a lot of network code, using iterators as pointers in the strategy code) that are not supposed to work any more with MSVC2005/2008.
Comment
-
Originally posted by Fromafar
e.g. access of non-static member variables from within static functions in a lot of network code,That's indeed ugly.
Originally posted by Fromafar
using iterators as pointers in the strategy code
Originally posted by Fromafar
that are not supposed to work any more with MSVC2005/2008.
-MartinCiv2 military advisor: "No complaints, Sir!"
Comment
-
Maybe, maybe not. I don't know what draft version of the C++ standard Microsoft had to base their work on when starting the implementation of MSVC6.
But anyway, it is not their fault that Activision misused the MSVC6 implementation. And some of the strategy code is incorrect (e.g. lacking "deep" copy constructors) - even when iterators would have been pointers. This will happen eventually when adding civilizations (by revolts). It works fine as long as the vectors have not reached full capacity, and push_back is just adding at the end. Once a resize is necessary, it will start to break - after copying to the new block and destroying the objects from the old block.
Comment
-
Have not posted here in a while.But keep a eye out for who is still around.Playtest has made it worth firing up the game again.The AI is doing better job of defending its cities and keeps a good border defense.Holding ground when you throw many stacks of units which makes for hard game.One weak point is the AI is passive when comes to diplomacy.All AI factions no matter the personality will except a peace treaty.In the 1.11 version at least half the AI factions would would not allow it till you had built up trust or you were much stronger then them.Been looking at the file- Diplomacy text-found in the aidata section.Three things should be looked into-DiplomacyEvent-Decay,how long to build trust or lose it next Proposal Element section.In the mod Apolytonpack looking at the same file seems to have intresting settings.At least its a guide.Going to make a new file and test it out.I dont want to make the AI,s aggresive with each other but plug in holes so it cant be hurt by diplmatic tactics by the human player.I dont know if things could be changed in the code of the playtest to improve diplomacy.At least some tweaking is needed.
Comment
-
Originally posted by Protra3211 View PostOne weak point is the AI is passive when comes to diplomacy.All AI factions no matter the personality will except a peace treaty.In the 1.11 version at least half the AI factions would would not allow it till you had built up trust or you were much stronger then them.
Been looking at the file- Diplomacy text-found in the aidata section.Three things should be looked into-DiplomacyEvent-Decay,how long to build trust or lose it next Proposal Element section.In the mod Apolytonpack looking at the same file seems to have intresting settings.At least its a guide.Going to make a new file and test it out.Call to Power 2: Apolyton Edition - download the latest version (12th June 2011)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Comment
-
Such a good job I messed up our PBEM game(and maybe more yet...)
Call to Power 2: Apolyton Edition - download the latest version (12th June 2011)
CtP2 AE Wiki & Modding Reference
One way to compile the CtP2 Source Code.
Comment
Comment