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
|
/*
* Copyright 2016 The Emscripten Authors. All rights reserved.
* Emscripten is available under two separate licenses, the MIT license and the
* University of Illinois/NCSA Open Source License. Both these licenses can be
* found in the LICENSE file.
*/
#include <stdio.h>
#include <emscripten.h>
#include <string.h>
#include <emscripten/html5.h>
void report_result(int result)
{
if (result == 0) {
printf("Test successful!\n");
} else {
printf("Test failed!\n");
}
#ifdef REPORT_RESULT
REPORT_RESULT(result);
#endif
}
const char *emscripten_result_to_string(EMSCRIPTEN_RESULT result) {
if (result == EMSCRIPTEN_RESULT_SUCCESS) return "EMSCRIPTEN_RESULT_SUCCESS";
if (result == EMSCRIPTEN_RESULT_DEFERRED) return "EMSCRIPTEN_RESULT_DEFERRED";
if (result == EMSCRIPTEN_RESULT_NOT_SUPPORTED) return "EMSCRIPTEN_RESULT_NOT_SUPPORTED";
if (result == EMSCRIPTEN_RESULT_FAILED_NOT_DEFERRED) return "EMSCRIPTEN_RESULT_FAILED_NOT_DEFERRED";
if (result == EMSCRIPTEN_RESULT_INVALID_TARGET) return "EMSCRIPTEN_RESULT_INVALID_TARGET";
if (result == EMSCRIPTEN_RESULT_UNKNOWN_TARGET) return "EMSCRIPTEN_RESULT_UNKNOWN_TARGET";
if (result == EMSCRIPTEN_RESULT_INVALID_PARAM) return "EMSCRIPTEN_RESULT_INVALID_PARAM";
if (result == EMSCRIPTEN_RESULT_FAILED) return "EMSCRIPTEN_RESULT_FAILED";
if (result == EMSCRIPTEN_RESULT_NO_DATA) return "EMSCRIPTEN_RESULT_NO_DATA";
return "Unknown EMSCRIPTEN_RESULT!";
}
#define TEST_RESULT(x) if (ret != EMSCRIPTEN_RESULT_SUCCESS) printf("%s returned %s.\n", #x, emscripten_result_to_string(ret));
int gotClick = 0;
EM_BOOL click_callback(int eventType, const EmscriptenMouseEvent *e, void *userData)
{
if (e->screenX != 0 && e->screenY != 0 && e->clientX != 0 && e->clientY != 0 && e->canvasX != 0 && e->canvasY != 0 && e->targetX != 0 && e->targetY != 0)
{
if (eventType == EMSCRIPTEN_EVENT_CLICK && !gotClick) {
gotClick = 1;
printf("Request pointer lock...\n");
EMSCRIPTEN_RESULT ret = emscripten_request_pointerlock(0, 0);
TEST_RESULT(ret);
if (ret != EMSCRIPTEN_RESULT_SUCCESS) {
printf("ERROR! emscripten_request_pointerlock() failure\n");
report_result(1);
}
}
}
return 0;
}
EM_BOOL pointerlockchange_callback(int eventType, const EmscriptenPointerlockChangeEvent *e, void *userData) {
printf("ERROR! received 'pointerlockchange' event\n");
report_result(1);
return 0;
}
EM_BOOL pointerlockerror_callback(int eventType, const void *reserved, void *userData) {
if (eventType != EMSCRIPTEN_EVENT_POINTERLOCKERROR) {
printf("ERROR! invalid event type for 'pointerlockerror' callback\n");
report_result(1);
return 0;
}
printf("SUCCESS! received 'pointerlockerror' event\n");
report_result(0);
return 0;
}
int main()
{
printf("'pointerlockerror' event test:\n");
printf("Reject the pointer lock request after clicking on canvas.\n");
// Make the canvas area stand out from the background.
emscripten_set_canvas_element_size( "#canvas", 400, 300 );
EM_ASM(Module['canvas'].style.backgroundColor = 'black';);
EMSCRIPTEN_RESULT ret = emscripten_set_click_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, 1, click_callback);
TEST_RESULT(emscripten_set_click_callback);
ret = emscripten_set_pointerlockchange_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, 1, pointerlockchange_callback);
TEST_RESULT(emscripten_set_pointerlockchange_callback);
ret = emscripten_set_pointerlockerror_callback(EMSCRIPTEN_EVENT_TARGET_WINDOW, 0, 1, pointerlockerror_callback);
TEST_RESULT(emscripten_set_pointerlockerror_callback);
emscripten_exit_with_live_runtime();
return 0;
}
|