-
Announcements
-
Registrations temporarily disabled 11/03/2024
New registrations are disabled until November 11, 2024.
-
-
Content count
397 -
Joined
-
Last visited
-
Days Won
8
Content Type
Profiles
Forums
Calendar
Gallery
Downloads
Store
Everything posted by mue
-
Strike Fighters 2 Tutorial: Radars, RWR, and Missiles
mue replied to GKABS's topic in Thirdwire: Strike Fighters 2 Series - General Discussion
It seems as he started his SF2 video series the Thirdwire store were down. From the description of his first SF2:Vietnam video: I think at this time he thought the SF2 games were abondoned. But later as the Thirdwire store were up again, although he now mentions that you can purchase the games from the store, he still provides the link to the illegal copies.- 26 replies
-
- 1
-
Strike Fighters 2 Tutorial: Radars, RWR, and Missiles
mue replied to GKABS's topic in Thirdwire: Strike Fighters 2 Series - General Discussion
I really like his videos. What I don't like is, that he provides a link to a download site where you can download illegal copies of all SF2 games.- 26 replies
-
- 2
-
Why didn't the World War 2 era take off for SF2?
mue replied to swambast's topic in Thirdwire: Strike Fighters 2 Series - General Discussion
I'm curious what features FE has what SF doesn't have? Regarding flight models, I would think the (prop) FM in both games are (nearly) identical. Maybe the AI or campaign system is different? What else? -
Why didn't the World War 2 era take off for SF2?
mue replied to swambast's topic in Thirdwire: Strike Fighters 2 Series - General Discussion
The stall modeling in SF2 (e.g. the Stall*TableData) is still a big unknown to me. The regime between -AlphaDepart and AlphaDepart I mostly understand. Currently I'm implementing the SF2 P-51D FM in JSBSim/FlightGear. In the normal non-stall/non-departure regime it already "feels" quite similar to SF2. But I still have to run some validation tests. Yes, while sifting through the TW forum archives I noticed that back then there were several FM guys active. And according to the questions they have asked, it seems they know that they are doing. I think one guy was from avhistory.org and wanted to port CFS? flight models to SF. -
Since I had a look into the shaders I also extended the drawing distance for fading objects. The modified object shaders: Update V1.1: fixed incorrect calculation of object distances outside the view center. sf2_extfadingdistance_shaders_v1.1.zip -Copy the shader files (*.fx) into the Terrains\<terrain> folder. -Adjust the variables fadeStartDistance and fadeLength to your likings in the follwing code section of both shader files: float fade_with_distance(float FadeDist) { float fade_alpha = 1.0; //mue: distance at which the object still has alpha = 1.0 (full opaque) const float fadeStartDistance = 16000.0; //in meters //mue: fadeStartDistance + fadeLength = distance at which the object has alpha = 0.0 (full transparent) const float fadeLength = 3000.0; //in meters const float fd = FadeDist - fadeStartDistance; if (fd > 0.0) { fade_alpha = clamp(0.0, 1.0, 1.0 - (fd / fadeLength)); } return (fade_alpha); } -Set in flightengine.ini DetailMeshSize so that (fadeStartDistance + fadeLength) / terrain_tile_size < DetailMeshSize -Set in options.ini ObjectsFade=false -Enjoy your flight!
-
Trackir and zoom in view
mue replied to MarcQ's topic in Thirdwire: Strike Fighters 2 Series - General Discussion
In your TrackIR profile (in the TrackIR software) disable the z-axis. -
Maybe I'm getting old...but, how can I embed youtube videos in forum posts? I couldn't find it in the editor. I know I have done it in the past but that was before the site update.
-
nose gear door decal issue
mue replied to daddyairplanes's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Note: The LODViewer has a bug. If you reload textures while an animation is "shown" (like in the first post, where the gear is extended and the gear doors are open) then the decals are (erroneously) applied to the current (animated) position of the mesh and not the original one. -
Custom Aircraft Sounds Info
mue replied to Menrva's topic in Thirdwire: Strike Fighters 2 Series - Knowledge Base
AFAIU: If you want proper 44100Hz sounds, you have to change ALL (incl. stock sounds) to 44100 Hz. -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Yes GPL means General Public License. Only if you want your aircraft included in the official FlightGear hangar "FGAddon", then the GPLv2 is obligatory. Otherwise you can license your model as you like (assumed the whole model is your own creation and don't contain or uses GPL content) and use it in FlightGear. -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Correct! But the buyer/recipient also get the same rights as you from the GPL. He can use/modify/distribute/sell the content under the GPL. His right to modify the content also means that you have to give him the "source code" of your content. The GPL says about the source code: "The source code for a work means the preferred form of the work for making modifications to it." I think (maybe Richard can confirm or correct me here) that means, that if you sell the lod file then you must also include the e.g. *.3ds or equivalent file. -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
For those who don't know the GPL: If you use GPL content for your aircraft then the derived work, i.e. your aircraft, is also automatically licenced under the GPL. That means you can not distribute your aircraft under the CombatAce Modders License Agreement, because the CombatAce Modders License Agreement forbids the sale of the content (as payware). However the GPL doesn't allow those restrictions. Under the GPL the user has the right to sell the content! -
Further FM questions
mue posted a topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Currently I'm trying to reverse engineer the SF2 flight model. I stumbled over the stall tables. Does anyone know how the stall tables (StallLiftTable, StallDragTable and StallXacShiftTable) work? As an example here are the StallLiftTable and StallDragTable from the P-51D and F-4B inner wings: I assume the abscissa is alpha and the ordinates are factors for some lift or drag coefficients. Correct? What are the lift and drag coefficients? CLmax for lift and StallDrag for drag? But the drag table looks odd. I would have assumed that at alpha = -90 degree and +90 degree the drag factor would have its maximum. When are these tables used? If alpha > AlphaDepart? -
Further FM questions
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Maybe you FM gurus knew this already, but I only recently noticed that: Internal fuel and the pilot (and internal ammo too?) don't change the center of gravity (cog) of the aircraft. The additional weight will always be placed at the cog. Only the inertia tensor (Ix,Iy,Iz) is changed as follows: Ix = (mass_total/mass_empty)*Ix_empty, Iy = (mass_total/mass_empty)*Iy_empty and Iz = (mass_total/mass_empty)*Iz_empty -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Ok, now I understand. I forgot/haven't considered that you use the official multiplayer network with it's civilian traffic. -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Since the multiplayer protocol is open, you always have the risk of cheating. I don't understand how releasing the python code increases the risk of griefing? I assumed the FlightGear combat community isn't that big, means you know each other, and therefore cheating isn't that much of a problem. -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
TK posted this in Sep. 2007 in his forum. See this forum thread: LOD file format. - Third Wire Forums.htm. And I wrote already that he used obfuscation methods later. Just to clarify: I don't want to distribute any assets. I only want to use assets from the game I purchased or assets from this community within FlightGear. For this I plan to write a tool that automatically converts the SF2 data ini files into FlightGear files (Edit: the .lod file itself can be directly loaded into FlightGear via the OSG pluging, so no conversion of lod files needed). Again: no distribution of any assets! I think that's legal within TWs EULA and CombatAce Freeware License Agreement. And I see benefit for Thirdwire and the community: Maybe some will buy SF2 games if they know they can use the aircraft in FlightGear too. And maybe FlightGear can be enhanced to be a fully community driven open source air combat simulator. Then why not use the already by this community created assets? And yes, everybody has access to FlightGear assets. Most FlightGear assets are released under GPL or other "free" licenses. I was told recently, that FlightGear aircraft were already converted to SF2. -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Yes...if engineers make games... I've implemented an OSG file loader plugin for the SF2 3D model file format (*.lod). So the SF2 3D models can be directly loaded into FlighGear. I'm still not sure if I should make the LOD loader plugin open source. I myself wouldn't mind, but I don't know what the game developer and the 3D modders would think about it. In the past (Sep 2007) the game developer himself wrote in a forum post after he was asked about documentation about the LOD format: "...although we didn't publish LOD format, we also don't stop people form reverse engineering it either ;) Its not encrpyted or anything, so its fairly straight forward to figure out..." Unfortunately later LOD format versions contain some obfuscation, so maybe his opinion has changed? I also think the 3D modders consider the (non published) LOD format as a kind of intellectual property protection. But keeping it closed source would mean it can not be officially distributed/supported by FlightGear and it would only work with FlighGear versions/platforms for which I compile/release the binary (e.g. Windows). If I understand correctly, only hit notifications are transmitted, but no bullet or missile positions? Does that mean, that no tracers or missiles from other aircraft are visible? Is damage calculated by the "receiver" or "sender"? Do you have a link or pointer to the "automated enemy" code and the Python AI system? Thank you for the clarification. -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Richard, thank you for coming to CombatAce and offering assistance regarding (military) FlightGear. I'm fascinated by the flexibility of FlightGear and JSBSim. Currently I'm implementing the Strike Fighters 2 FDM and the (very light) systems in JSBSim. The developer of SF2 has an aerodynamic engineering background and therefore his FDM uses "standardized" aerocoefficients (My notes about the SF2 FDM: sf2_fdm_notes.pdf). Because of the "openness" of SF2 the aerocoefficients of each component (LeftWing, RightWing, LeftOuterWing, RightOuterWing, LeftStab, ...) are easily accessible from aircrafts data text (*.ini) files. Currently I'm doing the FDM/systems "conversion" to FlightGear/JSBSim manually, but I think this could be done later automatically by a tool. As I wrote, I haven't looked in detail at the combat stuff in FlightGear yet. Maybe you can give a short overview of the features of the "OPRF" combat system (and maybe "Bombable")? What weapons are supported (guns, rockets, (guided) missiles, bombs)? I assume it works in multiplayer? How is the damage modelling? Since you mentioned SAMs, do you support AAA/Flak too? How sophisticated are the automated (AI?) enemy aircraft? -
target area editor green shape ghost
mue replied to GKABS's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
I think it's a TOD object (a tree) and therefore not listed in the target list window. You can show/hide TOD objects via View->Show TODs or the respective toolbar button. TOD objects are contained in *.tod files. TOD files are associated with tiles (textures) via the <terrain>_data.ini. -
Further FM questions
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
This is the current state of my attempt at reconstructing the SF2 FDM. Maybe someone find the information useful. I welcome comments and corrections. sf2_fdm_notes.pdf -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Maybe it seems complicated and verbose but it's very flexible. It's documented there: http://wiki.flightgear.org/Howto:Animate_models I think it should be possible to automatically convert SF2 ini files into FlightGear xml files. No, the axis definition is not binary. The axis component values x,y,z are floating point values. In this case 1.0 and 0.0. Those data are entries of an interpolation table: <interpolation> <entry> <ind>-6000.0</ind> <dep>-258.6</dep> </entry> <entry> <ind>-4000.0</ind> <dep>-219.3</dep> </entry> <entry> <ind>-3000.0</ind> <dep>-198.0</dep> </entry> <entry> <ind>-2000.0</ind> <dep>-172.2</dep> </entry> <entry> <ind>-1000.0</ind> <dep>-138.5</dep> </entry> <entry> <ind>-500.0</ind> <dep>-116.7</dep> </entry> <entry> <ind>0.0</ind> <dep>-90</dep> </entry> <entry> <ind>500.0</ind> <dep>-63.3</dep> </entry> <entry> <ind>1000.0</ind> <dep>-41.5</dep> </entry> <entry> <ind>2000.0</ind> <dep>-7.8</dep> </entry> <entry> <ind>3000.0</ind> <dep>18.0</dep> </entry> <entry> <ind>4000.0</ind> <dep>39.3</dep> </entry> <entry> <ind>6000.0</ind> <dep>78.6</dep> </entry> </interpolation> In SF2 this interpolation table is defined with: Set[01].Position=-258.6 Set[01].Value=-6000.0 Set[02].Position=-219.3 Set[02].Value=-4000.0 Set[03].Position=-198.0 Set[03].Value=-3000.0 Set[04].Position=-172.2 Set[04].Value=-2000.0 Set[05].Position=-138.5 Set[05].Value=-1000.0 Set[06].Position=-116.7 Set[06].Value=-500.0 Set[07].Position=-90.0 Set[07].Value=0.0 Set[08].Position=-63.3 Set[08].Value=500.0 Set[09].Position=-41.5 Set[09].Value=1000.0 Set[10].Position=-7.8 Set[10].Value=2000.0 Set[11].Position=18.0 Set[11].Value=3000.0 Set[12].Position=39.3 Set[12].Value=4000.0 Set[13].Position=78.6 Set[13].Value=6000.0 -
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
Minor update: -Creation of a generic prop taildragger flight model. It really doesn't resemble a P-51D! -Animation of (primary) control surfaces -Animation of gauges (although some gauges need some tuning) -Animation of the propeller Test flight video: This can be achieved *without* patching FlightGear. I only had to add the LOD file loader plugin DLL to the plugin directory. However for the planned support of the LOD keyframe animations (landing gear, ...), FlightGear must be patched. If anyone wants to know, how the configuration files in FlightGear look like: p-51d-model.xml contains the control surface and propeller animations. In SF2 that data is in the <aircraft>_data.ini. vc.xml contains the gauge animations. In SF2 that data is in the <aircraft>_cockpit.ini. My todo list for the SF2-FG project: -Re-creation of the SF2 systems and flight model -Support of keyframe animations -Gunsight -Weapons -Decal support -Normal and specular map support -
View File LODViewer This is the newest version of the LODViewer. New features: -decal support -display of collision and pivot points -added transparency and wireframe display mode -user definable background color -view manipulation via keyboard -64 bit application -uses the OpenSceneGraph library and Qt 5.9.5 Install instructions: Extract the content of the zip package to a convenient location. The LODViewer depends on the Microsoft Visual Studio 2017 C++ libraries. If not already installed on the computer (e.g. by other applications) it has to be installed by running vcredist_x64.exe (you can find it in the redist subfolder of this package). Have fun! And report bugs Mue Submitter mue Submitted 06/06/2019 Category Utilities / Editors
- 79 replies
-
- 10
-
Strike Fighters 2 meets FlightGear
mue replied to mue's topic in Thirdwire: Strike Fighters 2 Series - Mods & Skinning Discussion
As streakeagle wrote: "Flight Gear is open source. What it doesn't have, can be added." Of course, FlightGear is mainly a civilian flight sim and the core (C++) developers are not that interested in combat stuff (means they won't implement themselves), but a C++ skilled combat flight sim fan can of course do it. Besides, there exists already a combat "addon" for FlightGear: Bombable. It's implemented in FlightGears own scripting language "NASAL". But I haven't used it myself yet. There is also a military flight sim community: http://opredflag.com/. I think they use special adapted aircraft and the normal FlightGear multiplayer network. Via my LOD file loader plugin, the LOD files can be read directly without conversion. Sorry, I don't understand that?