2015-06-21 15:33:46 +00:00
|
|
|
/*
|
|
|
|
Simple DirectMedia Layer
|
2021-01-02 18:25:38 +00:00
|
|
|
Copyright (C) 1997-2021 Sam Lantinga <slouken@libsdl.org>
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
This software is provided 'as-is', without any express or implied
|
|
|
|
warranty. In no event will the authors be held liable for any damages
|
|
|
|
arising from the use of this software.
|
|
|
|
|
|
|
|
Permission is granted to anyone to use this software for any purpose,
|
|
|
|
including commercial applications, and to alter it and redistribute it
|
|
|
|
freely, subject to the following restrictions:
|
|
|
|
|
|
|
|
1. The origin of this software must not be misrepresented; you must not
|
|
|
|
claim that you wrote the original software. If you use this software
|
|
|
|
in a product, an acknowledgment in the product documentation would be
|
|
|
|
appreciated but is not required.
|
|
|
|
2. Altered source versions must be plainly marked as such, and must not be
|
|
|
|
misrepresented as being the original software.
|
|
|
|
3. This notice may not be removed or altered from any source distribution.
|
|
|
|
*/
|
|
|
|
#include "../../SDL_internal.h"
|
2019-11-12 03:22:40 +00:00
|
|
|
#include "../../main/haiku/SDL_BApp.h"
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
#if SDL_VIDEO_DRIVER_HAIKU
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "SDL_bkeyboard.h"
|
|
|
|
#include "SDL_bwindow.h"
|
|
|
|
#include "SDL_bclipboard.h"
|
|
|
|
#include "SDL_bvideo.h"
|
|
|
|
#include "SDL_bopengl.h"
|
|
|
|
#include "SDL_bmodes.h"
|
|
|
|
#include "SDL_bframebuffer.h"
|
|
|
|
#include "SDL_bevents.h"
|
|
|
|
|
2020-10-05 15:30:33 +00:00
|
|
|
#include <Url.h>
|
|
|
|
|
2015-06-21 15:33:46 +00:00
|
|
|
/* FIXME: Undefined functions */
|
2018-08-07 22:07:11 +00:00
|
|
|
// #define HAIKU_PumpEvents NULL
|
|
|
|
#define HAIKU_StartTextInput NULL
|
|
|
|
#define HAIKU_StopTextInput NULL
|
|
|
|
#define HAIKU_SetTextInputRect NULL
|
2015-06-21 15:33:46 +00:00
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
// #define HAIKU_DeleteDevice NULL
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
/* End undefined functions */
|
|
|
|
|
|
|
|
static SDL_VideoDevice *
|
2018-08-07 22:07:11 +00:00
|
|
|
HAIKU_CreateDevice(int devindex)
|
2015-06-21 15:33:46 +00:00
|
|
|
{
|
|
|
|
SDL_VideoDevice *device;
|
|
|
|
/*SDL_VideoData *data;*/
|
|
|
|
|
|
|
|
/* Initialize all variables that we clean on shutdown */
|
|
|
|
device = (SDL_VideoDevice *) SDL_calloc(1, sizeof(SDL_VideoDevice));
|
|
|
|
|
|
|
|
device->driverdata = NULL; /* FIXME: Is this the cause of some of the
|
2018-09-24 18:49:25 +00:00
|
|
|
SDL_Quit() errors? */
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
/* TODO: Figure out if any initialization needs to go here */
|
|
|
|
|
|
|
|
/* Set the function pointers */
|
2018-08-07 22:07:11 +00:00
|
|
|
device->VideoInit = HAIKU_VideoInit;
|
|
|
|
device->VideoQuit = HAIKU_VideoQuit;
|
|
|
|
device->GetDisplayBounds = HAIKU_GetDisplayBounds;
|
|
|
|
device->GetDisplayModes = HAIKU_GetDisplayModes;
|
|
|
|
device->SetDisplayMode = HAIKU_SetDisplayMode;
|
|
|
|
device->PumpEvents = HAIKU_PumpEvents;
|
|
|
|
|
|
|
|
device->CreateSDLWindow = HAIKU_CreateWindow;
|
|
|
|
device->CreateSDLWindowFrom = HAIKU_CreateWindowFrom;
|
|
|
|
device->SetWindowTitle = HAIKU_SetWindowTitle;
|
|
|
|
device->SetWindowIcon = HAIKU_SetWindowIcon;
|
|
|
|
device->SetWindowPosition = HAIKU_SetWindowPosition;
|
|
|
|
device->SetWindowSize = HAIKU_SetWindowSize;
|
|
|
|
device->ShowWindow = HAIKU_ShowWindow;
|
|
|
|
device->HideWindow = HAIKU_HideWindow;
|
|
|
|
device->RaiseWindow = HAIKU_RaiseWindow;
|
|
|
|
device->MaximizeWindow = HAIKU_MaximizeWindow;
|
|
|
|
device->MinimizeWindow = HAIKU_MinimizeWindow;
|
|
|
|
device->RestoreWindow = HAIKU_RestoreWindow;
|
|
|
|
device->SetWindowBordered = HAIKU_SetWindowBordered;
|
|
|
|
device->SetWindowResizable = HAIKU_SetWindowResizable;
|
|
|
|
device->SetWindowFullscreen = HAIKU_SetWindowFullscreen;
|
|
|
|
device->SetWindowGammaRamp = HAIKU_SetWindowGammaRamp;
|
|
|
|
device->GetWindowGammaRamp = HAIKU_GetWindowGammaRamp;
|
|
|
|
device->SetWindowGrab = HAIKU_SetWindowGrab;
|
|
|
|
device->DestroyWindow = HAIKU_DestroyWindow;
|
|
|
|
device->GetWindowWMInfo = HAIKU_GetWindowWMInfo;
|
|
|
|
device->CreateWindowFramebuffer = HAIKU_CreateWindowFramebuffer;
|
|
|
|
device->UpdateWindowFramebuffer = HAIKU_UpdateWindowFramebuffer;
|
|
|
|
device->DestroyWindowFramebuffer = HAIKU_DestroyWindowFramebuffer;
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
device->shape_driver.CreateShaper = NULL;
|
|
|
|
device->shape_driver.SetWindowShape = NULL;
|
|
|
|
device->shape_driver.ResizeWindowShape = NULL;
|
|
|
|
|
2017-07-07 21:00:22 +00:00
|
|
|
#if SDL_VIDEO_OPENGL
|
2018-08-07 22:07:11 +00:00
|
|
|
device->GL_LoadLibrary = HAIKU_GL_LoadLibrary;
|
|
|
|
device->GL_GetProcAddress = HAIKU_GL_GetProcAddress;
|
|
|
|
device->GL_UnloadLibrary = HAIKU_GL_UnloadLibrary;
|
|
|
|
device->GL_CreateContext = HAIKU_GL_CreateContext;
|
|
|
|
device->GL_MakeCurrent = HAIKU_GL_MakeCurrent;
|
|
|
|
device->GL_SetSwapInterval = HAIKU_GL_SetSwapInterval;
|
|
|
|
device->GL_GetSwapInterval = HAIKU_GL_GetSwapInterval;
|
|
|
|
device->GL_SwapWindow = HAIKU_GL_SwapWindow;
|
|
|
|
device->GL_DeleteContext = HAIKU_GL_DeleteContext;
|
2017-07-07 21:00:22 +00:00
|
|
|
#endif
|
2015-06-21 15:33:46 +00:00
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
device->StartTextInput = HAIKU_StartTextInput;
|
|
|
|
device->StopTextInput = HAIKU_StopTextInput;
|
|
|
|
device->SetTextInputRect = HAIKU_SetTextInputRect;
|
2015-06-21 15:33:46 +00:00
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
device->SetClipboardText = HAIKU_SetClipboardText;
|
|
|
|
device->GetClipboardText = HAIKU_GetClipboardText;
|
|
|
|
device->HasClipboardText = HAIKU_HasClipboardText;
|
2015-06-21 15:33:46 +00:00
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
device->free = HAIKU_DeleteDevice;
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
return device;
|
|
|
|
}
|
|
|
|
|
|
|
|
VideoBootStrap HAIKU_bootstrap = {
|
2018-09-24 18:49:25 +00:00
|
|
|
"haiku", "Haiku graphics",
|
2020-07-12 23:11:15 +00:00
|
|
|
HAIKU_CreateDevice
|
2015-06-21 15:33:46 +00:00
|
|
|
};
|
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
void HAIKU_DeleteDevice(SDL_VideoDevice * device)
|
2015-06-21 15:33:46 +00:00
|
|
|
{
|
2018-09-24 18:49:25 +00:00
|
|
|
SDL_free(device->driverdata);
|
|
|
|
SDL_free(device);
|
2015-06-21 15:33:46 +00:00
|
|
|
}
|
|
|
|
|
2019-11-12 03:22:40 +00:00
|
|
|
static int HAIKU_ShowCursor(SDL_Cursor *cur)
|
|
|
|
{
|
|
|
|
SDL_Mouse *mouse = SDL_GetMouse();
|
|
|
|
int show;
|
|
|
|
if (!mouse)
|
|
|
|
return 0;
|
|
|
|
show = (cur || !mouse->focus);
|
|
|
|
if (show) {
|
|
|
|
if (be_app->IsCursorHidden())
|
|
|
|
be_app->ShowCursor();
|
|
|
|
} else {
|
|
|
|
if (!be_app->IsCursorHidden())
|
|
|
|
be_app->HideCursor();
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void HAIKU_MouseInit(_THIS)
|
|
|
|
{
|
|
|
|
SDL_Mouse *mouse = SDL_GetMouse();
|
|
|
|
if (!mouse)
|
|
|
|
return;
|
|
|
|
mouse->ShowCursor = HAIKU_ShowCursor;
|
|
|
|
mouse->cur_cursor = (SDL_Cursor*)0x1;
|
|
|
|
mouse->def_cursor = (SDL_Cursor*)0x2;
|
|
|
|
}
|
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
int HAIKU_VideoInit(_THIS)
|
2015-06-21 15:33:46 +00:00
|
|
|
{
|
2018-09-24 18:49:25 +00:00
|
|
|
/* Initialize the Be Application for appserver interaction */
|
|
|
|
if (SDL_InitBeApp() < 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Initialize video modes */
|
|
|
|
HAIKU_InitModes(_this);
|
|
|
|
|
|
|
|
/* Init the keymap */
|
|
|
|
HAIKU_InitOSKeymap();
|
|
|
|
|
2019-11-12 03:22:40 +00:00
|
|
|
HAIKU_MouseInit(_this);
|
|
|
|
|
2015-06-21 15:33:46 +00:00
|
|
|
#if SDL_VIDEO_OPENGL
|
|
|
|
/* testgl application doesn't load library, just tries to load symbols */
|
|
|
|
/* is it correct? if so we have to load library here */
|
2018-08-07 22:07:11 +00:00
|
|
|
HAIKU_GL_LoadLibrary(_this, NULL);
|
2015-06-21 15:33:46 +00:00
|
|
|
#endif
|
|
|
|
|
2018-09-24 18:49:25 +00:00
|
|
|
/* We're done! */
|
2015-06-21 15:33:46 +00:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
void HAIKU_VideoQuit(_THIS)
|
2015-06-21 15:33:46 +00:00
|
|
|
{
|
|
|
|
|
2018-08-07 22:07:11 +00:00
|
|
|
HAIKU_QuitModes(_this);
|
2015-06-21 15:33:46 +00:00
|
|
|
|
|
|
|
SDL_QuitBeApp();
|
|
|
|
}
|
|
|
|
|
2020-10-05 15:30:33 +00:00
|
|
|
// just sticking this function in here so it's in a C++ source file.
|
|
|
|
extern "C" { int HAIKU_OpenURL(const char *url); }
|
|
|
|
int HAIKU_OpenURL(const char *url)
|
|
|
|
{
|
|
|
|
BUrl burl(url);
|
|
|
|
const status_t rc = burl.OpenWithPreferredApplication(false);
|
|
|
|
return (rc == B_NO_ERROR) ? 0 : SDL_SetError("URL open failed (err=%d)", (int) rc);
|
|
|
|
}
|
|
|
|
|
2015-06-21 15:33:46 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* SDL_VIDEO_DRIVER_HAIKU */
|
2016-12-09 09:47:43 +00:00
|
|
|
|
|
|
|
/* vi: set ts=4 sw=4 expandtab: */
|