2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* haiku_direct_window.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 14:16:55 +02:00
|
|
|
/* https://godotengine.org */
|
2016-06-18 14:46:12 +02:00
|
|
|
/*************************************************************************/
|
2019-01-01 12:53:14 +01:00
|
|
|
/* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
|
2016-06-18 14:46:12 +02:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2015-07-11 23:52:47 +02:00
|
|
|
#include <UnicodeChar.h>
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/os/keyboard.h"
|
2015-06-11 21:57:41 +02:00
|
|
|
#include "haiku_direct_window.h"
|
2015-07-11 23:52:47 +02:00
|
|
|
#include "key_mapping_haiku.h"
|
2017-03-05 16:44:50 +01:00
|
|
|
#include "main/main.h"
|
2015-06-11 21:57:41 +02:00
|
|
|
|
2017-12-06 21:36:34 +01:00
|
|
|
HaikuDirectWindow::HaikuDirectWindow(BRect p_frame) :
|
|
|
|
BDirectWindow(p_frame, "Godot", B_TITLED_WINDOW, B_QUIT_ON_WINDOW_CLOSE) {
|
2015-06-16 20:52:24 +02:00
|
|
|
last_mouse_pos_valid = false;
|
|
|
|
last_buttons_state = 0;
|
2015-06-18 21:41:33 +02:00
|
|
|
last_button_mask = 0;
|
2015-06-21 21:18:27 +02:00
|
|
|
last_key_modifier_state = 0;
|
2018-08-11 13:05:48 +02:00
|
|
|
|
|
|
|
view = NULL;
|
|
|
|
update_runner = NULL;
|
|
|
|
input = NULL;
|
|
|
|
main_loop = NULL;
|
2015-06-11 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
HaikuDirectWindow::~HaikuDirectWindow() {
|
2015-06-11 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::SetHaikuGLView(HaikuGLView *p_view) {
|
2015-06-11 21:57:41 +02:00
|
|
|
view = p_view;
|
|
|
|
}
|
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
void HaikuDirectWindow::StartMessageRunner() {
|
|
|
|
update_runner = new BMessageRunner(BMessenger(this),
|
2018-08-11 13:05:48 +02:00
|
|
|
new BMessage(REDRAW_MSG), 1000000 / 60 /* 60 fps */);
|
2015-06-11 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
void HaikuDirectWindow::StopMessageRunner() {
|
|
|
|
delete update_runner;
|
|
|
|
}
|
2015-06-11 21:57:41 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::SetInput(InputDefault *p_input) {
|
2015-06-16 20:52:24 +02:00
|
|
|
input = p_input;
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::SetMainLoop(MainLoop *p_main_loop) {
|
2015-06-20 00:59:32 +02:00
|
|
|
main_loop = p_main_loop;
|
|
|
|
}
|
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
bool HaikuDirectWindow::QuitRequested() {
|
2018-08-11 13:05:48 +02:00
|
|
|
StopMessageRunner();
|
2015-06-20 00:59:32 +02:00
|
|
|
main_loop->notification(MainLoop::NOTIFICATION_WM_QUIT_REQUEST);
|
|
|
|
return false;
|
2015-06-11 21:57:41 +02:00
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::DirectConnected(direct_buffer_info *info) {
|
2015-06-17 21:27:45 +02:00
|
|
|
view->DirectConnected(info);
|
2015-06-11 21:57:41 +02:00
|
|
|
view->EnableDirectMode(true);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::MessageReceived(BMessage *message) {
|
2015-06-16 20:52:24 +02:00
|
|
|
switch (message->what) {
|
|
|
|
case REDRAW_MSG:
|
2018-10-03 19:40:37 +02:00
|
|
|
if (Main::iteration()) {
|
2015-06-20 00:59:32 +02:00
|
|
|
view->EnableDirectMode(false);
|
|
|
|
Quit();
|
|
|
|
}
|
2015-06-16 20:52:24 +02:00
|
|
|
break;
|
|
|
|
|
2015-06-17 21:27:45 +02:00
|
|
|
default:
|
2015-06-16 20:52:24 +02:00
|
|
|
BDirectWindow::MessageReceived(message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::DispatchMessage(BMessage *message, BHandler *handler) {
|
2015-06-16 20:52:24 +02:00
|
|
|
switch (message->what) {
|
|
|
|
case B_MOUSE_DOWN:
|
|
|
|
case B_MOUSE_UP:
|
2015-07-02 17:41:32 +02:00
|
|
|
HandleMouseButton(message);
|
2015-06-16 20:52:24 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case B_MOUSE_MOVED:
|
2015-07-02 17:41:32 +02:00
|
|
|
HandleMouseMoved(message);
|
2015-06-16 20:52:24 +02:00
|
|
|
break;
|
|
|
|
|
2015-06-21 21:18:27 +02:00
|
|
|
case B_MOUSE_WHEEL_CHANGED:
|
2015-07-02 17:41:32 +02:00
|
|
|
HandleMouseWheelChanged(message);
|
|
|
|
break;
|
|
|
|
|
2015-07-11 23:52:47 +02:00
|
|
|
case B_KEY_DOWN:
|
|
|
|
case B_KEY_UP:
|
|
|
|
HandleKeyboardEvent(message);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case B_MODIFIERS_CHANGED:
|
|
|
|
HandleKeyboardModifierEvent(message);
|
|
|
|
break;
|
|
|
|
|
2015-07-02 17:41:32 +02:00
|
|
|
case B_WINDOW_RESIZED:
|
|
|
|
HandleWindowResized(message);
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LOCKGL_MSG:
|
|
|
|
view->LockGL();
|
|
|
|
break;
|
|
|
|
|
|
|
|
case UNLOCKGL_MSG:
|
|
|
|
view->UnlockGL();
|
2015-06-21 21:18:27 +02:00
|
|
|
break;
|
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
default:
|
|
|
|
BDirectWindow::DispatchMessage(message, handler);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::HandleMouseButton(BMessage *message) {
|
2015-06-16 20:52:24 +02:00
|
|
|
BPoint where;
|
|
|
|
if (message->FindPoint("where", &where) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-17 21:27:45 +02:00
|
|
|
uint32 modifiers = message->FindInt32("modifiers");
|
2015-06-16 20:52:24 +02:00
|
|
|
uint32 buttons = message->FindInt32("buttons");
|
|
|
|
uint32 button = buttons ^ last_buttons_state;
|
|
|
|
last_buttons_state = buttons;
|
|
|
|
|
|
|
|
// TODO: implement the mouse_mode checks
|
2017-01-14 12:26:56 +01:00
|
|
|
/*
|
|
|
|
if (mouse_mode == MOUSE_MODE_CAPTURED) {
|
|
|
|
event.xbutton.x=last_mouse_pos.x;
|
|
|
|
event.xbutton.y=last_mouse_pos.y;
|
|
|
|
}
|
|
|
|
*/
|
2015-06-17 21:27:45 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
Ref<InputEventMouseButton> mouse_event;
|
|
|
|
mouse_event.instance();
|
2015-06-16 20:52:24 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_button_mask(GetMouseButtonState(buttons));
|
|
|
|
mouse_event->set_position({ where.x, where.y });
|
|
|
|
mouse_event->set_global_position({ where.x, where.y });
|
|
|
|
GetKeyModifierState(mouse_event, modifiers);
|
2015-06-16 20:52:24 +02:00
|
|
|
|
|
|
|
switch (button) {
|
|
|
|
default:
|
|
|
|
case B_PRIMARY_MOUSE_BUTTON:
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_button_index(1);
|
2015-06-16 20:52:24 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case B_SECONDARY_MOUSE_BUTTON:
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_button_index(2);
|
2015-06-16 20:52:24 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case B_TERTIARY_MOUSE_BUTTON:
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_button_index(3);
|
2015-06-16 20:52:24 +02:00
|
|
|
break;
|
|
|
|
}
|
2015-06-17 21:27:45 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_pressed(message->what == B_MOUSE_DOWN);
|
2015-06-16 20:52:24 +02:00
|
|
|
|
2017-05-20 17:38:03 +02:00
|
|
|
if (message->what == B_MOUSE_DOWN && mouse_event->get_button_index() == 1) {
|
2015-06-16 20:52:24 +02:00
|
|
|
int32 clicks = message->FindInt32("clicks");
|
2015-06-17 21:27:45 +02:00
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
if (clicks > 1) {
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_doubleclick(true);
|
2015-06-16 20:52:24 +02:00
|
|
|
}
|
2015-06-17 21:27:45 +02:00
|
|
|
}
|
2015-06-16 20:52:24 +02:00
|
|
|
|
|
|
|
input->parse_input_event(mouse_event);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::HandleMouseMoved(BMessage *message) {
|
2015-06-16 20:52:24 +02:00
|
|
|
BPoint where;
|
|
|
|
if (message->FindPoint("where", &where) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
2015-06-17 21:27:45 +02:00
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
Point2i pos(where.x, where.y);
|
2015-06-17 21:27:45 +02:00
|
|
|
uint32 modifiers = message->FindInt32("modifiers");
|
|
|
|
uint32 buttons = message->FindInt32("buttons");
|
|
|
|
|
2015-06-16 20:52:24 +02:00
|
|
|
if (!last_mouse_pos_valid) {
|
2015-06-18 21:41:33 +02:00
|
|
|
last_mouse_position = pos;
|
2015-06-17 21:27:45 +02:00
|
|
|
last_mouse_pos_valid = true;
|
2015-06-16 20:52:24 +02:00
|
|
|
}
|
|
|
|
|
2015-06-18 21:41:33 +02:00
|
|
|
Point2i rel = pos - last_mouse_position;
|
2015-06-16 20:52:24 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
Ref<InputEventMouseMotion> motion_event;
|
|
|
|
motion_event.instance();
|
|
|
|
GetKeyModifierState(motion_event, modifiers);
|
2015-06-16 20:52:24 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
motion_event->set_button_mask(GetMouseButtonState(buttons));
|
|
|
|
motion_event->set_position({ pos.x, pos.y });
|
2017-03-29 17:29:38 +02:00
|
|
|
input->set_mouse_position(pos);
|
2018-08-11 13:05:48 +02:00
|
|
|
motion_event->set_global_position({ pos.x, pos.y });
|
|
|
|
motion_event->set_speed({ input->get_last_mouse_speed().x,
|
|
|
|
input->get_last_mouse_speed().y });
|
2015-06-16 20:52:24 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
motion_event->set_relative({ rel.x, rel.y });
|
2015-06-16 20:52:24 +02:00
|
|
|
|
2015-06-18 21:41:33 +02:00
|
|
|
last_mouse_position = pos;
|
2015-06-16 20:52:24 +02:00
|
|
|
|
|
|
|
input->parse_input_event(motion_event);
|
|
|
|
}
|
2015-06-17 21:27:45 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::HandleMouseWheelChanged(BMessage *message) {
|
2015-06-21 21:18:27 +02:00
|
|
|
float wheel_delta_y = 0;
|
|
|
|
if (message->FindFloat("be:wheel_delta_y", &wheel_delta_y) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
Ref<InputEventMouseButton> mouse_event;
|
|
|
|
mouse_event.instance();
|
|
|
|
//GetKeyModifierState(mouse_event, modifiers);
|
2015-06-21 21:18:27 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_button_index(wheel_delta_y < 0 ? 4 : 5);
|
|
|
|
mouse_event->set_button_mask(last_button_mask);
|
|
|
|
mouse_event->set_position({ last_mouse_position.x,
|
|
|
|
last_mouse_position.y });
|
|
|
|
mouse_event->set_global_position({ last_mouse_position.x,
|
|
|
|
last_mouse_position.y });
|
2015-06-21 21:18:27 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_pressed(true);
|
2015-06-21 21:18:27 +02:00
|
|
|
input->parse_input_event(mouse_event);
|
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
mouse_event->set_pressed(false);
|
2015-06-21 21:18:27 +02:00
|
|
|
input->parse_input_event(mouse_event);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::HandleKeyboardEvent(BMessage *message) {
|
2015-07-11 23:52:47 +02:00
|
|
|
int32 raw_char = 0;
|
|
|
|
int32 key = 0;
|
|
|
|
int32 modifiers = 0;
|
|
|
|
|
|
|
|
if (message->FindInt32("raw_char", &raw_char) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message->FindInt32("key", &key) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message->FindInt32("modifiers", &modifiers) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
Ref<InputEventKey> event;
|
|
|
|
event.instance();
|
|
|
|
GetKeyModifierState(event, modifiers);
|
|
|
|
event->set_pressed(message->what == B_KEY_DOWN);
|
|
|
|
event->set_scancode(KeyMappingHaiku::get_keysym(raw_char, key));
|
|
|
|
event->set_echo(message->HasInt32("be:key_repeat"));
|
|
|
|
event->set_unicode(0);
|
2015-07-11 23:52:47 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
const char *bytes = NULL;
|
2015-07-11 23:52:47 +02:00
|
|
|
if (message->FindString("bytes", &bytes) == B_OK) {
|
2018-08-11 13:05:48 +02:00
|
|
|
event->set_unicode(BUnicodeChar::FromUTF8(&bytes));
|
2015-07-11 23:52:47 +02:00
|
|
|
}
|
|
|
|
|
2017-03-24 21:45:31 +01:00
|
|
|
//make it consistent across platforms.
|
2017-05-20 17:38:03 +02:00
|
|
|
if (event->get_scancode() == KEY_BACKTAB) {
|
2018-08-11 13:05:48 +02:00
|
|
|
event->set_scancode(KEY_TAB);
|
|
|
|
event->set_shift(true);
|
2015-07-11 23:52:47 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
input->parse_input_event(event);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::HandleKeyboardModifierEvent(BMessage *message) {
|
2015-07-11 23:52:47 +02:00
|
|
|
int32 old_modifiers = 0;
|
|
|
|
int32 modifiers = 0;
|
|
|
|
|
|
|
|
if (message->FindInt32("be:old_modifiers", &old_modifiers) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (message->FindInt32("modifiers", &modifiers) != B_OK) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32 key = old_modifiers ^ modifiers;
|
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
Ref<InputEventWithModifiers> event;
|
|
|
|
event.instance();
|
|
|
|
GetKeyModifierState(event, modifiers);
|
|
|
|
|
|
|
|
event->set_shift(key & B_SHIFT_KEY);
|
|
|
|
event->set_alt(key & B_OPTION_KEY);
|
|
|
|
event->set_control(key & B_CONTROL_KEY);
|
|
|
|
event->set_command(key & B_COMMAND_KEY);
|
2015-07-11 23:52:47 +02:00
|
|
|
|
|
|
|
input->parse_input_event(event);
|
|
|
|
}
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void HaikuDirectWindow::HandleWindowResized(BMessage *message) {
|
2015-07-02 17:41:32 +02:00
|
|
|
int32 width = 0;
|
|
|
|
int32 height = 0;
|
|
|
|
|
|
|
|
if ((message->FindInt32("width", &width) != B_OK) || (message->FindInt32("height", &height) != B_OK)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
current_video_mode->width = width;
|
|
|
|
current_video_mode->height = height;
|
|
|
|
}
|
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
inline void HaikuDirectWindow::GetKeyModifierState(Ref<InputEventWithModifiers> event, uint32 p_state) {
|
2015-06-21 21:18:27 +02:00
|
|
|
last_key_modifier_state = p_state;
|
2015-06-17 21:27:45 +02:00
|
|
|
|
2018-08-11 13:05:48 +02:00
|
|
|
event->set_shift(p_state & B_SHIFT_KEY);
|
|
|
|
event->set_control(p_state & B_CONTROL_KEY);
|
|
|
|
event->set_alt(p_state & B_OPTION_KEY);
|
|
|
|
event->set_metakey(p_state & B_COMMAND_KEY);
|
2015-06-17 21:27:45 +02:00
|
|
|
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
|
2015-06-18 21:41:33 +02:00
|
|
|
inline int HaikuDirectWindow::GetMouseButtonState(uint32 p_state) {
|
|
|
|
int state = 0;
|
2015-06-17 21:27:45 +02:00
|
|
|
|
|
|
|
if (p_state & B_PRIMARY_MOUSE_BUTTON) {
|
|
|
|
state |= 1 << 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_state & B_SECONDARY_MOUSE_BUTTON) {
|
|
|
|
state |= 1 << 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p_state & B_TERTIARY_MOUSE_BUTTON) {
|
|
|
|
state |= 1 << 2;
|
|
|
|
}
|
|
|
|
|
2015-06-18 21:41:33 +02:00
|
|
|
last_button_mask = state;
|
|
|
|
|
2015-06-17 21:27:45 +02:00
|
|
|
return state;
|
|
|
|
}
|