File: xmap.c

package info (click to toggle)
ygl 4.2e-3
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 684 kB
  • ctags: 2,741
  • sloc: ansic: 8,724; makefile: 1,817; fortran: 55; sh: 55; sed: 20
file content (149 lines) | stat: -rw-r--r-- 3,131 bytes parent folder | download | duplicates (4)
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
/*
 * xmap.c: display the active colormap in a [Y]gl window.
 * 
 * (C) Fred Hucht 1994, EMail: fred@hal6000.Uni-Duisburg.DE
 * 
 * Feel free to copy and redistribute in terms of the
 * GNU public license.
 */

#include <stdio.h>
/*#include <gl/gl.h>
  #include <gl/device.h>*/
#include <X11/Ygl.h>

#define SZ 160
#define SI (SZ/m)

#ifdef XCOLOR
#define COLOR		Xcolor
#define GETMCOLOR 	getmXcolor
#else
#define COLOR		color
#define GETMCOLOR 	getmcolor
#endif


void set_header(char *text) {
  color(BLACK); 
  rectfi( 0, SZ, SZ, SZ+20);
  color(WHITE); 
  cmov2i(10, SZ + 5); 
  charstr(text);
}

int main(int argc, char *argv[]) {
  Device dev;
  short val;
  int i, j, m, p, left = 0;
  Int16 x,y;
  Int32 win, index;
  Int32 xo, yo, xs, ys;
  char version[20], header[80], buf[80], *name = argv[0], *title, 
       *titles[]={"X11 ColorMap (<ESC> quit)",
		  "YGL ColorMap (<ESC> quit)",
		   "GL ColorMap (<ESC> quit)"};

  if(-1 == gversion(version)) { 
    fprintf(stderr, "%s: won't run on this display.\n", version); 
    exit(1);
  }
  
  minsize   (SZ, SZ + 20);
  /* stepunit  (SZ, SZ + 20); */
  keepaspect(SZ, SZ + 20);
  
  if(name[0] == 'g') title = titles[2];        /* glmap  */
  else if(name[1] == 'g') title = titles[1];   /* yglmap */
  else title = titles[0];                      /* xmap   */
  
  win = winopen(title);winconstraints();

  qdevice(WINQUIT);
  qdevice(KEYBD);
  qdevice(REDRAW);
  qdevice(INPUTCHANGE);
  qenter(REDRAW, win);
  qdevice(MOUSEX);
  qdevice(MOUSEY);
  qdevice(LEFTMOUSE);
  
  p = getplanes();
  m = 1 << (p/2);
  
  sprintf(header, "%s, %d bpp", version, p);
  
  while (1) {
    dev = qread(&val);
#ifdef DEBUG
    printf("%d %d\n", dev, val);
#endif
    switch(dev) {
    case INPUTCHANGE:
      if(val==0) set_header(header);
      break;
    case MOUSEX: x = val; goto mouse;
    case MOUSEY: y = val; goto mouse;
    mouse: {
      Int32 xw, yw, q;
      Int16 r,g,b;
      
      q = qtest();
      if(q == MOUSEX || q == MOUSEY) break;
      
      xw = x - xo;
      yw = y - yo;
      index = m * (yw*m/xs) + (xw*m/xs);
      if(index >= 0 && index < (1<<p)) {
	GETMCOLOR(index, &r, &g, &b);
#ifdef DEBUG
	printf("%d %d %d %d %d %d %d=(%d,%d,%d)\n", xs, ys, 
	       xw*m/xs, yw*m/xs, x, y, index, r, g, b);
#endif
	sprintf(buf, "%d=(%d,%d,%d)", index, r, g, b);
	set_header(buf);
	if(left) {
	  COLOR(index);
	  rectf(0, 0, SZ-1, SZ-1);
	}
      }
    }
      break;
    case KEYBD:
      if(val == '\033' || val == 'q') {
	gexit();
	exit(0);
      }
      break;
    case WINQUIT:
      gexit();
      exit(0);
      break;
    case LEFTMOUSE:
      if(val == 1) {
	left = 1;
	if(index >= 0 && index < (1<<p)) {
	  COLOR(index);
	  rectf(0, 0, SZ-1, SZ-1);
	}
	break;
      }
      /* else redraw */
      left = 0;
    case REDRAW:
      reshapeviewport();
      getorigin(&xo, &yo);
      getsize  (&xs, &ys);
      color(BLACK); clear();
      set_header(header);
      for(i = 0; i < m; i++) for(j = 0; j < m; j++) {
	COLOR(i * m + j);
	rectfi(j     * SI,
	       i     * SI,
	       (j+1) * SI - 1,
	       (i+1) * SI - 1);
      }
      break;
    }
  }
}