[Gcblue-commits] gcb_wx/include/scriptinterface tcPlatformInterface.h,1.26,1.27
Status: Alpha
Brought to you by:
ddcforge
|
From: Dewitt C. <ddc...@us...> - 2004-11-29 03:54:58
|
Update of /cvsroot/gcblue/gcb_wx/include/scriptinterface In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21010/include/scriptinterface Modified Files: tcPlatformInterface.h Log Message: Magazine class tcStores and related Index: tcPlatformInterface.h =================================================================== RCS file: /cvsroot/gcblue/gcb_wx/include/scriptinterface/tcPlatformInterface.h,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -d -r1.26 -r1.27 *** tcPlatformInterface.h 23 Nov 2004 23:30:46 -0000 1.26 --- tcPlatformInterface.h 29 Nov 2004 03:54:49 -0000 1.27 *************** *** 211,214 **** --- 211,228 ---- bool GetLauncherInfo(tcLauncherInfo& info, int anLauncher); + /// count of types of weapons accepted by this launcher + int GetLauncherTypesCount(int anLauncher); + /// class name of type + std::string GetLauncherTypeName(int anLauncher, int anType); + /// true if magazine can accept item (unloaded from launcher) + bool CanMagazineAcceptItem(std::string item); + /// quantity of item available in platform magazines + int GetMagazineQuantity(std::string item); + /// loads item into launcher, launcher must be empty + void LoadLauncher(int anLauncher, std::string item); + /// unloads launcher + void UnloadLauncher(int anLauncher); + + // order related commands /// true if platform has any orders |