display-x11.c
上传用户:hjq518
上传日期:2021-12-09
资源大小:5084k
文件大小:8k
源码类别:

Audio

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  * x264: h264 encoder
  3.  *****************************************************************************
  4.  * Copyright (C) 2005 x264 project
  5.  *
  6.  * Author: Tuukka Toivonen <tuukkat@ee.oulu.fi>
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License as published by
  10.  * the Free Software Foundation; either version 2 of the License, or
  11.  * (at your option) any later version.
  12.  *
  13.  * This program is distributed in the hope that it will be useful,
  14.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16.  * GNU General Public License for more details.
  17.  *
  18.  * You should have received a copy of the GNU General Public License
  19.  * along with this program; if not, write to the Free Software
  20.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  21.  *****************************************************************************/
  22. #include <X11/Xlib.h>
  23. #include <X11/Xutil.h>
  24. #include <stdio.h>
  25. #include <string.h>
  26. #include "display.h"
  27. static long event_mask = ConfigureNotify|ExposureMask|KeyPressMask|ButtonPressMask|StructureNotifyMask|ResizeRedirectMask;
  28. static Display *disp_display = NULL;
  29. static struct disp_window {
  30. int init;
  31. Window window;
  32. } disp_window[10];
  33. static inline void disp_chkerror(int cond, char *e) {
  34. if (!cond) return;
  35. fprintf(stderr, "error: %sn", e ? e : "?");
  36. abort();
  37. }
  38. static void disp_init_display(void) {
  39. Visual *visual;
  40. int dpy_class;
  41. int screen;
  42. int dpy_depth;
  43. if (disp_display != NULL) return;
  44. memset(&disp_window, 0, sizeof(disp_window));
  45. disp_display = XOpenDisplay("");
  46. disp_chkerror(!disp_display, "no display");
  47. screen = DefaultScreen(disp_display);
  48. visual = DefaultVisual(disp_display, screen);
  49. dpy_class = visual->class;
  50. dpy_depth = DefaultDepth(disp_display, screen);
  51. disp_chkerror(!((dpy_class == TrueColor && dpy_depth == 32)
  52. || (dpy_class == TrueColor && dpy_depth == 24)
  53. || (dpy_class == TrueColor && dpy_depth == 16)
  54. || (dpy_class == PseudoColor && dpy_depth == 8)),
  55. "requires 8 bit PseudoColor or 16/24/32 bit TrueColor display");
  56. }
  57. static void disp_init_window(int num, int width, int height, const unsigned char *tit) {
  58. XSizeHints *shint;
  59. XSetWindowAttributes xswa;
  60. XEvent xev;
  61. int screen = DefaultScreen(disp_display);
  62. Visual *visual = DefaultVisual (disp_display, screen);
  63. unsigned int fg, bg;
  64. unsigned int mask;
  65. char title[200];
  66. Window window;
  67. int dpy_depth;
  68. if (tit) {
  69. snprintf(title, 200, "%s: %i/disp", tit, num);
  70. } else {
  71. snprintf(title, 200, "%i/disp", num);
  72. }
  73. shint = XAllocSizeHints();
  74. disp_chkerror(!shint, "memerror");
  75. shint->min_width = shint->max_width = shint->width = width;
  76. shint->min_height = shint->max_height = shint->height = height;
  77. shint->flags = PSize | PMinSize | PMaxSize;
  78. disp_chkerror(num<0 || num>=10, "bad win num");
  79. if (!disp_window[num].init) {
  80. disp_window[num].init = 1;
  81. bg = WhitePixel(disp_display, screen);
  82. fg = BlackPixel(disp_display, screen);
  83. dpy_depth = DefaultDepth(disp_display, screen);
  84. if (dpy_depth==32 || dpy_depth==24 || dpy_depth==16) {
  85. mask |= CWColormap;
  86. xswa.colormap = XCreateColormap(disp_display, DefaultRootWindow(disp_display), visual, AllocNone);
  87. }
  88. xswa.background_pixel = bg;
  89. xswa.border_pixel = fg;
  90. xswa.backing_store = Always;
  91. xswa.backing_planes = -1;
  92. xswa.bit_gravity = NorthWestGravity;
  93. mask = CWBackPixel | CWBorderPixel | CWBackingStore | CWBackingPlanes | CWBitGravity;
  94. window = XCreateWindow(disp_display, DefaultRootWindow(disp_display),
  95. shint->x, shint->y, shint->width, shint->height,
  96. 1, dpy_depth, InputOutput, visual, mask, &xswa);
  97. disp_window[num].window = window;
  98. XSelectInput(disp_display, window, event_mask);
  99. XSetStandardProperties(disp_display, window, title, title, None, NULL, 0, shint); /* Tell other applications about this window */
  100. XMapWindow(disp_display, window); /* Map window. */
  101. do { /* Wait for map. */
  102. XNextEvent(disp_display, &xev);
  103. } while (xev.type!=MapNotify || xev.xmap.event!=window);
  104. //XSelectInput(disp_display, window, KeyPressMask); /*  XSelectInput(display, window, NoEventMask);*/
  105. }
  106. window = disp_window[num].window;
  107. XSetStandardProperties(disp_display, window, title, title, None, NULL, 0, shint); /* Tell other applications about this window */
  108. XResizeWindow(disp_display, window, width, height);
  109. XSync(disp_display, 1);
  110. XFree(shint);
  111. }
  112. void disp_sync(void) {
  113. XSync(disp_display, 1);
  114. }
  115. void disp_setcolor(unsigned char *name) {
  116. int screen;
  117. GC gc;
  118. XColor c_exact, c_nearest;
  119. Colormap cm;
  120. Status st;
  121. screen = DefaultScreen(disp_display);
  122. gc = DefaultGC(disp_display, screen); /* allocate colors */
  123. cm = DefaultColormap(disp_display, screen);
  124. st = XAllocNamedColor(disp_display, cm, name, &c_nearest, &c_exact);
  125. disp_chkerror(st!=1, "XAllocNamedColor error");
  126. XSetForeground(disp_display, gc, c_nearest.pixel);
  127. }
  128. void disp_gray(int num, char *data, int width, int height, int stride, const unsigned char *tit) {
  129. Visual *visual;
  130. XImage *ximage;
  131. unsigned char *image;
  132. int y,x,pixelsize;
  133. char dummy;
  134. int t = 1;
  135. int dpy_depth;
  136. int screen;
  137. GC gc;
  138. //XEvent xev;
  139. disp_init_display();
  140. disp_init_window(num, width, height, tit);
  141. screen = DefaultScreen(disp_display);
  142. visual = DefaultVisual(disp_display, screen);
  143. dpy_depth = DefaultDepth(disp_display, screen);
  144. ximage = XCreateImage(disp_display, visual, dpy_depth, ZPixmap, 0, &dummy, width, height, 8, 0);
  145. disp_chkerror(!ximage, "no ximage");
  146. if (*(char *)&t == 1) {
  147. ximage->byte_order = LSBFirst;
  148. ximage->bitmap_bit_order = LSBFirst;
  149. } else {
  150. ximage->byte_order = MSBFirst;
  151. ximage->bitmap_bit_order = MSBFirst;
  152. }
  153. pixelsize = dpy_depth>8 ? sizeof(int) : sizeof(unsigned char);
  154. image = malloc(width * height * pixelsize);
  155. disp_chkerror(!image, "malloc failed");
  156. for (y=0; y<height; y++) for (x=0; x<width; x++) {
  157. memset(&image[(width*y + x)*pixelsize], data[y*stride+x], pixelsize);
  158. }
  159. ximage->data = image;
  160. gc = DefaultGC(disp_display, screen); /* allocate colors */
  161. // XUnmapWindow(disp_display, disp_window[num].window); /* Map window. */
  162. // XMapWindow(disp_display, disp_window[num].window); /* Map window. */
  163. XPutImage(disp_display, disp_window[num].window, gc, ximage, 0, 0, 0, 0, width, height);
  164. // do { /* Wait for map. */
  165. // XNextEvent(disp_display, &xev);
  166. // } while (xev.type!=MapNotify || xev.xmap.event!=disp_window[num].window);
  167. XPutImage(disp_display, disp_window[num].window, gc, ximage, 0, 0, 0, 0, width, height);
  168. XDestroyImage(ximage);
  169. XSync(disp_display, 1);
  170. }
  171. void disp_gray_zoom(int num, char *data, int width, int height, int stride, const unsigned char *tit, int zoom) {
  172. unsigned char *dataz;
  173. int y,x,y0,x0;
  174. dataz = malloc(width*zoom * height*zoom);
  175. disp_chkerror(!dataz, "malloc");
  176. for (y=0; y<height; y++) for (x=0; x<width; x++) {
  177. for (y0=0; y0<zoom; y0++) for (x0=0; x0<zoom; x0++) {
  178. dataz[(y*zoom + y0)*width*zoom + x*zoom + x0] = data[y*stride+x];
  179. }
  180. }
  181. disp_gray(num, dataz, width*zoom, height*zoom, width*zoom, tit);
  182. free(dataz);
  183. }
  184. void disp_point(int num, int x1, int y1) {
  185. int screen;
  186. GC gc;
  187. screen = DefaultScreen(disp_display);
  188. gc = DefaultGC(disp_display, screen); /* allocate colors */
  189. XDrawPoint(disp_display, disp_window[num].window, gc, x1, y1);
  190. // XSync(disp_display, 1);
  191. }
  192. void disp_line(int num, int x1, int y1, int x2, int y2) {
  193. int screen;
  194. GC gc;
  195. screen = DefaultScreen(disp_display);
  196. gc = DefaultGC(disp_display, screen); /* allocate colors */
  197. XDrawLine(disp_display, disp_window[num].window, gc, x1, y1, x2, y2);
  198. // XSync(disp_display, 1);
  199. }
  200. void disp_rect(int num, int x1, int y1, int x2, int y2) {
  201. int screen;
  202. GC gc;
  203. screen = DefaultScreen(disp_display);
  204. gc = DefaultGC(disp_display, screen); /* allocate colors */
  205. XDrawRectangle(disp_display, disp_window[num].window, gc, x1, y1, x2-x1, y2-y1);
  206. // XSync(disp_display, 1);
  207. }