You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(24) |
Nov
|
Dec
|
---|---|---|---|---|---|---|---|---|---|---|---|---|
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(47) |
2006 |
Jan
(353) |
Feb
(445) |
Mar
(417) |
Apr
(227) |
May
(230) |
Jun
(327) |
Jul
(267) |
Aug
(336) |
Sep
(78) |
Oct
(215) |
Nov
(275) |
Dec
(411) |
2007 |
Jan
(570) |
Feb
(322) |
Mar
(425) |
Apr
(316) |
May
(536) |
Jun
(1280) |
Jul
(475) |
Aug
(235) |
Sep
(207) |
Oct
(478) |
Nov
(751) |
Dec
(1020) |
2008 |
Jan
(352) |
Feb
(607) |
Mar
(488) |
Apr
(406) |
May
(276) |
Jun
(295) |
Jul
(924) |
Aug
(1415) |
Sep
(481) |
Oct
(1169) |
Nov
(692) |
Dec
(889) |
2009 |
Jan
(521) |
Feb
(612) |
Mar
(1014) |
Apr
(855) |
May
(854) |
Jun
(620) |
Jul
(558) |
Aug
(260) |
Sep
(487) |
Oct
(823) |
Nov
(471) |
Dec
(464) |
2010 |
Jan
(761) |
Feb
(453) |
Mar
(783) |
Apr
(328) |
May
(42) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Mathias F. <fro...@ba...> - 2010-05-02 23:02:53
|
Update of /var/cvs/FlightGear-0.9/source/src/Navaids In directory baron.flightgear.org:/tmp/cvs-serv29417/src/Navaids Modified Files: positioned.cxx positioned.hxx Log Message: Use methods from SGMath when possible. Modified Files: src/Airports/apt_loader.cxx src/Navaids/positioned.cxx src/Navaids/positioned.hxx Index: positioned.cxx =================================================================== RCS file: /var/cvs/FlightGear-0.9/source/src/Navaids/positioned.cxx,v retrieving revision 1.29 retrieving revision 1.30 diff -u -r1.29 -r1.30 --- positioned.cxx 20 Dec 2009 08:07:46 -0000 1.29 +++ positioned.cxx 2 May 2010 21:58:31 -0000 1.30 @@ -30,11 +30,10 @@ #include <boost/algorithm/string/case_conv.hpp> #include <boost/algorithm/string/predicate.hpp> -#include <simgear/math/sg_geodesy.hxx> #include <simgear/timing/timestamp.hxx> #include <simgear/debug/logstream.hxx> #include <simgear/structure/exception.hxx> -#include <simgear/math/SGBox.hxx> +#include <simgear/math/SGGeometry.hxx> #include "positioned.hxx" @@ -55,27 +54,6 @@ const double LEAF_SIZE = SG_NM_TO_METER * 8.0; const double LEAF_SIZE_SQR = LEAF_SIZE * LEAF_SIZE; -typedef SGBox<double> SGBoxd; - -template<typename T1, typename T2> -inline bool -intersects(const SGVec3<T1>& v, const SGBox<T2>& box) -{ - if (v[0] < box.getMin()[0]) - return false; - if (box.getMax()[0] < v[0]) - return false; - if (v[1] < box.getMin()[1]) - return false; - if (box.getMax()[1] < v[1]) - return false; - if (v[2] < box.getMin()[2]) - return false; - if (box.getMax()[2] < v[2]) - return false; - return true; -} - /** * Decorate an object with a double value, and use that value to order * items, for the purpoises of the STL algorithms @@ -156,28 +134,11 @@ double distSqrToNearest(const SGVec3d& aPos) const { - return distSqr(aPos, getClosestPoint(aPos)); + return distSqr(aPos, _box.getClosestPoint(aPos)); } virtual void insert(FGPositioned* aP) = 0; - SGVec3d getClosestPoint(const SGVec3d& aPos) const - { - SGVec3d r; - - for (unsigned int i=0;i<3; ++i) { - if (aPos[i] < _box.getMin()[i]) { - r[i] = _box.getMin()[i]; - } else if (aPos[i] > _box.getMax()[i]) { - r[i] = _box.getMax()[i]; - } else { - r[i] = aPos[i]; - } - } // of axis iteration - - return r; - } - virtual void visit(const SGVec3d& aPos, double aCutoff, FGPositioned::Filter* aFilter, FindNearestResults& aResults, FindNearestPQueue&) = 0; @@ -728,12 +689,6 @@ return new FGPositioned(WAYPOINT, aIdent, aPos, true); } -SGBucket -FGPositioned::bucket() const -{ - return SGBucket(mPosition); -} - SGVec3d FGPositioned::cart() const { Index: positioned.hxx =================================================================== RCS file: /var/cvs/FlightGear-0.9/source/src/Navaids/positioned.hxx,v retrieving revision 1.12 retrieving revision 1.13 diff -u -r1.12 -r1.13 --- positioned.hxx 5 Oct 2009 20:00:44 -0000 1.12 +++ positioned.hxx 2 May 2010 21:59:33 -0000 1.13 @@ -24,7 +24,7 @@ #include <vector> #include <simgear/structure/SGSharedPtr.hxx> -#include <simgear/bucket/newbucket.hxx> +#include <simgear/math/SGMath.hxx> class FGPositioned; @@ -88,8 +88,6 @@ */ SGVec3d cart() const; - SGBucket bucket() const; - double latitude() const { return mPosition.getLatitudeDeg(); } |
From: Mathias F. <fro...@ba...> - 2010-05-02 23:02:53
|
Update of /var/cvs/FlightGear-0.9/source/src/Airports In directory baron.flightgear.org:/tmp/cvs-serv29417/src/Airports Modified Files: apt_loader.cxx Log Message: Use methods from SGMath when possible. Modified Files: src/Airports/apt_loader.cxx src/Navaids/positioned.cxx src/Navaids/positioned.hxx Index: apt_loader.cxx =================================================================== RCS file: /var/cvs/FlightGear-0.9/source/src/Airports/apt_loader.cxx,v retrieving revision 1.31 retrieving revision 1.32 diff -u -r1.31 -r1.32 --- apt_loader.cxx 25 Apr 2010 08:33:27 -0000 1.31 +++ apt_loader.cxx 2 May 2010 21:57:08 -0000 1.32 @@ -39,6 +39,7 @@ #include <simgear/misc/sgstream.hxx> #include <simgear/misc/strutils.hxx> #include <simgear/structure/exception.hxx> +#include <simgear/bucket/newbucket.hxx> #include <string> |
From: Torsten D. <to...@ba...> - 2010-05-02 21:47:51
|
Update of /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/Models In directory baron.flightgear.org:/tmp/cvs-serv29272/Models Modified Files: balloon1t.ac balloon2.ac balloon3.ac balloon4.ac balloon5.ac balloon6t.ac Log Message: - reduced vertex, poly and object count of the balloons - added some simle flame on/off logic - let the balloons glow in the dark if the flame is on Index: balloon1t.ac =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/Models/balloon1t.ac,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon1t.ac 7 Apr 2010 14:15:25 -0000 1.1 +++ balloon1t.ac 2 May 2010 21:47:39 -0000 1.2 @@ -2,8813 +2,6585 @@ MATERIAL "envelope" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "suport" rgb 0.223529 0.239216 0.239216 amb 0.223529 0.239216 0.239216 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "burner" rgb 0.784314 0.882353 0.905882 amb 0.784314 0.882353 0.905882 emis 0 0 0 spec 1 1 1 shi 32 trans 0 -MATERIAL "flame" rgb 1 1 0 amb 1 1 0 emis 0 0 0 spec 1 1 1 shi 32 trans 0.26 +MATERIAL "flame" rgb 1 0.847059 0.156863 amb 1 0.847059 0.156863 emis 1 0.847059 0.156863 spec 1 1 1 shi 32 trans 0.259 MATERIAL "basket" rgb 0.772549 0.603922 0.027451 amb 0.772549 0.603922 0.027451 emis 0 0 0 spec 1 1 1 shi 32 trans 0 OBJECT world -kids 12 +kids 5 OBJECT poly -name "sphere1_envelope" [...13835 lines suppressed...] -mat 1 +255 0.306444 0.989123 +17 0.257468 0.992298 +254 0.302724 0.989028 +SURF 0x10 +mat 0 refs 3 -15 0 0 -0 0 0 -14 0 0 +256 0.661902 0.68268 +17 0.707059 0.687116 +255 0.658182 0.682679 +SURF 0x10 +mat 0 +refs 3 +257 0.672498 0.682683 +17 0.707059 0.687116 +256 0.661902 0.68268 kids 0 Index: balloon2.ac =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/Models/balloon2.ac,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon2.ac 7 Apr 2010 14:15:25 -0000 1.1 +++ balloon2.ac 2 May 2010 21:47:39 -0000 1.2 @@ -1,8950 +1,6587 @@ AC3Db -MATERIAL "envelope" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "suport" rgb 0.223529 0.239216 0.239216 amb 0.223529 0.239216 0.239216 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "burner" rgb 0.784314 0.882353 0.905882 amb 0.784314 0.882353 0.905882 emis 0 0 0 spec 1 1 1 shi 32 trans 0 -MATERIAL "flame" rgb 1 1 0 amb 1 1 0 emis 0 0 0 spec 1 1 1 shi 32 trans 0.26 +MATERIAL "flame" rgb 1 0.847059 0.156863 amb 1 0.847059 0.156863 emis 1 0.847059 0.156863 spec 1 1 1 shi 32 trans 0.259 +MATERIAL "envelope" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "basket" rgb 0.772549 0.603922 0.027451 amb 0.772549 0.603922 0.027451 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "black" rgb 0 0 0 amb 0.5 0.5 0.5 emis 0 0 0 spec 1 1 1 shi 32 trans 0 OBJECT world -kids 14 [...12986 lines suppressed...] -mat 1 +mat 3 refs 3 -0 0 0 -1 0 0 -13 0 0 +254 0 0 +253 0 0 +236 0 0 SURF 0x10 -mat 1 +mat 3 refs 3 -15 0 0 -0 0 0 -14 0 0 +236 0 0 +237 0 0 +254 0 0 kids 0 Index: balloon3.ac =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/Models/balloon3.ac,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon3.ac 7 Apr 2010 14:15:25 -0000 1.1 +++ balloon3.ac 2 May 2010 21:47:39 -0000 1.2 @@ -1,284 +1,312 @@ AC3Db MATERIAL "suport.001" rgb 0.223529 0.239216 0.239216 amb 0.223529 0.239216 0.239216 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "burner.001" rgb 0.784314 0.882353 0.905882 amb 0.784314 0.882353 0.905882 emis 0 0 0 spec 1 1 1 shi 32 trans 0 -MATERIAL "flame.001" rgb 1 1 0 amb 1 1 0 emis 0 0 0 spec 1 1 1 shi 32 trans 0.26 -MATERIAL "basket.001" rgb 0.6 0.380392 0.023529 amb 0.6 0.380392 0.023529 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "flame" rgb 1 0.847059 0.156863 amb 1 0.847059 0.156863 emis 1 0.847059 0.156863 spec 1 1 1 shi 32 trans 0.259 MATERIAL "mat01" rgb 0.270588 1 0.839216 amb 0.270588 1 0.839216 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "mat02" rgb 0.172549 0.32549 0.866667 amb 0.172549 0.32549 0.866667 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "basket" rgb 0.772549 0.603922 0.027451 amb 0.772549 0.603922 0.027451 emis 0 0 0 spec 1 1 1 shi 32 trans 0 OBJECT world -kids 13 [...13188 lines suppressed...] +222 0 0 SURF 0x10 -mat 0 +mat 3 refs 3 -48 0 0 -33 0 0 +225 0 0 2 0 0 +224 0 0 SURF 0x10 -mat 0 +mat 3 refs 3 +227 0 0 2 0 0 -3 0 0 -48 0 0 +226 0 0 kids 0 Index: balloon4.ac =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/Models/balloon4.ac,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon4.ac 7 Apr 2010 14:15:25 -0000 1.1 +++ balloon4.ac 2 May 2010 21:47:39 -0000 1.2 @@ -1,2720 +1,499 @@ AC3Db MATERIAL "suport.002" rgb 0.223529 0.239216 0.239216 amb 0.223529 0.239216 0.239216 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "burner.002" rgb 0.784314 0.882353 0.905882 amb 0.784314 0.882353 0.905882 emis 0 0 0 spec 1 1 1 shi 32 trans 0 -MATERIAL "flame.002" rgb 1 1 0 amb 1 1 0 emis 0 0 0 spec 1 1 1 shi 32 trans 0.26 -MATERIAL "basket.002" rgb 0.6 0.380392 0.023529 amb 0.6 0.380392 0.023529 emis 0 0 0 spec 1 1 1 shi 32 trans 0 +MATERIAL "flame" rgb 1 0.847059 0.156863 amb 1 0.847059 0.156863 emis 1 0.847059 0.156863 spec 1 1 1 shi 32 trans 0.259 +MATERIAL "basket" rgb 0.772549 0.603922 0.027451 amb 0.772549 0.603922 0.027451 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "mat01.001" rgb 1 0.478431 0.74902 amb 1 0.478431 0.74902 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "mat02.001" rgb 0.329412 0.160784 0.458824 amb 0.329412 0.160784 0.458824 emis 0 0 0 spec 1 1 1 shi 32 trans 0 OBJECT world -kids 13 [...11588 lines suppressed...] -mat 0 +mat 5 refs 3 -8 0 0 -5 0 0 -6 0 0 +159 0 0 +175 0 0 +174 0 0 SURF 0x10 -mat 0 +mat 5 refs 3 -6 0 0 -7 0 0 -8 0 0 +174 0 0 +158 0 0 +159 0 0 kids 0 Index: balloon5.ac =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/Models/balloon5.ac,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon5.ac 7 Apr 2010 14:15:25 -0000 1.1 +++ balloon5.ac 2 May 2010 21:47:39 -0000 1.2 @@ -2,12 +2,12 @@ MATERIAL "mat2" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "suport" rgb 0.223529 0.239216 0.239216 amb 0.223529 0.239216 0.239216 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "burner" rgb 0.784314 0.882353 0.905882 amb 0.784314 0.882353 0.905882 emis 0 0 0 spec 1 1 1 shi 32 trans 0 -MATERIAL "flame" rgb 1 1 0 amb 1 1 0 emis 0 0 0 spec 1 1 1 shi 32 trans 0.26 +MATERIAL "flame" rgb 1 0.847059 0.156863 amb 1 0.847059 0.156863 emis 1 0.847059 0.156863 spec 1 1 1 shi 32 trans 0.259 MATERIAL "basket" rgb 0.772549 0.603922 0.027451 amb 0.772549 0.603922 0.027451 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "mat3" rgb 0.086275 0.12549 0.705882 amb 0.086275 0.12549 0.705882 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "mat1" rgb 0.823529 0 0.007843 amb 0.823529 0 0.007843 emis 0 0 0 spec 1 1 1 shi 32 trans 0 OBJECT world -kids 14 +kids 5 [...11093 lines suppressed...] +241 0 0 SURF 0x10 mat 1 refs 3 -0 0 0 -1 0 0 -13 0 0 +239 0 0 +224 0 0 +240 0 0 SURF 0x10 mat 1 refs 3 -15 0 0 -0 0 0 -14 0 0 +255 0 0 +239 0 0 +240 0 0 kids 0 Index: balloon6t.ac =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/Models/balloon6t.ac,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon6t.ac 7 Apr 2010 14:15:25 -0000 1.1 +++ balloon6t.ac 2 May 2010 21:47:39 -0000 1.2 @@ -2,8825 +2,6585 @@ MATERIAL "envelope.001" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "suport.001" rgb 0.223529 0.239216 0.239216 amb 0.223529 0.239216 0.239216 emis 0 0 0 spec 1 1 1 shi 32 trans 0 MATERIAL "burner.001" rgb 0.784314 0.882353 0.905882 amb 0.784314 0.882353 0.905882 emis 0 0 0 spec 1 1 1 shi 32 trans 0 -MATERIAL "flame.001" rgb 1 1 0 amb 1 1 0 emis 0 0 0 spec 1 1 1 shi 32 trans 0.26 +MATERIAL "flame" rgb 1 0.847059 0.156863 amb 1 0.847059 0.156863 emis 1 0.847059 0.156863 spec 1 1 1 shi 32 trans 0.259 MATERIAL "basket.001" rgb 0.772549 0.603922 0.027451 amb 0.772549 0.603922 0.027451 emis 0 0 0 spec 1 1 1 shi 32 trans 0 OBJECT world -kids 12 +kids 5 OBJECT poly -name "sphere1_envelope.001" [...13198 lines suppressed...] -mat 1 +mat 0 refs 3 -48 0 0 -33 0 0 -2 0 0 +255 0.413535 0.635943 +254 0.4072 0.635943 +236 0.406584 0.6092 SURF 0x10 -mat 1 +mat 0 refs 3 -2 0 0 -3 0 0 -48 0 0 +236 0.406584 0.6092 +237 0.41415 0.6092 +255 0.413535 0.635943 kids 0 |
Update of /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon In directory baron.flightgear.org:/tmp/cvs-serv29272 Modified Files: balloon2.xml balloon3.xml balloon4.xml balloon5.xml balloon.nas.xml flightgear.xml iva.xml miss-velma.xml Log Message: - reduced vertex, poly and object count of the balloons - added some simle flame on/off logic - let the balloons glow in the dark if the flame is on Index: balloon2.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/balloon2.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon2.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ balloon2.xml 2 May 2010 21:47:40 -0000 1.2 @@ -6,4 +6,52 @@ <path>Models/balloon2.ac</path> <texture-path></texture-path> <nasal include="balloon.nas.xml"/> + + <animation> + <type>select</type> + <object-name>cone7_flame</object-name> + <condition> + <property>engines/engine[0]/running</property> + </condition> + </animation> + + <animation> + <type>dist-scale</type> + <object-name>cone7_flame</object-name> + <center> + <z-m>8.3</z-m> + </center> + <interpolation> + <entry> + <ind>0</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>50</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>1500</ind> + <dep>10</dep> + </entry> + </interpolation> + </animation> + + <animation> + <type>material</type> + <object-name>hull</object-name> + <condition> + <greater-than> + <property>/sim/time/sun-angle-rad</property> + <value>1.57</value> + </greater-than> + </condition> + <emission> + <red>0.2</red> + <green>0.18</green> + <blue>0.15</blue> + <factor-prop>engines/engine[0]/running</factor-prop> + </emission> + </animation> + </PropertyList> Index: balloon3.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/balloon3.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon3.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ balloon3.xml 2 May 2010 21:47:40 -0000 1.2 @@ -6,4 +6,52 @@ <path>Models/balloon3.ac</path> <texture-path></texture-path> <nasal include="balloon.nas.xml"/> + + <animation> + <type>select</type> + <object-name>cone7_flame</object-name> + <condition> + <property>engines/engine[0]/running</property> + </condition> + </animation> + + <animation> + <type>dist-scale</type> + <object-name>cone7_flame</object-name> + <center> + <z-m>8.3</z-m> + </center> + <interpolation> + <entry> + <ind>0</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>50</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>1500</ind> + <dep>10</dep> + </entry> + </interpolation> + </animation> + + <animation> + <type>material</type> + <object-name>hull</object-name> + <condition> + <greater-than> + <property>/sim/time/sun-angle-rad</property> + <value>1.57</value> + </greater-than> + </condition> + <emission> + <red>0.2</red> + <green>0.18</green> + <blue>0.15</blue> + <factor-prop>engines/engine[0]/running</factor-prop> + </emission> + </animation> + </PropertyList> Index: balloon4.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/balloon4.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon4.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ balloon4.xml 2 May 2010 21:47:40 -0000 1.2 @@ -6,4 +6,52 @@ <path>Models/balloon4.ac</path> <texture-path></texture-path> <nasal include="balloon.nas.xml"/> + + <animation> + <type>select</type> + <object-name>cone7_flame</object-name> + <condition> + <property>engines/engine[0]/running</property> + </condition> + </animation> + + <animation> + <type>dist-scale</type> + <object-name>cone7_flame</object-name> + <center> + <z-m>8.3</z-m> + </center> + <interpolation> + <entry> + <ind>0</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>50</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>1500</ind> + <dep>10</dep> + </entry> + </interpolation> + </animation> + + <animation> + <type>material</type> + <object-name>hull</object-name> + <condition> + <greater-than> + <property>/sim/time/sun-angle-rad</property> + <value>1.57</value> + </greater-than> + </condition> + <emission> + <red>0.2</red> + <green>0.18</green> + <blue>0.15</blue> + <factor-prop>engines/engine[0]/running</factor-prop> + </emission> + </animation> + </PropertyList> Index: balloon5.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/balloon5.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon5.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ balloon5.xml 2 May 2010 21:47:40 -0000 1.2 @@ -6,4 +6,52 @@ <path>Models/balloon5.ac</path> <texture-path></texture-path> <nasal include="balloon.nas.xml"/> + + <animation> + <type>select</type> + <object-name>cone7_flame</object-name> + <condition> + <property>engines/engine[0]/running</property> + </condition> + </animation> + + <animation> + <type>dist-scale</type> + <object-name>cone7_flame</object-name> + <center> + <z-m>8.3</z-m> + </center> + <interpolation> + <entry> + <ind>0</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>50</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>1500</ind> + <dep>10</dep> + </entry> + </interpolation> + </animation> + + <animation> + <type>material</type> + <object-name>hull</object-name> + <condition> + <greater-than> + <property>/sim/time/sun-angle-rad</property> + <value>1.57</value> + </greater-than> + </condition> + <emission> + <red>0.2</red> + <green>0.18</green> + <blue>0.15</blue> + <factor-prop>engines/engine[0]/running</factor-prop> + </emission> + </animation> + </PropertyList> Index: balloon.nas.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/balloon.nas.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- balloon.nas.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ balloon.nas.xml 2 May 2010 21:47:40 -0000 1.2 @@ -16,6 +16,10 @@ var winds = props.globals.getNode("environment/wind-speed-kt",1); var speed = self.getNode("controls/flight/target-spd",1); var head = self.getNode("controls/flight/target-hdg",1); + var running = self.getNode("engines/engine[0]/running",1); + running.setBoolValue(0); # start with engine (flame) off + var flame_on_time = 10.0 + 10.0*rand(); + var flame_off_time = 30.0 + 10.0*rand(); var position = geo.aircraft_position(); position.apply_course_distance( @@ -30,16 +34,25 @@ self.getNode("position/altitude-ft", 1 ).setValue( position.alt() ); var loopid = 0; + + var flameLoop = func(id) { + id == loopid or return; + var b = running.getValue(); + running.setBoolValue( b == 0 ); + settimer( func { flameLoop(id) }, b ? flame_off_time : flame_on_time ); + } + var loop = func(id) { id == loopid or return; speed.setValue(winds.getValue()); head.setValue(geo.normdeg(windh.getValue() + 180.0)); - settimer(func { loop(id) }, 0); + settimer(func { loop(id) }, 10.0 ); } settimer( func { + flameLoop(loopid); self.getNode("controls/flight/target-alt", 1 ).setValue( position.alt() + 1500 + 1000*rand()); - settimer(func { loop(loopid) }, 0,5); + settimer(func { loop(loopid) }, 0.5); }, 5.0 + 20.0*rand() ); ]]></load> <unload><![CDATA[ Index: flightgear.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/flightgear.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- flightgear.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ flightgear.xml 2 May 2010 21:47:40 -0000 1.2 @@ -5,4 +5,52 @@ <path>Models/balloon1t.ac</path> <texture-path>Textures/flightgear</texture-path> <nasal include="balloon.nas.xml"/> + + <animation> + <type>select</type> + <object-name>cone7_flame</object-name> + <condition> + <property>engines/engine[0]/running</property> + </condition> + </animation> + + <animation> + <type>dist-scale</type> + <object-name>cone7_flame</object-name> + <center> + <z-m>8.3</z-m> + </center> + <interpolation> + <entry> + <ind>0</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>50</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>1500</ind> + <dep>10</dep> + </entry> + </interpolation> + </animation> + + <animation> + <type>material</type> + <object-name>hull</object-name> + <condition> + <greater-than> + <property>/sim/time/sun-angle-rad</property> + <value>1.57</value> + </greater-than> + </condition> + <emission> + <red>0.2</red> + <green>0.18</green> + <blue>0.15</blue> + <factor-prop>engines/engine[0]/running</factor-prop> + </emission> + </animation> + </PropertyList> Index: iva.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/iva.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- iva.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ iva.xml 2 May 2010 21:47:40 -0000 1.2 @@ -6,4 +6,52 @@ <path>Models/balloon6t.ac</path> <texture-path>Textures/iva</texture-path> <nasal include="balloon.nas.xml"/> + + <animation> + <type>select</type> + <object-name>cone7_flame</object-name> + <condition> + <property>engines/engine[0]/running</property> + </condition> + </animation> + + <animation> + <type>dist-scale</type> + <object-name>cone7_flame</object-name> + <center> + <z-m>8.3</z-m> + </center> + <interpolation> + <entry> + <ind>0</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>50</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>1500</ind> + <dep>10</dep> + </entry> + </interpolation> + </animation> + + <animation> + <type>material</type> + <object-name>hull</object-name> + <condition> + <greater-than> + <property>/sim/time/sun-angle-rad</property> + <value>1.57</value> + </greater-than> + </condition> + <emission> + <red>0.2</red> + <green>0.18</green> + <blue>0.15</blue> + <factor-prop>engines/engine[0]/running</factor-prop> + </emission> + </animation> + </PropertyList> Index: miss-velma.xml =================================================================== RCS file: /var/cvs/FlightGear-0.9/data/AI/Aircraft/balloon/miss-velma.xml,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- miss-velma.xml 7 Apr 2010 14:15:24 -0000 1.1 +++ miss-velma.xml 2 May 2010 21:47:40 -0000 1.2 @@ -6,4 +6,52 @@ <path>Models/balloon1t.ac</path> <texture-path>Textures/miss-velma</texture-path> <nasal include="balloon.nas.xml"/> + + <animation> + <type>select</type> + <object-name>cone7_flame</object-name> + <condition> + <property>engines/engine[0]/running</property> + </condition> + </animation> + + <animation> + <type>dist-scale</type> + <object-name>cone7_flame</object-name> + <center> + <z-m>8.3</z-m> + </center> + <interpolation> + <entry> + <ind>0</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>50</ind> + <dep>1.0</dep> + </entry> + <entry> + <ind>1500</ind> + <dep>10</dep> + </entry> + </interpolation> + </animation> + + <animation> + <type>material</type> + <object-name>hull</object-name> + <condition> + <greater-than> + <property>/sim/time/sun-angle-rad</property> + <value>1.57</value> + </greater-than> + </condition> + <emission> + <red>0.2</red> + <green>0.18</green> + <blue>0.15</blue> + <factor-prop>engines/engine[0]/running</factor-prop> + </emission> + </animation> + </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:59
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Nasal In directory baron.flightgear.org:/tmp/cvs-serv25398/Nasal Added Files: doors.nas light.nas liveries.nas pterodactyl-keyboard.xml views.xml Log Message: - new plane --- NEW FILE "doors.nas" --- # ===== # Doors # ===== Doors = {}; Doors.new = func { obj = { parents : [Doors], crew : aircraft.door.new("instrumentation/doors/crew", 8.0), }; return obj; }; Doors.crewexport = func { me.crew.toggle(); } # ============== # Initialization # ============== # objects must be here, otherwise local to init() doorsystem = Doors.new(); --- NEW FILE "light.nas" --- var sbc1 = aircraft.light.new( "/sim/model/lights/sbc1", [0.5, 0.3] ); sbc1.interval = 0.1; sbc1.switch( 1 ); var sbc2 = aircraft.light.new( "/sim/model/lights/sbc2", [0.2, 0.3], "/sim/model/lights/sbc1/state" ); sbc2.interval = 0; sbc2.switch( 1 ); setlistener( "/sim/model/lights/sbc2/state", func(n) { var bsbc1 = sbc1.stateN.getValue(); var bsbc2 = n.getBoolValue(); var b = 0; if( bsbc1 and bsbc2 and getprop( "/controls/lighting/beacon") ) { b = 1; } else { b = 0; } setprop( "/sim/model/lights/beacon/enabled", b ); if( bsbc1 and !bsbc2 and getprop( "/controls/lighting/strobe" ) ) { b = 1; } else { b = 0; } setprop( "/sim/model/lights/strobe/enabled", b ); }); var beacon = aircraft.light.new( "/sim/model/lights/beacon", [0.05, 0.05] ); beacon.interval = 0; var strobe = aircraft.light.new( "/sim/model/lights/strobe", [0.05, 0.05, 0.05, 1] ); strobe.interval = 0; setprop( "/instrumentation/nav[0]/ident", 0 ); setprop( "/instrumentation/nav[1]/ident", 0 ); --- NEW FILE "liveries.nas" --- aircraft.livery.init("Aircraft/Pterodactyl/Models/Liveries"); --- NEW FILE "pterodactyl-keyboard.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <key n="100"> <name>d</name> <desc>Canopy</desc> <binding> <command>nasal</command> <script>pterodactyl.doorsystem.crewexport();</script> </binding> </key> </PropertyList> --- NEW FILE "views.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <chase-distance-m type="double" archive="y">-20.0</chase-distance-m> <view n="100"> <name>Tail Camera View</name> <type>lookfrom</type> <internal archive="y">true</internal> <config> <from-model type="bool">true</from-model> <from-model-idx type="int">0</from-model-idx> <ground-level-nearplane-m type="double">0.01f</ground-level-nearplane-m> <default-field-of-view-deg type="double">30</default-field-of-view-deg> <pitch-offset-deg>-5</pitch-offset-deg> <x-offset-m archive="y"> 0.000 </x-offset-m> <!--Right--> <y-offset-m archive="y"> 1.066 </y-offset-m> <!--Up--> <z-offset-m archive="y"> 2.700 </z-offset-m> <!--Back--> </config> </view> <view n="0"> <internal archive="y">true</internal> <config> <x-offset-m archive="y"> 0.000 </x-offset-m> <!-- Right --> <y-offset-m archive="y"> 0.981 </y-offset-m> <!-- Up --> <z-offset-m archive="y"> 1.056 </z-offset-m> <!-- Back --> <pitch-offset-deg> -15 </pitch-offset-deg> <default-field-of-view-deg> 55 </default-field-of-view-deg> </config> </view> <view n="1"> <config> <target-z-offset-m archive="y" type="double">0</target-z-offset-m> </config> </view> <view n="2"> <config> <target-z-offset-m archive="y" type="double">0</target-z-offset-m> </config> </view> <view n="3"> <config> <target-z-offset-m archive="y" type="double">0</target-z-offset-m> </config> </view> <view n="4"> <config> <target-z-offset-m archive="y" type="double">0</target-z-offset-m> </config> </view> <view n="5"> <config> <target-z-offset-m archive="y" type="double">0</target-z-offset-m> </config> </view> <view n="6"> <config> <target-z-offset-m archive="y" type="double">0</target-z-offset-m> </config> </view> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:58
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Sounds In directory baron.flightgear.org:/tmp/cvs-serv25398/Sounds Added Files: pterodactyl-sound.xml Log Message: - new plane --- NEW FILE "pterodactyl-sound.xml" --- <?xml version="1.0"?> <PropertyList> <fx> <crank> <name>engstart</name> <path>Sounds/engstart.wav</path> <property>/engines/engine/cranking</property> <volume> <offset>0.4</offset> </volume> </crank> <crank> <name>crank</name> <mode>looped</mode> <path>Sounds/cranking.wav</path> <condition> <property>/engines/engine/cranking</property> <not> <property>/engines/engine/running</property> </not> </condition> <volume> <offset>0.5</offset> </volume> </crank> <crank> <name>cough</name> <path>Sounds/coughing.wav</path> <property>/engines/engine/running</property> <volume> <offset>0.3</offset> </volume> </crank> <engine> <name>engine</name> <mode>looped</mode> <path>Sounds/wasp.wav</path> <property>/engines/engine/running</property> <volume> <property>/engines/engine/mp-osi</property> <factor>0.00375</factor> <min>0.15</min> <max>0.5</max> </volume> <volume> <property>/orientation/alpha-deg</property> <type>log</type> <min>1.0</min> <max>1.5</max> </volume> <volume> <property>/sim/current-view/internal</property> <offset>1.0</offset> <factor>-0.7</factor> </volume> <pitch> <property>/engines/engine/rpm</property> <factor>0.0004</factor> <min>0.5</min> <max>2.0</max> <offset>0.15</offset> </pitch> <reference-dist>60.0</reference-dist> <max-dist>2000.0</max-dist> </engine> <propeller> <name>propeller</name> <mode>looped</mode> <path>Sounds/turboprop1.wav</path> <property>/engines/engine/running</property> <volume> <property>/orientation/alpha-deg</property> <type>log</type> <min>0.2</min> <max>1.0</max> </volume> <volume> <property>/sim/current-view/internal</property> <factor>0.5</factor> </volume> <pitch> <property>/engines/engine/mp-osi</property> <factor>0.0036</factor> <min>0.5</min> <max>2.0</max> <offset>0.9</offset> </pitch> <reference-dist>60.0</reference-dist> <max-dist>2000.0</max-dist> </propeller> <rumble> <name>rumble</name> <mode>looped</mode> <path>Sounds/rumble.wav</path> <condition> <or> <property>/gear/gear[0]/wow</property> <property>/gear/gear[1]/wow</property> <property>/gear/gear[2]/wow</property> </or> <!-- <property>/sim/current-view/internal</property> --> </condition> <volume> <property>/velocities/airspeed-kt</property> <type>log</type> <factor>0.25</factor> </volume> </rumble> <squeal> <name>squeal</name> <path>Sounds/squeal.wav</path> <condition> <or> <property>/gear/gear[0]/wow</property> <property>/gear/gear[1]/wow</property> <property>/gear/gear[2]/wow</property> </or> </condition> <volume> <property>/velocities/speed-down-fps</property> <factor>0.5</factor> <max>1.0</max> </volume> <volume> <property>/velocities/airspeed-kt</property> <factor>0.01</factor> <max>1.0</max> </volume> <volume> <internal>dt_stop</internal> <factor>0.05</factor> <max>1.0</max> </volume> <pitch> <property>/velocities/airspeed-kt</property> <factor>0.0025</factor> <offset>1.2</offset> </pitch> </squeal> <flap> <name>flaps</name> <mode>in-transit</mode> <path>Sounds/flaps.wav</path> <property>/surface-positions/flap-pos-norm</property> <volume> <factor>0.8</factor> </volume> <reference-dist>60.0</reference-dist> <max-dist>2000.0</max-dist> </flap> <fuel-pump> <name>fuel pump</name> <mode>looped</mode> <path>Sounds/overspeed.wav</path> <condition> <and> <greater-than> <property>systems/electrical/outputs/fuel-pump</property> <value>8</value> </greater-than> <less-than> <property>/engines/engine/rpm</property> <value>1200</value> </less-than> </and> </condition> <volume> <property>/sim/sound/fuel_pump_volume</property> </volume> <pitch> <property>controls/engines/engine[0]/fuel-pump</property> <offset>0.0</offset> <factor>1.75</factor> </pitch> <reference-dist>60.0</reference-dist> <max-dist>2000.0</max-dist> </fuel-pump> <wind> <name>wind</name> <mode>looped</mode> <path>Sounds/wind.wav</path> <property>/velocities/airspeed-kt</property> <volume> <property>/position/altitude-ft</property> <factor>-0.000015</factor> <offset>1.0</offset> <min>0.1</min> <max>1.0</max> </volume> <volume> <property>/velocities/airspeed-kt</property> <factor>0.0015</factor> <min>0.0</min> <max>0.25</max> </volume> <pitch> <property>/velocities/airspeed-kt</property> <factor>0.0035</factor> <offset>1.25</offset> </pitch> <reference-dist>60.0</reference-dist> <max-dist>2000.0</max-dist> </wind> <stall> <name>stall</name> <mode>looped</mode> <path>Sounds/stall.wav</path> <condition> <and> <property>/controls/electric/battery-switch</property> <property>/sim/alarms/stall-warning</property> <greater-than> <property>/velocities/airspeed-kt</property> <value>10</value> </greater-than> <not> <property>/gear/gear[0]/wow</property> <property>/gear/gear[1]/wow</property> <property>/gear/gear[2]/wow</property> </not> </and> </condition> <volume> <property>/sim/current-view/internal</property> <offset>0.5</offset> <factor>0.5</factor> </volume> <reference-dist>60.0</reference-dist> <max-dist>2000.0</max-dist> </stall> <!-- Toggle Switches --> <click> <name>Battery on</name> <path>Sounds/click.wav</path> <condition> <property>controls/electric/battery-switch</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Battery off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/electric/battery-switch</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Alternator on</name> <path>Sounds/click.wav</path> <condition> <property>controls/electric/alternator-switch</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Alternator off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/electric/alternator-switch</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Fuel Pump on</name> <path>Sounds/click.wav</path> <condition> <property>controls/engines/engine/fuel-pump</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Fuel Pump off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/engines/engine/fuel-pump</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Nav Light On</name> <path>Sounds/click.wav</path> <condition> <property>controls/switches/nav-lights</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Nav Light Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/switches/nav-lights</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Landing Light On</name> <path>Sounds/click.wav</path> <condition> <property>controls/switches/landing-light</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Landing Light Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/switches/landing-light</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Turn and Bank On</name> <path>Sounds/click.wav</path> <condition> <property>instrumentation/turn-indicator/serviceable</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Turn and Bank Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>instrumentation/turn-indicator/serviceable</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Flashing Beacon On</name> <path>Sounds/click.wav</path> <condition> <property>controls/switches/flashing-beacon</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Flashing Beacon Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/switches/flashing-beacon</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Pitot Heat On</name> <path>Sounds/click.wav</path> <condition> <property>controls/anti-ice/pitot-heat</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Pitot Heat Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/anti-ice/pitot-heat</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Panel Lights On</name> <path>Sounds/click.wav</path> <condition> <property>controls/switches/panel-lights</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Panel Lights Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/switches/panel-lights</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Magnetos-off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/engines/engine/magnetos</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Magnetos-R</name> <path>Sounds/click.wav</path> <condition> <equals> <property>controls/engines/engine/magnetos</property> <value>1</value> </equals> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Magnetos-L</name> <path>Sounds/click.wav</path> <condition> <equals> <property>controls/engines/engine/magnetos</property> <value>2</value> </equals> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Magnetos-B</name> <path>Sounds/click.wav</path> <condition> <equals> <property>controls/engines/engine/magnetos</property> <value>3</value> </equals> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Fin Strobe Lights On</name> <path>Sounds/click.wav</path> <condition> <property>controls/switches/flashing-beacon</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Fin Strobe Lights Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/switches/flashing-beacon</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Wing Strobe Lights On</name> <path>Sounds/click.wav</path> <condition> <property>controls/switches/strobe-lights</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Wing Strobe Lights Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/switches/strobe-lights</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> <!-- <click> <name>Avionics Master On</name> <path>Sounds/click.wav</path> <condition> <property>controls/switches/master-avionics</property> </condition> <volume> <factor>1.0</factor> </volume> </click> <click> <name>Avionics Master Off</name> <path>Sounds/click.wav</path> <condition> <not> <property>controls/switches/master-avionics</property> </not> </condition> <volume> <factor>1.0</factor> </volume> </click> --> <squish> <name>Primer Out</name> <path>Sounds/squeal.wav</path> <condition> <property>controls/engines/engine/primer-pump</property> </condition> <volume> <factor>0.1</factor> </volume> </squish> <squish> <name>Primer In</name> <path>Sounds/squeal.wav</path> <condition> <not> <property>controls/engines/engine/primer-pump</property> </not> </condition> <volume> <factor>0.1</factor> </volume> </squish> </fx> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:58
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Pilot In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Pilot Added Files: Read-Me.txt pilot.xml ww2_pilot_old.ac ww2_pilot_old.png Log Message: - new plane --- NEW FILE "Read-Me.txt" --- This driver is extracted from the collection of drivers for X-Plane conducted by Bertrand AUGRAS. Site : http://baugras.club.fr/xplane/Site/france.html Pilots : http://baugras.club.fr/xplane/Site/pilot%20collection.html Many thanks, a thousand bravos for his fantastic work. I hope I do not betray the spirit of his work ------------------------------------------------------------------------------------------------- Ce pilote est extrait de la collection de pilotes pour X-Plane réalisées par Bertrand AUGRAS Site : http://baugras.club.fr/xplane/Site/france.html Pilotes : http://baugras.club.fr/xplane/Site/pilot%20collection.html Un grand merci et mille bravos pour son fantastique travail. J'espère ne pas trahir l'esprit de son travail ------------------------------------------------------------------------------------------------- BARANGER Emmanuel http://helijah.free.fr --- NEW FILE "pilot.xml" --- <?xml version="1.0"?> <PropertyList> <path>ww2_pilot_old.ac</path> <animation> <!-- Objets opaques --> <object-name>tete</object-name> <object-name>corps</object-name> <object-name>brasG</object-name> <object-name>brasD</object-name> <object-name>avantbrasG</object-name> <object-name>avantbrasD</object-name> <object-name>manche</object-name> <object-name>cuisseG</object-name> <object-name>cuisseD</object-name> <object-name>jambeG</object-name> <object-name>jambed</object-name> <object-name>piedG</object-name> <object-name>piedD</object-name> <!-- Objets transparents --> </animation> <animation> <type>rotate</type> <object-name>tete</object-name> <property>controls/flight/elevator</property> <factor> -15 </factor> <center> <x-m> 0.300 </x-m> <y-m> 0.000 </y-m> <z-m> 0.307 </z-m> </center> <axis> <x> 0.000 </x> <y> 1.000 </y> <z> 0.000 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>tete</object-name> <property>controls/flight/rudder</property> <factor>-25</factor> <center> <x-m> 0.300 </x-m> <y-m> 0.000 </y-m> <z-m> 0.307 </z-m> </center> <axis> <x> 0.000 </x> <y> 0.000 </y> <z> 1.000 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>tete</object-name> <property>surface-positions/left-aileron-pos-norm</property> <factor> -10.0</factor> <center> <x-m> 0.300 </x-m> <y-m> 0.000 </y-m> <z-m> 0.307 </z-m> </center> <axis> <x> 1.000 </x> <y> 0.000 </y> <z> 0.000 </z> </axis> </animation> </PropertyList> --- NEW FILE "ww2_pilot_old.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 OBJECT world kids 13 OBJECT poly name "avantbrasD" data 10 avantbrasD texture "ww2_pilot_old.png" texrep 1 1 crease 30.000000 numvert 35 0.014722 0.075792 -0.081083 0.011822 0.068692 -0.081983 0.023022 0.066292 -0.072983 -0.007078 0.042892 -0.085183 -0.023378 0.022792 -0.086683 -0.002778 0.022192 -0.074883 0.029922 0.046692 -0.061883 [...24134 lines suppressed...] 773 0.342700004578 0.998899996281 SURF 0x10 mat 0 refs 3 733 0.312299996614 0.998300015926 732 0.314300000668 0.903800010681 774 0.327399998903 0.998600006104 SURF 0x10 mat 0 refs 3 760 0.342799991369 0.999000012875 730 0.314200013876 0.904399991035 759 0.327399998903 0.999300003052 SURF 0x10 mat 0 refs 3 759 0.327399998903 0.999300003052 730 0.314200013876 0.904399991035 731 0.311899989843 0.998199999332 kids 0 --- NEW BINARY FILE "ww2_pilot_old.png" --- |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:58
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/light In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/light Added Files: GreenLight.ac GreenLight.xml RedLight.ac RedLight.xml StrobeGreen.xml StrobeRed.xml StrobeRed2.xml StrobeWhite.xml WhiteLight.ac WhiteLight.xml beacon.xml light-cone.ac light-cone.xml light-gradient-lamp.png lights.png Log Message: - new plane --- NEW FILE "GreenLight.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 OBJECT world kids 1 OBJECT poly name "Light" data 4 Mesh texture "lights.png" texrep 1 1 crease 45.000000 numvert 12 0.5 0.5 0 -0.5 0.5 0 -0.5 -0.5 0 0.5 -0.5 0 0 -0.5 -0.5 0 -0.5 0.5 0 0.5 0.5 0 0.5 -0.5 0.5 0 -0.5 -0.5 0 -0.5 -0.5 0 0.5 0.5 0 0.5 numsurf 3 SURF 0x20 mat 1 refs 4 0 0.948961138725 0.442461937666 1 0.563538074493 0.442461848259 2 0.563538074493 0.0570387989283 3 0.948961138725 0.0570387542248 SURF 0x20 mat 1 refs 4 7 0.948961257935 0.0570388287306 6 0.948961257935 0.442461937666 5 0.563538074493 0.442461937666 4 0.563538074493 0.0570387542248 SURF 0x20 mat 1 refs 4 11 0.948961257935 0.442461937666 10 0.563538193703 0.442461937666 9 0.563538074493 0.0570388287306 8 0.948961257935 0.0570387542248 kids 0 --- NEW FILE "GreenLight.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>GreenLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>material</type> <object-name>Light</object-name> <emission> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> </emission> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry><ind> 0 </ind><dep> 0.25 </dep></entry> <entry><ind> 20 </ind><dep> 0.50 </dep></entry> <entry><ind> 1500 </ind><dep> 5.00 </dep></entry> </interpolation> </animation> </PropertyList> --- NEW FILE "RedLight.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 OBJECT world kids 1 OBJECT poly name "Light" data 4 Mesh texture "lights.png" texrep 1 1 crease 45.000000 numvert 12 0.5 0.5 0 -0.5 0.5 0 -0.5 -0.5 0 0.5 -0.5 0 0 -0.5 -0.5 0 -0.5 0.5 0 0.5 0.5 0 0.5 -0.5 0.5 0 -0.5 -0.5 0 -0.5 -0.5 0 0.5 0.5 0 0.5 numsurf 3 SURF 0x20 mat 1 refs 4 0 0.448961138725 0.442461937666 1 0.0635380744934 0.442461848259 2 0.0635380744934 0.0570387989283 3 0.448961138725 0.0570387542248 SURF 0x20 mat 1 refs 4 7 0.448961257935 0.0570388287306 6 0.448961257935 0.442461937666 5 0.0635380744934 0.442461937666 4 0.0635380744934 0.0570387542248 SURF 0x20 mat 1 refs 4 11 0.448961257935 0.442461937666 10 0.0635381937027 0.442461937666 9 0.0635380744934 0.0570388287306 8 0.448961257935 0.0570387542248 kids 0 --- NEW FILE "RedLight.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>RedLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>material</type> <object-name>Light</object-name> <emission> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> </emission> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry><ind> 0 </ind><dep> 0.25 </dep></entry> <entry><ind> 20 </ind><dep> 0.50 </dep></entry> <entry><ind> 1500 </ind><dep> 5.00 </dep></entry> </interpolation> </animation> </PropertyList> --- NEW FILE "StrobeGreen.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>GreenLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>select</type> <object-name>Light</object-name> <condition> <property>/sim/model/lights/sbc1/state</property> </condition> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry> <ind>0</ind> <dep>0.25</dep> </entry> <entry> <ind>20</ind> <dep>0.5</dep> </entry> <entry> <ind>1500</ind> <dep>5</dep> </entry> </interpolation> </animation> </PropertyList> --- NEW FILE "StrobeRed.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>RedLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>select</type> <object-name>Light</object-name> <condition> <property>/sim/model/lights/sbc2/state</property> </condition> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry> <ind>0</ind> <dep>0.25</dep> </entry> <entry> <ind>20</ind> <dep>0.5</dep> </entry> <entry> <ind>1500</ind> <dep>5</dep> </entry> </interpolation> </animation> </PropertyList> --- NEW FILE "StrobeRed2.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>RedLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>select</type> <object-name>Light</object-name> <condition> <property>/sim/model/lights/beacon/state</property> </condition> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry> <ind>0</ind> <dep>0.25</dep> </entry> <entry> <ind>20</ind> <dep>0.5</dep> </entry> <entry> <ind>1500</ind> <dep>5</dep> </entry> </interpolation> </animation> </PropertyList> --- NEW FILE "StrobeWhite.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>WhiteLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>select</type> <object-name>Light</object-name> <condition> <property>/sim/model/lights/sbc1/state</property> </condition> </animation> <animation> <type>material</type> <object-name>Light</object-name> <emission> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> </emission> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry><ind> 0 </ind><dep> 0.25 </dep></entry> <entry><ind> 20 </ind><dep> 0.50 </dep></entry> <entry><ind> 1500 </ind><dep> 5.00 </dep></entry> </interpolation> </animation> </PropertyList> --- NEW FILE "WhiteLight.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 OBJECT world kids 1 OBJECT poly name "Light" data 4 Mesh texture "lights.png" texrep 1 1 crease 45.000000 numvert 12 0.5 0.5 0 -0.5 0.5 0 -0.5 -0.5 0 0.5 -0.5 0 0 -0.5 -0.5 0 -0.5 0.5 0 0.5 0.5 0 0.5 -0.5 0.5 0 -0.5 -0.5 0 -0.5 -0.5 0 0.5 0.5 0 0.5 numsurf 3 SURF 0x20 mat 1 refs 4 0 0.943492412567 0.942461967468 1 0.558069348335 0.942461848259 2 0.558069348335 0.557038784027 3 0.943492412567 0.557038784027 SURF 0x20 mat 1 refs 4 7 0.943492531776 0.557038843632 6 0.943492531776 0.942461967468 5 0.558069348335 0.942461967468 4 0.558069348335 0.557038784027 SURF 0x20 mat 1 refs 4 11 0.943492531776 0.942461967468 10 0.558069467545 0.942461967468 9 0.558069348335 0.557038843632 8 0.943492531776 0.557038784027 kids 0 --- NEW FILE "WhiteLight.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>WhiteLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>material</type> <object-name>Light</object-name> <emission> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> </emission> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry><ind> 0 </ind><dep> 0.25 </dep></entry> <entry><ind> 20 </ind><dep> 0.50 </dep></entry> <entry><ind> 1500 </ind><dep> 5.00 </dep></entry> </interpolation> </animation> </PropertyList> --- NEW FILE "beacon.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>RedLight.ac</path> <animation> <type>noshadow</type> <object-name>Light</object-name> </animation> <animation> <type>alpha-test</type> <alpha-factor>0.01</alpha-factor> </animation> <animation> <type>billboard</type> <object-name>Light</object-name> <spherical type="bool">true</spherical> </animation> <animation> <type>select</type> <object-name>Light</object-name> <condition> <property>/sim/model/lights/beacon/state</property> </condition> </animation> <animation> <type>material</type> <object-name>Light</object-name> <emission> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> </emission> </animation> <animation> <type>dist-scale</type> <object-name>Light</object-name> <interpolation> <entry><ind> 0 </ind><dep> 0.25 </dep></entry> <entry><ind> 20 </ind><dep> 0.50 </dep></entry> <entry><ind> 1500 </ind><dep> 5.00 </dep></entry> </interpolation> </animation> </PropertyList> --- NEW FILE "light-cone.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "lightcone" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 1 0.969 0.847 shi 64 trans 0.808 MATERIAL "lightcone2" rgb 0 0 0 amb 0 0 0 emis 1 1 1 spec 0 0 0 shi 60 trans 0.804 MATERIAL "light" rgb 0.2 0.2 0.2 amb 0.2 0.2 0.2 emis 1 1 1 spec 0 0 0 shi 128 trans 0 OBJECT world kids 3 OBJECT poly name "Cone" data 4 Cone crease 45.000000 numvert 193 -24.8113 0 0 -19.96805 6e-06 4.08375 -19.96805 -0.796695 4.0053 -19.96805 -1.562775 3.772915 -19.96805 -2.268801 3.395515 -19.96805 -2.88764 2.88765 [...3229 lines suppressed...] 32 0.5 0.527458012104 SURF 0x10 mat 3 refs 3 29 0.915733993053 0.245857998729 30 0.961937010288 0.333485990763 32 0.5 0.527458012104 SURF 0x10 mat 3 refs 3 30 0.961937010288 0.333485990763 31 0.990395009518 0.428577005863 32 0.5 0.527458012104 SURF 0x10 mat 3 refs 3 31 0.990395009518 0.428577005863 0 1.0 0.527458012104 32 0.5 0.527458012104 kids 0 --- NEW FILE "light-cone.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>light-cone.ac</path> <effect> <inherits-from>Effects/light-cone</inherits-from> <object-name>Cone</object-name> </effect> </PropertyList> --- NEW BINARY FILE "light-gradient-lamp.png" --- --- NEW BINARY FILE "lights.png" --- |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/vsi In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior/Panel/Instruments/vsi Added Files: glass.png vsi.ac vsi.png vsi.xml Log Message: - new plane --- NEW BINARY FILE "glass.png" --- --- NEW FILE "vsi.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "transparent" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.7 OBJECT world kids 4 OBJECT poly name "face" data 4 face texture "vsi.png" texrep 1 1 crease 30.000000 numvert 17 0.001837 -0.000115 -0.021889 0.001837 0.008254 -0.020224 0.001837 0.015348 -0.015484 0.001837 0.020089 -0.008389 0.001837 0.021754 -2e-05 [...3149 lines suppressed...] refs 4 234 0.558851420879 0.539299786091 221 0.539299845695 0.558851361275 235 0.514195144176 0.534278869629 243 0.530854463577 0.520627498627 SURF 0x10 mat 2 refs 4 200 0.407991826534 0.592008113861 201 0.379786670208 0.549781322479 225 0.430597633123 0.513801753521 224 0.460700124502 0.558851361275 SURF 0x10 mat 2 refs 4 198 0.474629223347 0.627617478371 199 0.450218647718 0.620213329792 224 0.460700124502 0.558851361275 223 0.486198186874 0.569402337074 kids 0 --- NEW BINARY FILE "vsi.png" --- --- NEW FILE "vsi.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>vsi.ac</path> <animation> <object-name>fond</object-name> <object-name>face</object-name> <object-name>needle</object-name> <object-name>vitre</object-name> </animation> <animation> <type>noshadow</type> <object-name>vitre</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>glass.png</texture> <object-name>vitre</object-name> </animation> <animation> <type>material</type> <object-name>face</object-name> <object-name>needle</object-name> <emission> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> <red> 0.2 </red> <green> 0.4 </green> <blue> 0.8 </blue> </emission> </animation> <animation> <type>rotate</type> <object-name>needle</object-name> <property>instrumentation/vertical-speed-indicator/indicated-speed-fpm</property> <interpolation> <entry><ind> -6000 </ind><dep> 170 </dep></entry> <entry><ind> -4000 </ind><dep> 139 </dep></entry> <entry><ind> -2000 </ind><dep> 83 </dep></entry> <entry><ind> -1000 </ind><dep> 48 </dep></entry> <entry><ind> 0 </ind><dep> 0 </dep></entry> <entry><ind> 1000 </ind><dep> -48 </dep></entry> <entry><ind> 2000 </ind><dep> -83 </dep></entry> <entry><ind> 4000 </ind><dep> -139 </dep></entry> <entry><ind> 6000 </ind><dep> -170 </dep></entry> </interpolation> <axis> <x> 1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior Added Files: colors.png interior.ac interior.xml Log Message: - new plane --- NEW BINARY FILE "colors.png" --- --- NEW FILE "interior.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite.002" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "transparent" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.7 OBJECT world kids 4 OBJECT poly name "interieur" data 9 interieur texture "colors.png" texrep 1 1 crease 30.000000 numvert 146 0.621062 0.854324 0.049136 0.621062 0.815182 0.14877 0.621062 0.815182 -0.14877 0.621062 0.854324 -0.049135 [...1694 lines suppressed...] refs 4 8 0.16267567873 0.131619572639 11 0.189878642559 0.046429336071 15 0.185511112213 0.0491610765457 14 0.160069942474 0.128833889961 SURF 0x10 mat 1 refs 4 13 0.084809333086 0.128833889961 9 0.082203567028 0.131619572639 8 0.16267567873 0.131619572639 14 0.160069942474 0.128833889961 SURF 0x10 mat 1 refs 4 13 0.084809333086 0.128833889961 12 0.0593681335449 0.0491610765457 10 0.0550005733967 0.046429336071 9 0.082203567028 0.131619572639 kids 0 --- NEW FILE "interior.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>interior.ac</path> <animation> <!-- Objets opaques --> <object-name>interieur</object-name> <object-name>inttour</object-name> <object-name>inttourvitres</object-name> <!-- Objets transparents --> <object-name>intvitres</object-name> </animation> <animation> <type>noshadow</type> <object-name>intvitres</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>Aircraft/Generic/Effects/glass_shader.png</texture> <object-name>intvitres</object-name> </animation> <!-- Pilote --> <model> <path>Aircraft/Pterodactyl/Models/Pilot/pilot.xml</path> <offsets> <x-m> 0.897 </x-m> <y-m> 0.000 </y-m> <z-m> 0.559 </z-m> </offsets> </model> <!-- Tableau de bord --> <model> <path>Aircraft/Pterodactyl/Models/Interior/Panel/panel.xml</path> <offsets> <x-m> 0.644 </x-m> <y-m> 0.000 </y-m> <z-m> 0.763 </z-m> <roll-deg> 0 </roll-deg> <pitch-deg> 0 </pitch-deg> <heading-deg> 0 </heading-deg> </offsets> </model> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl In directory baron.flightgear.org:/tmp/cvs-serv25398 Added Files: COPYING Read-Me.txt pterodactyl-base.xml pterodactyl-set.xml pterodactyl-splash.png pterodactyl-yasim-cnf.xml pterodactyl-yasim.xml thumbnail.jpg Log Message: - new plane --- NEW FILE "COPYING" --- GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. <one line to give the program's name and a brief idea of what it does.> Copyright (C) 19yy <name of author> This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. <signature of Ty Coon>, 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. --- NEW FILE "Read-Me.txt" --- English/Français [English] ---------- Westland-Hill Pterodactyl MK V ============================== Manufacturer : Type : Year : Powerplant : Wingspan : Length : Height : weight max : Cruise speed : Range : Crew : Some useful keys: ================= Thanks ====== =============== BARANGER Emmanuel May, 01, 2010 http://helijah.free.fr/flightgear/hangar.htm emb...@fr... [Français] ---------- Un peu d'histoire ================= Westland-Hill Pterodactyl MK V ============================== Constructeur : Type : Année : Moteur : Envergure : Longueur : Hauteur : Poids max au décollage : Vitesse estimée de croisière : Autonomie estimée : Equipage : Quelques touches utiles : ========================= Remerciements ============= =============== BARANGER Emmanuel 01 Mai 2010. http://helijah.free.fr/flightgear/hangar.htm emb...@fr... --- NEW FILE "pterodactyl-base.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <sim include="Nasal/views.xml"> <author>BARANGER Emmanuel (3D/FDM)</author> <aircraft-version>0.2</aircraft-version> <status>Alpha</status> <fuel-fraction>1.0</fuel-fraction> <startup> <splash-texture>Aircraft/Pterodactyl/pterodactyl-splash.png</splash-texture> </startup> <sound> <path archive="y">Aircraft/Pterodactyl/Sounds/pterodactyl-sound.xml</path> </sound> <model> <path archive="y">Aircraft/Pterodactyl/Models/pterodactyl.xml</path> <livery> <file type="string">default</file> </livery> </model> <multiplay> <chat_display>1</chat_display> <generic> <int type="int">0</int> <int type="int">0</int> <int type="int">0</int> <int type="int">0</int> <int type="int">0</int> <int type="int">0</int> </generic> </multiplay> <help> <title>Westland Pterodactyl</title> <line>______________________________________________</line> </help> <pterodactyl> <state type="int">0</state> <airspeed-kmh type="float">0.0</airspeed-kmh> <engine-rpm type="float">0.0</engine-rpm> <engine-volume-low-rpm type="float">0.0</engine-volume-low-rpm> <engine-volume-high-rpm type="float">0.0</engine-volume-high-rpm> </pterodactyl> <weight n="0"> <name>Pilot</name> <weight-lb>180</weight-lb> <max-lb>240</max-lb> <min-lb>140</min-lb> </weight> <weight n="1"> <name>Pax</name> <weight-lb>0</weight-lb> <max-lb>240</max-lb> <min-lb>0</min-lb> </weight> <weight n="2"> <name>Baggage</name> <weight-lb>0</weight-lb> <max-lb>20</max-lb> <min-lb>0</min-lb> </weight> <flaps> <setting>0.00</setting> <!-- Cruise --> <setting>0.50</setting> <!-- Half --> <setting>1.0</setting> <!-- Full --> </flaps> <menubar include="Dialogs/pterodactyl-menu.xml"/> </sim> <input> <keyboard include="Nasal/pterodactyl-keyboard.xml"/> </input> <engines> <engine> <rpm type="float">0.0</rpm> </engine> </engines> <nasal> <pterodactyl> <file>Aircraft/Pterodactyl/Nasal/doors.nas</file> <file>Aircraft/Pterodactyl/Nasal/liveries.nas</file> <file>Aircraft/Pterodactyl/Nasal/light.nas</file> </pterodactyl> </nasal> </PropertyList> --- NEW FILE "pterodactyl-set.xml" --- <?xml version="1.0" encoding="UTF-8"?> <!-- <PropertyList include="pterodactyl-jsbsim-cnf.xml"> --> <PropertyList include="pterodactyl-yasim-cnf.xml"> <sim> <description>Westland Pterodactyl</description> <author>Emmanuel BARANGER (3D/FDM)</author> </sim> </PropertyList> --- NEW BINARY FILE "pterodactyl-splash.png" --- --- NEW FILE "pterodactyl-yasim-cnf.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList include="pterodactyl-base.xml"> <sim> <description>Westland Pterodactyl (YASim)</description> <flight-model archive="y">yasim</flight-model> <aero archive="y">pterodactyl-yasim</aero> </sim> </PropertyList> --- NEW FILE "pterodactyl-yasim.xml" --- <?xml version="1.0" encoding="UTF-8"?> <!-- Westland-Hill Pterodactyl MK V - 2010 Emmanuel BARANGER sources : http://www.aviastar.org/air/england/west_pterodactyl5.php wingspan : 14.22 m ( 47 ft 8 in ) length : 6.24 m ( 20 ft 6 in ) height : 3.55 m ( 12 ft 8 in ) empty weight : 1602 kg ( 3532 lb ) engine : Rolls Royce Goshawk steam-cooled vee-type engine (600 hp) Maximum speed : 305 km/h ( 164.69 kt ) --> <airplane mass="3532"> <!-- Approach configuration --> <approach speed="40" aoa="6" fuel="0.3"> <control-setting axis="/controls/engines/engine[0]/throttle" value="0.2"/> <control-setting axis="/controls/engines/engine[0]/mixture" value="1"/> <control-setting axis="/controls/flight/flaps" value="1"/> </approach> <!-- Cruise configuration --> <cruise speed="150" alt="6000" fuel="0.5"> <control-setting axis="/controls/engines/engine[0]/throttle" value="0.7"/> <control-setting axis="/controls/engines/engine[0]/mixture" value="0.6"/> <control-setting axis="/controls/flight/flaps" value="0"/> </cruise> <cockpit x="-0.998" y="0" z="0.905"/> <fuselage ax="2.466" ay="0" az="-0.346" bx="-2.651" by="0" bz="-0.214" width="0.95" taper="0.8" midpoint="0.9"/> <mstab x="1.096" y="0" z="1.264" chord="2.080" length="2.40" taper="1.54" sweep="14" camber="0.005"> <stall aoa="16" width="1.5" peak="1.5"/> </mstab> <wing x="0.520" y="2.320" z="1.264" chord="3.2" length="5.8" sweep="34" taper="0.3" camber="0.005"> <stall aoa="16" width="1.5" peak="1.5"/> <flap0 start="0.47" end="1" lift="1.4" drag="1.2"/> <control-input axis="/controls/flight/aileron" control="FLAP0" square="false" split="true"/> <control-input axis="/controls/flight/aileron-trim" control="FLAP0" split="true"/> <control-output control="FLAP0" side="left" prop="/surface-positions/left-aileron-pos-norm"/> <control-output control="FLAP0" side="right" prop="/surface-positions/right-aileron-pos-norm"/> <control-output control="FLAP0" prop="/surface-positions/aileron-pos-norm"/> </wing> <hstab x="0.520" y="2.320" z="1.264" chord="3.2" length="5.8" sweep="34" taper="0.3" camber="0.005"> <stall aoa="16" width="1.5" peak="1.5"/> <flap0 start="0.47" end="1" lift="1.4" drag="1.2"/> <control-input axis="/controls/flight/elevator" square="false" control="FLAP0" /> <control-input axis="/controls/flight/elevator-trim" control="FLAP0"/> <control-output control="FLAP0" side="left" prop="/surface-positions/left-elevator-pos-norm"/> <control-output control="FLAP0" side="right" prop="/surface-positions/right-elevator-pos-norm"/> <control-output control="FLAP0" prop="/surface-positions/elevator-pos-norm"/> </hstab> <vstab x="-2.560" y="7" z="0.551" chord="0.710" length="1.45" taper="1"> <stall aoa="16" width="5" peak="1.5"/> <flap0 start="0" end="1" lift="1.4" drag="1.2"/> <control-input axis="/controls/flight/rudder" control="FLAP0" invert="true"/> <control-input axis="/controls/flight/rudder-trim" control="FLAP0" invert="true"/> <control-output control="FLAP0" prop="/surface-positions/rudder-pos-norm" min="1" max="-1"/> </vstab> <vstab x="-2.560" y="-7" z="0.551" chord="0.710" length="1.45" taper="1"> <stall aoa="16" width="5" peak="1.5"/> <flap0 start="0" end="1" lift="1.4" drag="1.2"/> <control-input axis="/controls/flight/rudder" control="FLAP0" invert="true"/> <control-input axis="/controls/flight/rudder-trim" control="FLAP0" invert="true"/> <control-output control="FLAP0" prop="/surface-positions/rudder-pos-norm" min="1" max="-1"/> </vstab> <mstab x="-0.700" y="0" z="-0.561" chord="1.330" length="3.400" taper="0.5" camber="0.048"> </mstab> <!-- Engines source : http://en.wikipedia.org/wiki/Rolls-Royce_Goshawk name : Rolls-Royce Goshawk type : 12-cylinder liquid-cooled 60 degree Vee aircraft piston engine power cruise : 600 hp at 2,600 rpm weight : 442 kg ( 975 lb) displacement : 1295.88 in3 (21.25 L) compression : 6:1 --> <propeller x="1.784" y="0" z="0.079" radius="1.493" mass="975" moment="2.5" cruise-speed="150" cruise-rpm="2500" cruise-alt="6000" cruise-power="550" takeoff-power="600" takeoff-rpm="2600"> <actionpt x="2.865" y="0" z="0.079"/> <piston-engine eng-rpm="2700" eng-power="600" displacement="1295.88" compression="6"/> <control-input control="THROTTLE" axis="/controls/engines/engine[0]/throttle" src0="0.0" src1="1.0" dst0="0.0" dst1="1.0"/> <control-input control="STARTER" axis="/controls/engines/engine[0]/starter" /> <control-input control="MAGNETOS" axis="/controls/engines/engine[0]/magnetos" /> <control-input control="MIXTURE" axis="/controls/engines/engine[0]/mixture" src0="0.0" src1="1.0" dst0="0.8" dst1="0.8"/> </propeller> <!-- Noze wheel 1 --> <gear x="1.385" y="0" z="-1.995" compression="0.15" spring="0.8" on-solid="1" sfric="1" dfric="1"> <control-input axis="/controls/flight/rudder" control="STEER" square="false"/> </gear> <!-- Noze wheel 2 --> <gear x="0.100" y="0" z="-1.685" compression="0.2" spring="1.8" damp="0.03" on-solid="1"> </gear> <!-- Left wheel --> <gear x="-2.792" y="2.980" z="-1.052" compression="0.2" spring="1.8" damp="0.03" on-solid="1"> </gear> <!-- Right wheel --> <gear x="-2.792" y="-2.980" z="-1.052" compression="0.2" spring="1.8" damp="0.03" on-solid="1"> </gear> <!-- Left wing --> <tank x="0" y="2.32" z="1.28" capacity="50"/> <!-- Right wing --> <tank x="0" y="-2.32" z="1.288" capacity="50"/> <!-- Mass distribution --> <ballast x="-1.2" y="0" z="-2" mass="1500"/> </airplane> --- NEW BINARY FILE "thumbnail.jpg" --- |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/ai In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior/Panel/Instruments/ai Added Files: ai.ac ai.xml colors.png glass.png Log Message: - new plane --- NEW FILE "ai.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "transparent" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.5 OBJECT world kids 10 OBJECT poly name "ball" data 4 ball texture "colors.png" texrep 1 1 crease 30.000000 numvert 242 -0.020999 0.029923 -0.0001 -0.015623 0.029349 -0.002327 -0.016886 0.029349 -0.004215 -0.018773 0.029349 -0.005478 -0.020999 0.029349 -0.00592 [...17720 lines suppressed...] refs 4 246 0.479378014803 0.469138383865 234 0.472906887531 0.434612959623 235 0.499990463257 0.429226696491 247 0.499990463257 0.462895661592 SURF 0x10 mat 2 refs 4 244 0.462895661592 0.499990463257 231 0.430597066879 0.486191749573 232 0.441160231829 0.460668802261 245 0.469138383865 0.479378014803 SURF 0x10 mat 2 refs 4 225 0.539312124252 0.558839738369 226 0.513808310032 0.569402933121 242 0.499990463257 0.537104308605 241 0.520621955395 0.530842602253 kids 0 --- NEW FILE "ai.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>ai.ac</path> <animation> <object-name>fond</object-name> <object-name>visses</object-name> <object-name>ball</object-name> <object-name>skypointer</object-name> <object-name>barre1</object-name> <object-name>barre2</object-name> <object-name>faceturn</object-name> <object-name>ballturn</object-name> <object-name>vitre</object-name> </animation> <animation> <type>noshadow</type> <object-name>vitre</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>glass.png</texture> <object-name>vitre</object-name> </animation> <animation> <type>material</type> <object-name>ball</object-name> <object-name>skypointer</object-name> <object-name>barre1</object-name> <object-name>barre2</object-name> <object-name>faceturn</object-name> <emission> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> <red> 0.2 </red> <green> 0.4 </green> <blue> 0.8 </blue> </emission> </animation> <animation> <type>rotate</type> <object-name>ball</object-name> <property>/orientation/roll-deg</property> <factor>1</factor> <center> <x-m>-0.020 </x-m> <y-m> 0.000 </y-m> <z-m> 0.000 </z-m> </center> <axis> <x> 1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>ball</object-name> <property>/orientation/pitch-deg</property> <factor>1</factor> <center> <x-m> -0.021 </x-m> <y-m> 0.000 </y-m> <z-m> 0.000 </z-m> </center> <axis> <x> 0 </x> <y> 1 </y> <z> 0 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>skypointer</object-name> <property>/orientation/roll-deg</property> <factor>1</factor> <center> <x-m> 0.019 </x-m> <y-m> 0.000 </y-m> <z-m> 0.000 </z-m> </center> <axis> <x> 1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>ballturn</object-name> <property>/instrumentation/slip-skid-ball/indicated-slip-skid</property> <interpolation> <entry><ind> -1.1 </ind><dep> -22 </dep></entry> <entry><ind> 1.1 </ind><dep> 22 </dep></entry> </interpolation> <center> <x-m> 0.001 </x-m> <y-m> 0.000 </y-m> <z-m> 0.006 </z-m> </center> <axis> <x> 1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> </PropertyList> --- NEW BINARY FILE "colors.png" --- --- NEW BINARY FILE "glass.png" --- |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/compass In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior/Panel/Instruments/compass Added Files: compass.ac compass.png compass.xml glass.png Log Message: - new plane --- NEW FILE "compass.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "transparent.001" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.7 OBJECT world kids 4 OBJECT poly name "bar" data 3 bar texture "compass.png" texrep 1 1 crease 30.000000 numvert 8 0.006669 0.012516 -0.000567 0.006669 0.012516 -0.000169 0.006669 -0.000518 -0.000169 0.006669 -0.000518 -0.000567 0.006507 0.012516 -0.000567 0.006507 -0.000518 -0.000567 0.006507 -0.000518 -0.000169 0.006507 0.012516 -0.000169 numsurf 5 SURF 0x00 mat 1 refs 4 0 0.335489809513 0.59773850441 1 0.332984864712 0.59773850441 2 0.332984864712 0.515704631805 3 0.335489809513 0.515704631805 SURF 0x00 mat 1 refs 4 0 0.335489809513 0.59773850441 3 0.335489809513 0.515704631805 5 0.335489809513 0.515704631805 4 0.335489809513 0.59773850441 SURF 0x00 mat 1 refs 4 3 0.335489809513 0.515704631805 2 0.332984864712 0.515704631805 6 0.332984864712 0.515704631805 5 0.335489809513 0.515704631805 SURF 0x00 mat 1 refs 4 2 0.332984864712 0.515704631805 1 0.332984864712 0.59773850441 7 0.332984864712 0.59773850441 6 0.332984864712 0.515704631805 SURF 0x00 mat 1 refs 4 1 0.332984864712 0.59773850441 0 0.335489809513 0.59773850441 4 0.335489809513 0.59773850441 7 0.332984864712 0.59773850441 kids 0 OBJECT poly name "compass" data 7 compass texture "compass.png" texrep 1 1 crease 30.000000 numvert 32 0.003309 0.012138 0.006796 -0.000771 0.012138 0.012855 0.003368 5.7e-05 0.006821 -0.000725 5.7e-05 0.0129 -0.021279 0.012138 0.016902 -0.027384 0.012138 0.012855 -0.021303 5.7e-05 0.016961 -0.027429 5.7e-05 0.0129 -0.000771 0.012138 -0.013552 0.003309 0.012138 -0.007495 -0.000725 5.7e-05 -0.013597 0.003368 5.7e-05 -0.007519 -0.006876 0.012138 0.016902 -0.006851 5.7e-05 0.016961 0.004741 0.012138 -0.000349 0.004805 5.7e-05 -0.000349 -0.014077 0.012138 0.018324 -0.014077 5.7e-05 0.018387 -0.031463 0.012138 0.006796 -0.032896 0.012138 -0.000349 -0.031522 5.7e-05 0.006821 -0.03296 5.7e-05 -0.000349 -0.031463 0.012138 -0.007495 -0.027384 0.012138 -0.013552 -0.031522 5.7e-05 -0.007519 -0.027429 5.7e-05 -0.013597 -0.006876 0.012138 -0.0176 -0.006851 5.7e-05 -0.017659 -0.014077 0.012138 -0.019022 -0.014077 5.7e-05 -0.019085 -0.021279 0.012138 -0.0176 -0.021303 5.7e-05 -0.017659 numsurf 16 SURF 0x10 mat 1 refs 4 2 0.374991744757 0.0 0 0.375490695238 0.25 1 0.251411706209 0.25 3 0.250490695238 0.0 SURF 0x10 mat 1 refs 4 6 0.374992191792 0.25 4 0.375490695238 0.5 5 0.251412689686 0.5 7 0.250490695238 0.25 SURF 0x10 mat 1 refs 4 10 0.250291198492 0.750793159008 8 0.249369636178 1.00079321861 9 0.125291213393 1.00079321861 11 0.125789955258 0.750793159008 SURF 0x10 mat 1 refs 4 3 0.250490695238 0.0 1 0.249569311738 0.25 12 0.125490680337 0.25 13 0.12598927319 0.0 SURF 0x10 mat 1 refs 4 0 0.375915437937 0.25 2 0.375490695238 0.0 15 0.500490665436 0.0 14 0.500490665436 0.25 SURF 0x10 mat 1 refs 4 13 0.125490680337 0.0 12 0.125066295266 0.25 16 0.000490690581501 0.25 17 0.000490690581501 0.0 SURF 0x10 mat 1 refs 4 20 0.125490680337 0.25 18 0.125065937638 0.5 19 0.000490690581501 0.5 21 0.000490727834404 0.25 SURF 0x10 mat 1 refs 4 7 0.250490695238 0.25 5 0.249569669366 0.5 18 0.125490680337 0.5 20 0.125989660621 0.25 SURF 0x10 mat 1 refs 4 24 0.374991685152 0.501598477364 22 0.375490695238 0.751598477364 23 0.251412838697 0.751598477364 25 0.250490695238 0.501598477364 SURF 0x10 mat 1 refs 4 17 0.500490665436 0.25 16 0.500490665436 0.5 4 0.375915020704 0.5 6 0.375490695238 0.25 SURF 0x10 mat 1 refs 4 27 0.374991863966 0.75 26 0.375490695238 1.0 8 0.251412063837 1.0 10 0.250490695238 0.75 SURF 0x10 mat 1 refs 4 29 0.500291228294 0.750793159008 28 0.500291228294 1.00079321861 26 0.375715821981 1.00079321861 27 0.375291198492 0.750793159008 SURF 0x10 mat 1 refs 4 31 0.125490680337 0.501598477364 30 0.125066354871 0.751598477364 28 0.000490690581501 0.751598477364 29 0.000490690581501 0.501598477364 SURF 0x10 mat 1 refs 4 25 0.250490695238 0.501598477364 23 0.249568715692 0.751598477364 30 0.125490680337 0.751598477364 31 0.125989183784 0.501598477364 SURF 0x10 mat 1 refs 4 14 0.000490690581501 1.00159847736 15 0.000490690581501 0.751598477364 11 0.125490680337 0.751598477364 9 0.125066116452 1.00159847736 SURF 0x10 mat 1 refs 4 21 0.500490665436 0.501598477364 19 0.500490665436 0.751598477364 22 0.375915378332 0.751598477364 24 0.375490695238 0.501598477364 kids 0 OBJECT poly name "fond" data 4 fond texture "compass.png" texrep 1 1 crease 30.000000 numvert 78 0.006992 0.000322 -0.022391 0.006992 0.004711 -0.021966 0.006992 0.008875 -0.020707 0.006992 0.012712 -0.018664 0.006992 0.016076 -0.015914 0.006992 0.018836 -0.012563 0.006992 0.020887 -0.00874 0.006992 0.02215 -0.004592 0.006992 0.022577 -0.000305 0.006992 0.02215 0.004035 0.006992 0.020887 0.008184 0.006992 0.018836 0.012006 0.006992 0.016076 0.015357 0.006992 0.012712 0.018107 0.006992 0.008875 0.020151 0.006992 0.004711 0.021409 0.006992 0.000381 0.021834 0.006992 -0.00395 0.021409 0.006992 -0.008114 0.020151 0.006992 -0.011951 0.018107 0.006992 -0.015315 0.015357 0.006992 -0.018075 0.012006 0.006992 -0.020126 0.008184 0.006992 -0.02139 0.004035 0.006992 -0.021816 -0.000305 0.006992 -0.02139 -0.004592 0.006992 -0.020126 -0.00874 0.006992 -0.018075 -0.012563 0.006992 -0.015315 -0.015914 0.006992 -0.011951 -0.018664 0.006992 -0.008114 -0.020707 0.006992 -0.00395 -0.021966 0.006992 0.000109 -0.014481 0.006992 0.011976 -0.014481 0.006992 0.011976 -0.000303 0.006992 0.011976 0.014223 0.006992 0.000109 0.014223 0.006992 0.000109 -0.000303 7.1e-05 0.004711 -0.021966 7.1e-05 0.008875 -0.020707 7.1e-05 0.012712 -0.018664 7.1e-05 0.016076 -0.015914 7.1e-05 0.018836 -0.012563 7.1e-05 0.020887 -0.00874 7.1e-05 0.02215 -0.004592 7.1e-05 0.022577 -0.000305 7.1e-05 0.02215 0.004035 7.1e-05 0.020887 0.008184 7.1e-05 0.018836 0.012006 7.1e-05 0.016076 0.015357 7.1e-05 0.012712 0.018107 7.1e-05 0.008875 0.020151 7.1e-05 0.004711 0.021409 7.1e-05 0.000381 0.021834 7.1e-05 -0.00395 0.021409 7.1e-05 -0.008114 0.020151 7.1e-05 -0.011951 0.018107 7.1e-05 -0.015315 0.015357 7.1e-05 -0.018075 0.012006 7.1e-05 -0.020126 0.008184 7.1e-05 -0.02139 0.004035 7.1e-05 -0.021816 -0.000278 7.1e-05 -0.02139 -0.004592 7.1e-05 -0.020126 -0.00874 7.1e-05 -0.018075 -0.012563 7.1e-05 -0.015315 -0.015914 7.1e-05 -0.011951 -0.018664 7.1e-05 -0.008114 -0.020707 7.1e-05 -0.00395 -0.021966 7.1e-05 0.000322 -0.022391 2.6e-05 0.025028 -0.02433 2.6e-05 0.025028 0.024333 2.6e-05 -0.023668 0.024333 2.6e-05 -0.023668 -0.02433 2.6e-05 0.000134 -0.009773 2.6e-05 0.000134 0.009775 2.6e-05 0.013151 0.009775 2.6e-05 0.013151 -0.009773 numsurf 68 SURF 0x10 mat 1 refs 3 32 0.880578994751 0.490392118692 0 0.954632222652 0.494380295277 1 0.950653195381 0.576559364796 SURF 0x10 mat 1 refs 4 32 0.880578994751 0.490392118692 1 0.950653195381 0.576559364796 2 0.938866615295 0.654525578022 33 0.880578994751 0.712588429451 SURF 0x10 mat 1 refs 3 33 0.880578994751 0.712588429451 2 0.938866615295 0.654525578022 3 0.919740259647 0.726369261742 SURF 0x10 mat 1 refs 4 33 0.880578994751 0.712588429451 3 0.919740259647 0.726369261742 4 0.893994748592 0.789356350899 34 0.747845411301 0.712588429451 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 4 0.893994748592 0.789356350899 5 0.862622976303 0.841034352779 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 5 0.862622976303 0.841034352779 6 0.826832234859 0.879436850548 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 6 0.826832234859 0.879436850548 7 0.787998735905 0.903085231781 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 7 0.787998735905 0.903085231781 8 0.747864127159 0.911080360413 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 8 0.747864127159 0.911080360413 9 0.707233190536 0.903085231781 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 9 0.707233190536 0.903085231781 10 0.668390572071 0.879436850548 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 10 0.668390572071 0.879436850548 11 0.632609128952 0.841034352779 SURF 0x10 mat 1 refs 3 34 0.747845411301 0.712588429451 11 0.632609128952 0.841034352779 12 0.601237356663 0.789356350899 SURF 0x10 mat 1 refs 4 34 0.747845411301 0.712588429451 12 0.601237356663 0.789356350899 13 0.575491964817 0.726369261742 35 0.611853778362 0.712588429451 SURF 0x10 mat 1 refs 3 35 0.611853778362 0.712588429451 13 0.575491964817 0.726369261742 14 0.556356191635 0.654525578022 SURF 0x10 mat 1 refs 4 35 0.611853778362 0.712588429451 14 0.556356191635 0.654525578022 15 0.544578909874 0.576559364796 36 0.611853778362 0.490392029285 SURF 0x10 mat 1 refs 3 36 0.611853778362 0.490392029285 15 0.544578909874 0.576559364796 16 0.540600001812 0.495485037565 SURF 0x10 mat 1 refs 3 36 0.611853778362 0.490392029285 16 0.540600001812 0.495485037565 17 0.544578909874 0.41439178586 SURF 0x10 mat 1 refs 3 36 0.611853778362 0.490392029285 17 0.544578909874 0.41439178586 18 0.556356191635 0.336425572634 SURF 0x10 mat 1 refs 4 36 0.611853778362 0.490392029285 18 0.556356191635 0.336425572634 19 0.575491964817 0.264581918716 37 0.747845411301 0.490392118692 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 19 0.575491964817 0.264581918716 20 0.601237356663 0.201594740152 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 20 0.601237356663 0.201594740152 21 0.632609307766 0.149916857481 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 21 0.632609307766 0.149916857481 22 0.668390572071 0.111514180899 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 22 0.668390572071 0.111514180899 23 0.70723336935 0.0878471434116 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 23 0.70723336935 0.0878471434116 24 0.747864305973 0.0798708200455 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 24 0.747864305973 0.0798708200455 25 0.787998735905 0.0878471434116 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 25 0.787998735905 0.0878471434116 26 0.826832234859 0.111514180899 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 26 0.826832234859 0.111514180899 27 0.862622976303 0.149916857481 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 27 0.862622976303 0.149916857481 28 0.893994748592 0.201594829559 SURF 0x10 mat 1 refs 3 37 0.747845411301 0.490392118692 28 0.893994748592 0.201594829559 29 0.919740259647 0.264581918716 SURF 0x10 mat 1 refs 4 37 0.747845411301 0.490392118692 29 0.919740259647 0.264581918716 30 0.938866615295 0.336425572634 32 0.880578994751 0.490392118692 SURF 0x10 mat 1 refs 3 32 0.880578994751 0.490392118692 30 0.938866615295 0.336425572634 31 0.950653195381 0.41439178586 SURF 0x10 mat 1 refs 3 0 0.954632222652 0.494380295277 32 0.880578994751 0.490392118692 31 0.950653195381 0.41439178586 SURF 0x10 mat 1 refs 4 1 0.950653195381 0.576559364796 38 0.950653195381 0.576559364796 39 0.938866615295 0.654525578022 2 0.938866615295 0.654525578022 SURF 0x10 mat 1 refs 4 2 0.938866615295 0.654525578022 39 0.938866615295 0.654525578022 40 0.919740259647 0.726369261742 3 0.919740259647 0.726369261742 SURF 0x10 mat 1 refs 4 3 0.919740259647 0.726369261742 40 0.919740259647 0.726369261742 41 0.893994748592 0.789356350899 4 0.893994748592 0.789356350899 SURF 0x10 mat 1 refs 4 4 0.893994748592 0.789356350899 41 0.893994748592 0.789356350899 42 0.862622976303 0.841034352779 5 0.862622976303 0.841034352779 SURF 0x10 mat 1 refs 4 5 0.862622976303 0.841034352779 42 0.862622976303 0.841034352779 43 0.826832234859 0.879436850548 6 0.826832234859 0.879436850548 SURF 0x10 mat 1 refs 4 6 0.826832234859 0.879436850548 43 0.826832234859 0.879436850548 44 0.787998735905 0.903085231781 7 0.787998735905 0.903085231781 SURF 0x10 mat 1 refs 4 7 0.787998735905 0.903085231781 44 0.787998735905 0.903085231781 45 0.747864127159 0.911080360413 8 0.747864127159 0.911080360413 SURF 0x10 mat 1 refs 4 8 0.747864127159 0.911080360413 45 0.747864127159 0.911080360413 46 0.707233190536 0.903085231781 9 0.707233190536 0.903085231781 SURF 0x10 mat 1 refs 4 9 0.707233190536 0.903085231781 46 0.707233190536 0.903085231781 47 0.668390572071 0.879436850548 10 0.668390572071 0.879436850548 SURF 0x10 mat 1 refs 4 10 0.668390572071 0.879436850548 47 0.668390572071 0.879436850548 48 0.632609128952 0.841034352779 11 0.632609128952 0.841034352779 SURF 0x10 mat 1 refs 4 11 0.632609128952 0.841034352779 48 0.632609128952 0.841034352779 49 0.601237356663 0.789356350899 12 0.601237356663 0.789356350899 SURF 0x10 mat 1 refs 4 12 0.601237356663 0.789356350899 49 0.601237356663 0.789356350899 50 0.575491964817 0.726369261742 13 0.575491964817 0.726369261742 SURF 0x10 mat 1 refs 4 13 0.575491964817 0.726369261742 50 0.575491964817 0.726369261742 51 0.556356191635 0.654525578022 14 0.556356191635 0.654525578022 SURF 0x10 mat 1 refs 4 14 0.556356191635 0.654525578022 51 0.556356191635 0.654525578022 52 0.544578909874 0.576559364796 15 0.544578909874 0.576559364796 SURF 0x10 mat 1 refs 4 15 0.544578909874 0.576559364796 52 0.544578909874 0.576559364796 53 0.540600001812 0.495485037565 16 0.540600001812 0.495485037565 SURF 0x10 mat 1 refs 4 16 0.540600001812 0.495485037565 53 0.540600001812 0.495485037565 54 0.544578909874 0.41439178586 17 0.544578909874 0.41439178586 SURF 0x10 mat 1 refs 4 17 0.544578909874 0.41439178586 54 0.544578909874 0.41439178586 55 0.556356191635 0.336425572634 18 0.556356191635 0.336425572634 SURF 0x10 mat 1 refs 4 18 0.556356191635 0.336425572634 55 0.556356191635 0.336425572634 56 0.575491964817 0.264581918716 19 0.575491964817 0.264581918716 SURF 0x10 mat 1 refs 4 19 0.575491964817 0.264581918716 56 0.575491964817 0.264581918716 57 0.601237356663 0.201594740152 20 0.601237356663 0.201594740152 SURF 0x10 mat 1 refs 4 20 0.601237356663 0.201594740152 57 0.601237356663 0.201594740152 58 0.632609307766 0.149916857481 21 0.632609307766 0.149916857481 SURF 0x10 mat 1 refs 4 21 0.632609307766 0.149916857481 58 0.632609307766 0.149916857481 59 0.668390572071 0.111514180899 22 0.668390572071 0.111514180899 SURF 0x10 mat 1 refs 4 22 0.668390572071 0.111514180899 59 0.668390572071 0.111514180899 60 0.70723336935 0.0878471434116 23 0.70723336935 0.0878471434116 SURF 0x10 mat 1 refs 4 23 0.70723336935 0.0878471434116 60 0.70723336935 0.0878471434116 61 0.747611403465 0.0798708200455 24 0.747611403465 0.0798708200455 SURF 0x10 mat 1 refs 4 24 0.747611403465 0.0798708200455 61 0.747611403465 0.0798708200455 62 0.787998735905 0.0878471434116 25 0.787998735905 0.0878471434116 SURF 0x10 mat 1 refs 4 25 0.787998735905 0.0878471434116 62 0.787998735905 0.0878471434116 63 0.826832234859 0.111514180899 26 0.826832234859 0.111514180899 SURF 0x10 mat 1 refs 4 26 0.826832234859 0.111514180899 63 0.826832234859 0.111514180899 64 0.862622976303 0.149916857481 27 0.862622976303 0.149916857481 SURF 0x10 mat 1 refs 4 27 0.862622976303 0.149916857481 64 0.862622976303 0.149916857481 65 0.893994748592 0.201594829559 28 0.893994748592 0.201594829559 SURF 0x10 mat 1 refs 4 28 0.893994748592 0.201594829559 65 0.893994748592 0.201594829559 66 0.919740259647 0.264581918716 29 0.919740259647 0.264581918716 SURF 0x10 mat 1 refs 4 29 0.919740259647 0.264581918716 66 0.919740259647 0.264581918716 67 0.938866615295 0.336425572634 30 0.938866615295 0.336425572634 SURF 0x10 mat 1 refs 4 30 0.938866615295 0.336425572634 67 0.938866615295 0.336425572634 68 0.950653195381 0.41439178586 31 0.950653195381 0.41439178586 SURF 0x10 mat 1 refs 4 69 0.954632222652 0.494380295277 0 0.954632222652 0.494380295277 31 0.950653195381 0.41439178586 68 0.950653195381 0.41439178586 SURF 0x10 mat 1 refs 4 0 0.954632222652 0.494380295277 69 0.954632222652 0.494380295277 38 0.950653195381 0.576559364796 1 0.950653195381 0.576559364796 SURF 0x00 mat 1 refs 4 74 0.836503088474 0.490860193968 75 0.65349572897 0.490860193968 72 0.517204582691 0.0451940856874 73 0.972784936428 0.0451941750944 SURF 0x00 mat 1 refs 4 75 0.65349572897 0.490860193968 76 0.65349572897 0.734589099884 71 0.517204403877 0.95697259903 72 0.517204582691 0.0451940856874 SURF 0x00 mat 1 refs 4 70 0.972784936428 0.95697259903 71 0.517204403877 0.95697259903 76 0.65349572897 0.734589099884 77 0.836503088474 0.734589099884 SURF 0x00 mat 1 refs 4 73 0.972784936428 0.0451941750944 70 0.972784936428 0.95697259903 77 0.836503088474 0.734589099884 74 0.836503088474 0.490860193968 kids 0 OBJECT poly name "vitre" data 5 vitre crease 30.000000 numvert 4 0.006992 0.011976 -0.014481 0.006992 0.011976 0.014223 0.006992 0.000109 0.014223 0.006992 0.000109 -0.014481 numsurf 1 SURF 0x10 mat 2 refs 4 0 1.0 0.999999821186 1 3.24457403167e-08 0.999999940395 2 0.0 1.05457530708e-07 3 0.999999880791 0.0 kids 0 --- NEW BINARY FILE "compass.png" --- --- NEW FILE "compass.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>compass.ac</path> <animation> <object-name>fond</object-name> <object-name>bar</object-name> <object-name>compass</object-name> <object-name>vitre</object-name> </animation> <animation> <type>noshadow</type> <object-name>vitre</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>glass.png</texture> <object-name>vitre</object-name> </animation> <animation> <type>material</type> <object-name>compass</object-name> <object-name>bar</object-name> <emission> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> <red> 0.2 </red> <green> 0.4 </green> <blue> 0.8 </blue> </emission> </animation> <animation> <type>rotate</type> <object-name>compass</object-name> <property>/instrumentation/heading-indicator/indicated-heading-deg</property> <center> <x-m> -0.014 </x-m> <y-m> 0.000 </y-m> <z-m> 0.000 </z-m> </center> <axis> <x> 0 </x> <y> 0 </y> <z> 1 </z> </axis> </animation> </PropertyList> --- NEW BINARY FILE "glass.png" --- |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Liveries In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Liveries Added Files: Readme.txt default.xml Log Message: - new plane --- NEW FILE "Readme.txt" --- default These liveries were made by : Emmanuel BARANGER 2010 --- NEW FILE "default.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <sim> <model> <livery> <name type="string">Default</name> <texture>texture.png</texture> <diffuse> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> </diffuse> <ambient> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> </ambient> <specular> <red> 1.0 </red> <green> 1.0 </green> <blue> 1.0 </blue> </specular> <emission> <red> 0.0 </red> <green> 0.0 </green> <blue> 0.0 </blue> </emission> <!-- <transparency> <alpha> 0.0 </alpha> </transparency> <shininess>10</shininess> --> </livery> </model> </sim> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior/Panel Added Files: colors.png panel.ac panel.xml Log Message: - new plane --- NEW BINARY FILE "colors.png" --- --- NEW FILE "panel.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 OBJECT world kids 1 OBJECT poly name "panel" data 5 panel texture "colors.png" texrep 1 1 crease 30.000000 numvert 21 0.003854 0.09256 -0.044813 0.003854 0.054582 -0.141809 0.003854 0.054582 0.141809 0.003854 0.09256 0.044815 0.003854 0.021822 -0.181744 0.003854 0.08025 -0.089628 0.003854 0.097778 2e-06 0.003854 0.08025 0.089627 0.003854 0.021822 0.181744 0.003854 -0.04559 -0.194844 0.003854 -0.04559 0.194844 0.003854 -0.04559 -1e-06 0.003854 -0.097778 -0.194844 0.003854 -0.097778 -1e-06 0.003854 -0.097778 0.194844 -0.003854 -0.097778 0.194844 -0.003854 -0.097778 -0.194844 -0.003854 -0.04559 0.194844 -0.003854 -0.04559 -0.194844 -0.003854 0.021822 0.181744 -0.003854 0.021822 -0.181744 numsurf 16 SURF 0x10 mat 1 refs 3 4 0.893970429897 0.547303795815 11 0.500001132488 0.401173740625 9 0.922365248203 0.401173740625 SURF 0x10 mat 1 refs 3 1 0.807402670383 0.618318200111 11 0.500001132488 0.401173740625 4 0.893970429897 0.547303795815 SURF 0x10 mat 1 refs 3 1 0.807402670383 0.618318200111 5 0.694287061691 0.673959076405 11 0.500001132488 0.401173740625 SURF 0x10 mat 1 refs 3 0 0.597142994404 0.700643658638 11 0.500001132488 0.401173740625 5 0.694287061691 0.673959076405 SURF 0x10 mat 1 refs 3 0 0.597142994404 0.700643658638 6 0.499996751547 0.711954891682 11 0.500001132488 0.401173740625 SURF 0x10 mat 1 refs 3 3 0.402854949236 0.700643658638 11 0.500001132488 0.401173740625 6 0.499996751547 0.711954891682 SURF 0x10 mat 1 refs 3 3 0.402854949236 0.700643658638 7 0.305713176727 0.673959076405 11 0.500001132488 0.401173740625 SURF 0x10 mat 1 refs 3 2 0.192597329617 0.618318200111 11 0.500001132488 0.401173740625 7 0.305713176727 0.673959076405 SURF 0x10 mat 1 refs 3 2 0.192597329617 0.618318200111 8 0.10602965951 0.547303795815 11 0.500001132488 0.401173740625 SURF 0x10 mat 1 refs 3 8 0.10602965951 0.547303795815 10 0.0776346921921 0.401173740625 11 0.500001132488 0.401173740625 SURF 0x10 mat 1 refs 4 9 0.922365248203 0.401173740625 11 0.500001132488 0.401173740625 13 0.500001132488 0.288044989109 12 0.922365248203 0.288044989109 SURF 0x10 mat 1 refs 4 11 0.500001132488 0.401173740625 10 0.0776346921921 0.401173740625 14 0.0776346921921 0.288044989109 13 0.500001132488 0.288044989109 SURF 0x10 mat 1 refs 4 14 0.0776346921921 0.288044989109 10 0.0776346921921 0.401173740625 17 0.0776346921921 0.401173740625 15 0.0776346921921 0.288044989109 SURF 0x10 mat 1 refs 4 9 0.922365248203 0.401173740625 12 0.922365248203 0.288044989109 16 0.922365248203 0.288044989109 18 0.922365248203 0.401173740625 SURF 0x10 mat 1 refs 4 10 0.0776346921921 0.401173740625 8 0.10602965951 0.547303795815 19 0.10602965951 0.547303795815 17 0.0776346921921 0.401173740625 SURF 0x10 mat 1 refs 4 4 0.893970429897 0.547303795815 9 0.922365248203 0.401173740625 18 0.922365248203 0.401173740625 20 0.893970429897 0.547303795815 kids 0 --- NEW FILE "panel.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>panel.ac</path> <animation> <!-- Objets opaques --> <object-name>panel</object-name> <!-- Objets transparents --> </animation> <!-- AI --> <model> <path>Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/ai/ai.xml</path> <offsets> <x-m> 0.005 </x-m> <y-m> 0.000 </y-m> <z-m> 0.030 </z-m> </offsets> </model> <!-- Alt --> <model> <path>Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/alt/alt.xml</path> <offsets> <x-m> 0.003 </x-m> <y-m> 0.070 </y-m> <z-m> 0.030 </z-m> </offsets> </model> <!-- Asi --> <model> <path>Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/asi/asi.xml</path> <offsets> <x-m> 0.003 </x-m> <y-m> -0.070 </y-m> <z-m> 0.030 </z-m> </offsets> </model> <!-- compass --> <model> <path>Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/compass/compass.xml</path> <offsets> <x-m> 0.003 </x-m> <y-m> 0.000 </y-m> <z-m> -0.040 </z-m> </offsets> </model> <!-- Vsi --> <model> <path>Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/vsi/vsi.xml</path> <offsets> <x-m> 0.003 </x-m> <y-m> 0.070 </y-m> <z-m> -0.040 </z-m> </offsets> </model> <!-- Rpm --> <model> <path>Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/rpm/rpm.xml</path> <offsets> <x-m> 0.003 </x-m> <y-m> -0.070 </y-m> <z-m> -0.040 </z-m> </offsets> </model> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/rpm In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior/Panel/Instruments/rpm Added Files: glass.png rpm.ac rpm.png rpm.xml Log Message: - new plane --- NEW BINARY FILE "glass.png" --- --- NEW FILE "rpm.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite.001" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "ac3dmat1" rgb 1 1 1 amb 0.2 0.2 0.2 emis 0 0 0 spec 0.5 0.5 0.5 shi 10 trans 0 MATERIAL "transparent" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.7 OBJECT world kids 4 OBJECT poly name "face" data 4 face texture "rpm.png" texrep 1 1 crease 30.000000 numvert 17 0.000946 0.000339 -0.023315 0.000948 0.009252 -0.021543 0.000946 0.01681 -0.016493 0.000948 0.021859 -0.008935 [...3305 lines suppressed...] 257 0.499992012978 0.499991953373 SURF 0x10 mat 3 refs 3 253 0.507233142853 0.463594347239 254 0.526223242283 0.473744779825 257 0.499992012978 0.499991953373 SURF 0x10 mat 3 refs 3 254 0.526223242283 0.473744779825 255 0.536389648914 0.492766797543 257 0.499992012978 0.499991953373 SURF 0x10 mat 3 refs 3 256 0.534279644489 0.514186561108 245 0.526223242283 0.526223242283 257 0.499992012978 0.499991953373 kids 0 --- NEW BINARY FILE "rpm.png" --- --- NEW FILE "rpm.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>rpm.ac</path> <animation> <object-name>fond</object-name> <object-name>face</object-name> <object-name>needle</object-name> <object-name>vitre</object-name> </animation> <animation> <type>noshadow</type> <object-name>vitre</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>glass.png</texture> <object-name>vitre</object-name> </animation> <animation> <type>material</type> <object-name>face</object-name> <object-name>needle</object-name> <emission> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> <red> 0.2 </red> <green> 0.4 </green> <blue> 0.8 </blue> </emission> </animation> <animation> <type>rotate</type> <object-name>needle</object-name> <property>/engines/engine[0]/rpm</property> <min>0</min> <max>4500</max> <interpolation> <entry><ind> 0 </ind><dep> 0 </dep></entry> <entry><ind> 4500 </ind><dep> 330 </dep></entry> </interpolation> <axis> <x> -1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/alt In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior/Panel/Instruments/alt Added Files: alt.ac alt.png alt.xml glass.png Log Message: - new plane --- NEW FILE "alt.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "transparent" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.7 OBJECT world kids 9 OBJECT poly name "Knob" data 4 Knob texture "alt.png" texrep 1 1 crease 30.000000 numvert 33 0.007196 -0.018402 0.022558 0.007196 -0.017506 0.021972 0.007196 -0.016908 0.021095 0.007196 -0.016697 0.02006 0.007196 -0.016908 0.019025 [...3968 lines suppressed...] 247 0.499988973141 0.499988973141 SURF 0x10 mat 2 refs 3 243 0.499988973141 0.462889164686 244 0.526218473911 0.47375947237 247 0.499988973141 0.499988973141 SURF 0x10 mat 2 refs 3 244 0.526218473911 0.47375947237 245 0.537132740021 0.499988973141 247 0.499988973141 0.499988973141 SURF 0x10 mat 2 refs 3 245 0.537132740021 0.499988973141 246 0.530861437321 0.520629286766 247 0.499988973141 0.499988973141 kids 0 --- NEW BINARY FILE "alt.png" --- --- NEW FILE "alt.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>alt.ac</path> <animation> <object-name>fond</object-name> <object-name>knob</object-name> <object-name>face</object-name> <object-name>poly</object-name> <object-name>pressure</object-name> <object-name>needle1</object-name> <object-name>needle2</object-name> <object-name>needle3</object-name> <object-name>vitre</object-name> </animation> <animation> <type>noshadow</type> <object-name>vitre</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>glass.png</texture> <object-name>vitre</object-name> </animation> <animation> <type>material</type> <object-name>face</object-name> <object-name>needle1</object-name> <object-name>needle2</object-name> <object-name>needle3</object-name> <object-name>pressure</object-name> <emission> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> <red> 0.2 </red> <green> 0.4 </green> <blue> 0.8 </blue> </emission> </animation> <animation> <type>rotate</type> <object-name>needle1</object-name> <property>/instrumentation/altimeter/indicated-altitude-ft</property> <factor>0.36</factor> <axis> <x> -1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>needle2</object-name> <property>/instrumentation/altimeter/indicated-altitude-ft</property> <factor>0.036</factor> <axis> <x> -1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>needle3</object-name> <property>/instrumentation/altimeter/indicated-altitude-ft</property> <factor>0.0036</factor> <axis> <x> -1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>pressure</object-name> <property>/instrumentation/altimeter/setting-inhg</property> <interpolation> <entry><ind> 28.0 </ind><dep> -200 </dep></entry> <entry><ind> 30.0 </ind><dep> 0 </dep></entry> <entry><ind> 31.3 </ind><dep> 130 </dep></entry> </interpolation> <axis> <x>1</x> <y>0</y> <z>0</z> </axis> </animation> </PropertyList> --- NEW BINARY FILE "glass.png" --- |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:57
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/asi In directory baron.flightgear.org:/tmp/cvs-serv25398/Models/Interior/Panel/Instruments/asi Added Files: asi.ac asi.png asi.xml glass.png Log Message: - new plane --- NEW FILE "asi.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "transparent.001" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.7 OBJECT world kids 4 OBJECT poly name "face" data 4 face texture "asi.png" texrep 1 1 crease 30.000000 numvert 17 0.002298 -0.000122 -0.02311 0.002298 0.008714 -0.021353 0.002298 0.016205 -0.016348 0.002298 0.02121 -0.008857 0.002298 0.022967 -2.1e-05 [...3163 lines suppressed...] 247 0.499989002943 0.499989002943 SURF 0x10 mat 2 refs 3 243 0.499989002943 0.462896704674 244 0.526223421097 0.473754584789 247 0.499989002943 0.499989002943 SURF 0x10 mat 2 refs 3 244 0.526223421097 0.473754584789 245 0.537125170231 0.499989002943 247 0.499989002943 0.499989002943 SURF 0x10 mat 2 refs 3 245 0.537125170231 0.499989002943 246 0.530851721764 0.520629942417 247 0.499989002943 0.499989002943 kids 0 --- NEW BINARY FILE "asi.png" --- --- NEW FILE "asi.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>asi.ac</path> <animation> <object-name>fond</object-name> <object-name>face</object-name> <object-name>needle</object-name> <object-name>vitre</object-name> </animation> <animation> <type>noshadow</type> <object-name>vitre</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>glass.png</texture> <object-name>vitre</object-name> </animation> <animation> <type>material</type> <object-name>face</object-name> <object-name>needle</object-name> <emission> <factor-prop>/systems/electrical/outputs/instrument-lights</factor-prop> <red> 0.2 </red> <green> 0.4 </green> <blue> 0.8 </blue> </emission> </animation> <animation> <type>rotate</type> <object-name>needle</object-name> <property>/instrumentation/airspeed-indicator/indicated-speed-kt</property> <interpolation> <entry><ind> 0.00 </ind><dep> 0 </dep></entry> <entry><ind> 86.95 </ind><dep> 26 </dep></entry> <entry><ind> 608.69 </ind><dep> 334 </dep></entry> </interpolation> <axis> <x> -1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> </PropertyList> --- NEW BINARY FILE "glass.png" --- |
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models In directory baron.flightgear.org:/tmp/cvs-serv25398/Models Added Files: prop.png pterodactyl.ac pterodactyl.xml shadow.ac shadow.png shadow.xml texture.png texture.xcf.gz Log Message: - new plane --- NEW BINARY FILE "prop.png" --- --- NEW FILE "pterodactyl.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "gloss" rgb 0.2 0.2 0.2 amb 0 0 0 emis 0 0 0 spec 0.110345 0.014746 0.014746 shi 14 trans 0.6 MATERIAL "transparent" rgb 0.547091 0.565624 0.595981 amb 0 0 0 emis 0 0 0 spec 1 1 1 shi 64 trans 0.7 OBJECT world kids 23 OBJECT poly name "ailes" data 5 ailes texture "texture.png" texrep 1 1 crease 30.000000 numvert 614 2.187797 1.117719 7.012674 2.186224 1.108315 7.012684 2.187355 1.098332 7.012698 2.142754 1.012834 4.635576 [...96722 lines suppressed...] kids 0 OBJECT poly name "vitres" data 6 vitres crease 30.000000 numvert 4 0.640984 1.000666 0.120614 0.573459 0.74762 0.202159 0.573459 0.74762 -0.202159 0.640984 1.000666 -0.120614 numsurf 1 SURF 0x10 mat 3 refs 4 0 0.798315167427 1.0 3 0.201685801148 1.0 2 0.0 9.42191377362e-07 1 1.0 0.0 kids 0 --- NEW FILE "pterodactyl.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <path>pterodactyl.ac</path> <nasal> <load> var livery_update = aircraft.livery_update.new("Aircraft/Piper-PA-32/Models/Liveries", 10); </load> <unload> livery_update.stop(); </unload> </nasal> <animation> <!-- Objets opaques --> <object-name>fuselage</object-name> <object-name>roueA1</object-name> <object-name>roueA2</object-name> <object-name>roueG</object-name> <object-name>roueD</object-name> <object-name>structure</object-name> <object-name>ailes</object-name> <object-name>elevonG</object-name> <object-name>elevonD</object-name> <object-name>ailes2</object-name> <object-name>derives</object-name> <object-name>directionG</object-name> <object-name>directionD</object-name> <object-name>bol</object-name> <object-name>helice</object-name> <object-name>trous</object-name> <object-name>tourvitres</object-name> <object-name>air</object-name> <!-- Objets transparents --> <object-name>vitres</object-name> <object-name>propblur</object-name> <object-name>propdisc</object-name> </animation> <animation> <type>noshadow</type> <object-name>vitres</object-name> <object-name>propdisc</object-name> <object-name>propblur</object-name> </animation> <animation> <type>shader</type> <shader>chrome</shader> <texture>Aircraft/Generic/Effects/glass_shader.png</texture> <object-name>vitres</object-name> </animation> <animation> <type>material</type> <object-name>fuselage</object-name> <object-name>roueA1</object-name> <object-name>roueA2</object-name> <object-name>roueG</object-name> <object-name>roueD</object-name> <object-name>structure</object-name> <object-name>ailes</object-name> <object-name>elevonG</object-name> <object-name>elevonD</object-name> <object-name>ailes2</object-name> <object-name>derives</object-name> <object-name>directionG</object-name> <object-name>directionD</object-name> <object-name>bol</object-name> <object-name>helice</object-name> <object-name>trous</object-name> <object-name>air</object-name> <property-base>sim/model/livery</property-base> <texture-prop>texture</texture-prop> <texture>texture.png</texture> <!-- <diffuse> <red-prop>diffuse/red</red-prop> <green-prop>diffuse/green</green-prop> <blue-prop>diffuse/blue</blue-prop> </diffuse> <ambient> <red-prop>ambient/red</red-prop> <green-prop>ambient/green</green-prop> <blue-prop>ambient/blue</blue-prop> </ambient> --> <specular> <red-prop>specular/red</red-prop> <green-prop>specular/green</green-prop> <blue-prop>specular/blue</blue-prop> </specular> <emission> <red-prop>emission/red</red-prop> <green-prop>emission/green</green-prop> <blue-prop>emission/blue</blue-prop> </emission> <!-- <shininess> <shininess-prop>shininess</shininess-prop> </shininess> --> </animation> <!-- Une ombre pour OSG --> <model> <name>shadowOSG</name> <path>Aircraft/Pterodactyl/Models/shadow.xml</path> </model> <animation> <type>select</type> <object-name>shadowOSG</object-name> <condition> <equals> <property>sim[0]/rendering/shadows-ai</property> <value>true</value> </equals> </condition> </animation> <!-- Interieur --> <model> <path>Aircraft/Pterodactyl/Models/Interior/interior.xml</path> <offsets> <x-m> 0 </x-m> <y-m> 0 </y-m> <z-m> 0 </z-m> </offsets> </model> <!-- L'hélice --> <animation> <name>HeliceComplete</name> <object-name>propdisc</object-name> <object-name>propblur</object-name> <object-name>helice</object-name> <object-name>bol</object-name> </animation> <!-- Séléction de l'objet visible en fonction des rpm --> <animation> <type>select</type> <object-name>propdisc</object-name> <condition> <greater-than> <property>engines/engine[0]/rpm</property> <value>1500</value> </greater-than> </condition> </animation> <animation> <type>select</type> <object-name>propblur</object-name> <condition> <and> <greater-than> <property>engines/engine[0]/rpm</property> <value>600.000</value> </greater-than> <less-than> <property>engines/engine[0]/rpm</property> <value>1500.001</value> </less-than> </and> </condition> </animation> <animation> <type>select</type> <object-name>helice</object-name> <condition> <less-than> <property>engines/engine[0]/rpm</property> <value>1500</value> </less-than> </condition> </animation> <animation> <type>spin</type> <object-name>HeliceComplete</object-name> <property>/engines/engine[0]/rpm</property> <factor> 1 </factor> <center> <x-m> -2.865 </x-m> <y-m> 0.000 </y-m> <z-m> 0.079 </z-m> </center> <axis> <x> -1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> <!-- Animations des elevons --> <animation> <type>rotate</type> <object-name>elevonG</object-name> <property>surface-positions/left-aileron-pos-norm</property> <factor> 15 </factor> <axis> <x1-m> 2.441 </x1-m> <y1-m> -6.984 </y1-m> <z1-m> 1.104 </z1-m> <x2-m> 1.323 </x2-m> <y2-m> -4.636 </y2-m> <z2-m> 1.109 </z2-m> </axis> </animation> <animation> <type>rotate</type> <object-name>elevonD</object-name> <property>surface-positions/right-aileron-pos-norm</property> <factor> 15 </factor> <axis> <x1-m> 1.323 </x1-m> <y1-m> 4.636 </y1-m> <z1-m> 1.109 </z1-m> <x2-m> 2.441 </x2-m> <y2-m> 6.984 </y2-m> <z2-m> 1.104 </z2-m> </axis> </animation> <animation> <type>rotate</type> <object-name>elevonG</object-name> <property>surface-positions/elevator-pos-norm</property> <factor> 15 </factor> <axis> <x1-m> 2.441 </x1-m> <y1-m> -6.984 </y1-m> <z1-m> 1.104 </z1-m> <x2-m> 1.323 </x2-m> <y2-m> -4.636 </y2-m> <z2-m> 1.109 </z2-m> </axis> </animation> <animation> <type>rotate</type> <object-name>elevonD</object-name> <property>surface-positions/elevator-pos-norm</property> <factor> 15 </factor> <axis> <x1-m> 1.323 </x1-m> <y1-m> 4.636 </y1-m> <z1-m> 1.109 </z1-m> <x2-m> 2.441 </x2-m> <y2-m> 6.984 </y2-m> <z2-m> 1.104 </z2-m> </axis> </animation> <!-- Animation des gouvernes de direction --> <animation> <type>rotate</type> <object-name>directionG</object-name> <property>surface-positions/rudder-pos-norm</property> <factor> 10 </factor> <center> <x-m> 2.503 </x-m> <y-m> -7.031 </y-m> <z-m> 1.083 </z-m> </center> <axis> <x> 0 </x> <y> 0 </y> <z> 1 </z> </axis> </animation> <animation> <type>rotate</type> <object-name>directionD</object-name> <property>surface-positions/rudder-pos-norm</property> <factor> 10 </factor> <center> <x-m> 2.503 </x-m> <y-m> 7.031 </y-m> <z-m> 1.083 </z-m> </center> <axis> <x> 0 </x> <y> 0 </y> <z> 1 </z> </axis> </animation> <!-- Rotation de la roue avant en fonction de la gouverne de direction --> <animation> <type>rotate</type> <object-name>roueA1</object-name> <property>surface-positions/rudder-pos-norm</property> <factor> -10 </factor> <center> <x-m> -1.385 </x-m> <y-m> 0.000 </y-m> <z-m> -1.514 </z-m> </center> <axis> <x> 0 </x> <y> 0 </y> <z> 1 </z> </axis> </animation> <!-- Rotation des roues lors du roulage --> <animation> <type>spin</type> <object-name>roueA1</object-name> <property>gear/gear[0]/rollspeed-ms</property> <factor> 30 </factor> <center> <x-m> -1.385 </x-m> <y-m> 0.000 </y-m> <z-m> -1.514 </z-m> </center> <axis> <x> 0 </x> <y> -1 </y> <z> 0 </z> </axis> </animation> <animation> <type>spin</type> <object-name>roueA2</object-name> <property>gear/gear[1]/rollspeed-ms</property> <factor> 30 </factor> <center> <x-m> -0.100 </x-m> <y-m> 0.000 </y-m> <z-m> -1.204 </z-m> </center> <axis> <x> 0 </x> <y> -1 </y> <z> 0 </z> </axis> </animation> <animation> <type>spin</type> <object-name>roueG</object-name> <property>gear/gear[2]/rollspeed-ms</property> <factor> 30 </factor> <center> <x-m> 2.792 </x-m> <y-m> -2.980 </y-m> <z-m> -0.889 </z-m> </center> <axis> <x> 0 </x> <y> -1 </y> <z> 0 </z> </axis> </animation> <animation> <type>spin</type> <object-name>roueD</object-name> <property>gear/gear[3]/rollspeed-ms</property> <factor> 30 </factor> <center> <x-m> 2.792 </x-m> <y-m> 2.980 </y-m> <z-m> -0.889 </z-m> </center> <axis> <x> 0 </x> <y> -1 </y> <z> 0 </z> </axis> </animation> </PropertyList> --- NEW FILE "shadow.ac" --- AC3Db MATERIAL "DefaultWhite" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 MATERIAL "DefaultWhite.003" rgb 1 1 1 amb 1 1 1 emis 0 0 0 spec 0.5 0.5 0.5 shi 64 trans 0 OBJECT world kids 1 OBJECT poly name "shadow" data 6 shadow texture "shadow.png" texrep 1 1 crease 30.000000 numvert 4 3.09047 -1.508168 -7.055709 3.09047 -1.508168 7.055713 -3.09047 -1.508168 7.055711 -3.090469 -1.508168 -7.055713 numsurf 1 SURF 0x00 mat 1 refs 4 0 0.999999880791 3.23365071608e-07 3 3.63304479833e-07 0.0 2 0.0 0.999999880791 1 0.999999761581 1.0 kids 0 --- NEW BINARY FILE "shadow.png" --- --- NEW FILE "shadow.xml" --- <?xml version="1.0"?> <PropertyList> <path>shadow.ac</path> <animation> <!-- Objets opaques --> <!-- Objets transparents --> <object-name>shadow</object-name> </animation> <animation> <type>noshadow</type> <object-name>shadow</object-name> </animation> <!-- Une ombre pour OSG en attendant mieux ;) basé sur l'ombre du DC 3--> <!-- pitch --> <animation> <type>rotate</type> <object-name>shadow</object-name> <property>/orientation/pitch-deg</property> <factor> -1 </factor> <center> <x-m> 0 </x-m> <y-m> 0 </y-m> <z-m> 0 </z-m> </center> <axis> <x> 0 </x> <y> 1 </y> <z> 0 </z> </axis> </animation> <!-- roll --> <animation> <type>rotate</type> <object-name>shadow</object-name> <property>/orientation/roll-deg</property> <factor> 1 </factor> <center> <x-m> 0 </x-m> <y-m> 0 </y-m> <z-m> 0 </z-m> </center> <axis> <x> 1 </x> <y> 0 </y> <z> 0 </z> </axis> </animation> <!-- Translate to ground level --> <animation> <type>translate</type> <object-name>shadow</object-name> <property>/position/gear-agl-ft</property> <factor> -0.3 </factor> <center> <x-m> 0 </x-m> <y-m> 0 </y-m> <z-m> 0 </z-m> </center> <axis> <x> 0 </x> <y> 0 </y> <z> 1 </z> </axis> </animation> </PropertyList> --- NEW BINARY FILE "texture.png" --- --- NEW BINARY FILE "texture.xcf.gz" --- |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:02:56
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Dialogs In directory baron.flightgear.org:/tmp/cvs-serv25398/Dialogs Added Files: pterodactyl-menu.xml Log Message: - new plane --- NEW FILE "pterodactyl-menu.xml" --- <?xml version="1.0" encoding="UTF-8"?> <PropertyList> <default> <menu n="10"> <label>Westland Pterodactyl</label> <enabled type="bool">true</enabled> <item> <label>Select Livery</label> <binding> <command>nasal</command> <script>aircraft.livery.dialog.toggle()</script> </binding> </item> <!-- <item> <label>Immatriculation</label> <binding> <command>nasal</command> <script>pterodactyl.immat_dialog.toggle()</script> </binding> </item> --> </menu> </default> </PropertyList> |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:01:10
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/vsi In directory baron.flightgear.org:/tmp/cvs-serv25380/vsi Log Message: Directory /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/vsi added to the repository |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:00:55
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/rpm In directory baron.flightgear.org:/tmp/cvs-serv25357/rpm Log Message: Directory /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/rpm added to the repository |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:00:36
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/compass In directory baron.flightgear.org:/tmp/cvs-serv25333/compass Log Message: Directory /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/compass added to the repository |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:00:20
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/asi In directory baron.flightgear.org:/tmp/cvs-serv25317/asi Log Message: Directory /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/asi added to the repository |
From: Emmanuel B. <he...@ba...> - 2010-05-02 17:00:03
|
Update of /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/alt In directory baron.flightgear.org:/tmp/cvs-serv25294/alt Log Message: Directory /var/cvs/FlightGear-0.9/data/Aircraft/Pterodactyl/Models/Interior/Panel/Instruments/alt added to the repository |