[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[certi-cvs] applications/XPlaneHLAPlugin/initFile CMakeList...
From: |
certi-cvs |
Subject: |
[certi-cvs] applications/XPlaneHLAPlugin/initFile CMakeList... |
Date: |
Thu, 06 Nov 2008 14:32:51 +0000 |
CVSROOT: /sources/certi
Module name: applications
Changes by: Mathé <jmm> 08/11/06 14:32:51
Added files:
XPlaneHLAPlugin/initFile: CMakeLists.txt XPlane.fed
XPlaneCde.txt XPlaneOut.txt
XPlanePhiDget.txt XPlaneTrace.txt
initPhyDget.txt initXPlane.txt
Log message:
Update XPlaneHLA plugin
CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/CMakeLists.txt?cvsroot=certi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/XPlane.fed?cvsroot=certi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/XPlaneCde.txt?cvsroot=certi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/XPlaneOut.txt?cvsroot=certi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/XPlanePhiDget.txt?cvsroot=certi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/XPlaneTrace.txt?cvsroot=certi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/initPhyDget.txt?cvsroot=certi&rev=1.1
http://cvs.savannah.gnu.org/viewcvs/applications/XPlaneHLAPlugin/initFile/initXPlane.txt?cvsroot=certi&rev=1.1
Patches:
Index: CMakeLists.txt
===================================================================
RCS file: CMakeLists.txt
diff -N CMakeLists.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ CMakeLists.txt 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,26 @@
+#iCMake Time
+#parameters for PhiDget.exe + Trace.exe
+CONFIGURE_FILE(XPlanePhiDget.txt
${EXECUTABLE_OUTPUT_PATH}/${CMAKE_BUILD_TYPE}/XPlanePhiDget.txt COPYONLY)
+CONFIGURE_FILE(XPlaneTrace.txt
${EXECUTABLE_OUTPUT_PATH}/${CMAKE_BUILD_TYPE}/XPlaneTrace.txt COPYONLY)
+
+CONFIGURE_FILE(initPhyDget.txt
${EXECUTABLE_OUTPUT_PATH}/${CMAKE_BUILD_TYPE}/initPhyDget.txt COPYONLY)
+CONFIGURE_FILE(initXplane.txt
${EXECUTABLE_OUTPUT_PATH}/${CMAKE_BUILD_TYPE}/initXPlane.txt COPYONLY)
+
+#parameters for XPlaneCde.xpl + XPlaneOut.xpl (dll plugin Xplane)
+CONFIGURE_FILE(XPlaneCde.txt ${XPLANE_EXECUTABLE_DIRECTORY}/XPlaneCde.txt
COPYONLY)
+CONFIGURE_FILE(XPlaneOut.txt ${XPLANE_EXECUTABLE_DIRECTORY}/XPlaneOut.txt
COPYONLY)
+
+CONFIGURE_FILE(initPhyDget.txt ${XPLANE_EXECUTABLE_DIRECTORY}/initPhyDget.txt
COPYONLY)
+CONFIGURE_FILE(initXplane.txt ${XPLANE_EXECUTABLE_DIRECTORY}/initXPlane.txt
COPYONLY)
+
+SET_SOURCE_FILES_PROPERTIES(XPlanePhiDget.txt XPlaneTrace.txt PROPERTIES
HEADER_FILE_ONLY TRUE)
+SET_SOURCE_FILES_PROPERTIES(XPlaneCde.txt XPlaneOut.txt PROPERTIES
HEADER_FILE_ONLY TRUE)
+SET_SOURCE_FILES_PROPERTIES(initPhyDget.txt initXplane.txt PROPERTIES
HEADER_FILE_ONLY TRUE)
+
+CONFIGURE_FILE(XPlane.fed ${CERTI_PATH_HOME}/share/federations/XPlane.fed
COPYONLY)
+
+#Install Time
+INSTALL(FILES XPlanePhiDget.txt XPlaneTrace.txt DESTINATION bin)
+INSTALL(FILES XPlaneCde.txt XPlaneOut.txt DESTINATION bin)
+INSTALL(FILES initPhyDget.txt DESTINATION bin)
+INSTALL(FILES XPlaneCde.txt PhiDget.txt XPlaneOut.txt XPlaneTrace.txt
DESTINATION bin)
\ No newline at end of file
Index: XPlane.fed
===================================================================
RCS file: XPlane.fed
diff -N XPlane.fed
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ XPlane.fed 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,35 @@
+(FED
+(Federation X_Plane_CERTI)
+(FEDversion v1.3)
+ (spaces
+ )
+ (objects
+ (class ObjectRoot
+ (attribute privilegeToDelete reliable timestamp)
+ (class RTIprivate)
+
+ (class Aircraft
+ (attribute aircraftType reliable timestamp)
+ (attribute latitude reliable timestamp)
+ (attribute longitude reliable timestamp)
+ (attribute altitudeMSL reliable timestamp)
+ (attribute altitudeAGL reliable timestamp)
+ (attribute trueHeading reliable timestamp)
+ (attribute pitch reliable timestamp)
+ (attribute roll reliable timestamp)
+ (attribute groundSpeed reliable timestamp)
+ (attribute trueAirSpeed reliable timestamp)
+ )
+ (class Flight
+ (attribute aircraftType reliable timestamp) ;; type aeronef
+ )
+ (class PhiDjet
+ (attribute angulaire reliable timestamp)
+ (attribute curseur reliable timestamp)
+ (attribute genIR reliable timestamp)
+ )
+ )
+ )
+ (interactions
+ )
+)
\ No newline at end of file
Index: XPlaneCde.txt
===================================================================
RCS file: XPlaneCde.txt
diff -N XPlaneCde.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ XPlaneCde.txt 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,4 @@
+XPlane
+XPlane.fed
+initPhyDjet.txt
+192.000.000.001
\ No newline at end of file
Index: XPlaneOut.txt
===================================================================
RCS file: XPlaneOut.txt
diff -N XPlaneOut.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ XPlaneOut.txt 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,4 @@
+XPlane
+XPlane.fed
+initXPlane.txt
+192.000.000.001
\ No newline at end of file
Index: XPlanePhiDget.txt
===================================================================
RCS file: XPlanePhiDget.txt
diff -N XPlanePhiDget.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ XPlanePhiDget.txt 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,4 @@
+XPlane
+XPlane.fed
+initPhyDget.txt
+192.000.000.001
\ No newline at end of file
Index: XPlaneTrace.txt
===================================================================
RCS file: XPlaneTrace.txt
diff -N XPlaneTrace.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ XPlaneTrace.txt 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,4 @@
+XPlane
+XPlane.fed
+initXPlane.txt
+192.000.000.001
\ No newline at end of file
Index: initPhyDget.txt
===================================================================
RCS file: initPhyDget.txt
diff -N initPhyDget.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ initPhyDget.txt 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,12 @@
+#Dictionary to match AviationSimNet FOM3.1 to XPlane
+#Modify this file to add/delete all attributs to publish
+#[#] comments
+#§class
+#Format!PhyDJetName=XPlaneAttribut
+#Format= {B,I,D,F} (Byte,Integer,Double,Float) XXX size
+#Class PhiDjet--------------------------------------------
+§PhiDjet
+F008!curseur=sim/flightmodel/engine/ENGN_thro
+F001!genIR=sim/cockpit/autopilot/heading
+F001!angulaire=sim/graphics/view/pilots_head_psi
+
Index: initXPlane.txt
===================================================================
RCS file: initXPlane.txt
diff -N initXPlane.txt
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ initXPlane.txt 6 Nov 2008 14:32:50 -0000 1.1
@@ -0,0 +1,21 @@
+#Dictionary to match AviationSimNet FOM3.1 to XPlane
+#Modify this file to add/delete all attributs to publish
+#[#] comments
+#§class
+#Format!FomAttribut=XPlaneAttribut
+#Format= {B,I,D,F} (Byte,Integer,Double,Float) XXX size
+#Class Aircraft--------------------------------------------
+§Aircraft
+B040!aircraftType=sim/aircraft/view/acf_ICAO
+D001!latitude=sim/flightmodel/position/latitude
+D001!longitude=sim/flightmodel/position/longitude
+D001!altitudeMSL=sim/flightmodel/position/elevation
+F001!altitudeAGL=sim/flightmodel/position/y_agl
+F001!trueHeading=sim/flightmodel/position/psi
+F001!pitch=sim/flightmodel/position/theta
+F001!roll=sim/flightmodel/position/phi
+F001!groundSpeed=sim/flightmodel/position/groundspeed
+F001!trueAirSpeed=sim/flightmodel/position/true_airspeed
+#Class Flight----------------------------------------------
+§Flight
+B040!aircraftType=sim/aircraft/view/acf_ICAO
\ No newline at end of file
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [certi-cvs] applications/XPlaneHLAPlugin/initFile CMakeList...,
certi-cvs <=