File: Widget.cpp

package info (click to toggle)
scummvm 2.9.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 450,580 kB
  • sloc: cpp: 4,299,825; asm: 28,322; python: 12,901; sh: 11,302; java: 9,289; xml: 7,895; perl: 2,639; ansic: 2,465; yacc: 1,670; javascript: 1,020; makefile: 933; lex: 578; awk: 275; objc: 82; sed: 11; php: 1
file content (558 lines) | stat: -rw-r--r-- 14,612 bytes parent folder | download | duplicates (3)
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
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
/* 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 3 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, see <http://www.gnu.org/licenses/>.
 *
 */

/*
 * Copyright (C) 2006-2010 - Frictional Games
 *
 * This file is part of HPL1 Engine.
 */

#include "hpl1/engine/gui/Widget.h"

#include "hpl1/engine/system/low_level_system.h"

#include "hpl1/engine/gui/GuiGfxElement.h"
#include "hpl1/engine/gui/GuiSet.h"
#include "hpl1/engine/gui/GuiSkin.h"

namespace hpl {

//////////////////////////////////////////////////////////////////////////
// CONSTRUCTORS
//////////////////////////////////////////////////////////////////////////

//-----------------------------------------------------------------------

iWidget::iWidget(eWidgetType aType, cGuiSet *apSet, cGuiSkin *apSkin) {
	mpSet = apSet;
	mpSkin = apSkin;
	mpGui = mpSet->GetGui();

	mType = aType;

	mvCallbackLists.resize(eGuiMessage_LastEnum);

	mpParent = NULL;

	mvPosition = 0;
	mvSize = 0;

	mbEnabled = true;
	mbVisible = true;

	mbClipsGraphics = false;

	mbMouseIsOver = false;

	msText = _W("");

	mbPositionIsUpdated = true;

	mlPositionCount = 0;

	mbConnectedToChildren = true;

	if (mpSkin)
		mpPointerGfx = mpSkin->GetGfx(eGuiSkinGfx_PointerNormal);
	else
		mpPointerGfx = NULL;
}

//-----------------------------------------------------------------------

iWidget::~iWidget() {
	////////////////////////
	// Remove all children
	tWidgetListIt it = mlstChildren.begin();
	while (it != mlstChildren.end()) {
		RemoveChild(*it);
		it = mlstChildren.begin();
	}

	////////////////////////////
	// Remove from parent
	if (mpParent)
		mpParent->RemoveChild(this);
}

//-----------------------------------------------------------------------

//////////////////////////////////////////////////////////////////////////
// PUBLIC METHODS
//////////////////////////////////////////////////////////////////////////

//-----------------------------------------------------------------------

void iWidget::Update(float afTimeStep) {
	OnUpdate(afTimeStep);
}

//-----------------------------------------------------------------------

void iWidget::Draw(float afTimeStep, cGuiClipRegion *apClipRegion) {
	if (mbVisible == false)
		return;

	OnDraw(afTimeStep, apClipRegion);

	cGuiClipRegion *pChildRegion = apClipRegion;
	if (mbClipsGraphics) {
		pChildRegion = apClipRegion->CreateChild(GetGlobalPosition(), mvSize);
		mpSet->SetCurrentClipRegion(pChildRegion);
	}

	OnDrawAfterClip(afTimeStep, apClipRegion);

	/////////////////////////////////
	// Draw callbacks
	cGuiMessageData data;
	data.mfVal = afTimeStep;
	data.mpData = apClipRegion;
	ProcessMessage(eGuiMessage_OnDraw, data);

	/////////////////////////////////
	// Draw children
	tWidgetListIt it = mlstChildren.begin();
	for (; it != mlstChildren.end(); ++it) {
		iWidget *pChild = *it;

		pChild->Draw(afTimeStep, pChildRegion);
	}

	if (mbClipsGraphics)
		mpSet->SetCurrentClipRegion(apClipRegion);
}

//-----------------------------------------------------------------------

void iWidget::Init() {
	OnInit();
	LoadGraphics();
}

//-----------------------------------------------------------------------

bool iWidget::ProcessMessage(eGuiMessage aMessage, cGuiMessageData &aData) {
	if (IsEnabled() == false)
		return false;

	aData.mMessage = aMessage;

	bool bRet = false;
	bRet = OnMessage(aMessage, aData); // This can override any message.

	/////////////////////////////////////////
	// Call the correct virtual function
	if (bRet == false) {
		switch (aMessage) {
		case eGuiMessage_MouseMove:
			bRet = OnMouseMove(aData);
			break;
		case eGuiMessage_MouseDown:
			bRet = OnMouseDown(aData);
			break;
		case eGuiMessage_MouseUp:
			bRet = OnMouseUp(aData);
			break;
		case eGuiMessage_MouseDoubleClick:
			bRet = OnMouseDoubleClick(aData);
			break;
		case eGuiMessage_MouseEnter:
			bRet = OnMouseEnter(aData);
			break;
		case eGuiMessage_MouseLeave:
			bRet = OnMouseLeave(aData);
			break;
		case eGuiMessage_KeyPress:
			bRet = OnKeyPress(aData);
			break;
		case eGuiMessage_GotFocus:
			bRet = OnGotFocus(aData);
			break;
		case eGuiMessage_LostFocus:
			bRet = OnLostFocus(aData);
			break;
		default:
			break;
		}
	}

	/////////////////////////////////////////
	// Process user callbacks for the event.
	if (ProcessCallbacks(aMessage, aData))
		bRet = true;

	return bRet;
}

//-----------------------------------------------------------------------

void iWidget::AddCallback(eGuiMessage aMessage, void *apObject, tGuiCallbackFunc apFunc) {
	mvCallbackLists[aMessage].push_back(cWidgetCallback(apObject, apFunc));
}

//-----------------------------------------------------------------------

bool iWidget::PointIsInside(const cVector2f &avPoint, bool abOnlyClipped) {
	if (mpParent && mpParent->ClipsGraphics()) {
		if (mpParent->PointIsInside(avPoint, true) == false) {
			return false;
		}
	}

	if (abOnlyClipped && mbClipsGraphics == false)
		return true;

	cVector3f vGlobalPos = GetGlobalPosition();

	if (avPoint.x < vGlobalPos.x || avPoint.x > vGlobalPos.x + mvSize.x ||
		avPoint.y < vGlobalPos.y || avPoint.y > vGlobalPos.y + mvSize.y) {
		return false;
	} else {
		return true;
	}
}

//-----------------------------------------------------------------------

void iWidget::AttachChild(iWidget *apChild) {
	if (apChild->mpParent) {
		iWidget *pParent = apChild->mpParent;
		pParent->RemoveChild(apChild);
		apChild->SetPosition(apChild->mvPosition + pParent->GetGlobalPosition());
		apChild->SetPosition(apChild->mvPosition - GetGlobalPosition());
	}
	apChild->mpParent = this;
	apChild->SetPositionUpdated();
	mlstChildren.push_back(apChild);
}

void iWidget::RemoveChild(iWidget *apChild) {
	tWidgetListIt it = mlstChildren.begin();
	for (; it != mlstChildren.end(); ++it) {
		iWidget *pChild = *it;

		if (pChild == apChild) {
			mlstChildren.erase(it);

			pChild->mpParent = NULL;
			pChild->SetPositionUpdated();
			pChild->SetPosition(pChild->mvPosition + GetGlobalPosition());

			break;
		}
	}
}

//-----------------------------------------------------------------------

void iWidget::SetEnabled(bool abX) {
	if (mbEnabled == abX)
		return;

	mbEnabled = abX;
}

bool iWidget::IsEnabled() {
	if (mpParent) {
		if (mpParent->IsEnabled())
			return mbEnabled;
		else
			return false;
	}

	return mbEnabled;
}

//-----------------------------------------------------------------------

void iWidget::SetVisible(bool abX) {
	if (mbVisible == abX)
		return;

	mbVisible = abX;
}

bool iWidget::IsVisible() {
	if (mpParent) {
		if (mpParent->IsVisible())
			return mbVisible;
		else
			return false;
	}

	return mbVisible;
}

//-----------------------------------------------------------------------

bool iWidget::HasFocus() {
	return mpSet->GetFocusedWidget() == this;
}

//-----------------------------------------------------------------------

void iWidget::SetText(const tWString &asText) {
	if (asText == msText)
		return;

	msText = asText;

	OnChangeText();
	cGuiMessageData data = cGuiMessageData();
	ProcessMessage(eGuiMessage_TextChange, data);
}

//-----------------------------------------------------------------------

void iWidget::SetPosition(const cVector3f &avPos) {
	mvPosition = avPos;

	SetPositionUpdated();
}

void iWidget::SetGlobalPosition(const cVector3f &avPos) {
	SetPosition(avPos - mpParent->GetGlobalPosition());
}

const cVector3f &iWidget::GetLocalPosition() {
	return mvPosition;
}

const cVector3f &iWidget::GetGlobalPosition() {
	if (mpParent) {
		if (mbPositionIsUpdated) {
			mbPositionIsUpdated = false;
			mvGlobalPosition = mpParent->GetGlobalPosition() + mvPosition;
		}
		return mvGlobalPosition;
	} else {
		return mvPosition;
	}
}

//-----------------------------------------------------------------------

void iWidget::SetSize(const cVector2f &avSize) {
	mvSize = avSize;

	OnChangeSize();
}

//-----------------------------------------------------------------------

bool iWidget::ClipsGraphics() {
	if (mpParent && mpParent->ClipsGraphics())
		return true;

	return mbClipsGraphics;
}

//-----------------------------------------------------------------------

bool iWidget::IsConnectedTo(iWidget *apWidget, bool abIsStartWidget) {
	if (abIsStartWidget == false && mbConnectedToChildren == false)
		return false;

	if (apWidget == NULL)
		return false;
	if (apWidget == this)
		return true;

	if (mpParent)
		return mpParent->IsConnectedTo(apWidget, false);

	return false;
}

//-----------------------------------------------------------------------

cGuiGfxElement *iWidget::GetPointerGfx() {
	return mpPointerGfx;
}

//-----------------------------------------------------------------------

//////////////////////////////////////////////////////////////////////////
// PROTECTED METHODS
//////////////////////////////////////////////////////////////////////////

//-----------------------------------------------------------------------

bool iWidget::OnGotFocus(cGuiMessageData &aData) {
	return mbEnabled;
}
//-----------------------------------------------------------------------

cVector3f iWidget::WorldToLocalPosition(const cVector3f &avPos) {
	return avPos - GetGlobalPosition();
}

//-----------------------------------------------------------------------

cVector2f iWidget::GetPosRelativeToMouse(cGuiMessageData &aData) {
	cVector3f vTemp = GetGlobalPosition() - aData.mvPos;
	return cVector2f(vTemp.x, vTemp.y);
}

//-----------------------------------------------------------------------

void iWidget::DrawBordersAndCorners(cGuiGfxElement *apBackground,
									cGuiGfxElement **apBorderVec, cGuiGfxElement **apCornerVec,
									const cVector3f &avPosition, const cVector2f &avSize) {
	mpSet->SetDrawOffset(avPosition);

	///////////////////////
	// Background
	if (apBackground) {

		mpSet->DrawGfx(apBackground, cVector3f(apCornerVec[0]->GetActiveSize().x, apCornerVec[0]->GetActiveSize().y, 0),
					   avSize - apCornerVec[2]->GetActiveSize() - apCornerVec[0]->GetActiveSize(),
					   cColor(1, 1));
	}

	///////////////////////
	// Borders
	// Right
	mpSet->DrawGfx(apBorderVec[0],
				   cVector3f(avSize.x - apBorderVec[0]->GetActiveSize().x,
							 apCornerVec[1]->GetActiveSize().y, 0),
				   cVector2f(apBorderVec[0]->GetImageSize().x,
							 avSize.y - (apCornerVec[2]->GetActiveSize().y +
										 apCornerVec[1]->GetActiveSize().y)));
	// Left
	mpSet->DrawGfx(apBorderVec[1],
				   cVector3f(0, apCornerVec[0]->GetActiveSize().y, 0),
				   cVector2f(apBorderVec[1]->GetImageSize().x,
							 avSize.y - (apCornerVec[3]->GetActiveSize().y +
										 apCornerVec[0]->GetActiveSize().y)));

	// Up
	mpSet->DrawGfx(apBorderVec[2],
				   cVector3f(apCornerVec[0]->GetActiveSize().x, 0, 0),
				   cVector2f(avSize.x - (apCornerVec[0]->GetActiveSize().x +
										 apCornerVec[1]->GetActiveSize().x),
							 apBorderVec[2]->GetImageSize().y));

	// Down
	mpSet->DrawGfx(apBorderVec[3],
				   cVector3f(apCornerVec[3]->GetActiveSize().x,
							 avSize.y - apBorderVec[3]->GetActiveSize().y, 0),
				   cVector2f(avSize.x - (apCornerVec[2]->GetActiveSize().x +
										 apCornerVec[3]->GetActiveSize().x),
							 apBorderVec[3]->GetImageSize().y));

	///////////////////////
	// Corners
	// Left Up
	mpSet->DrawGfx(apCornerVec[0], cVector3f(0, 0, 0));
	// Right Up
	mpSet->DrawGfx(apCornerVec[1], cVector3f(avSize.x - apCornerVec[1]->GetActiveSize().x, 0, 0));

	// Right Down
	mpSet->DrawGfx(apCornerVec[2], cVector3f(avSize.x - apCornerVec[2]->GetActiveSize().x,
											 avSize.y - apCornerVec[2]->GetActiveSize().y, 0));
	// Left Down
	mpSet->DrawGfx(apCornerVec[3], cVector3f(0, avSize.y - apCornerVec[3]->GetActiveSize().y, 0));

	mpSet->SetDrawOffset(0);
}

//-----------------------------------------------------------------------

void iWidget::DrawSkinText(const tWString &asText, eGuiSkinFont aFont,
						   const cVector3f &avPosition, eFontAlign aAlign) {
	cGuiSkinFont *pFont = mpSkin->GetFont(aFont);
	mpSet->DrawFont(asText, pFont->mpFont, avPosition, pFont->mvSize, pFont->mColor,
					aAlign);
}

//-----------------------------------------------------------------------

void iWidget::DrawDefaultText(const tWString &asText,
							  const cVector3f &avPosition, eFontAlign aAlign) {
	if (mpDefaultFontType == NULL)
		return;

	mpSet->DrawFont(asText, mpDefaultFontType, avPosition, mvDefaultFontSize,
					mDefaultFontColor, aAlign);
}

//-----------------------------------------------------------------------

//////////////////////////////////////////////////////////////////////////
// PRIVATE METHODS
//////////////////////////////////////////////////////////////////////////

//-----------------------------------------------------------------------

bool iWidget::ProcessCallbacks(eGuiMessage aMessage, cGuiMessageData &aData) {
	tWidgetCallbackList &lstCallbacks = mvCallbackLists[aMessage];

	if (lstCallbacks.empty())
		return false;

	bool bRet = false;
	tWidgetCallbackListIt it = lstCallbacks.begin();
	for (; it != lstCallbacks.end(); ++it) {
		cWidgetCallback &callback = *it;

		bool bX = (callback.mpFunc)(callback.mpObject, this, aData);
		if (bX)
			bRet = true;
	}

	return bRet;
}

//-----------------------------------------------------------------------

void iWidget::LoadGraphics() {
	if (mpSkin) {
		mpDefaultFont = mpSkin->GetFont(eGuiSkinFont_Default);

		mpDefaultFontType = mpDefaultFont->mpFont;
		mDefaultFontColor = mpDefaultFont->mColor;
		mvDefaultFontSize = mpDefaultFont->mvSize;
	} else {
		mpDefaultFont = NULL;
	}

	OnLoadGraphics();
}

//-----------------------------------------------------------------------
void iWidget::SetPositionUpdated() {
	mbPositionIsUpdated = true;
	mlPositionCount++;

	OnChangePosition();

	tWidgetListIt it = mlstChildren.begin();
	for (; it != mlstChildren.end(); ++it) {
		iWidget *pChild = *it;
		pChild->SetPositionUpdated();
	}
}

//-----------------------------------------------------------------------

} // namespace hpl