Fulqrum Publishing Home   |   Register   |   Today Posts   |   Members   |   UserCP   |   Calendar   |   Search   |   FAQ

Go Back   Official Fulqrum Publishing forum > Fulqrum Publishing > IL-2 Sturmovik: Cliffs of Dover > FMB, Mission & Campaign builder Discussions

Reply
 
Thread Tools Display Modes
  #1  
Old 10-02-2011, 06:42 PM
salmo salmo is offline
Approved Member
 
Join Date: Mar 2011
Posts: 632
Default AI actors: airport.cpp, baseAntiAir.cpp, bus_car.cpp, car.cpp, emrg_car.cpp

Don't you just love the way that mission builders are kept in the dark (with no FMB documentation) & have to figure things out for themselves?

I have some question regarding the AI section in FMB. There are three types of AI: Airfield, AntiAir, Ground. To these you can apply six AI actors: airport.cpp, baseAntiAir.cpp, bus_car.cpp, car.cpp, emrg_car.cpp, powerOn.cpp .... Can anyone shed light on these *.cpp elements?

powerOn.cpp
I believe this is used for searchlights. I've put searchlight & generator within the poweron.cpp radius & "set" the searchlight to the AI control but no searchlights go on when enemy planes overhead at night-time.

car.cpp
I believe that car.cpp gets a vehicle to follow a sline road back & forwards indefinitely, but I can't seem to get it to do this. I've positioned a spline roadway within the car.cpp radius, placed a vehicle within the car.cpp radius, "set" the vehicle to the AI control, but no joy

Also, anyone know how to "attach" a trailer to a moving vehicle?
__________________
When one engine fails on a two engine bomber, you will always have enough power left to get to the scene of the crash.

Get the latest COD Team Fusion patch info HERE

Last edited by salmo; 10-02-2011 at 06:48 PM.
Reply With Quote
  #2  
Old 10-02-2011, 06:49 PM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

@power on
Do you have attach a Airfield AI also?

@car
do you select the spline with the target command (waypoint)
Reply With Quote
  #3  
Old 10-02-2011, 06:52 PM
salmo salmo is offline
Approved Member
 
Join Date: Mar 2011
Posts: 632
Default

Quote:
Originally Posted by FG28_Kodiak View Post
@power on
Do you have attach a Airfield AI also?
Forgot to mention, I also have a baseAntiAir.cpp

Quote:
Originally Posted by FG28_Kodiak View Post
@car
do you select the spline with the target command (waypoint)
You can set the vehicle to the sline roadway, but the vehicle just travels down the roadway (one-way) & doesn't turn around & come back
__________________
When one engine fails on a two engine bomber, you will always have enough power left to get to the scene of the crash.

Get the latest COD Team Fusion patch info HERE

Last edited by salmo; 10-02-2011 at 06:55 PM.
Reply With Quote
  #4  
Old 10-02-2011, 06:57 PM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

Quote:
Originally Posted by salmo View Post
Forgot to mention, I also have a baseAntiAir.cpp
No not this there must be a entry called AI, in the menu you select your planes, trains etc. Sorry have a german Version so i don't know exactly how this menues looks in other language versions. Make a Airfield Ai select the radius and connect the generators with this AI via target selection.
Quote:
Originally Posted by salmo View Post
The spline roadway cannot be set to the vehicle, FMB wants to set to the AI car.cpp control.
Yepp this is correct, set the actor to NPC and car.cpp then the car follow the Spline Road to its end and vice versa after you select a waypoint target.

Attachment sample searchlight mission
Attached Files
File Type: zip searclights_01.zip (749 Bytes, 71 views)

Last edited by FG28_Kodiak; 10-02-2011 at 07:04 PM.
Reply With Quote
  #5  
Old 10-02-2011, 07:15 PM
salmo salmo is offline
Approved Member
 
Join Date: Mar 2011
Posts: 632
Default

OK, I see how the searchlights are setup. Can you supply a car.cpp example please?
__________________
When one engine fails on a two engine bomber, you will always have enough power left to get to the scene of the crash.

Get the latest COD Team Fusion patch info HERE
Reply With Quote
  #6  
Old 10-02-2011, 07:27 PM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

A mission i made with splineroads NPC with car.cpp
Attached Files
File Type: zip stuka.zip (15.3 KB, 53 views)
Reply With Quote
  #7  
Old 10-03-2011, 09:15 AM
Mington Mington is offline
Approved Member
 
Join Date: Apr 2008
Posts: 29
Default

Kodiak may I ask please?

Quote:
if (!OverEnemyTeritory && GamePlay.gpFrontDistance(1, PlayerPlane.Pos().x, PlayerPlane.Pos().y) <= 0)
OverEnemyTeritory, is this a Maddox variable? I do not see this variable declared before it is used, is why I ask

This statement in the function/method- can you explain please how it works?

I can see that after this procedure I know if I am in enemy or friendly territory, this is very valuable for all of us, so I must ask you for the clues- thanks

Ming
Reply With Quote
  #8  
Old 10-03-2011, 09:49 AM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

no its not a maddox variable, i declare
bool OverEnemyTeritory = false;
at the beginning of the script.
with
public override void OnTickGame()
{
//Point3d P = PlayerPlane.Pos();

if (!OverEnemyTeritory && GamePlay.gpFrontDistance(1, PlayerPlane.Pos().x, PlayerPlane.Pos().y) <= 0)
{
GamePlay.gpHUDLogCenter("Sie befinden sich nun über Feindgebiet!");
OverEnemyTeritory = true;
}
else
{
OverEnemyTeritory = false;
}
}

this checks if the plane is near or over enemy teritory
GamePlay.GamePlay.gpFrontDistance(int army, double x, double y);
returns a double that gives the distance to enemy front (if exist)
it returns 0 if you are over enemy teritory or the area you specify.
if you would know the distance to friendly teritory simply set for army the same army you are.
Before you should check with GamePlay.gpFrontExist() (returns bool) if a front (frontmarkers) exist.

Last edited by FG28_Kodiak; 10-03-2011 at 09:52 AM.
Reply With Quote
  #9  
Old 10-03-2011, 03:19 PM
Lookaloft Lookaloft is offline
Approved Member
 
Join Date: Dec 2010
Posts: 38
Default

Kodiak, bitte um Entschuldigung.
Es gelingt mir nicht die Stuka's aufsteigen zu lassen.

Lookaloft.
Reply With Quote
  #10  
Old 10-03-2011, 03:31 PM
FG28_Kodiak FG28_Kodiak is offline
Approved Member
 
Join Date: Dec 2009
Location: Swabia->Bavaria->Germany
Posts: 884
Default

Im FMB bei den Stukas den Haken bei Untätig rausnehmen, ist ne ältere Multiplayer Übungskarte, die ich für mein Geschwader gebastelt habe. Und ich nur auf die Schnelle gepostet habe da jemand nach einem Beispiel für Fahrzeuge und Spline Straßen gefragt hat.

Du kannst auch das Script einbauen das ich hier gepostet habe:
http://forum.1cpublishing.eu/showthread.php?t=26402
damit kannst du die Flieger über das Kommunikationsmenü starten lassen.
Reply With Quote
Reply


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 Off

Forum Jump


All times are GMT. The time now is 03:05 PM.


Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright © 2007 Fulqrum Publishing. All rights reserved.