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
|
/*
* %CopyrightBegin%
*
* Copyright Ericsson AB 2008-2014. All Rights Reserved.
*
* The contents of this file are subject to the Erlang Public License,
* Version 1.1, (the "License"); you may not use this file except in
* compliance with the License. You should have received a copy of the
* Erlang Public License along with this software. If not, it can be
* retrieved online at http://www.erlang.org/.
*
* Software distributed under the License is distributed on an "AS IS"
* basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
* the License for the specific language governing rights and limitations
* under the License.
*
* %CopyrightEnd%
*/
#include <stdio.h>
#include <string.h>
#ifndef _WIN32
#include <dlfcn.h>
#else
#include <windows.h>
#endif
#include "wxe_impl.h"
#include "wxe_return.h"
#include "wxe_gl.h"
/* ****************************************************************************
* Opengl context management *
* ****************************************************************************/
int erl_gl_initiated = FALSE;
ErlDrvTermData gl_active = 0;
wxeGLC glc;
typedef void (*WXE_GL_DISPATCH) (int, char *, ErlDrvPort, ErlDrvTermData, char **, int *);
WXE_GL_DISPATCH wxe_gl_dispatch;
#ifdef _WIN32
#define RTLD_LAZY 0
typedef HMODULE DL_LIB_P;
void * dlsym(HMODULE Lib, const char *func) {
void * funcp;
if((funcp = (void *) GetProcAddress(Lib, func)))
return funcp;
else
return (void *) wglGetProcAddress(func);
}
HMODULE dlopen(const char *path, int unused) {
WCHAR * DLL;
int len = MultiByteToWideChar(CP_ACP, 0, path, -1, NULL, 0);
DLL = (WCHAR *) malloc(len * sizeof(WCHAR));
MultiByteToWideChar(CP_ACP, 0, path, -1, DLL, len);
HMODULE lib = LoadLibrary(DLL);
free(DLL);
return lib;
}
void dlclose(HMODULE Lib) {
FreeLibrary(Lib);
}
#else
typedef void * DL_LIB_P;
#endif
void wxe_initOpenGL(wxeReturn rt, char *bp) {
DL_LIB_P LIBhandle;
int (*init_opengl)(void *);
#ifdef _WIN32
void * erlCallbacks = &WinDynDriverCallbacks;
#else
void * erlCallbacks = NULL;
#endif
if(erl_gl_initiated == FALSE) {
if((LIBhandle = dlopen(bp, RTLD_LAZY))) {
*(void **) (&init_opengl) = dlsym(LIBhandle, "egl_init_opengl");
wxe_gl_dispatch = (WXE_GL_DISPATCH) dlsym(LIBhandle, "egl_dispatch");
if(init_opengl && wxe_gl_dispatch) {
(*init_opengl)(erlCallbacks);
rt.addAtom((char *) "ok");
rt.add(wxString::FromAscii("initiated"));
rt.addTupleCount(2);
erl_gl_initiated = TRUE;
} else {
wxString msg;
msg.Printf(wxT("In library: "));
msg += wxString::FromAscii(bp);
msg += wxT(" functions: ");
if(!init_opengl)
msg += wxT("egl_init_opengl ");
if(!wxe_gl_dispatch)
msg += wxT("egl_dispatch ");
rt.addAtom((char *) "error");
rt.add(msg);
rt.addTupleCount(2);
}
} else {
wxString msg;
msg.Printf(wxT("Could not load dll: "));
msg += wxString::FromAscii(bp);
rt.addAtom((char *) "error");
rt.add(msg);
rt.addTupleCount(2);
}
} else {
rt.addAtom((char *) "ok");
rt.add(wxString::FromAscii("already initilized"));
rt.addTupleCount(2);
}
rt.send();
}
void setActiveGL(ErlDrvTermData caller, wxGLCanvas *canvas)
{
gl_active = caller;
glc[caller] = canvas;
}
void deleteActiveGL(wxGLCanvas *canvas)
{
gl_active = 0;
wxeGLC::iterator it;
for(it = glc.begin(); it != glc.end(); ++it) {
if(it->second == canvas) {
it->second = (wxGLCanvas *) 0;
}
}
}
void gl_dispatch(int op, char *bp,ErlDrvTermData caller,WXEBinRef *bins[]){
if(caller != gl_active) {
wxGLCanvas * current = glc[caller];
if(current) { gl_active = caller; current->SetCurrent();}
else {
ErlDrvTermData rt[] = // Error msg
{ERL_DRV_ATOM, driver_mk_atom((char *) "_egl_error_"),
ERL_DRV_INT, (ErlDrvTermData) op,
ERL_DRV_ATOM, driver_mk_atom((char *) "no_gl_context"),
ERL_DRV_TUPLE,3};
erl_drv_send_term(WXE_DRV_PORT,caller,rt,8);
return ;
}
};
char * bs[3];
int bs_sz[3];
for(int i=0; i<3; i++) {
if(bins[i]) {
bs[i] = bins[i]->base;
bs_sz[i] = bins[i]->size;
}
else
bs[i] = NULL;
}
wxe_gl_dispatch(op, bp, WXE_DRV_PORT_HANDLE, caller, bs, bs_sz);
}
|