diff options
author | Paul Gilbert | 2015-07-05 17:10:34 -0400 |
---|---|---|
committer | Paul Gilbert | 2015-07-05 17:10:34 -0400 |
commit | 24663029035ec9bfd228e2dada39235656ac1daa (patch) | |
tree | 91e8f4799189efc121e537abedb5b2a01b073465 /engines/sherlock/tattoo | |
parent | cae493523c8f1d3c7ae4e5da28c12a4633baf4be (diff) | |
download | scummvm-rg350-24663029035ec9bfd228e2dada39235656ac1daa.tar.gz scummvm-rg350-24663029035ec9bfd228e2dada39235656ac1daa.tar.bz2 scummvm-rg350-24663029035ec9bfd228e2dada39235656ac1daa.zip |
SHERLOCK: RT: Fixes to display talk window
Diffstat (limited to 'engines/sherlock/tattoo')
-rw-r--r-- | engines/sherlock/tattoo/tattoo_talk.cpp | 16 | ||||
-rw-r--r-- | engines/sherlock/tattoo/tattoo_talk.h | 7 | ||||
-rw-r--r-- | engines/sherlock/tattoo/widget_talk.cpp | 6 |
3 files changed, 11 insertions, 18 deletions
diff --git a/engines/sherlock/tattoo/tattoo_talk.cpp b/engines/sherlock/tattoo/tattoo_talk.cpp index d0c4bdc3b0..51704e7023 100644 --- a/engines/sherlock/tattoo/tattoo_talk.cpp +++ b/engines/sherlock/tattoo/tattoo_talk.cpp @@ -198,9 +198,15 @@ void TattooTalk::talkInterface(const byte *&str) { _wait = true; } -void TattooTalk::openTalkWindow() { +void TattooTalk::showTalk() { + TattooPeople &people = *(TattooPeople *)_vm->_people; + + _sequenceStack.clear(); + people.setListenSequence(_talkTo, 129); + _talkWidget.load(); _talkWidget.summonWindow(); + _talkWidget.refresh(); } OpcodeReturn TattooTalk::cmdSwitchSpeaker(const byte *&str) { @@ -861,14 +867,6 @@ OpcodeReturn TattooTalk::cmdWalkHomesAndNPCToCoords(const byte *&str) { return RET_SUCCESS; } -void TattooTalk::showTalk() { - TattooPeople &people = *(TattooPeople *)_vm->_people; - - _sequenceStack.clear(); - people.setListenSequence(_talkTo, 129); - _talkWidget.refresh(); -} - } // End of namespace Tattoo } // End of namespace Sherlock diff --git a/engines/sherlock/tattoo/tattoo_talk.h b/engines/sherlock/tattoo/tattoo_talk.h index f9a4d01f4f..8abbb1b8be 100644 --- a/engines/sherlock/tattoo/tattoo_talk.h +++ b/engines/sherlock/tattoo/tattoo_talk.h @@ -79,13 +79,6 @@ private: OpcodeReturn cmdWalkNPCToCAnimation(const byte *&str); OpcodeReturn cmdWalkNPCToCoords(const byte *&str); OpcodeReturn cmdWalkHomesAndNPCToCoords(const byte *&str); -private: - void drawTalk(const char *str); - - /** - * Open the talk window - */ - void openTalkWindow(); protected: /** * Display the talk interface window diff --git a/engines/sherlock/tattoo/widget_talk.cpp b/engines/sherlock/tattoo/widget_talk.cpp index cc6c49e551..7d86736925 100644 --- a/engines/sherlock/tattoo/widget_talk.cpp +++ b/engines/sherlock/tattoo/widget_talk.cpp @@ -415,7 +415,9 @@ void WidgetTalk::handleEvents() { // See if the new file is a standard file, a reply first file, or a Stealth Mode file if (!talk._statements[select]._statement.hasPrefix("*") && !talk._statements[select]._statement.hasPrefix("^")) { - talk.openTalkWindow(); + load(); + summonWindow(); + setStatementLines(); render(HL_NO_HIGHLIGHTING); break; @@ -557,7 +559,7 @@ void WidgetTalk::setStatementLines() { // But if there isn't (and this shouldn't ever happen), just split the line right at that point if (width > xSize) { if (space) { - line = Common::String(str.c_str(), space - 1); + line = Common::String(str.c_str(), space); str = Common::String(space + 1); } else { line = Common::String(str.c_str(), ch); |