Avionics
Dropship Simulator
VMU.cpp
Go to the documentation of this file.
1 #include "Module.h"
2 
3 void Vmu::FrameMove(float fElapsed)
4 {
5  if (!bass)
6  return;
7 
9  bool oldpowered = powered;
10  powered = false;
11  if (*vmuGetFloatPtr > 0)
12  {
13  secondsPowered += fElapsed;
14  if (secondsPowered >= 2.0f)
15  powered = true;
16  }
17  else
18  {
19  secondsPowered = 0.0f;
20  }
21  if (oldpowered && !powered)
22  {
23  bass->StopAll();
24  }
25  if (!oldpowered)
26  {
27  if (powered)
28  bass->Play("AuralUnitOkay");
29  else
30  return;
31  }
32 
34  if (bass->IsPlaying())
35  {
36  secsincelast = 0.0f;
37  return;
38  }
39 
40  secsincelast += fElapsed;
41  if (secsincelast < 0.6f)
42  return;
43 
46 
52  for (UINT i = 0; i < bus->commandStream.size(); i++)
53  {
54  Command command = bus->commandStream.at(i);
55  if (command.delay != 0.0f) continue;
56 
57  if (command.name == "FCSDualInput")
58  {
59  bass->Play("DualInput");
60  bus->commandStream.erase(bus->commandStream.begin() + i);
61  return;
62  }
63  if (command.name == "FCSPriorityRight")
64  {
65  bass->Play("PriorityRight");
66  bus->commandStream.erase(bus->commandStream.begin() + i);
67  return;
68  }
69  if (command.name == "FCSPriorityLeft")
70  {
71  bass->Play("PriorityLeft");
72  bus->commandStream.erase(bus->commandStream.begin() + i);
73  return;
74  }
75  if (command.name == "MCURideHalted")
76  {
77  bass->Play("RideHalted");
78  bus->commandStream.erase(bus->commandStream.begin() + i);
79  return;
80  }
81  if (command.name == "FCSRideAborted")
82  {
83  bass->Play("RideAborted");
84  bus->commandStream.erase(bus->commandStream.begin() + i);
85  return;
86  }
87  if (command.name == "CASMasterWarningChime")
88  {
89  bass->Play("MasterWarningChime");
90  bus->commandStream.erase(bus->commandStream.begin() + i);
91  return;
92  }
93  if (command.name == "CASMasterCautionChime")
94  {
95  bass->Play("MasterCautionChime");
96  bus->commandStream.erase(bus->commandStream.begin() + i);
97  return;
98  }
99  if (command.name == "GPWSBankAngle")
100  {
101  bass->Play("BankAngle");
102  bus->commandStream.erase(bus->commandStream.begin() + i);
103  return;
104  }
105  if (command.name == "GPWSMode9Minimums")
106  {
107  bass->Play("Mode9Minimums");
108  bus->commandStream.erase(bus->commandStream.begin() + i);
109  return;
110  }
111  if (command.name == "GPWSMode6Retard")
112  {
113  bass->Play("Mode6Retard");
114  bus->commandStream.erase(bus->commandStream.begin() + i);
115  return;
116  }
117  if (command.name == "GPWSMode6Ten")
118  {
119  bass->Play("Mode6Ten");
120  bus->commandStream.erase(bus->commandStream.begin() + i);
121  return;
122  }
123  if (command.name == "GPWSMode6Twenty")
124  {
125  bass->Play("Mode6Twenty");
126  bus->commandStream.erase(bus->commandStream.begin() + i);
127  return;
128  }
129  if (command.name == "GPWSMode6Thirty")
130  {
131  bass->Play("Mode6Thirty");
132  bus->commandStream.erase(bus->commandStream.begin() + i);
133  return;
134  }
135  if (command.name == "GPWSMode6Fourty")
136  {
137  bass->Play("Mode6Fourty");
138  bus->commandStream.erase(bus->commandStream.begin() + i);
139  return;
140  }
141  if (command.name == "GPWSMode6Fifty")
142  {
143  bass->Play("Mode6Fifty");
144  bus->commandStream.erase(bus->commandStream.begin() + i);
145  return;
146  }
147  if (command.name == "GPWSMode6OneHundred")
148  {
149  bass->Play("Mode6OneHundred");
150  bus->commandStream.erase(bus->commandStream.begin() + i);
151  return;
152  }
153  if (command.name == "GPWSMode6TwoHundred")
154  {
155  bass->Play("Mode6TwoHundred");
156  bus->commandStream.erase(bus->commandStream.begin() + i);
157  return;
158  }
159  if (command.name == "GPWSMode6FiveHundred")
160  {
161  bass->Play("Mode6FiveHundred");
162  bus->commandStream.erase(bus->commandStream.begin() + i);
163  return;
164  }
165  if (command.name == "GPWSMode6OneThousand")
166  {
167  bass->Play("Mode6OneThousand");
168  bus->commandStream.erase(bus->commandStream.begin() + i);
169  return;
170  }
171  }
172 }
173 
174 Vmu::Vmu(Bus* prmBus, int prmSoundDevice, float* prmGetFloatPtr) : Module(prmBus)
175 {
176  soundDevice = prmSoundDevice;
177  vmuGetFloatPtr = prmGetFloatPtr;
178 
180 }
181 
183 {
184  bass = prmBass;
185 }
std::vector< Command > commandStream
Definition: Bus.h:20
float * vmuGetFloatPtr
Definition: Module.h:67
bool powered
Definition: Module.h:68
void FrameMove(float fElapsedTime) override
Definition: VMU.cpp:3
Definition: Bus.h:12
std::string name
command name
Definition: Command.h:11
Abstract base class for modules By definition, instruments don&#39;t do any of the work (they don&#39;t modif...
Definition: Module.h:11
Definition: Command.h:5
float secsincelast
Definition: Module.h:65
Bus * bus
Definition: Module.h:17
Vmu(Bus *prmBus, int bassLocation, float *prmGetFloatPtr)
Definition: VMU.cpp:174
float secondsPowered
Definition: Module.h:69
Devices::Bass * bass
Definition: Module.h:64
void Play(std::string trigger, float freq=-1.0f, float vol=1.0f)
Definition: BASS.cpp:126
float delay
wait number of seconds before executing command
Definition: Command.h:8
void Initialize(Devices::Bass *prmBass)
Definition: VMU.cpp:182
int soundDevice
Definition: Module.h:72
bool IsPlaying() const
Definition: BASS.cpp:213
void StopAll() const
Definition: BASS.cpp:218