aboutsummaryrefslogtreecommitdiff
path: root/engines/testbed/events.cpp
blob: e88c081d0dc1331d6cd0c22055ef88eb14d79248 (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
/* 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.
 *
 * $URL$
 * $Id$
 */

#include "common/events.h"
#include "common/keyboard.h"

#include "graphics/cursorman.h"

#include "testbed/events.h"

namespace Testbed {

struct keycodeToChar {
	Common::KeyCode code;
	char value;
} keyCodeLUT[] = {
		{Common::KEYCODE_a, 'a'},
		{Common::KEYCODE_b, 'b'},
		{Common::KEYCODE_c, 'c'},
		{Common::KEYCODE_d, 'd'},
		{Common::KEYCODE_e, 'e'},
		{Common::KEYCODE_f, 'f'},
		{Common::KEYCODE_g, 'g'},
		{Common::KEYCODE_h, 'h'},
		{Common::KEYCODE_i, 'i'},
		{Common::KEYCODE_j, 'j'},
		{Common::KEYCODE_k, 'k'},
		{Common::KEYCODE_l, 'l'},
		{Common::KEYCODE_m, 'm'},
		{Common::KEYCODE_n, 'n'},
		{Common::KEYCODE_o, 'o'},
		{Common::KEYCODE_p, 'p'},
		{Common::KEYCODE_q, 'q'},
		{Common::KEYCODE_r, 'r'},
		{Common::KEYCODE_s, 's'},
		{Common::KEYCODE_t, 't'},
		{Common::KEYCODE_u, 'u'},
		{Common::KEYCODE_v, 'v'},
		{Common::KEYCODE_w, 'w'},
		{Common::KEYCODE_x, 'x'},
		{Common::KEYCODE_y, 'y'},
		{Common::KEYCODE_z, 'z'}
	};

char EventTests::keystrokeToChar() {
	Common::EventManager *eventMan = g_system->getEventManager();
	bool quitLoop = false;
	Common::Event event;
	
	// handle all keybd events
	while (!quitLoop) {
		while (eventMan->pollEvent(event)) {
			switch (event.type) {
			case Common::EVENT_KEYDOWN :
				if (event.kbd.keycode == Common::KEYCODE_ESCAPE) {
					return 0;
				}
				for (int i = 0; i < ARRAYSIZE(keyCodeLUT); i++) {
					if (event.kbd.keycode == keyCodeLUT[i].code) {
						return keyCodeLUT[i].value;
					}
				}
			default:
				; // Ignore other events
			}
		}
	}

	return 0;
}

bool EventTests::mouseEvents() {
	Common::EventManager *eventMan = g_system->getEventManager();

	Common::Point pt(0, 100);
	Testsuite::writeOnScreen("Generate mouse events make L/R/M button clicks", pt);
	pt.y = 120; 
	Testsuite::writeOnScreen("Testbed should be able to detect them, Press X to exit", pt);


	bool quitLoop = false;
	bool passed = true;
	// handle all mouse events
	Common::Event event;
	while (!quitLoop) {
		//  show mouse
		CursorMan.showMouse(true);
		g_system->updateScreen();
		
		while (eventMan->pollEvent(event)) {
			switch (event.type) {
			case Common::EVENT_MOUSEMOVE:
				// Movements havee already been tested in GFX
				break;
			case Common::EVENT_LBUTTONDOWN:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse left-button pressed", pt);
				break;
			case Common::EVENT_RBUTTONDOWN:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse right-button pressed", pt);
				break;
			case Common::EVENT_WHEELDOWN:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse wheel moved down", pt);
				break;
			case Common::EVENT_MBUTTONDOWN:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse middle-button pressed ", pt);
				break;
			case Common::EVENT_LBUTTONUP:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse left-button released", pt);
				break;
			case Common::EVENT_RBUTTONUP:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse right-button released", pt);
				break;
			case Common::EVENT_WHEELUP:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse wheel moved down", pt);
				break;
			case Common::EVENT_MBUTTONUP:
				Testsuite::clearScreen();
				Testsuite::writeOnScreen("Mouse middle-button released ", pt);
				break;
			case Common::EVENT_KEYDOWN:
				if (event.kbd.keycode == Common::KEYCODE_x) {
					Testsuite::clearScreen();
					Testsuite::writeOnScreen("Exit requested", pt);	
					quitLoop = true;
				}
				break;

			default:
					break;
			}

		}
	}

	// Verify results now!
	if (Testsuite::handleInteractiveInput("Were mouse clicks L/R/M buttons identfied?", "Yes", "No", kOptionRight)) {
		Testsuite::logDetailedPrintf("Mouse clicks (L/R/M buttons) failed");
		passed = false;
	}
	if (Testsuite::handleInteractiveInput("Were mouse wheel movements identified?", "Yes", "No", kOptionRight)) {
		Testsuite::logDetailedPrintf("Mouse wheel movements failed");
		passed = false;
	}

	return passed;
}

bool EventTests::kbdEvents() {
	// Make user type some word and display the output on screen
	Common::String text = "You Entered :";
	Common::Point pt(0, 100);
	Testsuite::clearScreen();
	Testsuite::writeOnScreen("Enter your word, press ESC when done, it will be echoed back", pt);
	pt.y += 20;
	Common::Rect rect = Testsuite::writeOnScreen(text, pt);
	char letter;
	while ((letter = keystrokeToChar()) != 0) {
		Testsuite::clearScreen(rect);
		text += letter;
		rect = Testsuite::writeOnScreen(text, pt);
	}
	return true;
}

EventTestSuite::EventTestSuite() {
	addTest("Mouse Events", &EventTests::mouseEvents);
	addTest("Keyboard Events", &EventTests::kbdEvents);
}
const char *EventTestSuite::getName() const {
	return "Events";
}

} // End of namespace Testbed