![]() |
Avionics
Dropship Simulator
|
Go to the source code of this file.
Macros | |
#define | DIRECTINPUT_VERSION 0x0800 |
Functions | |
void | FrameMove (double fTime, float fElapsedTime) |
void | InitApp (HINSTANCE hInstance) |
void | Teardown () |
clean-up memory (everything in InitApp) More... | |
int WINAPI | wWinMain (HINSTANCE hInstance, HINSTANCE, LPWSTR lpCmdLine, int) |
Variables | |
LPDIRECTINPUT8 | g_pDI = nullptr |
Logger | logger |
Bus | bus = Bus(&logger) |
Systems::Virtualization | virtualization = Systems::Virtualization(&logger, &bus) |
std::vector< Module * > | modules |
Viewport | viewport = Viewport(&bus, &logger) |
Config | config |
Devices::Apcupsd | ups |
std::vector< Devices::InterfaceKit > | ifKits |
std::vector< Devices::Analog > | analogs |
std::vector< Devices::Encoder > | encoders |
Devices::Keyboard | keyboard |
Devices::Spatial | spatial |
Devices::RakNet | rakNet |
std::vector< Devices::Bass > | audioDevices |
Devices::TeamSpeak | teamSpeak |
std::vector< Devices::Joystick > | joysticks |
Devices::Webcam | webcam |
Devices::YouTube | youTube |
Devices::Xplane | xplane |
Devices::Printer | printer |
#define DIRECTINPUT_VERSION 0x0800 |
Definition at line 1 of file Avionics.cpp.
void FrameMove | ( | double | fTime, |
float | fElapsedTime | ||
) |
detract the delays on the command stream, doing it at the beginning because they were added in the last frame (keyboard)
Definition at line 347 of file Avionics.cpp.
void InitApp | ( | HINSTANCE | hInstance | ) |
set up the interface kits based on number of configs
set up the encoders based on number of configs
set up the analogs based on number of configs
set up the audio devices based on number of configs
add the device to modules that require it
we should probably revisit this, ASE could just add messages to the bus for the VMU! let VMU handle Vocalware
Register with the DirectInput subsystem and get a pointer to a IDirectInput interface we can use. Create a DInput object
set up the joysticks based on number of configs
add the device to modules that require it
do this first so we can get the hwnd's
Definition at line 128 of file Avionics.cpp.
void Teardown | ( | ) |
clean-up memory (everything in InitApp)
Definition at line 287 of file Avionics.cpp.
int WINAPI wWinMain | ( | HINSTANCE | hInstance, |
HINSTANCE | , | ||
LPWSTR | lpCmdLine, | ||
int | |||
) |
std::vector<Devices::Analog> analogs |
Definition at line 25 of file Avionics.cpp.
std::vector<Devices::Bass> audioDevices |
Definition at line 30 of file Avionics.cpp.
Definition at line 18 of file Avionics.cpp.
Config config |
Definition at line 22 of file Avionics.cpp.
std::vector<Devices::Encoder> encoders |
Definition at line 26 of file Avionics.cpp.
LPDIRECTINPUT8 g_pDI = nullptr |
Definition at line 16 of file Avionics.cpp.
std::vector<Devices::InterfaceKit> ifKits |
Definition at line 24 of file Avionics.cpp.
std::vector<Devices::Joystick> joysticks |
Definition at line 32 of file Avionics.cpp.
Devices::Keyboard keyboard |
Definition at line 27 of file Avionics.cpp.
Logger logger |
Definition at line 17 of file Avionics.cpp.
std::vector<Module*> modules |
Definition at line 20 of file Avionics.cpp.
Devices::Printer printer |
Definition at line 36 of file Avionics.cpp.
Devices::RakNet rakNet |
Definition at line 29 of file Avionics.cpp.
Devices::Spatial spatial |
Definition at line 28 of file Avionics.cpp.
Devices::TeamSpeak teamSpeak |
Definition at line 31 of file Avionics.cpp.
Devices::Apcupsd ups |
Definition at line 23 of file Avionics.cpp.
Systems::Virtualization virtualization = Systems::Virtualization(&logger, &bus) |
Definition at line 19 of file Avionics.cpp.
Devices::Webcam webcam |
Definition at line 33 of file Avionics.cpp.
Devices::Xplane xplane |
Definition at line 35 of file Avionics.cpp.
Devices::YouTube youTube |
Definition at line 34 of file Avionics.cpp.