File: x11_target.cpp

package info (click to toggle)
clanlib 0.5.4-1-6
  • links: PTS
  • area: main
  • in suites: woody
  • size: 10,320 kB
  • ctags: 10,893
  • sloc: cpp: 76,056; xml: 3,281; sh: 2,961; perl: 1,204; asm: 837; makefile: 775
file content (83 lines) | stat: -rw-r--r-- 1,986 bytes parent folder | download
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
/*
	$Id: x11_target.cpp,v 1.9 2001/12/14 02:39:58 plasmoid Exp $

	------------------------------------------------------------------------
	ClanLib, the platform independent game SDK.

	This library is distributed under the GNU LIBRARY GENERAL PUBLIC LICENSE
	version 2. See COPYING for details.

	For a total list of contributers see CREDITS.

	------------------------------------------------------------------------
*/

#include "x11_target.h"
#include "API/Core/System/error.h"
#include "API/Display/Display/display.h"
#include "API/Display/Input/input.h"
#include "Display/Display/X11/display_xwindow.h"
#include "Display/Input/X11/keyboard_x11.h"
#include "Display/Input/X11/mouse_x11.h"
#include "Display/Input/X11/joystick_linux.h"

#include <iostream.h>

Display *CL_X11Target::dpy = NULL;
Window CL_X11Target::root;
int CL_X11Target::default_scr;
int CL_X11Target::display_counter=0;

const char *CL_X11Target::get_long_name()
{
	return "X Window";
}

const char *CL_X11Target::get_short_name()
{
	return "x11";
}

void CL_X11Target::init()
{
	dpy = XOpenDisplay(NULL);
	if (dpy == NULL) throw CL_Error("Failed to open display. No XWindow display available.");

	default_scr = DefaultScreen(dpy);
	root = RootWindow(dpy, default_scr);

	CL_XWindow_CompatibleCard *card = create_displaycard(dpy, root, display_counter);

	CL_Display::cards.push_back(card);

	CL_Input::keyboards.push_back(new CL_XWindowKeyboard(card));
	CL_Input::pointers.push_back(new CL_Mouse_XWin(card));

#ifdef USE_JOY
#if LINUX_VERSION_CODE >= KERNEL_VERSION(2,1,0)
//#ifdef USE_JOY
	for (int i=0; i<8; i++)
	{
		CL_LinuxJoystick *joy = new CL_LinuxJoystick();
		if (joy->init(i))
			CL_Input::joysticks.push_back(joy);
		else
			delete joy;
	}

#endif
#endif
}

void CL_X11Target::deinit()
{
//	XCloseDisplay(dpy);
}

CL_XWindow_CompatibleCard *CL_X11Target::create_displaycard(Display *dpy, Window root, int display_counter)
{
	return new CL_XWindow_DisplayCard(
		dpy,
		root,
		display_counter);
}