Jump to content

swift

Members
  • Posts

    452
  • Joined

  • Last visited

  • Days Won

    2

Everything posted by swift

  1. ^^^ on second thought, maybe you're right :D Bitching Betty - wikipedia
  2. Oh didn't know that, I wonder why though :)
  3. Ladies' night over Afghanistan
  4. It would add immersion because women use to tell detailed instructions to do things in RL. It would be nice to hear a female voice saying "cleared hot" more often. What about female pilot voice? :)
  5. The awesomeness of this post is so great that it sent shockwaves throughout the timestream :thumbup:
  6. can't wait for this :D
  7. VIA @lockheedmartin
  8. [VV]28005650[/VV]
  9. Ah GFs... when you got wife you're two and she always fly lead ;)
  10. The competition for military contracts seems fierce... Link
  11. Well done nscode, that's correct. You're cleared to engage! :)
  12. Creeping around at angels 15, you've been tasked to surveillance a small village. Orders are to maintain 10 nautical miles separation from the village at indicated air speed of 270 knots. Calculate the aproximate bank angle necessary to maintain a circular orbit pattern around the target.
  13. I like to hide my stick as much as I can but I'm not lucky just lately, being married doesn't help either. Good luck to you and Carpe Diem!
  14. 2nd Squadron of Wing F 7 at Satenas, coded ”blue Johan” ?
  15. Parace que ED no ha hecho oidos sordos a la petición y Wags ha anunciado que han liberado la API aquí. Interface for head tracker devices. Support of head tracker devices implemented like a plugin system. Simulator tries to load .dll using path written in file scripts/input/input.lua. By default it is "bin/headtracker/headtracker.dll": -- path to headtracker plugin dll setHeadTrackerDllPath('./bin/headtracker/headtracker.dll') Plugin dll implements set of functions described in HeadtrackerDll.h. Some functions can be omitted. Functions list: HEADTRACKERDLL_API int initHeadTracker(HWND hwnd); Initialization of device. Returns 0 if initialization was unsuccessful. hwnd - handler of main application window. This function cannot be omitted. HEADTRACKERDLL_API void shutDownHeadTracker(); Optional deinitialization of device. Called before unload headtracker .dll. HEADTRACKERDLL_API void requestHeadTrackerData(struct HeadTrackerData* data); Client informs device which data he would like to receive. If device cannot transmit data from some axis it informs client about it. Cannot be omitted. HEADTRACKERDLL_API int getHeadTrackerData(struct HeadTrackerData* data); Client recievs data from device. Only axes verified in requestHeadTrackerData() will be send to simulator. Returns non-zero on success. This function is mandatory. For convinience every function typedefed in HeadtrackerDll.h. Structure HeadTrackerData is: struct HeadTrackerData { // version of HeadTrackerData (for future releases) double version; // axes values // values must be in range [-1; 1] double pitch; double yaw; double roll; double x; double y; double z; }; Value of every axis must be in range [-1; 1]. Field "version" filled by client and necessary for future compatibility. Current version is 1.0.
×
×
  • Create New...