Update of /cvsroot/gcblue/gcb_wx/src/scriptinterface
In directory sc8-pr-cvs1:/tmp/cvs-serv548/src/scriptinterface
Modified Files:
tcPlatformInterface.cpp tcPlatformInterfaceExtension.cpp
Log Message:
briefing camera features
Index: tcPlatformInterface.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/scriptinterface/tcPlatformInterface.cpp,v
retrieving revision 1.10
retrieving revision 1.11
diff -C2 -d -r1.10 -r1.11
*** tcPlatformInterface.cpp 8 Dec 2003 03:06:36 -0000 1.10
--- tcPlatformInterface.cpp 3 Jan 2004 00:45:13 -0000 1.11
***************
*** 379,384 ****
}
! void tcPlatformInterface::Launch(int anLauncher) {
! mpPlatformObj->SetLaunch(anLauncher, 1);
}
--- 379,385 ----
}
! void tcPlatformInterface::Launch(int anLauncher, int quantity)
! {
! mpPlatformObj->SetLaunch(anLauncher, quantity);
}
Index: tcPlatformInterfaceExtension.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/scriptinterface/tcPlatformInterfaceExtension.cpp,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** tcPlatformInterfaceExtension.cpp 26 Nov 2003 20:39:14 -0000 1.4
--- tcPlatformInterfaceExtension.cpp 3 Jan 2004 00:45:13 -0000 1.5
***************
*** 50,53 ****
--- 50,56 ----
.def_readonly("Affiliation",&tcTrack::mnAffiliation)
.def_readonly("ID",&tcTrack::mnID)
+ .def("IsAir", &tcTrack::IsAir)
+ .def("IsMissile", &tcTrack::IsMissile)
+ .def("IsSurface", &tcTrack::IsSurface)
.def("IsValid", &tcTrack::IsValid)
.def("Offset", &tcTrack::Offset)
|