]>
git.zerfleddert.de Git - micropolis/blob - src/sim/w_x.c
1 /* w_x.c: X Window System support
3 * Micropolis, Unix Version. This game was released for the Unix platform
4 * in or about 1990 and has been modified for inclusion in the One Laptop
5 * Per Child program. Copyright (C) 1989 - 2007 Electronic Arts Inc. If
6 * you need assistance with this program, you may contact:
7 * http://wiki.laptop.org/go/Micropolis or email micropolis@laptop.org.
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or (at
12 * your option) any later version.
14 * This program is distributed in the hope that it will be useful, but
15 * WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * General Public License for more details. You should have received a
18 * copy of the GNU General Public License along with this program. If
19 * not, see <http://www.gnu.org/licenses/>.
21 * ADDITIONAL TERMS per GNU GPL Section 7
23 * No trademark or publicity rights are granted. This license does NOT
24 * give you any right, title or interest in the trademark SimCity or any
25 * other Electronic Arts trademark. You may not distribute any
26 * modification of this program using the trademark SimCity or claim any
27 * affliation or association with Electronic Arts Inc. or its employees.
29 * Any propagation or conveyance of this program must include this
30 * copyright notice and these terms.
32 * If you convey this program (or any modifications of it) and assume
33 * contractual liability for the program to recipients of it, you agree
34 * to indemnify Electronic Arts for any liability that those contractual
35 * assumptions impose on Electronic Arts.
37 * You may not misrepresent the origins of this program; modified
38 * versions of the program must be marked as such and not identified as
39 * the original program.
41 * This disclaimer supplements the one included in the General Public
42 * License. TO THE FULLEST EXTENT PERMISSIBLE UNDER APPLICABLE LAW, THIS
43 * PROGRAM IS PROVIDED TO YOU "AS IS," WITH ALL FAULTS, WITHOUT WARRANTY
44 * OF ANY KIND, AND YOUR USE IS AT YOUR SOLE RISK. THE ENTIRE RISK OF
45 * SATISFACTORY QUALITY AND PERFORMANCE RESIDES WITH YOU. ELECTRONIC ARTS
46 * DISCLAIMS ANY AND ALL EXPRESS, IMPLIED OR STATUTORY WARRANTIES,
47 * INCLUDING IMPLIED WARRANTIES OF MERCHANTABILITY, SATISFACTORY QUALITY,
48 * FITNESS FOR A PARTICULAR PURPOSE, NONINFRINGEMENT OF THIRD PARTY
49 * RIGHTS, AND WARRANTIES (IF ANY) ARISING FROM A COURSE OF DEALING,
50 * USAGE, OR TRADE PRACTICE. ELECTRONIC ARTS DOES NOT WARRANT AGAINST
51 * INTERFERENCE WITH YOUR ENJOYMENT OF THE PROGRAM; THAT THE PROGRAM WILL
52 * MEET YOUR REQUIREMENTS; THAT OPERATION OF THE PROGRAM WILL BE
53 * UNINTERRUPTED OR ERROR-FREE, OR THAT THE PROGRAM WILL BE COMPATIBLE
54 * WITH THIRD PARTY SOFTWARE OR THAT ANY ERRORS IN THE PROGRAM WILL BE
55 * CORRECTED. NO ORAL OR WRITTEN ADVICE PROVIDED BY ELECTRONIC ARTS OR
56 * ANY AUTHORIZED REPRESENTATIVE SHALL CREATE A WARRANTY. SOME
57 * JURISDICTIONS DO NOT ALLOW THE EXCLUSION OF OR LIMITATIONS ON IMPLIED
58 * WARRANTIES OR THE LIMITATIONS ON THE APPLICABLE STATUTORY RIGHTS OF A
59 * CONSUMER, SO SOME OR ALL OF THE ABOVE EXCLUSIONS AND LIMITATIONS MAY
65 struct XDisplay
*XDisplays
= NULL
;
75 unsigned char ColorIntensities
[] = {
76 /* COLOR_WHITE */ 255,
77 /* COLOR_YELLOW */ 170,
78 /* COLOR_ORANGE */ 127,
80 /* COLOR_DARKRED */ 63,
81 /* COLOR_DARKBLUE */ 76,
82 /* COLOR_LIGHTBLUE */ 144,
83 /* COLOR_BROWN */ 118,
84 /* COLOR_LIGHTGREEN */ 76,
85 /* COLOR_DARKGREEN */ 42,
86 /* COLOR_OLIVE */ 118,
87 /* COLOR_LIGHTBROWN */ 144,
88 /* COLOR_LIGHTGRAY */ 191,
89 /* COLOR_MEDIUMGRAY */ 127,
90 /* COLOR_DARKGRAY */ 63,
95 ViewToTileCoords(SimView
*view
, int x
, int y
, int *outx
, int *outy
)
97 x
= (view
->pan_x
- ((view
->w_width
>>1) - x
)) >>4;
98 y
= (view
->pan_y
- ((view
->w_height
>>1) - y
)) >>4;
101 if (x
>= WORLD_X
) x
= WORLD_X
- 1;
103 if (y
>= WORLD_Y
) y
= WORLD_Y
- 1;
105 if (x
< view
->tile_x
)
107 if (x
>= view
->tile_x
+ view
->tile_width
)
108 x
= view
->tile_x
+ view
->tile_width
- 1;
109 if (y
< view
->tile_y
)
111 if (y
>= view
->tile_y
+ view
->tile_height
)
112 y
= view
->tile_y
+ view
->tile_height
- 1;
114 if (view
->tool_x_const
!= -1)
115 x
= view
->tool_x_const
;
116 if (view
->tool_y_const
!= -1)
117 y
= view
->tool_y_const
;
119 *outx
= x
; *outy
= y
;
123 ViewToPixelCoords(SimView
*view
, int x
, int y
, int *outx
, int *outy
)
125 x
= view
->pan_x
- ((view
->w_width
>>1) - x
);
126 y
= view
->pan_y
- ((view
->w_height
>>1) - y
);
129 if (x
>= (WORLD_X
<<4)) x
= (WORLD_X
<<4) - 1;
131 if (y
>= (WORLD_Y
<<4)) y
= (WORLD_Y
<<4) - 1;
133 if (x
< (view
->tile_x
<<4))
134 x
= (view
->tile_x
<<4);
135 if (x
>= ((view
->tile_x
+ view
->tile_width
) <<4))
136 x
= ((view
->tile_x
+ view
->tile_width
) <<4) - 1;
137 if (y
< (view
->tile_y
<<4))
138 y
= (view
->tile_y
<<4);
139 if (y
>= ((view
->tile_y
+ view
->tile_height
) <<4))
140 y
= ((view
->tile_y
+ view
->tile_height
) <<4) - 1;
142 if (view
->tool_x_const
!= -1)
143 x
= (view
->tool_x_const
<<4) + 8;
144 if (view
->tool_y_const
!= -1)
145 y
= (view
->tool_y_const
<<4) + 8;
147 *outx
= x
; *outy
= y
;
160 sim_skip
= sim_skips
;
163 switch (FlushStyle
) {
169 for (xd
= XDisplays
; xd
!= NULL
; xd
= xd
->next
)
174 for (xd
= XDisplays
; xd
!= NULL
; xd
= xd
->next
)
175 XSync(xd
->dpy
, False
);
179 if (XDisplays
&& XDisplays
->next
) {
180 for (xd
= XDisplays
; xd
!= NULL
; xd
= xd
->next
) {
184 for (xd
= XDisplays
; xd
!= NULL
; xd
= xd
->next
) {
185 XSync(xd
->dpy
, False
);
190 for (xd
= XDisplays
; xd
!= NULL
; xd
= xd
->next
) {
192 /* XXX TODO: figure this out for linux and new x libs */
193 if ((xd
->request
!= xd
->dpy
->request
) ||
194 (xd
->last_request_read
!= xd
->dpy
->last_request_read
)) {
195 XSync(xd
->dpy
, False
);
196 xd
->request
= xd
->dpy
->request
;
197 xd
->last_request_read
= xd
->dpy
->last_request_read
;
208 CatchXError(Display
*dpy
, XErrorEvent
*err
)
212 printf("GOT X ERROR code %d request code %d %d\n",
213 err
->error_code
, err
->request_code
, err
->minor_code
);
221 (void)XSetErrorHandler(CatchXError
);
226 while (sim
->editor
!= NULL
) {
227 DestroyView(sim
->editor
);
230 while (sim
->map
!= NULL
) {
231 DestroyView(sim
->map
);
234 while (sim
->graph
!= NULL
) {
235 DestroyGraph(sim
->graph
);
239 while (sim
->scam
!= NULL
) {
240 DestroyCam(sim
->scam
);
249 while (Tk_DoOneEvent(TK_DONT_WAIT
)) ;
258 sim
= (Sim
*)ckalloc(sizeof(Sim
));
259 sim
->editors
= 0; sim
->editor
= NULL
;
260 sim
->maps
= 0; sim
->map
= NULL
;
261 sim
->graphs
= 0; sim
->graph
= NULL
;
262 sim
->sprites
= 0; sim
->sprite
= NULL
;
264 sim
->scams
= 0; sim
->scam
= NULL
;
273 FindXDisplay(Tk_Window tkwin
)
277 unsigned long valuemask
= 0;
280 Display
*dpy
= Tk_Display(tkwin
);
281 Screen
*screen
= Tk_Screen(tkwin
);
283 char *display
= ":0"; /* XXX TODO: fix this for new x libs */
285 char *display
= dpy
->display_name
;
289 xd
&& (xd
->screen
!= screen
);
295 xd
= (struct XDisplay
*)ckalloc(sizeof (struct XDisplay
));
299 xd
->display
= (char *)ckalloc(strlen(display
) + 1);
300 xd
->tkDisplay
= ((TkWindow
*)tkwin
)->dispPtr
;
301 strcpy(xd
->display
, display
);
303 xd
->root
= RootWindowOfScreen(xd
->screen
);
305 xd
->visual
= Tk_DefaultVisual(xd
->screen
);
306 xd
->depth
= Tk_DefaultDepth(xd
->screen
);
307 xd
->colormap
= Tk_DefaultColormap(xd
->screen
);
309 xd
->color
= (xd
->depth
!= 1);
311 xd
->pixels
= (int *)ckalloc(16 * sizeof(int));
312 if (xd
->color
) { /* Color screen */
315 #define GETCOLOR(i, name) \
317 xd->pixels[i] = Rand16() & 255; \
319 if ((color = Tk_GetColor(tk_mainInterp, tkwin, \
320 None, name)) == NULL) { \
321 xd->pixels[i] = Rand16() & 255; \
324 switch (xd->depth) { \
330 if (xd->visual->red_mask == 0x7c00) { \
332 (((color->red >> (8 + 3)) & 0x1f) << (5 + 5)) | \
333 (((color->green >> (8 + 2)) & 0x1f) << (5)) | \
334 (((color->blue >> (8 + 3)) & 0x1f) << (0)); \
336 (((color->blue >> (8 + 3)) & 0x1f) << (5 + 5)) | \
337 (((color->green >> (8 + 2)) & 0x1f) << (5)) | \
338 (((color->red >> (8 + 3)) & 0x1f) << (0)); \
342 if (xd->visual->red_mask == 0xf800) { \
344 (((color->red >> (8 + 3)) & 0x1f) << (6 + 5)) | \
345 (((color->green >> (8 + 2)) & 0x3f) << (5)) | \
346 (((color->blue >> (8 + 3)) & 0x1f) << (0)); \
349 (((color->blue >> (8 + 3)) & 0x1f) << (6 + 5)) | \
350 (((color->green >> (8 + 2)) & 0x3f) << (5)) | \
351 (((color->red >> (8 + 3)) & 0x1f) << (0)); \
356 if (xd->visual->red_mask == 0xff0000) { \
358 ((color->red & 0xff) << 16) | \
359 ((color->green & 0xff) << 8) | \
360 ((color->blue & 0xff) << 0); \
363 ((color->blue & 0xff) << 16) | \
364 ((color->green & 0xff) << 8) | \
365 ((color->red & 0xff) << 0); \
372 if ((xd
->depth
== 8) &&
373 (Tk_DefaultColormap(xd
->screen
) ==
374 DefaultColormapOfScreen(xd
->screen
))) {
375 xd
->pixels
[COLOR_WHITE
] = WhitePixelOfScreen(xd
->screen
);
376 xd
->pixels
[COLOR_BLACK
] = BlackPixelOfScreen(xd
->screen
);
378 GETCOLOR(COLOR_WHITE
, "#ffffff");
379 GETCOLOR(COLOR_BLACK
, "#000000");
382 GETCOLOR(COLOR_YELLOW
, "#ffff00");
383 GETCOLOR(COLOR_ORANGE
, "#ff7f00");
384 GETCOLOR(COLOR_RED
, "#ff0000");
385 GETCOLOR(COLOR_DARKRED
, "#bf0000");
386 GETCOLOR(COLOR_DARKBLUE
, "#0000e6");
387 GETCOLOR(COLOR_LIGHTBLUE
, "#6666e6");
388 GETCOLOR(COLOR_BROWN
, "#cc4c4c");
389 GETCOLOR(COLOR_LIGHTGREEN
, "#00e600");
390 GETCOLOR(COLOR_DARKGREEN
, "#007f00");
391 GETCOLOR(COLOR_OLIVE
, "#997f4c");
392 GETCOLOR(COLOR_LIGHTBROWN
, "#cc7f66");
393 GETCOLOR(COLOR_LIGHTGRAY
, "#bfbfbf");
394 GETCOLOR(COLOR_MEDIUMGRAY
, "#7f7f7f");
395 GETCOLOR(COLOR_DARKGRAY
, "#3f3f3f");
399 "Oh, dear. There don't seem to be enough free colors on X display \"%s\".\n",
402 "Micropolis will try to run anyway, but might look pretty weird!\n");
404 } else { /* Black and white screen */
405 int white
= WhitePixelOfScreen(xd
->screen
);
406 int black
= BlackPixelOfScreen(xd
->screen
);
408 xd
->pixels
[COLOR_WHITE
] = white
;
409 xd
->pixels
[COLOR_BLACK
] = black
;
411 xd
->pixels
[COLOR_YELLOW
] = white
;
412 xd
->pixels
[COLOR_ORANGE
] = white
;
413 xd
->pixels
[COLOR_RED
] = white
;
414 xd
->pixels
[COLOR_DARKRED
] = black
;
415 xd
->pixels
[COLOR_DARKBLUE
] = black
;
416 xd
->pixels
[COLOR_LIGHTBLUE
] = white
;
417 xd
->pixels
[COLOR_BROWN
] = black
;
418 xd
->pixels
[COLOR_LIGHTGREEN
] = white
;
419 xd
->pixels
[COLOR_DARKGREEN
] = black
;
420 xd
->pixels
[COLOR_OLIVE
] = black
;
421 xd
->pixels
[COLOR_LIGHTBROWN
] = white
;
422 xd
->pixels
[COLOR_LIGHTGRAY
] = white
;
423 xd
->pixels
[COLOR_MEDIUMGRAY
] = white
;
424 xd
->pixels
[COLOR_DARKGRAY
] = black
;
427 xd
->gc
= Tk_DefaultGC(xd
->screen
);
428 XSetForeground(xd
->dpy
, xd
->gc
, xd
->pixels
[COLOR_BLACK
]);
429 XSetBackground(xd
->dpy
, xd
->gc
, xd
->pixels
[COLOR_WHITE
]);
430 XSetLineAttributes(xd
->dpy
, xd
->gc
,
431 1, LineSolid
, CapButt
, JoinMiter
);
432 XSetGraphicsExposures(xd
->dpy
, xd
->gc
, False
);
435 { int major
, minor
, event
, error
, pixmaps
;
437 (XQueryExtension(xd
->dpy
, "MIT-SHM", /* Jeez! */
438 &major
, &event
, &error
) != True
) ||
439 (XShmQueryVersion(xd
->dpy
,
440 &major
, &minor
, &pixmaps
) != True
)) {
442 "Darn, X display \"%s\" doesn't support the shared memory extension.\n",
448 "Darn, X display \"%s\" claims to support the shared memory extension,\n",
451 "but is too lame to support shared memory pixmaps, so Micropolis will run slower.\n");
453 "Please complain to your X server vendor, %s\n",
454 XServerVendor(xd
->dpy
));
458 "Cool, I found the shared memory extension!\n");
468 xd
->last_request_read
= -1;
469 xd
->big_tile_pixmap
= None
;
471 xd
->overlay_gc
= NULL
;
472 xd
->gray25_stipple
= None
;
473 xd
->gray50_stipple
= None
;
474 xd
->gray75_stipple
= None
;
475 xd
->vert_stipple
= None
;
476 xd
->horiz_stipple
= None
;
477 xd
->diag_stipple
= None
;
479 xd
->big_tile_image
= xd
->small_tile_image
= NULL
;
481 xd
->next
= XDisplays
; XDisplays
= xd
;
488 IncRefDisplay(XDisplay
*xd
)
494 DecRefDisplay(XDisplay
*xd
)
496 if ((--xd
->references
) == 0) {
497 /* I'd blow it away, but tk may still be using the display */
503 InitNewView(SimView
*view
, char *title
, int class, int w
, int h
)
508 unsigned long valuemask
= 0;
514 t
= (char *)ckalloc(strlen(title
) + 1);
521 view
->bigtiles
= view
->smalltiles
= NULL
;
523 view
->line_bytes
= 0;
524 view
->line_bytes8
= 0;
525 view
->pixel_bytes
= 0;
531 view
->skips
= view
->skip
= 0;
533 view
->map_state
= ALMAP
;
534 view
->show_editors
= 1;
535 view
->tool_showing
= 0;
537 view
->tool_x
= view
->tool_y
= 0;
538 view
->tool_x_const
= view
->tool_y_const
= -1;
539 view
->tool_state
= dozeState
;
540 view
->tool_state_save
= -1;
541 view
->super_user
= 0;
543 view
->dynamic_filter
= 0;
544 view
->auto_scroll_token
= 0;
545 view
->tool_event_time
= 0;
546 view
->tool_last_event_time
= 0;
547 view
->w_x
= view
->w_y
= 0;
548 view
->w_width
= view
->w_height
= 16;
549 view
->m_width
= view
->m_height
= 0;
550 view
->i_width
= w
; view
->i_height
= h
;
551 view
->pan_x
= view
->pan_y
= 0;
552 view
->tile_x
= view
->tile_y
= 0;
553 view
->tile_width
= view
->tile_height
= 0;
554 view
->screen_x
= view
->screen_y
= 0;
555 view
->screen_width
= view
->screen_height
= 0;
556 view
->last_x
= view
->last_y
= view
->last_button
= 0;
557 view
->track_info
= NULL
;
558 view
->message_var
= NULL
;
560 /* This stuff was initialized in our caller (SimViewCmd) */
561 /* view->tkwin = NULL; */
562 /* view->interp = NULL; */
563 /* view->flags = 0; */
566 view
->shminfo
= NULL
;
568 view
->other_tiles
= NULL
;
570 view
->other_image
= NULL
;
571 view
->other_data
= NULL
;
573 view
->pixmap2
= None
;
574 view
->overlay_pixmap
= None
;
575 view
->overlay_valid
= 0;
576 view
->fontPtr
= NULL
;
578 view
->update_real
= view
->update_user
= view
->update_system
= 0.0;
579 view
->update_context
= 0;
581 view
->auto_going
= 0;
582 view
->auto_x_goal
= view
->auto_x_goal
= 0;
583 view
->auto_speed
= 75;
586 view
->width
= 0; view
->height
= 0;
587 view
->show_overlay
= 1;
588 view
->overlay_mode
= 0;
590 view
->x
= FindXDisplay(view
->tkwin
);
591 IncRefDisplay(view
->x
);
593 /* view->x->shared is 1 if the shared memory extension is present and
594 supports shared memory pixmaps, and -1 if it is present but doesn't. */
595 if (view
->x
->shared
!= 1) {
596 view
->type
= X_Wire_View
;
598 view
->type
= X_Mem_View
;
601 view
->x
->needs_swap
= !(*(unsigned char*) (&test
));
602 view
->x
->x_big_endian
= (ImageByteOrder(view
->x
->dpy
) == MSBFirst
);
606 view
->pixels
= view
->x
->pixels
;
608 if (w
== EDITOR_W
) w
= 256; /* XXX */
609 if (h
== EDITOR_H
) h
= 256; /* XXX */
611 view
->pan_x
= w
/ 2; view
->pan_y
= h
/ 2;
612 DoResizeView(view
, w
, h
);
620 DestroyView(SimView
*view
)
624 CancelRedrawView(view
);
626 for (vp
= ((view
->class == Editor_Class
) ?
627 (&sim
->editor
) : (&sim
->map
));
629 vp
= &((*vp
)->next
)) {
632 if (view
->class == Editor_Class
)
641 if (view
->title
!= NULL
) {
642 ckfree (view
->title
);
646 if (view
->pixmap
!= None
) {
647 XFreePixmap(view
->x
->dpy
, view
->pixmap
);
651 if (view
->pixmap2
!= None
) {
652 XFreePixmap(view
->x
->dpy
, view
->pixmap2
);
653 view
->pixmap2
= None
;
656 if (view
->overlay_pixmap
!= None
) {
657 XFreePixmap(view
->x
->dpy
, view
->overlay_pixmap
);
658 view
->overlay_pixmap
= None
;
661 if (view
->auto_scroll_token
) {
662 Tk_DeleteTimerHandler(view
->auto_scroll_token
);
663 view
->auto_scroll_token
= 0;
668 XShmDetach(view
->x
->dpy
, view
->shminfo
);
669 shmdt(view
->shminfo
->shmaddr
);
670 shmctl(view
->shminfo
->shmid
, IPC_RMID
, 0);
671 ckfree(view
->shminfo
);
672 view
->shminfo
= NULL
;
674 view
->image
->data
= NULL
;
676 XDestroyImage(view
->image
);
682 if (view
->image
->data
) {
683 ckfree(view
->image
->data
);
684 view
->image
->data
= NULL
;
687 XDestroyImage(view
->image
);
694 if (view
->other_image
) {
695 if (view
->other_image
->data
) {
696 ckfree(view
->other_image
->data
);
697 view
->other_image
->data
= NULL
;
699 view
->other_data
= NULL
;
700 XDestroyImage(view
->other_image
);
701 view
->other_image
= NULL
;
707 DecRefDisplay(view
->x
);
709 ckfree((char *) view
);
714 AllocPixels(int len
, unsigned char pixel
)
717 unsigned char *data
, *cp
;
719 cp
= data
= (unsigned char *)ckalloc(len
);
720 for (i
= len
; i
> 0; i
--) {
728 DoResizeView(SimView
*view
, int w
, int h
)
735 if (view
->class == Map_Class
) { /* Map_Class */
739 if (view
->pixmap2
== None
) {
741 view
->pixmap2
= XCreatePixmap(view
->x
->dpy
, view
->x
->root
,
742 w
, h
, view
->x
->depth
);
743 if (view
->pixmap2
== None
) {
745 "Sorry, Micropolis can't create a pixmap on X display \"%s\"!\n",
747 sim_exit(1); // Just sets tkMustExit and ExitReturn
752 } else { /* Editor_Class */
754 if ((w
= (w
+ 31) & (~15)) > view
->m_width
)
755 view
->m_width
= w
, resize
++;
756 if ((h
= (h
+ 31) & (~15)) > view
->m_height
)
757 view
->m_height
= h
, resize
++;
759 if (resize
|| (view
->pixmap2
== None
)) {
760 if (view
->pixmap2
!= None
) {
761 XFreePixmap(view
->x
->dpy
, view
->pixmap2
);
762 view
->pixmap2
= None
;
764 view
->pixmap2
= XCreatePixmap(view
->x
->dpy
, view
->x
->root
,
765 view
->m_width
, view
->m_height
,
767 if (view
->pixmap2
== None
) {
769 "Sorry, Micropolis couldn't create a pixmap on X display \"%s\"!\n",
771 sim_exit(1); // Just sets tkMustExit and ExitReturn
776 if (resize
|| (view
->overlay_pixmap
== None
)) {
777 view
->overlay_mode
= 0;
778 if (view
->overlay_pixmap
!= None
) {
779 XFreePixmap(view
->x
->dpy
, view
->overlay_pixmap
);
780 view
->overlay_pixmap
= None
;
782 view
->overlay_pixmap
= XCreatePixmap(view
->x
->dpy
, view
->x
->root
,
783 view
->m_width
, view
->m_height
,
785 if (view
->overlay_pixmap
== None
) {
787 "Sorry, Micropolis couldn't create another pixmap on X display \"%s\".\n",
789 sim_exit(1); // Just sets tkMustExit and ExitReturn
792 if (view
->x
->overlay_gc
== NULL
) {
793 unsigned long valuemask
= 0;
796 view
->x
->overlay_gc
=
797 XCreateGC(view
->x
->dpy
, view
->overlay_pixmap
, valuemask
, &values
);
798 XSetForeground(view
->x
->dpy
, view
->x
->overlay_gc
, 0);
799 XSetBackground(view
->x
->dpy
, view
->x
->overlay_gc
, 1);
800 XSetLineAttributes(view
->x
->dpy
, view
->x
->overlay_gc
,
801 1, LineSolid
, CapButt
, JoinMiter
);
802 XSetGraphicsExposures(view
->x
->dpy
, view
->x
->overlay_gc
, False
);
809 if (view
->type
!= X_Mem_View
) {
813 if (resize
|| (view
->image
== NULL
)) {
814 if (view
->shminfo
&& view
->image
) {
815 if (view
->pixmap
!= None
) {
816 XFreePixmap(view
->x
->dpy
, view
->pixmap
);
819 XShmDetach(view
->x
->dpy
, view
->shminfo
);
820 shmdt(view
->shminfo
->shmaddr
);
821 shmctl(view
->shminfo
->shmid
, IPC_RMID
, 0);
822 view
->image
->data
= NULL
;
823 if (view
->data
== view
->data8
)
826 XDestroyImage(view
->image
);
831 /* XShmPixmapFormat is documented but does not exist !!! */
832 if (XShmPixmapFormat(view
->x
->dpy
) != ZPixmap
) {
834 "Darn, display \"%s\" has the wrong shared memory format.\n",
840 if (!view
->shminfo
) {
841 view
->shminfo
= (XShmSegmentInfo
*)ckalloc(sizeof (XShmSegmentInfo
));
845 XShmCreateImage(view
->x
->dpy
, view
->x
->visual
, view
->x
->depth
,
846 view
->x
->color
? ZPixmap
: XYBitmap
,
848 view
->m_width
, view
->m_height
);
850 view
->line_bytes
= view
->image
->bytes_per_line
;
852 switch (view
->x
->depth
) {
855 view
->pixel_bytes
= 0;
860 view
->pixel_bytes
= 1;
865 view
->pixel_bytes
= 2;
870 view
->pixel_bytes
= 2;
875 /* XXX: TODO: 24 and 32 bit support */
876 view
->pixel_bytes
= 4;
877 //view->pixel_bytes = 3;
882 /* XXX: TODO: 24 and 32 bit support */
883 view
->pixel_bytes
= 4;
888 view
->pixel_bytes
= 0;
894 view
->shminfo
->shmid
= shmget(IPC_PRIVATE
,
898 if (view
->shminfo
->shmid
< 0) {
901 "Darn, Micropolis can't share memory with X display \"%s\".\n",
906 view
->data
= (unsigned char *)shmat(view
->shminfo
->shmid
, 0, 0);
907 if ((int)view
->data
== -1) {
910 "Darn, Micropolis can't find any memory to share with display \"%s\".\n",
915 view
->image
->data
= (char *)view
->data
;
916 view
->shminfo
->shmaddr
= (char *)view
->data
;
917 view
->shminfo
->readOnly
= False
;
923 old
= XSetErrorHandler(CatchXError
);
926 XShmAttach(view
->x
->dpy
, view
->shminfo
);
929 "Darn, the X display \"%s\" can't access Micropolis's shared memory.\n",
934 XSync(view
->x
->dpy
, False
);
938 view
->pixmap
= XShmCreatePixmap(view
->x
->dpy
, view
->x
->root
,
939 view
->data
, view
->shminfo
,
940 view
->m_width
, view
->m_height
,
942 XSync(view
->x
->dpy
, False
);
945 (view
->pixmap
== None
)) {
947 "Darn, Micropolis couldn't get a shared memory pixmap on X display \"%s\".\n",
953 XSetErrorHandler(old
);
958 XShmDetach(view
->x
->dpy
, view
->shminfo
);
960 result
= shmdt(view
->shminfo
->shmaddr
);
961 result
= shmctl(view
->shminfo
->shmid
, IPC_RMID
, 0);
962 ckfree(view
->shminfo
);
963 view
->shminfo
= NULL
;
965 view
->image
->data
= NULL
;
967 XDestroyImage(view
->image
);
973 if (view
->x
->color
) {
974 XSetForeground(view
->x
->dpy
, view
->x
->gc
,
975 view
->pixels
[COLOR_LIGHTBROWN
]);
977 XSetForeground(view
->x
->dpy
, view
->x
->gc
,
978 view
->pixels
[COLOR_WHITE
]);
981 XFillRectangle(view
->x
->dpy
, view
->pixmap
, view
->x
->gc
,
982 0, 0, view
->m_width
, view
->m_height
);
991 "Falling back to the X network protocol on display \"%s\"...\n",
996 view
->type
= X_Wire_View
;
997 if (view
->pixmap
!= None
) {
998 XFreePixmap(view
->x
->dpy
, view
->pixmap
);
1002 if (view
->shminfo
) {
1003 if (view
->shminfo
->shmid
>= 0) {
1004 if (view
->shminfo
->shmaddr
) {
1005 shmdt(view
->shminfo
->shmaddr
);
1007 shmctl(view
->shminfo
->shmid
, IPC_RMID
, 0);
1009 ckfree((char *)view
->shminfo
);
1010 view
->shminfo
= NULL
;
1014 view
->image
->data
= NULL
;
1015 XDestroyImage(view
->image
);
1019 view
->line_bytes
= 0;
1020 view
->pixel_bytes
= 0;
1025 if (resize
|| (view
->pixmap
== None
)) {
1026 if (view
->pixmap
!= None
) {
1027 XFreePixmap(view
->x
->dpy
, view
->pixmap
);
1028 view
->pixmap
= None
;
1030 view
->pixmap
= XCreatePixmap(view
->x
->dpy
, view
->x
->root
,
1031 view
->m_width
, view
->m_height
,
1033 if (view
->pixmap
== None
) {
1035 "Sorry, Micropolis can't create pixmap on X display \"%s\".\n",
1037 sim_exit(1); // Just sets tkMustExit and ExitReturn
1040 if (view
->x
->color
) {
1041 XSetForeground(view
->x
->dpy
, view
->x
->gc
,
1042 view
->pixels
[COLOR_LIGHTBROWN
]);
1044 XSetForeground(view
->x
->dpy
, view
->x
->gc
,
1045 view
->pixels
[COLOR_WHITE
]);
1047 XFillRectangle(view
->x
->dpy
, view
->pixmap
, view
->x
->gc
,
1048 0, 0, view
->m_width
, view
->m_height
);
1053 if (view
->class == Editor_Class
) {
1058 } else if (view
->class == Map_Class
) {
1060 if (view
->type
== X_Mem_View
) { /* Memory Map */
1062 if (view
->x
->color
) {
1064 /* Color, Shared Memory */
1066 view
->data8
= view
->data
;
1067 view
->line_bytes8
= view
->line_bytes
; /* XXX: ??? */
1069 switch (view
->x
->depth
) {
1072 view
->pixel_bytes
= 1;
1077 view
->pixel_bytes
= 2;
1082 view
->pixel_bytes
= 2;
1087 /* XXX: TODO: 24 and 32 bit support */
1088 view
->pixel_bytes
= 4;
1089 //view->pixel_bytes = 3;
1094 /* XXX: TODO: 24 and 32 bit support */
1095 view
->pixel_bytes
= 4;
1100 view
->pixel_bytes
= 0;
1108 /* Black and White, Shared Memory */
1110 if (view
->other_image
!= NULL
) {
1111 XDestroyImage(view
->other_image
);
1114 view
->line_bytes8
= view
->m_width
; /* XXX: fix depth */
1115 view
->pixel_bytes
= 0;
1118 view
->other_data
= view
->data8
=
1119 AllocPixels(view
->m_height
* view
->line_bytes8
, /* XXX: fix depth */
1120 view
->pixels
[COLOR_WHITE
]);
1122 XCreateImage(view
->x
->dpy
, view
->x
->visual
, 8, /* XXX: fix depth */
1123 ZPixmap
, 0, (char *)view
->other_data
,
1124 view
->m_width
, view
->m_height
,
1125 8, view
->line_bytes8
); /* XXX: fix depth */
1128 } else { /* Wire Map */
1132 if (view
->image
!= NULL
) {
1133 XDestroyImage(view
->image
);
1137 if (view
->other_image
!= NULL
) {
1138 XDestroyImage(view
->other_image
);
1139 view
->other_image
= NULL
;
1142 if (view
->x
->color
) {
1146 switch (view
->x
->depth
) {
1149 view
->pixel_bytes
= 1;
1154 ((view
->m_width
* view
->pixel_bytes
) + 3) & (~3);
1158 view
->pixel_bytes
= 2;
1163 ((view
->m_width
* view
->pixel_bytes
) + 3) & (~3);
1167 view
->pixel_bytes
= 2;
1172 ((view
->m_width
* view
->pixel_bytes
) + 3) & (~3);
1176 view
->pixel_bytes
= 4;
1177 //view->pixel_bytes = 3;
1182 ((view
->m_width
* 4) + 3) & (~3);
1186 view
->pixel_bytes
= 4;
1191 ((view
->m_width
* 4) + 3) & (~3);
1195 assert(0); /* Unknown depth */
1205 /* Black and White, Wire */
1207 view
->pixel_bytes
= 0;
1210 (view
->m_width
+ 3) & (~3); /* XXX: handle depth */
1212 (view
->m_width
+ 7) >>3;
1219 AllocPixels(view
->m_height
* view
->line_bytes
, 0);
1221 XCreateImage(view
->x
->dpy
, view
->x
->visual
,
1223 view
->x
->color
? ZPixmap
: XYBitmap
,
1224 0, (char *)view
->data
,
1225 view
->m_width
, view
->m_height
,
1230 AllocPixels(view
->m_height
* view
->line_bytes8
, 0);
1232 XCreateImage(view
->x
->dpy
, view
->x
->visual
,
1235 0, (char *)view
->other_data
,
1236 view
->m_width
, view
->m_height
,
1240 if (view
->x
->color
) {
1241 view
->data8
= view
->data
;
1243 view
->data8
= view
->other_data
;
1250 DoPanBy(struct SimView
*view
, int dx
, int dy
)
1252 DoPanTo(view
, view
->pan_x
+ dx
, view
->pan_y
+ dy
);
1256 DoPanTo(struct SimView
*view
, int x
, int y
)
1258 if (view
->class != Editor_Class
) {
1264 if (x
> view
->i_width
) x
= view
->i_width
- 1;
1265 if (y
> view
->i_height
) y
= view
->i_height
- 1;
1266 if ((view
->pan_x
!= x
) ||
1267 (view
->pan_y
!= y
)) {
1274 /* #define DEBUG_PAN */
1276 DoAdjustPan(struct SimView
*view
)
1278 int ww2
= view
->w_width
>>1, wh2
= view
->w_height
>>1;
1279 int px
= view
->pan_x
, py
= view
->pan_y
;
1280 int last_tile_x
= view
->tile_x
, last_tile_y
= view
->tile_y
;
1281 int last_tile_width
= view
->tile_width
, last_tile_height
= view
->tile_height
;
1282 int total_width
= view
->m_width
>>4, total_height
= view
->m_height
>>4;
1283 //fprintf(stderr, "DoAdjustPan\n");
1286 printf("AdjustPan window %d %d ww2 %d wh2 %d pan %d %d\n",
1287 view
->w_width
, view
->w_height
, ww2
, wh2
, px
, py
);
1288 printf(" last tile %d %d %d %d\n",
1289 last_tile_x
, last_tile_y
, last_tile_width
, last_tile_height
);
1292 if ((view
->tile_x
= ((px
- ww2
) >>4)) < 0)
1294 if ((view
->tile_y
= ((py
- wh2
) >>4)) < 0)
1298 printf(" now tile %d %d\n", view
->tile_x
, view
->tile_y
);
1301 view
->tile_width
= ((15 + px
+ ww2
) >>4);
1302 view
->tile_height
= ((15 + py
+ wh2
) >>4);
1305 printf(" outer tile %d %d\n", view
->tile_width
, view
->tile_height
);
1308 if (view
->tile_width
> (view
->i_width
>>4))
1309 view
->tile_width
= (view
->i_width
>>4);
1310 view
->tile_width
-= view
->tile_x
;
1311 if (view
->tile_height
> (view
->i_height
>>4))
1312 view
->tile_height
= (view
->i_height
>>4);
1313 view
->tile_height
-= view
->tile_y
;
1316 printf(" tile size %d %d\n", view
->tile_width
, view
->tile_height
);
1319 if (view
->tile_width
> (view
->m_width
>>4))
1320 view
->tile_width
= (view
->m_width
>>4);
1321 if (view
->tile_height
> (view
->m_height
>>4))
1322 view
->tile_height
= (view
->m_height
>>4);
1325 printf(" clipped size %d %d\n", view
->tile_width
, view
->tile_height
);
1326 printf(" maximum size %d %d\n", view
->m_width
>>4, view
->m_height
>>4);
1329 view
->screen_x
= (ww2
- px
) + (view
->tile_x
<<4);
1330 view
->screen_y
= (wh2
- py
) + (view
->tile_y
<<4);
1331 view
->screen_width
= (view
->tile_width
<<4);
1332 view
->screen_height
= (view
->tile_height
<<4);
1335 printf(" screen %d %d %d %d\n",
1336 view
->screen_x
, view
->screen_y
,
1337 view
->screen_width
, view
->screen_height
);
1340 view
->overlay_mode
= 0;
1343 if (SimSpeed
== 0) {
1344 EventuallyRedrawView(view
);
1346 /* InvalidateEditors(); */
1347 if (view
->show_me
) {
1350 /* FixMicropolisTimer(); */
1352 { int dx
= last_tile_x
- view
->tile_x
,
1353 dy
= last_tile_y
- view
->tile_y
;
1354 short **want
= view
->other_tiles
,
1355 **have
= view
->tiles
;
1358 printf("scrolling %d %d\n", dx
, dy
);
1361 if ((dx
!= 0) || (dy
!= 0)) {
1363 width
= view
->tile_width
,
1364 height
= view
->tile_height
;
1366 for (col
= 0; col
< width
; col
++)
1367 memcpy(want
[col
], have
[col
], (height
* sizeof(short)));
1369 for (col
= 0; col
< total_width
; col
++) {
1371 for (row
= 0; row
< total_height
; row
++) {
1373 if ((x
>= 0) && (x
< width
) &&
1374 (y
>= 0) && (y
< height
)) {
1375 have
[col
][row
] = want
[x
][y
];
1377 have
[col
][row
] = -1;
1382 XCopyArea(view
->x
->dpy
, view
->pixmap
, view
->pixmap
, view
->x
->gc
,
1383 0, 0, view
->tile_width
<<4, view
->tile_height
<<4,
1386 if (view
->type
== X_Mem_View
) {
1387 XSync(view
->x
->dpy
, False
);
1394 AllocTiles(SimView
*view
)
1397 short **have
, **want
;
1398 int w
= view
->m_width
/ 16, h
= view
->m_height
/ 16;
1399 int n
= (w
+ 1) * sizeof (short *);
1404 have
= view
->tiles
=
1405 (short **)ckalloc(n
);
1407 want
= view
->other_tiles
=
1408 (short **)ckalloc(n
);
1410 have
[w
] = want
[w
] = NULL
;
1412 n
= h
* sizeof(short);
1413 for (col
= 0; col
< w
; col
++) {
1415 have
[col
] = (short *)ckalloc(n
);
1416 want
[col
] = (short *)ckalloc(n
);
1417 for (row
= 0; row
< h
; row
++) {
1418 have
[col
][row
] = -1;
1419 want
[col
][row
] = -1;
1425 FreeTiles(SimView
*view
)
1429 for (col
= 0; view
->tiles
[col
] != NULL
; col
++) {
1430 ckfree ((char *)view
->tiles
[col
]);
1431 ckfree ((char *)view
->other_tiles
[col
]);
1433 ckfree ((char *)view
->tiles
);
1435 ckfree ((char *)view
->other_tiles
);
1436 view
->other_tiles
= NULL
;
1440 #define POINT_BATCH 32
1445 /* XXX: todo: ink locking so someone doesn't erase ink that's being drawn */
1454 OldInk
= OldInk
->next
;
1456 ink
= (Ink
*)ckalloc(sizeof(Ink
));
1457 ink
->maxlength
= POINT_BATCH
;
1458 ink
->points
= (XPoint
*)ckalloc(POINT_BATCH
* sizeof(XPoint
));
1461 ink
->color
= COLOR_WHITE
;
1463 ink
->left
= ink
->right
= ink
->top
= ink
->bottom
=
1464 ink
->last_x
= ink
->last_y
= -1;
1476 StartInk(Ink
*ink
, int x
, int y
)
1479 ink
->left
= ink
->right
= ink
->last_x
= ink
->points
[0].x
= x
;
1480 ink
->top
= ink
->bottom
= ink
->last_y
= ink
->points
[0].y
= y
;
1484 AddInk(Ink
*ink
, int x
, int y
)
1486 int dx
= x
- ink
->last_x
;
1487 int dy
= y
- ink
->last_y
;
1489 if ((dx
!= 0) || (dy
!= 0)) {
1491 if (ink->length > 1) {
1493 (ink->points[ink->length - 1].x == 0) &&
1494 ((ink->points[ink->length - 1].y < 0) ?
1495 (dy < 0) : (dy > 0))) {
1496 ink->points[ink->length - 1].y += dy;
1498 } else if ((dy == 0) &&
1499 (ink->points[ink->length - 1].y == 0) &&
1500 ((ink->points[ink->length - 1].x < 0) ?
1501 (dx < 0) : (dx > 0))) {
1502 ink->points[ink->length - 1].x += dx;
1508 if (ink
->length
>= ink
->maxlength
) {
1509 ink
->maxlength
+= POINT_BATCH
;
1510 ink
->points
= (XPoint
*)realloc((void *)ink
->points
,
1511 ink
->maxlength
* sizeof(XPoint
));
1513 ink
->points
[ink
->length
].x
= dx
;
1514 ink
->points
[ink
->length
].y
= dy
;
1524 if (y
> ink
->bottom
)
1527 { int left
, right
, top
, bottom
;
1530 if (ink
->last_x
< x
) { left
= ink
->last_x
; right
= x
; }
1531 else { left
= x
; right
= ink
->last_x
; }
1532 if (ink
->last_y
< y
) { top
= ink
->last_y
; bottom
= y
; }
1533 else { top
= y
; bottom
= ink
->last_y
; }
1535 left
-= 5; right
+= 5; top
-= 5; bottom
+= 5;
1537 for (view
= sim
->editor
; view
!= NULL
; view
= view
->next
) {
1540 if ((right
>= (vleft
= view
->pan_x
- (view
->w_width
/ 2))) &&
1541 (left
<= vleft
+ view
->w_width
) &&
1542 (bottom
>= (vtop
= view
->pan_y
- (view
->w_height
/ 2))) &&
1543 (top
<= vtop
+ view
->w_height
)) {
1544 /* XXX: do studly incremental update instead */
1545 view
->overlay_mode
= 0;
1546 EventuallyRedrawView(view
);
1550 ink
->last_x
= x
; ink
->last_y
= y
;
1559 while (sim
->overlay
) {
1561 sim
->overlay
= ink
->next
;