The chopper model is uh-1:
http://en.wikipedia.org/wiki/Bell_UH-1_Iroquois
Requirement
===========
(1) You have to obtain .obj files for the uh-1 chopper scene node. (See below)
(2) Your have to change a few (#define) params to point to the proper directories, e.g.
uh1.h file:
- cpp Code: Select all
#define UH1_MODEL_DIR "/home/smso/downloads/irrlicht/aircraft/UH-1/Models/"
main.cpp:
- cpp Code: Select all
#define IRRLICHT_DIR "/home/smso/downloads/irrlicht/irrlicht-svn/"
(3) You will also need the chopper_control.h and chopper_control.cpp files from:
http://irrlicht.sourceforge.net/forum/viewtopic.php?f=9&t=46226
Steps to obtain the required .obj files:
========================================
1. download the uh-1 chopper file from FlightGear:
http://ftp.linux.kiev.ua/pub/fgfs/Aircraft-2.6/UH-1_20120217.zip
2. unzip the file and find the following .ac files (6 in total):
dir file(s)
=== ======
UH-1/Models uh1.ac
UH-1/Models/MainRotor mainrotor.ac , blade.ac
UH-1/Models/TailRotor tailrotor.ac , blade.ac
UH-1/Models/Interior interior.ac
3. convert all the .ac files in step (2) into .obj files using blender,
name them as follows:
dir file(s)
=== ======
UH-1/Models body.obj
UH-1/Models/MainRotor mainrotor.obj , mainblade.obj
UH-1/Models/TailRotor tailrotor.obj , tailblade.obj
UH-1/Models/Interior interior.obj

