aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_script_base.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-09-02 18:17:00 -0400
committerPaul Gilbert2016-09-02 18:17:00 -0400
commitb1105a6686215a965e8580af84d16d7732ce5b49 (patch)
tree12f17c08916b4962a48ca067186abeb8ff820dea /engines/titanic/true_talk/tt_script_base.h
parent6f9583a3b692e8e4af3e8938099f49d92dd62e63 (diff)
downloadscummvm-rg350-b1105a6686215a965e8580af84d16d7732ce5b49.tar.gz
scummvm-rg350-b1105a6686215a965e8580af84d16d7732ce5b49.tar.bz2
scummvm-rg350-b1105a6686215a965e8580af84d16d7732ce5b49.zip
TITANIC: Fixes to building NPC response chain
Diffstat (limited to 'engines/titanic/true_talk/tt_script_base.h')
-rw-r--r--engines/titanic/true_talk/tt_script_base.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/engines/titanic/true_talk/tt_script_base.h b/engines/titanic/true_talk/tt_script_base.h
index c489dcb0a7..869b0beb64 100644
--- a/engines/titanic/true_talk/tt_script_base.h
+++ b/engines/titanic/true_talk/tt_script_base.h
@@ -51,8 +51,8 @@ protected:
int _state;
TThist *_hist2P;
int _field3C;
- TTresponse *_respHeadP;
TTresponse *_respTailP;
+ TTresponse *_respHeadP;
TTresponse *_oldResponseP;
int _status;
protected:
@@ -62,14 +62,21 @@ protected:
void deleteResponses();
/**
- * Creates and appends a new response to the script
+ * Creates and appends a new response fragment to the script specified by
+ * the given conversation Id
*/
- void appendResponse(int val1, int *val2, int val3);
+ void appendResponse(int index, int *maxP, int id);
- void appendResponse(int val1, int *val2, const TTstring &str);
+ /**
+ * Creates and appends a new response fragment string to the script
+ */
+ void appendResponse(int index, int *maxP, const TTstring &str);
- void appendResponse2(int val1, int *val2, const TTstring &str) {
- appendResponse(val1, val2, str);
+ /**
+ * Creates and appends a new response fragment string to the script
+ */
+ void appendResponse2(int index, int *maxP, const TTstring &str) {
+ appendResponse(index, maxP, str);
}
/**