Wacky powerful barbarians?

clearbeard

King
Joined
Dec 17, 2004
Messages
691
Location
Delaware, USA
Okay, so I get they're supposed to be Antarans, and more powerful on a ship-for-ship basis than what you have, at least early in the game. But really, having them stroll around with Battleship II's and Invasion Ship III's on turn 98 when I can barely build Destroyer I's and just settled my first extra-solar colony seems a little overpowered. I'm playing on marathon game speed, Monarch (Impossible) setting, normal barbarians, so maybe I'm just in over my head.

In keeping with the flavor of the Antarans from MoO2, they were powerful ship-for-ship, and an annoyance in the early-mid game, but each incursion never damaged more than one colony, and not all that badly at that. Here, a single Battleship that wandered near enough to my empire to notice me destroyed my entire fleet of 5 destroyers and 1 defender, and destroyed both of my star systems (game over). I don't mind the quantity of "barbarians" inherent in the large fog of war, it's the _quality_ that is... disappointing....

My $0.02

Dave
 
I believe this is not something that was changed in MOO2Civ and is the way the barbarians work in normal Final Frontier. It's probably something to do with the spawn rate or the barbarians, since there are a lot more unexplored tiles you can't see then there are in normal civ.
 
Is there a way to limit what ships the barbarians have access to then? In regular BtS games I've never seen them spawn with more than longbowmen or similar level units. This would be like exploring the New World in the Age of Sail and encountering barbarian cities defended by Infantry, and marauding bands of Marines and Modern Armor! I haven't played enough of the FF base to know if this phenomenon is normal there.

Ideally I could even imagine 2 different sets of barbarians, pirates and Antarans, but I'm not sure how hard that would be to implement. Pirates would be numerous and spawn in the large numbers they do now, but be limited to nothing heavier than, say, an un-upgraded cruiser (like the longbowmen).

Special Antaran units or even fleets from the high end of the tech tree would spawn much less frequently, perhaps even scripted to show up at set times, in increasing force and numbers (would have to be carefully calibrated to account for game speed). That would preserve more of the flavor.

I hope my suggestions are welcome. I'd be happy to offer more, particularly as to gameplay balance as I play more. As I become more familiar with Civ4 modding I may even be able to offer suggestions as to how to FIX things, instead of just wish lists! :lol:

Cheers
 
