aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/inventory.h
blob: 5528e6589c00342ef7c8bdd8ad83c5da61d4435a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
/* 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.
 *
 * 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.
 *
 * 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.
 *
 */

/*
 * This code is based on original Tony Tough source code
 *
 * Copyright (c) 1997-2003 Nayma Software
 */

#ifndef TONY_INVENTORY_H
#define TONY_INVENTORY_H

#include "common/scummsys.h"
#include "common/system.h"
#include "tony/font.h"
#include "tony/game.h"
#include "tony/gfxcore.h"
#include "tony/loc.h"

namespace Tony {

struct RMInventoryItem {
	RMItem _icon;
	RMGfxSourceBuffer8RLEByteAA *_pointer;
	int _status;
};

class RMInventory : public RMGfxWoodyBuffer {
private:
	enum InventoryState {
		CLOSED,
		OPENING,
		OPENED,
		CLOSING,
		SELECTING
	};

protected:
	int _nItems;
	RMInventoryItem *_items;

	int _inv[256];
	int _nInv;
	int _curPutY;
	uint32 _curPutTime;

	int _curPos;
	InventoryState _state;
	bool _bHasFocus;
	int _nSelectObj;
	int _nCombine;
	bool _bCombining;

	bool _bBlinkingRight, _bBlinkingLeft;

	int _miniAction;
	RMItem _miniInterface;
	RMText _hints[3];

	OSystem::MutexRef _csModifyInterface;

protected:
	/**
	 * Prepare the image inventory. It should be recalled whenever the inventory changes
	 */
	void prepare();

	/**
	 * Check if the mouse Y position is conrrect, even under the inventory portion of the screen
	 */
	bool checkPointInside(const RMPoint &pt);

public:
	RMInventory();
	virtual ~RMInventory();

	/**
	 * Prepare a frame
	 */
	void doFrame(RMGfxTargetBuffer &bigBuf, RMPointer &ptr, RMPoint mpos, bool bCanOpen);

	/**
	 * Initialization and closing
	 */
	using RMGfxWoodyBuffer::init;
	void init();
	void close();
	void reset();

	/**
	 * Overload test for removal from OT list
	 */
	virtual void removeThis(CORO_PARAM, bool &result);

	/**
	 * Overload the drawing of the inventory
	 */
	virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim);

	/**
	 * Method for determining whether the inventory currently has the focus
	 */
	bool haveFocus(const RMPoint &mpos);

	/**
	 * Method for determining if the mini interface is active
	 */
	bool miniActive();

	/**
	 * Handle the left mouse click (only when the inventory has the focus)
	 */
	bool leftClick(const RMPoint &mpos, int &nCombineObj);

	/**
	 * Handle the right mouse button (only when the inventory has the focus)
	 */
	void rightClick(const RMPoint &mpos);
	bool rightRelease(const RMPoint &mpos, RMTonyAction &curAction);

	/**
	 * Warn that an item combine is over
	 */
	void endCombine();

public:
	/**
	 * Add an item to the inventory
	 */
	void addItem(int code);
	RMInventory &operator+=(RMItem *item);
	RMInventory &operator+=(RMItem &item);
	RMInventory &operator+=(int code);

	/**
	 * Removes an item
	 */
	void removeItem(int code);

	/**
	 * We are on an object?
	 */
	RMItem *whichItemIsIn(const RMPoint &mpt);
	bool itemInFocus(const RMPoint &mpt);

	/**
	 * Change the icon of an item
	 */
	void changeItemStatus(uint32 dwCode, uint32 dwStatus);

	/**
	 * Save methods
	 */
	int getSaveStateSize();
	void saveState(byte *state);
	int loadState(byte *state);
};

class RMInterface : public RMGfxSourceBuffer8RLEByte {
private:
	bool _bActive;
	RMPoint _mpos;
	RMPoint _openPos;
	RMPoint _openStart;
	RMText _hints[5];
	RMGfxSourceBuffer8RLEByte _hotzone[5];
	RMRect _hotbbox[5];
	bool _bPerorate;
	int _lastHotZone;

protected:
	/**
	 * Return which box a given point is in
	 */
	int onWhichBox(RMPoint pt);

public:
	RMInterface();
	virtual ~RMInterface();

	/**
	 * The usual DoFrame (poll the graphics engine)
	 */
	void doFrame(RMGfxTargetBuffer &bigBuf, RMPoint mousepos);

	/**
	 * TRUE if it is active (you can select items)
	 */
	bool active();

	/**
	 * Initialization
	 */
	using RMGfxSourceBuffer8RLEByte::init;
	void init();
	void close();

	/**
	 * Reset the interface
	 */
	void reset();

	/**
	 * Warns of mouse clicks and releases
	 */
	void clicked(const RMPoint &mousepos);
	bool released(const RMPoint &mousepos, RMTonyAction &action);

	/**
	 * Enables or disables the fifth verb
	 */
	void setPerorate(bool bOn);
	bool getPerorate();

	/**
	 * Overloaded Draw
	 */
	virtual void draw(CORO_PARAM, RMGfxTargetBuffer &bigBuf, RMGfxPrimitive *prim);
};

} // End of namespace Tony

#endif