Avionics
Dropship Simulator
Avionics.cpp File Reference
#include "Config.h"
#include "Virtualization.h"
#include "Devices/Printer.h"
#include <time.h>

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::InterfaceKitifKits
 
std::vector< Devices::Analoganalogs
 
std::vector< Devices::Encoderencoders
 
Devices::Keyboard keyboard
 
Devices::Spatial spatial
 
Devices::RakNet rakNet
 
std::vector< Devices::BassaudioDevices
 
Devices::TeamSpeak teamSpeak
 
std::vector< Devices::Joystickjoysticks
 
Devices::Webcam webcam
 
Devices::YouTube youTube
 
Devices::Xplane xplane
 
Devices::Printer printer
 

Macro Definition Documentation

◆ DIRECTINPUT_VERSION

#define DIRECTINPUT_VERSION   0x0800

Definition at line 1 of file Avionics.cpp.

Function Documentation

◆ FrameMove()

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)

Todo:
artifically slow down the program for now...

Definition at line 347 of file Avionics.cpp.

Here is the caller graph for this function:

◆ InitApp()

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.

Here is the caller graph for this function:

◆ Teardown()

void Teardown ( )

clean-up memory (everything in InitApp)

Definition at line 287 of file Avionics.cpp.

Here is the call graph for this function:
Here is the caller graph for this function:

◆ wWinMain()

int WINAPI wWinMain ( HINSTANCE  hInstance,
HINSTANCE  ,
LPWSTR  lpCmdLine,
int   
)

Definition at line 51 of file Avionics.cpp.

Here is the call graph for this function:

Variable Documentation

◆ analogs

std::vector<Devices::Analog> analogs

Definition at line 25 of file Avionics.cpp.

◆ audioDevices

std::vector<Devices::Bass> audioDevices

Definition at line 30 of file Avionics.cpp.

◆ bus

Bus bus = Bus(&logger)

Definition at line 18 of file Avionics.cpp.

◆ config

Config config

Definition at line 22 of file Avionics.cpp.

◆ encoders

std::vector<Devices::Encoder> encoders

Definition at line 26 of file Avionics.cpp.

◆ g_pDI

LPDIRECTINPUT8 g_pDI = nullptr

Definition at line 16 of file Avionics.cpp.

◆ ifKits

std::vector<Devices::InterfaceKit> ifKits

Definition at line 24 of file Avionics.cpp.

◆ joysticks

std::vector<Devices::Joystick> joysticks

Definition at line 32 of file Avionics.cpp.

◆ keyboard

Definition at line 27 of file Avionics.cpp.

◆ logger

Logger logger

Definition at line 17 of file Avionics.cpp.

◆ modules

std::vector<Module*> modules

Definition at line 20 of file Avionics.cpp.

◆ printer

Definition at line 36 of file Avionics.cpp.

◆ rakNet

Definition at line 29 of file Avionics.cpp.

◆ spatial

Definition at line 28 of file Avionics.cpp.

◆ teamSpeak

Devices::TeamSpeak teamSpeak

Definition at line 31 of file Avionics.cpp.

◆ ups

Definition at line 23 of file Avionics.cpp.

◆ viewport

Viewport viewport = Viewport(&bus, &logger)

Definition at line 21 of file Avionics.cpp.

◆ virtualization

Definition at line 19 of file Avionics.cpp.

◆ webcam

Definition at line 33 of file Avionics.cpp.

◆ xplane

Definition at line 35 of file Avionics.cpp.

◆ youTube

Definition at line 34 of file Avionics.cpp.