Well, Final Frontier is just weird in general (I mean it's code).

Pirate spawning in FF is handled in the python file CvFinalFrontierEvents.py, under a function called def doPirateSpawning, where it gives a list of the units that can be spawned and which part of the game to spawn them in.

They managed to have multiple barbarian civs in Fall Further, for Fall from Heaven 2, but it was pretty hard to manage and apparently made the game pretty unstable.
 
I took a look at the CivilizationInfos.xml file for grins (the XML's are about all I am comfortable with so far). There's a listed civilization for "TEH_ALIENZ" which appear to be a second barbarian civ, added after the default one from Final Frontier. I think it may be having this second "barbarian" entry that is causing the higher rate, and the higher level of spawned units.

The plain barbarians have a bunch of <UnitType>NONE</UnitType> entries to prevent them from having, say, Carriers, but teh alienz can have anything. Further, having two sets may in fact double the rate of overall barbarian spawning. I'll try commenting out that section and starting up a game to see what happens.
 
You can do that, but "Teh Alienz" I think are what NCCSavage originally intended for an Antaran civ; they have no effect on barb spawning, because they're not implemented yet (so no Titans for barbs). What TC01 said about the python file CvFinalFrontierEvents.py (with its function called def doPirateSpawning) makes more sense. This and the fact that in FF mods there are a lot more squares with fog of war then in a regular game - and that you're playing on Impossible level - seems basically to explain the barb nuisance. You can ofcourse choose the No Barbs option if you like. For planetary defense you should get Battleoids ASAP (they usually destroy an assaulting Battleship I) plus ofcourse missiles and fighters/bombers. If you've played a couple of games, you'll know that the first barbs appear around turn 50 and by turn 100 they can become dangerous (with Battleship Is, Destroyer IIs and Invasion Ship IIs). That's basically just canon MoO II - but actually the barbs are slightly less powerful, because in MoO II the early Antaran attacks you just have to take what they throw at you (losing freshly founded colonies and what not).
 
The actual code says that Battleships shouldn't be appearing until the end of the first third of the game. Before that, it's all Destroyers, Invasion Ships, and Planetary Defense ships (with an emphasis on planetary defense ships and invasion ships), and after that, the emphasis flips to Destroyers, and for the final "third" of the game, it flips to Destroyers and Battleships.
 
You're right about Teh Alienz, that had no effect. In my new game (turn 120) I just lost a scout to a barbarian battleship, so they're still spawning. I'm curious about the "thirds" of the game though, and how that is counted. From the tech tree, I'd say I'm about 1/5 of the way through, and have met 3 destroyer III's and a battleship I. My colonies have successfully hidden from the battleships so far, and held off a solo destroyer raid, but the Meklar's didn't fare so well, having just been wiped out by barbarians. I'm handily in the lead over my competitors, btw, so I'm loathe to play on a lesser difficulty. Perhaps I'll disable the barbs next game, see how the AI fares.

Other thoughts:
Construction feels very slow to me, both on tile improvements and city buildings. That's compared to tech advancement anyway. It's a marathon game, so I know everything is supposed to be slow. I may try tweaking that a bit.

Is there a way to disable the inflation of building costs, within a city? It seems counter-intuitive that building a second automated factory on another planet, for instance, would take longer than the first, when you have the one working to speed things. I haven't yet found where in the game files that feature is controlled to tweak it to my liking. Any pointers would be welcome.
 
You're right about Teh Alienz, that had no effect. In my new game (turn 120) I just lost a scout to a barbarian battleship, so they're still spawning. I'm curious about the "thirds" of the game though, and how that is counted. From the tech tree, I'd say I'm about 1/5 of the way through, and have met 3 destroyer III's and a battleship I. My colonies have successfully hidden from the battleships so far, and held off a solo destroyer raid, but the Meklar's didn't fare so well, having just been wiped out by barbarians. I'm handily in the lead over my competitors, btw, so I'm loathe to play on a lesser difficulty. Perhaps I'll disable the barbs next game, see how the AI fares.

Well, the code used is this:

Code:
if (CyGame().getElapsedGameTurns() < (CyGame().getMaxTurns() / 3)):
	aiUnitList = aiUnitList1
elif (CyGame().getElapsedGameTurns() < (CyGame().getMaxTurns() * 2 / 3)):
	aiUnitList = aiUnitList2
else:
	aiUnitList = aiUnitList3

However, Turn 120 is just before a third of the game. There are 400 turns in MOO2Civ. Turn 133 should be the third game turn...
 
Hmm... Well, I have the time victory condition turned off (I don't like to feel rushed), so I suppose that could mess things up with those formulae. Next time I'll try without doing that. Thanks for the reference!
 
Other thoughts:
Construction feels very slow to me, both on tile improvements and city buildings. That's compared to tech advancement anyway. It's a marathon game, so I know everything is supposed to be slow. I may try tweaking that a bit.

Is there a way to disable the inflation of building costs, within a city? It seems counter-intuitive that building a second automated factory on another planet, for instance, would take longer than the first, when you have the one working to speed things. I haven't yet found where in the game files that feature is controlled to tweak it to my liking. Any pointers would be welcome.

I'd agree construction is slow initially; once your systems are built up on the other hand planetary buildings and ships can be finished in anything from 1-3 turns. (There's been a complaint about that actually.)

A bare planet has a very low production initially, yes. I think it's intentional as it is conform MoO. But if you can tweak it, I'd be interested in the end result, so please post about it if yo do.

PS: You can increase production with Pacifism, Monarchy, Mechanized Workforce and Industrial Economy; with Slave State you can sacrifice pop to rush-build. (Obviously on a pop 1 planet none will have a significant effect, unless you combine Pacifism/Mech. Workforce/Ind. Economy.)
 
Woo Necro!
Anyway, I was wondering if the turn barbs start spawning scales by game speed as its supposed to? In the single player of 5.0 beta I had on my old toxic hard drive I ran into a battleship II on about turn 75 of an epic speed game.

I'm not absolutely positive it was a battleship II since I don't have the save but that and the turn I saw it would both be outside the rules outlined by TC01 above.

Remember there was a fix in patch 3.17 for uber barbs appearing too early in FF? I wonder if it worked correctly...

EDIT: Difficulty was on hard. I remember somewhere you mentioned recommended game settings and advised raging barbs so I always play with that option on.
 
Yes, I wondered where this thread went... :mischief: I have been thinking about über barbs and only noticed this phenomenon myself with the Raging Barbarians option turned on. Also, although the game can be played on different speeds, I'd stick to Normal/Epic. Now, apparently you also get raging barbarians on higher than Hard levels very early on; so far I have not been able to confirm this though. It might help if people added the exact game they are/were playing for, say, Battleships II appearing after turn 100 or so.

As for the 3.17 barb fix: as there has been no meddling with barb units, the issue should also be noticeable in FF proper (or FF Plus), I think.
 
I don't think this happens in FF or FF Plus...

I looked at your CvFinalFrontierEvents.py and it does not appear to be based on the current version.

The part that is specifically relevant to this is, in your version:
Code:
					# Which 1/3rd of the game is it?
					if (CyGame().getElapsedGameTurns() < (CyGame().getMaxTurns() / 3)):
						aiUnitList = aiUnitList1
					elif (CyGame().getElapsedGameTurns() < (CyGame().getMaxTurns() * 2 / 3)):
						aiUnitList = aiUnitList2
					else:
						aiUnitList = aiUnitList3
but the current version (as of 3.19) of FF has:
Code:
					# Which 1/3rd of the game is it?
					if (CyGame().getElapsedGameTurns() < (CyGame().getEstimateEndTurn() / 3)):
						aiUnitList = aiUnitList1
					elif (CyGame().getElapsedGameTurns() < (CyGame().getEstimateEndTurn() * 2 / 3)):
						aiUnitList = aiUnitList2
					else:
						aiUnitList = aiUnitList3

I don't know what the actual difference between getMaxTurns and getEstimateEndTurn, but it could explain why you are getting the problem.

There are a few other differences as well (even excluding differences based on the different traits and such).
 
Here's the relevant code in the SDK (in CvGame::init()) that handles these two functions:

Code:
	if (getMaxTurns() == 0)
	{
		iEstimateEndTurn = 0;

		for (iI = 0; iI < GC.getGameSpeedInfo(getGameSpeedType()).getNumTurnIncrements(); iI++)
		{
			iEstimateEndTurn += GC.getGameSpeedInfo(getGameSpeedType()).getGameTurnInfo(iI).iNumGameTurnsPerIncrement;
		}

		setEstimateEndTurn(iEstimateEndTurn);

		if (getEstimateEndTurn() > getGameTurn())
		{
			bValid = false;

			for (iI = 0; iI < GC.getNumVictoryInfos(); iI++)
			{
				if (isVictoryValid((VictoryTypes)iI))
				{
					if (GC.getVictoryInfo((VictoryTypes)iI).isEndScore())
					{
						bValid = true;
						break;
					}
				}
			}

			if (bValid)
			{
				setMaxTurns(getEstimateEndTurn() - getGameTurn());
			}
		}
	}
	else
	{
		setEstimateEndTurn(getGameTurn() + getMaxTurns());
	}

So "getMaxTurns" looks like it actually returns the number of turns remaining in the game, whereas getEstimateEndTurn gets the total number of turns.
 
Thanks for looking into that. ;)

"getMaxTurns" looks like it actually returns the number of turns remaining in the game, whereas getEstimateEndTurn gets the total number of turns.

And having getMaxTurns return an identical value to getEstimateEndTurn should then fix the issue, I'm guessing?
 
Don't change what getMaxTurns does. It does what it is supposed to do. Change the Python to match what the current version of FF does, which is to use getEstimateEndTurn.

You ought to run a difference on your current CvFinalFrontierEvents.py and the one in the current version of Final Frontier. Then you might want to change everything (or maybe just some of them) that is different to match the current version, except the stuff that is supposed to be different due to using different traits and buildings and units and such. In addition to fixing the barbarian spawning, the one thing I can remember that would change is that it would have missiles stay at the starbase that created them.
 
Dunno... starbases are generally stronger as is already (and they're upgradable). :dunno:

@God-Emperor: Thanks!
 
I havn't actually played MOO2Civ yet (downlaoded, but not yet played), so the following may not be entirely applicable, but...

A starbase in the hands of the AI is quite weak unless it is very close to one of their star systems. The reason is that it never puts a single squadron on one, so you can just wipe them out with squadrons yourself without ever risking a ship or squadron. The severity of this can be reduced slightly be giving the starbase units some chance to intercept - I have tested a 20% chance and it doesn't solve the problem, of course, but it does slow the process down and will occasionally cost you a squadron or two before the starbase dies.

I should also point out that I don't think I have ever seen the AI upgrade a starbase. They are always just the regular version, never the delta or omega.

Also, the AI does seem to move at least some of the missile off of the starbases to their systems - or if they don't, it doesn't use the ones based on starbases very often.

FF based mods really need AI improvements to get the AI to put missiles on cruisers (since it never does) and squadrons on starbases and carriers (since it never does that either). The unit AIs for units that carry missiles and squadrons are sea based, and if the unit is on land they just fail to function properly for no good reason. I have no idea why it would even bother checking what terrain it is on (or what the domain of the unit is).
 
Top Bottom