2014-08-17 15:14:30 +00: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-12-17 17:27:47 +00:00
|
|
|
*
|
2014-08-17 15:14:30 +00: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-12-17 17:27:47 +00:00
|
|
|
*
|
2014-08-17 15:14:30 +00: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 ACCESS_BUBBLE_BOX_H
|
|
|
|
#define ACCESS_BUBBLE_BOX_H
|
|
|
|
|
|
|
|
#include "common/scummsys.h"
|
|
|
|
#include "common/array.h"
|
|
|
|
#include "common/rect.h"
|
2014-08-17 22:56:05 +00:00
|
|
|
#include "common/str-array.h"
|
2014-08-17 15:14:30 +00:00
|
|
|
#include "common/stream.h"
|
|
|
|
#include "common/types.h"
|
|
|
|
#include "graphics/surface.h"
|
|
|
|
#include "access/data.h"
|
|
|
|
|
|
|
|
namespace Access {
|
|
|
|
|
|
|
|
class AccessEngine;
|
|
|
|
|
2015-07-27 11:54:23 +00:00
|
|
|
enum BoxType { TYPE_0 = 0, TYPE_1 = 1, TYPE_2 = 2, TYPE_3 = 3, kBoxTypeFileDialog = 4 };
|
2014-08-17 15:14:30 +00:00
|
|
|
|
2014-12-17 20:31:26 +00:00
|
|
|
class BubbleBox : public Manager {
|
2014-08-17 22:56:05 +00:00
|
|
|
private:
|
|
|
|
int _startItem, _startBox;
|
|
|
|
int _charCol, _rowOff;
|
|
|
|
Common::Point _fileStart;
|
2015-02-13 06:20:31 +00:00
|
|
|
Common::Point _fileOff;
|
2015-07-27 11:54:23 +00:00
|
|
|
int _boxStartX, _boxStartY;
|
2015-07-24 20:03:22 +00:00
|
|
|
int _boxEndX, _boxEndY;
|
|
|
|
int _bIconStartX, _bIconStartY;
|
|
|
|
int _boxPStartX, _boxPStartY;
|
2015-01-13 20:52:40 +00:00
|
|
|
|
|
|
|
void displayBoxData();
|
|
|
|
void drawSelectBox();
|
2015-01-26 06:58:59 +00:00
|
|
|
/**
|
|
|
|
* Prints a text bubble and it's contents
|
|
|
|
*/
|
|
|
|
void printBubble_v1(const Common::String &msg);
|
|
|
|
void printBubble_v2(const Common::String &msg);
|
2015-01-13 20:52:40 +00:00
|
|
|
|
2014-08-17 15:14:30 +00:00
|
|
|
public:
|
2014-08-17 22:56:05 +00:00
|
|
|
BoxType _type;
|
|
|
|
Common::Rect _bounds;
|
|
|
|
Common::StringArray _nameIndex;
|
2014-08-17 15:14:30 +00:00
|
|
|
Common::String _bubbleTitle;
|
2014-12-18 06:23:18 +00:00
|
|
|
Common::String _bubbleDisplStr;
|
2015-01-17 08:42:41 +00:00
|
|
|
Common::String _tempList[60];
|
|
|
|
int _tempListIdx[60];
|
2015-01-13 20:52:40 +00:00
|
|
|
int _btnId1;
|
|
|
|
int _btnX1;
|
|
|
|
int _btnId2;
|
|
|
|
int _btnX2;
|
|
|
|
int _btnId3;
|
|
|
|
int _btnX3;
|
2015-01-17 13:26:56 +00:00
|
|
|
Common::Rect _btnUpPos;
|
|
|
|
Common::Rect _btnDownPos;
|
2014-08-17 15:14:30 +00:00
|
|
|
Common::Array<Common::Rect> _bubbles;
|
|
|
|
public:
|
2015-01-14 23:40:43 +00:00
|
|
|
BubbleBox(AccessEngine *vm, Access::BoxType type, int x, int y, int w, int h, int val1, int val2, int val3, int val4, Common::String title);
|
2014-08-17 15:14:30 +00:00
|
|
|
|
|
|
|
void load(Common::SeekableReadStream *stream);
|
|
|
|
|
|
|
|
void clearBubbles();
|
|
|
|
|
2014-08-17 16:01:28 +00:00
|
|
|
void placeBubble(const Common::String &msg);
|
|
|
|
void placeBubble1(const Common::String &msg);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Calculate the size of a bubble needed to hold a given string
|
|
|
|
*/
|
|
|
|
void calcBubble(const Common::String &msg);
|
|
|
|
|
|
|
|
/**
|
2014-12-04 13:17:30 +00:00
|
|
|
* Prints a text bubble and it's contents
|
2014-08-17 16:01:28 +00:00
|
|
|
*/
|
2015-01-26 06:58:59 +00:00
|
|
|
void printBubble(const Common::String &msg);
|
2014-08-17 16:01:28 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Draws the background for a text bubble
|
|
|
|
* @param index Index of bounds in _bubbles array
|
|
|
|
*/
|
2014-08-17 15:14:30 +00:00
|
|
|
void drawBubble(int index);
|
|
|
|
|
2014-08-17 22:56:05 +00:00
|
|
|
void doBox(int item, int box);
|
2015-01-11 23:04:38 +00:00
|
|
|
|
2015-01-17 08:42:41 +00:00
|
|
|
int doBox_v1(int item, int box, int &btnSelected);
|
2015-01-18 14:26:05 +00:00
|
|
|
void getList(const char *const data[], int *flags);
|
2015-07-24 20:03:22 +00:00
|
|
|
void setCursorPos(int posX, int posY);
|
|
|
|
void printString(Common::String msg);
|
2014-08-17 15:14:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End of namespace Access
|
|
|
|
|
|
|
|
#endif /* ACCESS_BUBBLE_BOX_H */
|