aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/adq.cpp
diff options
context:
space:
mode:
authorPeter Kohaut2016-10-02 02:47:12 +0200
committerPeter Kohaut2016-10-02 02:47:12 +0200
commit89d1805b37a6283d90a7dd5b4dbbdffd7950f5ab (patch)
tree0c6caa275cf8a404d2c82745d00d0543a1f263f5 /engines/bladerunner/adq.cpp
parent2c15b164d736d1339998f9dcf7a4a230984cdff5 (diff)
downloadscummvm-rg350-89d1805b37a6283d90a7dd5b4dbbdffd7950f5ab.tar.gz
scummvm-rg350-89d1805b37a6283d90a7dd5b4dbbdffd7950f5ab.tar.bz2
scummvm-rg350-89d1805b37a6283d90a7dd5b4dbbdffd7950f5ab.zip
BLADERUNNER: added ADQ, fixed some minor memory leaks
Diffstat (limited to 'engines/bladerunner/adq.cpp')
-rw-r--r--engines/bladerunner/adq.cpp151
1 files changed, 151 insertions, 0 deletions
diff --git a/engines/bladerunner/adq.cpp b/engines/bladerunner/adq.cpp
new file mode 100644
index 0000000000..7e77d64dd1
--- /dev/null
+++ b/engines/bladerunner/adq.cpp
@@ -0,0 +1,151 @@
+#include "bladerunner/adq.h"
+
+#include "bladerunner/bladerunner.h"
+
+#include "bladerunner/actor.h"
+#include "bladerunner/audio_speech.h"
+#include "bladerunner/scene.h"
+
+#include "script/script.h"
+
+namespace BladeRunner {
+
+ADQ::ADQEntry::ADQEntry() {
+ this->_isNotPause = false;
+ this->_isPause = false;
+ this->_actorId = -1;
+ this->_delay = -1;
+ this->_sentenceId = -1;
+ this->_animationMode = -1;
+}
+
+ADQ::ADQ(BladeRunnerEngine *vm) {
+ _vm = vm;
+ clear();
+}
+
+ADQ::~ADQ() {
+}
+
+void ADQ::add(int actorId, int sentenceId, int animationMode) {
+ if (actorId == 0 || actorId == 99) {
+ animationMode = -1;
+ }
+ if (_entries.size() < 25) {
+ ADQEntry entry;
+ entry._isNotPause = true;
+ entry._isPause = false;
+ entry._actorId = actorId;
+ entry._sentenceId = sentenceId;
+ entry._animationMode = animationMode;
+ entry._delay = -1;
+
+ _entries.push_back(entry);
+ }
+}
+
+void ADQ::addPause(int delay) {
+ if (_entries.size() < 25) {
+ ADQEntry entry;
+ entry._isNotPause = false;
+ entry._isPause = true;
+ entry._actorId = -1;
+ entry._sentenceId = -1;
+ entry._animationMode = -1;
+ entry._delay = delay;
+
+ _entries.push_back(entry);
+ }
+}
+
+void ADQ::flush(int a1, bool callScript) {
+ if (_isNotPause && _vm->_audioSpeech->isPlaying()) {
+ _vm->_audioSpeech->stopSpeech();
+ if (_animationModePrevious >= 0) {
+ _vm->_actors[_actorId]->changeAnimationMode(_animationModePrevious, false);
+ _animationModePrevious = -1;
+ }
+ _isNotPause = false;
+ _actorId = -1;
+ _sentenceId = -1;
+ _animationMode = -1;
+ }
+ if (_isPause) {
+ _isPause = false;
+ _delay = 0;
+ _timeLast = 0;
+ }
+ clear();
+ if (callScript) {
+ _vm->_script->DialogueQueueFlushed(a1);
+ }
+}
+
+void ADQ::tick() {
+ if (!_vm->_audioSpeech->isPlaying()) {
+ if (_isPause) {
+ int time = _vm->getTotalPlayTime();
+ int timeDiff = time - _timeLast;
+ _timeLast = time;
+ _delay -= timeDiff;
+ if (_delay > 0) {
+ return;
+ }
+ _isPause = false;
+ _delay = 0;
+ _timeLast = 0;
+ if (_entries.empty()) {
+ flush(0, true);
+ }
+ }
+ if (_isNotPause) {
+ if (_animationModePrevious >= 0) {
+ _vm->_actors[_actorId]->changeAnimationMode(_animationModePrevious, false);
+ _animationModePrevious = -1;
+ }
+ _isNotPause = false;
+ _actorId = -1;
+ _sentenceId = -1;
+ _animationMode = -1;
+ if (_entries.empty()) {
+ flush(0, true);
+ }
+ }
+ if (!_entries.empty()) {
+ ADQEntry firstEntry = _entries.remove_at(0);
+ if (firstEntry._isNotPause) {
+ _animationMode = firstEntry._animationMode;
+ if (_vm->_actors[firstEntry._actorId]->getSetId() != _vm->_scene->getSetId()) {
+ _animationMode = -1;
+ }
+ _vm->_actors[firstEntry._actorId]->speechPlay(firstEntry._sentenceId, false);
+ _isNotPause = true;
+ _actorId = firstEntry._actorId;
+ _sentenceId = firstEntry._sentenceId;
+ if (_animationMode >= 0) {
+ _animationModePrevious = _vm->_actors[firstEntry._actorId]->getAnimationMode();
+ _vm->_actors[firstEntry._actorId]->changeAnimationMode(_animationMode, false);
+ } else {
+ _animationModePrevious = -1;
+ }
+ } else if (firstEntry._isPause) {
+ _isPause = true;
+ _delay = firstEntry._delay;
+ _timeLast = _vm->getTotalPlayTime();
+ }
+ }
+ }
+}
+
+void ADQ::clear() {
+ _entries.clear();
+ _isNotPause = false;
+ _actorId = -1;
+ _sentenceId = -1;
+ _animationMode = -1;
+ _animationModePrevious = -1;
+ _isPause = false;
+ _delay = 0;
+ _timeLast = 0;
+}
+} // End of namespace BladeRunner