ScummVM API documentation
talkthread.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11 
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16 
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef ILLUSIONS_TALKTHREAD_H
23 #define ILLUSIONS_TALKTHREAD_H
24 
25 #include "illusions/thread.h"
26 
27 namespace Illusions {
28 
29 class IllusionsEngine;
30 struct TalkEntry;
31 
32 enum {
33  kMsgQueryTalkThreadActive = 0,
34  kMsgClearSequenceId1 = 1,
35  kMsgClearSequenceId2 = 2
36 };
37 
38 class TalkThread : public Thread {
39 public:
40  TalkThread(IllusionsEngine *vm, uint32 threadId, uint32 callingThreadId, uint notifyFlags,
41  int16 duration, uint32 objectId, uint32 talkId, uint32 sequenceId1, uint32 sequenceId2,
42  uint32 namedPointId);
43  int onUpdate() override;
44  void onSuspend() override;
45  void onPause() override;
46  void onUnpause() override;
47  void onTerminated() override;
48  void onKill() override;
49  uint32 sendMessage(int msgNum, uint32 msgValue) override;
50 public:
51  //field0 dw
52  int _status;
53  uint _flags;
54  uint32 _textStartTime;
55  uint32 _textEndTime;
56  uint32 _textDuration;
57  uint32 _defDurationMult;
58  uint32 _textDurationElapsed;
59  uint32 _durationMult;
60  //field12 dw
61  uint32 _objectId;
62  uint32 _talkId;
63  uint32 _sequenceId1;
64  uint32 _sequenceId2;
65  byte *_entryTblPtr;
66  uint16 *_entryText;
67  uint16 *_currEntryText;
68  //field30 dd
69  uint32 _namedPointId;
70  uint32 _voiceStartTime;
71  uint32 _voiceEndTime;
72  uint32 _voiceDuration;
73  uint32 _voiceDurationElapsed;
74  void refreshText();
75  int insertText();
76  TalkEntry *getTalkResourceEntry(uint32 talkId);
77 };
78 
79 } // End of namespace Illusions
80 
81 #endif // ILLUSIONS_TALKTHREAD_H
Definition: talkthread.h:38
Definition: actor.h:34
Definition: talkresource.h:42
Definition: thread.h:47
Definition: illusions.h:92