2016-06-18 12:46:12 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* os_haiku.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* http://www.godotengine.org */
|
|
|
|
/*************************************************************************/
|
2017-01-01 21:01:57 +00:00
|
|
|
/* Copyright (c) 2007-2017 Juan Linietsky, Ariel Manzur. */
|
2016-06-18 12:46:12 +00: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. */
|
|
|
|
/*************************************************************************/
|
2015-06-20 23:08:31 +00:00
|
|
|
#include <Screen.h>
|
|
|
|
|
2015-05-28 00:42:40 +00:00
|
|
|
#include "servers/visual/visual_server_raster.h"
|
2015-05-29 20:36:48 +00:00
|
|
|
#include "servers/visual/visual_server_wrap_mt.h"
|
2015-05-28 00:42:40 +00:00
|
|
|
#include "drivers/gles2/rasterizer_gles2.h"
|
2015-06-11 19:57:41 +00:00
|
|
|
#include "servers/physics/physics_server_sw.h"
|
2015-06-20 00:43:11 +00:00
|
|
|
//#include "servers/physics_2d/physics_2d_server_wrap_mt.h"
|
2015-06-11 19:57:41 +00:00
|
|
|
#include "main/main.h"
|
|
|
|
|
2015-05-25 00:49:24 +00:00
|
|
|
#include "os_haiku.h"
|
|
|
|
|
2015-06-11 19:57:41 +00:00
|
|
|
|
2015-05-25 03:02:55 +00:00
|
|
|
OS_Haiku::OS_Haiku() {
|
2015-07-25 23:18:32 +00:00
|
|
|
#ifdef MEDIA_KIT_ENABLED
|
2017-01-16 18:19:45 +00:00
|
|
|
AudioDriverManager::add_driver(&driver_media_kit);
|
2015-07-25 23:18:32 +00:00
|
|
|
#endif
|
2015-05-25 03:02:55 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
void OS_Haiku::run() {
|
2015-06-11 19:57:41 +00:00
|
|
|
if (!main_loop) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
main_loop->init();
|
2015-07-02 15:41:32 +00:00
|
|
|
context_gl->release_current();
|
|
|
|
|
|
|
|
// TODO: clean up
|
|
|
|
BMessenger* bms = new BMessenger(window);
|
|
|
|
BMessage* msg = new BMessage();
|
|
|
|
bms->SendMessage(LOCKGL_MSG, msg);
|
|
|
|
|
2015-06-16 18:52:24 +00:00
|
|
|
window->StartMessageRunner();
|
2015-06-11 19:57:41 +00:00
|
|
|
app->Run();
|
2015-06-16 18:52:24 +00:00
|
|
|
window->StopMessageRunner();
|
2015-06-11 19:57:41 +00:00
|
|
|
|
2015-06-20 00:43:11 +00:00
|
|
|
delete app;
|
2015-07-02 15:41:32 +00:00
|
|
|
|
|
|
|
delete bms;
|
|
|
|
delete msg;
|
2015-06-11 19:57:41 +00:00
|
|
|
main_loop->finish();
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
2015-05-25 00:49:24 +00:00
|
|
|
String OS_Haiku::get_name() {
|
|
|
|
return "Haiku";
|
|
|
|
}
|
2015-05-25 03:02:55 +00:00
|
|
|
|
|
|
|
int OS_Haiku::get_video_driver_count() const {
|
2015-05-29 21:57:07 +00:00
|
|
|
return 1;
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const char* OS_Haiku::get_video_driver_name(int p_driver) const {
|
2015-05-29 21:57:07 +00:00
|
|
|
return "GLES2";
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OS::VideoMode OS_Haiku::get_default_video_mode() const {
|
2015-05-29 21:57:07 +00:00
|
|
|
return OS::VideoMode(800, 600, false);
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::initialize(const VideoMode& p_desired, int p_video_driver, int p_audio_driver) {
|
2015-05-28 00:42:40 +00:00
|
|
|
main_loop = NULL;
|
2015-05-29 21:57:07 +00:00
|
|
|
current_video_mode = p_desired;
|
2015-05-28 00:42:40 +00:00
|
|
|
|
2015-06-11 19:57:41 +00:00
|
|
|
app = new HaikuApplication();
|
|
|
|
|
2015-06-16 18:52:24 +00:00
|
|
|
BRect frame;
|
|
|
|
frame.Set(50, 50, 50 + current_video_mode.width - 1, 50 + current_video_mode.height - 1);
|
|
|
|
|
|
|
|
window = new HaikuDirectWindow(frame);
|
2015-07-02 15:41:32 +00:00
|
|
|
window->SetVideoMode(¤t_video_mode);
|
2015-06-16 18:52:24 +00:00
|
|
|
|
2015-06-23 18:22:12 +00:00
|
|
|
if (current_video_mode.fullscreen) {
|
|
|
|
window->SetFullScreen(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!current_video_mode.resizable) {
|
|
|
|
uint32 flags = window->Flags();
|
|
|
|
flags |= B_NOT_RESIZABLE;
|
|
|
|
window->SetFlags(flags);
|
|
|
|
}
|
|
|
|
|
2015-05-28 00:42:40 +00:00
|
|
|
#if defined(OPENGL_ENABLED) || defined(LEGACYGL_ENABLED)
|
2015-06-16 18:52:24 +00:00
|
|
|
context_gl = memnew(ContextGL_Haiku(window));
|
2015-06-11 19:57:41 +00:00
|
|
|
context_gl->initialize();
|
2015-07-02 15:41:32 +00:00
|
|
|
context_gl->make_current();
|
2015-05-28 00:42:40 +00:00
|
|
|
|
|
|
|
rasterizer = memnew(RasterizerGLES2);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
visual_server = memnew(VisualServerRaster(rasterizer));
|
|
|
|
|
2015-06-11 19:57:41 +00:00
|
|
|
ERR_FAIL_COND(!visual_server);
|
|
|
|
|
2015-06-20 00:43:11 +00:00
|
|
|
// TODO: enable multithreaded VS
|
2017-01-14 11:26:56 +00:00
|
|
|
/*
|
|
|
|
if (get_render_thread_mode() != RENDER_THREAD_UNSAFE) {
|
|
|
|
visual_server = memnew(VisualServerWrapMT(visual_server, get_render_thread_mode() == RENDER_SEPARATE_THREAD));
|
|
|
|
}
|
|
|
|
*/
|
2015-05-29 21:57:07 +00:00
|
|
|
|
2015-07-02 15:41:32 +00:00
|
|
|
input = memnew(InputDefault);
|
|
|
|
window->SetInput(input);
|
|
|
|
|
|
|
|
window->Show();
|
2015-05-29 21:57:07 +00:00
|
|
|
visual_server->init();
|
2015-06-11 19:57:41 +00:00
|
|
|
|
|
|
|
physics_server = memnew(PhysicsServerSW);
|
|
|
|
physics_server->init();
|
|
|
|
physics_2d_server = memnew(Physics2DServerSW);
|
2015-06-20 00:43:11 +00:00
|
|
|
// TODO: enable multithreaded PS
|
|
|
|
//physics_2d_server = Physics2DServerWrapMT::init_server<Physics2DServerSW>();
|
2015-06-11 19:57:41 +00:00
|
|
|
physics_2d_server->init();
|
|
|
|
|
2017-01-15 19:06:14 +00:00
|
|
|
AudioDriverManager::get_driver(p_audio_driver)->set_singleton();
|
2015-06-11 19:57:41 +00:00
|
|
|
|
2017-01-15 19:06:14 +00:00
|
|
|
if (AudioDriverManager::get_driver(p_audio_driver)->init() != OK) {
|
2015-06-11 19:57:41 +00:00
|
|
|
ERR_PRINT("Initializing audio failed.");
|
|
|
|
}
|
2016-07-23 11:15:55 +00:00
|
|
|
|
|
|
|
power_manager = memnew( PowerHaiku );
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::finalize() {
|
2015-05-28 00:42:40 +00:00
|
|
|
if (main_loop) {
|
|
|
|
memdelete(main_loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
main_loop = NULL;
|
|
|
|
|
|
|
|
visual_server->finish();
|
|
|
|
memdelete(visual_server);
|
|
|
|
memdelete(rasterizer);
|
2015-06-11 19:57:41 +00:00
|
|
|
|
|
|
|
physics_server->finish();
|
|
|
|
memdelete(physics_server);
|
|
|
|
|
|
|
|
physics_2d_server->finish();
|
|
|
|
memdelete(physics_2d_server);
|
|
|
|
|
2015-06-16 18:52:24 +00:00
|
|
|
memdelete(input);
|
|
|
|
|
2015-06-11 19:57:41 +00:00
|
|
|
#if defined(OPENGL_ENABLED) || defined(LEGACYGL_ENABLED)
|
|
|
|
memdelete(context_gl);
|
|
|
|
#endif
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::set_main_loop(MainLoop* p_main_loop) {
|
2015-05-28 00:42:40 +00:00
|
|
|
main_loop = p_main_loop;
|
2015-06-16 18:52:24 +00:00
|
|
|
input->set_main_loop(p_main_loop);
|
2015-06-19 22:59:32 +00:00
|
|
|
window->SetMainLoop(p_main_loop);
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
MainLoop* OS_Haiku::get_main_loop() const {
|
2015-05-28 00:42:40 +00:00
|
|
|
return main_loop;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::delete_main_loop() {
|
|
|
|
if (main_loop) {
|
|
|
|
memdelete(main_loop);
|
|
|
|
}
|
|
|
|
|
|
|
|
main_loop = NULL;
|
2015-06-19 22:59:32 +00:00
|
|
|
window->SetMainLoop(NULL);
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
2015-06-11 19:57:41 +00:00
|
|
|
void OS_Haiku::release_rendering_thread() {
|
2015-06-16 18:52:24 +00:00
|
|
|
context_gl->release_current();
|
2015-06-11 19:57:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::make_rendering_thread() {
|
2015-06-16 18:52:24 +00:00
|
|
|
context_gl->make_current();
|
2015-06-11 19:57:41 +00:00
|
|
|
}
|
|
|
|
|
2015-05-25 03:02:55 +00:00
|
|
|
bool OS_Haiku::can_draw() const {
|
2015-06-11 19:57:41 +00:00
|
|
|
// TODO: implement
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::swap_buffers() {
|
|
|
|
context_gl->swap_buffers();
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Point2 OS_Haiku::get_mouse_pos() const {
|
2015-06-18 19:41:33 +00:00
|
|
|
return window->GetLastMousePosition();
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int OS_Haiku::get_mouse_button_state() const {
|
2015-06-18 19:41:33 +00:00
|
|
|
return window->GetLastButtonMask();
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::set_cursor_shape(CursorShape p_shape) {
|
2015-06-18 19:41:33 +00:00
|
|
|
//ERR_PRINT("set_cursor_shape() NOT IMPLEMENTED");
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
2015-06-20 23:08:31 +00:00
|
|
|
int OS_Haiku::get_screen_count() const {
|
|
|
|
// TODO: implement get_screen_count()
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int OS_Haiku::get_current_screen() const {
|
|
|
|
// TODO: implement get_current_screen()
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::set_current_screen(int p_screen) {
|
|
|
|
// TODO: implement set_current_screen()
|
|
|
|
}
|
|
|
|
|
|
|
|
Point2 OS_Haiku::get_screen_position(int p_screen) const {
|
|
|
|
// TODO: make this work with the p_screen parameter
|
|
|
|
BScreen* screen = new BScreen(window);
|
|
|
|
BRect frame = screen->Frame();
|
|
|
|
delete screen;
|
|
|
|
return Point2i(frame.left, frame.top);
|
|
|
|
}
|
|
|
|
|
|
|
|
Size2 OS_Haiku::get_screen_size(int p_screen) const {
|
|
|
|
// TODO: make this work with the p_screen parameter
|
|
|
|
BScreen* screen = new BScreen(window);
|
|
|
|
BRect frame = screen->Frame();
|
|
|
|
delete screen;
|
|
|
|
return Size2i(frame.IntegerWidth() + 1, frame.IntegerHeight() + 1);
|
|
|
|
}
|
|
|
|
|
2015-05-25 03:02:55 +00:00
|
|
|
void OS_Haiku::set_window_title(const String& p_title) {
|
2015-06-11 19:57:41 +00:00
|
|
|
window->SetTitle(p_title.utf8().get_data());
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Size2 OS_Haiku::get_window_size() const {
|
2015-06-20 12:35:54 +00:00
|
|
|
BSize size = window->Size();
|
2015-06-20 23:08:31 +00:00
|
|
|
return Size2i(size.IntegerWidth() + 1, size.IntegerHeight() + 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::set_window_size(const Size2 p_size) {
|
|
|
|
// TODO: why does it stop redrawing after this is called?
|
|
|
|
window->ResizeTo(p_size.x, p_size.y);
|
2015-06-20 12:35:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Point2 OS_Haiku::get_window_position() const {
|
|
|
|
BPoint point(0, 0);
|
|
|
|
window->ConvertToScreen(&point);
|
|
|
|
return Point2i(point.x, point.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::set_window_position(const Point2& p_position) {
|
|
|
|
window->MoveTo(p_position.x, p_position.y);
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
2015-06-20 23:08:31 +00:00
|
|
|
void OS_Haiku::set_window_fullscreen(bool p_enabled) {
|
|
|
|
window->SetFullScreen(p_enabled);
|
|
|
|
current_video_mode.fullscreen = p_enabled;
|
|
|
|
visual_server->init();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OS_Haiku::is_window_fullscreen() const {
|
|
|
|
return current_video_mode.fullscreen;
|
|
|
|
}
|
|
|
|
|
2015-06-23 18:22:12 +00:00
|
|
|
void OS_Haiku::set_window_resizable(bool p_enabled) {
|
|
|
|
uint32 flags = window->Flags();
|
|
|
|
|
|
|
|
if (p_enabled) {
|
|
|
|
flags &= ~(B_NOT_RESIZABLE);
|
|
|
|
} else {
|
|
|
|
flags |= B_NOT_RESIZABLE;
|
|
|
|
}
|
|
|
|
|
|
|
|
window->SetFlags(flags);
|
2015-07-02 15:41:32 +00:00
|
|
|
current_video_mode.resizable = p_enabled;
|
2015-06-23 18:22:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool OS_Haiku::is_window_resizable() const {
|
2015-07-02 15:41:32 +00:00
|
|
|
return current_video_mode.resizable;
|
2015-06-23 18:22:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::set_window_minimized(bool p_enabled) {
|
|
|
|
window->Minimize(p_enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OS_Haiku::is_window_minimized() const {
|
|
|
|
return window->IsMinimized();
|
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::set_window_maximized(bool p_enabled) {
|
|
|
|
window->Minimize(!p_enabled);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool OS_Haiku::is_window_maximized() const {
|
|
|
|
return !window->IsMinimized();
|
|
|
|
}
|
|
|
|
|
2015-05-25 03:02:55 +00:00
|
|
|
void OS_Haiku::set_video_mode(const VideoMode& p_video_mode, int p_screen) {
|
2015-05-29 21:57:07 +00:00
|
|
|
ERR_PRINT("set_video_mode() NOT IMPLEMENTED");
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
OS::VideoMode OS_Haiku::get_video_mode(int p_screen) const {
|
2015-05-29 21:57:07 +00:00
|
|
|
return current_video_mode;
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void OS_Haiku::get_fullscreen_mode_list(List<VideoMode> *p_list, int p_screen) const {
|
2015-05-29 21:57:07 +00:00
|
|
|
ERR_PRINT("get_fullscreen_mode_list() NOT IMPLEMENTED");
|
2015-05-25 03:02:55 +00:00
|
|
|
}
|
2015-05-25 03:34:16 +00:00
|
|
|
|
|
|
|
String OS_Haiku::get_executable_path() const {
|
|
|
|
return OS::get_executable_path();
|
|
|
|
}
|