2012-09-26 23:34:10 +10:00
|
|
|
/* ScummVM - Graphic Adventure Engine
|
|
|
|
*
|
|
|
|
* ScummVM is the legal property of its developers, whose names
|
|
|
|
* are too numerous to list here. Please refer to the COPYRIGHT
|
|
|
|
* file distributed with this source distribution.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
2014-02-18 02:34:21 +01:00
|
|
|
*
|
2012-09-26 23:34:10 +10:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2014-02-18 02:34:21 +01:00
|
|
|
*
|
2012-09-26 23:34:10 +10:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HOPKINS_TALK_H
|
|
|
|
#define HOPKINS_TALK_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/str.h"
|
|
|
|
|
|
|
|
namespace Hopkins {
|
|
|
|
|
|
|
|
class HopkinsEngine;
|
|
|
|
|
2013-02-09 14:52:37 +01:00
|
|
|
#define MIN_LETTERS_PER_LINE 65
|
|
|
|
|
2012-09-26 23:34:10 +10:00
|
|
|
class TalkManager {
|
|
|
|
private:
|
|
|
|
HopkinsEngine *_vm;
|
2013-02-08 07:35:25 +01:00
|
|
|
|
2012-12-19 08:00:22 +01:00
|
|
|
Common::String _questionsFilename;
|
|
|
|
Common::String _answersFilename;
|
|
|
|
byte *_characterBuffer;
|
|
|
|
byte *_characterPalette;
|
|
|
|
size_t _characterSize;
|
2013-01-20 00:56:19 +01:00
|
|
|
int _dialogueMesgId1, _dialogueMesgId2;
|
|
|
|
int _dialogueMesgId3, _dialogueMesgId4;
|
2012-12-27 07:52:37 +01:00
|
|
|
int _paletteBufferIdx;
|
2012-09-26 23:34:10 +10:00
|
|
|
|
2012-12-26 21:30:51 +01:00
|
|
|
void getStringFromBuffer(int srcStart, Common::String &dest, const char *srcData);
|
2013-02-08 23:51:37 +01:00
|
|
|
int dialogQuestion(bool animatedFl);
|
|
|
|
int dialogAnswer(int idx, bool animatedFl);
|
2012-12-27 07:52:37 +01:00
|
|
|
void searchCharacterPalette(int startIdx, bool dark);
|
2012-12-27 18:41:52 +01:00
|
|
|
void dialogWait();
|
|
|
|
void dialogTalk();
|
|
|
|
void dialogEndTalk();
|
2012-12-27 07:52:37 +01:00
|
|
|
void startCharacterAnim0(int startIndedx, bool readOnlyFl);
|
2012-12-17 08:01:29 +01:00
|
|
|
void initCharacterAnim();
|
2012-12-09 22:35:59 +01:00
|
|
|
void clearCharacterAnim();
|
2013-01-29 23:59:25 +01:00
|
|
|
bool searchCharacterAnim(int idx, const byte *bufPerso, int animId, int bufferSize);
|
2013-02-09 14:52:37 +01:00
|
|
|
int countBoxLines(int idx, const Common::String &file);
|
2013-04-01 23:17:18 +02:00
|
|
|
void dialogAnim();
|
|
|
|
void displayBobDialogAnim(int idx);
|
2013-02-08 07:35:25 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
byte *_characterAnim;
|
|
|
|
byte *_characterSprite;
|
|
|
|
|
2013-03-20 08:13:32 +01:00
|
|
|
TalkManager(HopkinsEngine *vm);
|
2013-02-08 07:35:25 +01:00
|
|
|
|
2013-02-19 23:18:43 +01:00
|
|
|
void startStaticCharacterDialogue(const Common::String &filename);
|
|
|
|
void startAnimatedCharacterDialogue(const Common::String &filename);
|
2013-02-28 08:16:38 +01:00
|
|
|
void animateObject(const Common::String &filename);
|
2013-04-01 23:17:18 +02:00
|
|
|
void handleAnswer(int zone, int verb);
|
|
|
|
void handleForestAnswser(int zone, int verb);
|
2012-09-26 23:34:10 +10:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Hopkins
|
|
|
|
|
|
|
|
#endif /* HOPKINS_TALK_H */
|