mirror of https://github.com/BOINC/boinc.git
199 lines
4.6 KiB
C
199 lines
4.6 KiB
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <unistd.h>
|
|
#include "x_opengl.h"
|
|
|
|
#include "boinc_gl.h"
|
|
#include "boinc_api.h"
|
|
#include "graphics_api.h"
|
|
#include "app_ipc.h"
|
|
#include "util.h"
|
|
|
|
#define BOINC_WINDOW_CLASS_NAME "BOINC_app"
|
|
|
|
static bool visible = true;
|
|
static int current_graphics_mode = MODE_HIDE_GRAPHICS;
|
|
int win_loop_done;
|
|
int xpos = 100, ypos = 100; // globals
|
|
int clicked_button;
|
|
int win;
|
|
extern int userclose;
|
|
extern void graphics_thread_init();
|
|
extern GRAPHICS_INFO gi;
|
|
static void timer_handler();
|
|
void set_mode(int mode);
|
|
|
|
void keyboardU(unsigned char key, int x, int y) {
|
|
/* This callback is invoked when a user presses a key.
|
|
*/
|
|
|
|
if (current_graphics_mode == MODE_FULLSCREEN) {
|
|
set_mode(MODE_HIDE_GRAPHICS);
|
|
}
|
|
}
|
|
|
|
void mouse_click(int button, int state, int x, int y){
|
|
clicked_button = button;
|
|
if (current_graphics_mode == MODE_FULLSCREEN) {
|
|
set_mode(MODE_HIDE_GRAPHICS);
|
|
} else {
|
|
if(state)
|
|
boinc_app_mouse_button(x, y, button, false);
|
|
else
|
|
boinc_app_mouse_button(x, y, button, true);
|
|
}
|
|
}
|
|
|
|
void mouse_click_move(int x, int y){
|
|
if(current_graphics_mode == MODE_FULLSCREEN){
|
|
set_mode(MODE_HIDE_GRAPHICS);
|
|
} else if(clicked_button == 2){
|
|
boinc_app_mouse_move(x, y, false, false, true);
|
|
}else if (clicked_button == 1){
|
|
boinc_app_mouse_move(x, y, false, true, false);
|
|
}else if (clicked_button == 0){
|
|
boinc_app_mouse_move(x, y, true, false, false);
|
|
}else{
|
|
boinc_app_mouse_move(x, y, false, false, false);
|
|
}
|
|
}
|
|
|
|
void keyboardD(unsigned char key, int x, int y) {
|
|
/* This callback is invoked when a user presses a key.
|
|
*/
|
|
if (current_graphics_mode == MODE_FULLSCREEN) {
|
|
set_mode(MODE_HIDE_GRAPHICS);
|
|
|
|
} else {
|
|
|
|
}
|
|
}
|
|
|
|
void onIdle(){
|
|
static double oldTime = 0;
|
|
double currentTime = dtime();
|
|
|
|
if(userclose == 1){
|
|
userclose = 0;
|
|
set_mode(MODE_HIDE_GRAPHICS);
|
|
}
|
|
if(currentTime - oldTime > .001){
|
|
timer_handler();
|
|
oldTime = currentTime;
|
|
}
|
|
}
|
|
|
|
static void make_new_window(int mode){
|
|
|
|
if(mode == MODE_WINDOW || mode == MODE_FULLSCREEN){
|
|
glutInitDisplayMode(GLUT_DOUBLE | GLUT_RGB | GLUT_DEPTH);
|
|
glutInitWindowPosition(xpos, ypos);
|
|
glutInitWindowSize(gi.xsize, gi.ysize);
|
|
boinc_get_init_data(aid);
|
|
if (!strlen(aid.app_name))
|
|
strcpy(aid.app_name, "BOINC Application");
|
|
win = glutCreateWindow(aid.app_name);
|
|
glutReshapeFunc(app_graphics_resize);
|
|
glutKeyboardFunc(keyboardD);
|
|
glutKeyboardUpFunc(keyboardU);
|
|
glutMouseFunc(mouse_click);
|
|
glutMotionFunc(mouse_click_move);
|
|
glutDisplayFunc(timer_handler);
|
|
glutIdleFunc(onIdle);
|
|
|
|
app_graphics_init();
|
|
glEnable(GL_DEPTH_TEST);
|
|
|
|
if(mode == MODE_FULLSCREEN)
|
|
glutFullScreen();
|
|
}
|
|
}
|
|
|
|
void set_mode(int mode) {
|
|
|
|
if(current_graphics_mode == MODE_HIDE_GRAPHICS &&
|
|
mode == current_graphics_mode){
|
|
make_new_window(MODE_WINDOW);
|
|
glutDestroyWindow(win);
|
|
}
|
|
else if (current_graphics_mode != mode){
|
|
if(mode == MODE_HIDE_GRAPHICS){
|
|
if(mode != MODE_FULLSCREEN){
|
|
xpos = glutGet(GLUT_WINDOW_X);
|
|
ypos = glutGet(GLUT_WINDOW_Y);
|
|
|
|
gi.xsize = glutGet(GLUT_WINDOW_WIDTH);
|
|
gi.ysize = glutGet(GLUT_WINDOW_HEIGHT);
|
|
}
|
|
glutDestroyWindow(win);
|
|
}
|
|
current_graphics_mode = mode;
|
|
make_new_window(mode);
|
|
}
|
|
|
|
// tell the core client that we're entering new mode
|
|
//
|
|
if (app_client_shm) {
|
|
app_client_shm->shm->graphics_reply.send_msg(
|
|
xml_graphics_modes[current_graphics_mode]
|
|
);
|
|
}
|
|
}
|
|
|
|
void* xwin_graphics_event_loop(void*){
|
|
|
|
if (boinc_is_standalone()) {
|
|
set_mode(MODE_WINDOW);
|
|
} else {
|
|
set_mode(MODE_HIDE_GRAPHICS);
|
|
}
|
|
|
|
glutMainLoop();
|
|
return 0;
|
|
}
|
|
|
|
static void timer_handler() {
|
|
char buf[MSG_CHANNEL_SIZE];
|
|
|
|
int width, height, new_mode;
|
|
if (app_client_shm) {
|
|
if(app_client_shm->shm->graphics_request.get_msg(buf)){
|
|
new_mode = app_client_shm->decode_graphics_msg(buf);
|
|
switch(new_mode) {
|
|
case MODE_REREAD_PREFS:
|
|
//only reread graphics prefs if we have a window open
|
|
//
|
|
switch(current_graphics_mode){
|
|
case MODE_WINDOW:
|
|
case MODE_FULLSCREEN:
|
|
app_graphics_reread_prefs();
|
|
break;
|
|
}
|
|
break;
|
|
case MODE_HIDE_GRAPHICS:
|
|
case MODE_WINDOW:
|
|
case MODE_FULLSCREEN:
|
|
case MODE_BLANKSCREEN:
|
|
set_mode(new_mode);
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
if (!visible) return;
|
|
if (current_graphics_mode == MODE_HIDE_GRAPHICS) return;
|
|
|
|
// TODO: remove width, height from API
|
|
//
|
|
width = glutGet(GLUT_WINDOW_WIDTH);
|
|
height = glutGet(GLUT_WINDOW_HEIGHT);
|
|
|
|
if (throttled_app_render(width, height, dtime())) {
|
|
glutSwapBuffers();
|
|
}
|
|
}
|
|
|
|
#if 0
|
|
float txt_widths[256];
|
|
|
|
#endif
|