Update of /cvsroot/gcblue/gcb_wx/include/scriptinterface
In directory sc8-pr-cvs1:/tmp/cvs-serv6686/include/scriptinterface
Modified Files:
tcScenarioInterface.h
Log Message:
more briefing and scenario generation features
Index: tcScenarioInterface.h
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/include/scriptinterface/tcScenarioInterface.h,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** tcScenarioInterface.h 31 Dec 2003 17:34:10 -0000 1.5
--- tcScenarioInterface.h 1 Jan 2004 23:44:46 -0000 1.6
***************
*** 66,70 ****
void AddOrder(tcOrder order);
! void SetDatum(double lon_deg, double lat_deg, float alt_m);
};
/**
--- 66,72 ----
void AddOrder(tcOrder order);
! void ClearOrders();
! void SetPosition(double lon_deg, double lat_deg, float alt_m);
! bool Validate();
};
/**
***************
*** 109,115 ****
void MapText(std::string text, double lon_deg, double lat_deg, double duration, int effect);
! // camera events
void FlybyCamera(std::string unitName, double duration, float az1_deg, float az2_deg,
float el1_deg, float el2_deg, float r1_m, float r2_m);
// goal class creation methods (cannot find a way to do directly)
--- 111,120 ----
void MapText(std::string text, double lon_deg, double lat_deg, double duration, int effect);
! // camera and 3D events
void FlybyCamera(std::string unitName, double duration, float az1_deg, float az2_deg,
float el1_deg, float el2_deg, float r1_m, float r2_m);
+ void TrackCamera(std::string unitName, double duration, float x1, float x2,
+ float y1, float y2, float z1, float z2);
+ void Text3D(std::string text, double duration, float x, float y, float size, int effect);
// goal class creation methods (cannot find a way to do directly)
|