
The odd thing was that about half the times I did this, a viper interceptor launched and flew in a dead straight line straight into the navigation buoy, destroying both.
I'm not sure that's supposed to happen, is it?

Moderators: winston, another_commander
I saw that behavior when testing early versions of Furball. In that case it was because I'd set the AI of the launched police ships to policeInterceptAI.plist. Dumb thing to do, because (1) that AI is supposed to be stacked on top of another one (like route1patrol or whatever), and (2) it expects to be entered with a target set, which I did sometimes and didn't other times.Smivs wrote:Now here's a funny thing. This afternoon I spent a while launching, turning around and firing at the station (don't ask).
The odd thing was that about half the times I did this, a viper interceptor launched and flew in a dead straight line straight into the navigation buoy, destroying both.
I'm not sure that's supposed to happen, is it?
I've been playing with an Asp variant (potentially for use in Ramirez' Iron Raven OXP) so I added the necessaries to the shipdata.plist of my shipset to generate some of these as system vessels...I refered them to the Route1patrol.AI and gave them the role 'Interceptor'.Commander McLane wrote:What are you doing exactly?
No. No station-tweaking here.Commander McLane wrote:Hmmm. According to my tests defense ships do launch with policeInterceptAI and a stack-depth of 0, and they do not crash into the buoy, but circle around me and fire at me. So everything seems fine.
However, I am only seing ordinary Vipers as defense ships. I don't know why you get Viper Interceptors, and whether this makes the difference. In fact, Viper Interceptors should never be launched as defense ships, and cannot in unaltered main stations. Have you tweaked the station to do so?
IIRC, it depends on the system tech level, or more specifically what type of station you're talking about (cori, dodec or ico). The higher tech stations have VI's as defenders.Commander McLane wrote:Hmmm. According to my tests defense ships do launch with policeInterceptAI and a stack-depth of 0, and they do not crash into the buoy, but circle around me and fire at me. So everything seems fine.
However, I am only seing ordinary Vipers as defense ships. I don't know why you get Viper Interceptors, and whether this makes the difference. In fact, Viper Interceptors should never be launched as defense ships, and cannot in unaltered main stations. Have you tweaked the station to do so?
Yes, in higher tech systems it becomes more likely that interceptors are used for police tasks. Both for patrol ships as well as station launching ships. But it does not show when examining the ships with the console because on adding all primaryRoles are switched to "police".Thargoid wrote:IIRC, it depends on the system tech level, or more specifically what type of station you're talking about (cori, dodec or ico). The higher tech stations have VI's as defenders.Commander McLane wrote:However, I am only seing ordinary Vipers as defense ships. I don't know why you get Viper Interceptors, and whether this makes the difference. In fact, Viper Interceptors should never be launched as defense ships, and cannot in unaltered main stations. Have you tweaked the station to do so?
It was an Ico station, so a high TL.Thargoid wrote:IIRC, it depends on the system tech level, or more specifically what type of station you're talking about (cori, dodec or ico). The higher tech stations have VI's as defenders.
Everything but my memory. I tend to forget the details of my errors once I've put them behind me. Thankfully git is not so, er, human. This reproduces the buoy-smack 100% of the time, in both 1.74.2 and r3734:Commander McLane wrote:Hmmm. According to my tests defense ships do launch with policeInterceptAI and a stack-depth of 0, and they do not crash into the buoy, but circle around me and fire at me. So everything seems fine.
Code: Select all
var newShip = System.mainStation.launchShipWithRole("pirate", true); newShip.switchAI("interceptAI.plist");
One thing is missing:caracal wrote:Enter the following command in the debug console:[*]Big bada-boom! You can make it happen faster by adding newShip.desiredSpeed = 1.0; to the end of that line.Code: Select all
var newShip = System.mainStation.launchShipWithRole("pirate", true); newShip.switchAI("interceptAI.plist");
So I was close, but it was interceptAI, not policeInterceptAI, and it was the pirates, not the cops. D'oh!
Code: Select all
newShip.target=PS;
Code: Select all
"ATTACK_SHIP" =
{
ENTER = (performAttack);
"ENERGY_LOW" = ("setStateTo: FLEE");
"INCOMING_MISSILE" = (fightOrFleeMissile, "setStateTo: FLEE");
"TARGET_DESTROYED" = ("setStateTo: DOCK_WITH_STATION");
"TARGET_LOST" = ("setStateTo: CLEAR_STATION");
};
"CLEAR_STATION" = {
ENTER = (getWitchspaceEntryCoordinates, setDestinationFromCoordinates, "setDesiredRangeTo: 100.0",
"setSpeedFactorTo: 0.75", performFlyToRangeFromDestination, "pauseAI: 5");
UPDATE = ("setStateTo: DOCK_WITH_STATION", "pauseAI: 5.0");
};
Yes, I think all the "interceptor" AIs (intercept, policeIntercept, and traderIntercept) expect to have a target set, since they all start out by doing a performAttack. The example code I posted was intended to reproduce the buoy crash, not to present an example of good AI code.Eric Walch wrote:One thing is missing:Because the ship is expecting to have a target.Code: Select all
newShip.target=PS;
I direct your attention to this portion of my comment:Eric Walch wrote:However, without a target the AI should get a "TARGET_LOST" message after launch, induced by the "performAttackTarget" command and the code should be able to deal with it. Maybe vipers start to fast and slowdown not in time for the buoy when loosing the target.
So not Vipers, or any other police, but traders, at least in my case. The police I launch in Furball need no assistance in finding and attacking the Fugitives.caracal wrote:... it was the pirates, not the cops.