ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/AmigaOS/video_amiga.cpp
(Generate patch)

Comparing BasiliskII/src/AmigaOS/video_amiga.cpp (file contents):
Revision 1.7 by cebix, 2000-07-22T16:20:55Z vs.
Revision 1.15 by cebix, 2001-06-30T12:58:07Z

# Line 1 | Line 1
1   /*
2   *  video_amiga.cpp - Video/graphics emulation, AmigaOS specific stuff
3   *
4 < *  Basilisk II (C) 1997-2000 Christian Bauer
4 > *  Basilisk II (C) 1997-2001 Christian Bauer
5   *
6   *  This program is free software; you can redistribute it and/or modify
7   *  it under the terms of the GNU General Public License as published by
# Line 33 | Line 33
33   #include <proto/cybergraphics.h>
34  
35   #include "sysdeps.h"
36 + #include "cpu_emulation.h"
37   #include "main.h"
38   #include "adb.h"
39   #include "prefs.h"
# Line 57 | Line 58 | static int display_type = DISPLAY_WINDOW
58   static struct Screen *the_screen = NULL;
59   static struct Window *the_win = NULL;
60   static struct BitMap *the_bitmap = NULL;
61 + static UWORD *null_pointer = NULL;                              // Blank mouse pointer data
62 + static UWORD *current_pointer = (UWORD *)-1;    // Currently visible mouse pointer data
63   static LONG black_pen = -1, white_pen = -1;
64   static struct Process *periodic_proc = NULL;    // Periodic process
65  
# Line 92 | Line 95 | static void periodic_func(void);
95   *  Initialization
96   */
97  
98 + // Add resolution to list of supported modes and set VideoMonitor
99 + static void set_video_monitor(uint32 width, uint32 height, uint32 bytes_per_row, int depth)
100 + {
101 +        video_mode mode;
102 +
103 +        mode.x = width;
104 +        mode.y = height;
105 +        mode.resolution_id = 0x80;
106 +        mode.bytes_per_row = bytes_per_row;
107 +
108 +        switch (depth) {
109 +                case 1:
110 +                        mode.depth = VDEPTH_1BIT;
111 +                        break;
112 +                case 2:
113 +                        mode.depth = VDEPTH_2BIT;
114 +                        break;
115 +                case 4:
116 +                        mode.depth = VDEPTH_4BIT;
117 +                        break;
118 +                case 8:
119 +                        mode.depth = VDEPTH_8BIT;
120 +                        break;
121 +                case 15:
122 +                case 16:
123 +                        mode.depth = VDEPTH_16BIT;
124 +                        break;
125 +                case 24:
126 +                case 32:
127 +                        mode.depth = VDEPTH_32BIT;
128 +                        break;
129 +        }
130 +
131 +        VideoModes.push_back(mode);
132 +        VideoMonitor.mode = mode;
133 + }
134 +
135   // Open window
136   static bool init_window(int width, int height)
137   {
# Line 125 | Line 165 | static bool init_window(int width, int h
165                  return false;
166          }
167  
168 <        // Set VideoMonitor
168 >        // Add resolution and set VideoMonitor
169 >        set_video_monitor(width, height, the_bitmap->BytesPerRow, 1);
170          VideoMonitor.mac_frame_base = (uint32)the_bitmap->Planes[0];
130        VideoMonitor.bytes_per_row = the_bitmap->BytesPerRow;
131        VideoMonitor.x = width;
132        VideoMonitor.y = height;
133        VideoMonitor.mode = VMODE_1BIT;
171  
172          // Set FgPen and BgPen
173          black_pen = ObtainBestPenA(the_win->WScreen->ViewPort.ColorMap, 0, 0, 0, NULL);
# Line 176 | Line 213 | static bool init_pip(int width, int heig
213          // Find bitmap
214          p96PIP_GetTags(the_win, P96PIP_SourceBitMap, (ULONG)&the_bitmap, TAG_END);
215  
216 <        // Set VideoMonitor
216 >        // Add resolution and set VideoMonitor
217          VideoMonitor.mac_frame_base = p96GetBitMapAttr(the_bitmap, P96BMA_MEMORY);
218 <        VideoMonitor.bytes_per_row = p96GetBitMapAttr(the_bitmap, P96BMA_BYTESPERROW);
182 <        VideoMonitor.x = width;
183 <        VideoMonitor.y = height;
184 <        VideoMonitor.mode = VMODE_16BIT;
218 >        set_video_monitor(width, height, p96GetBitMapAttr(the_bitmap, P96BMA_BYTESPERROW), 16);
219          return true;
220   }
221  
# Line 197 | Line 231 | static bool init_screen_p96(ULONG mode_i
231  
232          switch (depth) {
233                  case 8:
200                        VideoMonitor.mode = VMODE_8BIT;
234                          break;
235                  case 15:
236                  case 16:
# Line 205 | Line 238 | static bool init_screen_p96(ULONG mode_i
238                                  ErrorAlert(GetString(STR_WRONG_SCREEN_FORMAT_ERR));
239                                  return false;
240                          }
208                        VideoMonitor.mode = VMODE_16BIT;
241                          break;
242                  case 24:
243                  case 32:
# Line 213 | Line 245 | static bool init_screen_p96(ULONG mode_i
245                                  ErrorAlert(GetString(STR_WRONG_SCREEN_FORMAT_ERR));
246                                  return false;
247                          }
216                        VideoMonitor.mode = VMODE_32BIT;
248                          break;
249                  default:
250                          ErrorAlert(GetString(STR_WRONG_SCREEN_DEPTH_ERR));
# Line 224 | Line 255 | static bool init_screen_p96(ULONG mode_i
255          uint32 width = p96GetModeIDAttr(mode_id, P96IDA_WIDTH);
256          uint32 height = p96GetModeIDAttr(mode_id, P96IDA_HEIGHT);
257  
227        VideoMonitor.x = width;
228        VideoMonitor.y = height;
229
258          // Open screen
259          the_screen = p96OpenScreenTags(
260                  P96SA_DisplayID, mode_id,
# Line 259 | Line 287 | static bool init_screen_p96(ULONG mode_i
287                  return false;
288          }
289  
262        // Set VideoMonitor
290          ScreenToFront(the_screen);
291 +
292 +        // Add resolution and set VideoMonitor
293 +        set_video_monitor(width, height, p96GetBitMapAttr(the_screen->RastPort.BitMap, P96BMA_BYTESPERROW), depth);
294          VideoMonitor.mac_frame_base = p96GetBitMapAttr(the_screen->RastPort.BitMap, P96BMA_MEMORY);
265        VideoMonitor.bytes_per_row = p96GetBitMapAttr(the_screen->RastPort.BitMap, P96BMA_BYTESPERROW);
295          return true;
296   }
297  
# Line 278 | Line 307 | static bool init_screen_cgfx(ULONG mode_
307  
308          switch (depth) {
309                  case 8:
281                        VideoMonitor.mode = VMODE_8BIT;
310                          break;
311                  case 15:
312                  case 16:
313 <                        if (format != PIXFMT_RGB16) {
313 >                        // !!! PIXFMT_RGB15 is correct !!!
314 >                        if (format != PIXFMT_RGB15) {
315                                  ErrorAlert(GetString(STR_WRONG_SCREEN_FORMAT_ERR));
316                                  return false;
317                          }
289                        VideoMonitor.mode = VMODE_16BIT;
318                          break;
319                  case 24:
320                  case 32:
# Line 294 | Line 322 | static bool init_screen_cgfx(ULONG mode_
322                                  ErrorAlert(GetString(STR_WRONG_SCREEN_FORMAT_ERR));
323                                  return false;
324                          }
297                        VideoMonitor.mode = VMODE_32BIT;
325                          break;
326                  default:
327                          ErrorAlert(GetString(STR_WRONG_SCREEN_DEPTH_ERR));
# Line 305 | Line 332 | static bool init_screen_cgfx(ULONG mode_
332          uint32 width = GetCyberIDAttr(CYBRIDATTR_WIDTH, mode_id);
333          uint32 height = GetCyberIDAttr(CYBRIDATTR_HEIGHT, mode_id);
334  
308        VideoMonitor.x = width;
309        VideoMonitor.y = height;
310
335          // Open screen
336          the_screen = OpenScreenTags(NULL,
337                  SA_DisplayID, mode_id,
# Line 338 | Line 362 | static bool init_screen_cgfx(ULONG mode_
362                  return false;
363          }
364  
341        // Set VideoMonitor
365          ScreenToFront(the_screen);
366          static UWORD ptr[] = { 0, 0, 0, 0 };
367          SetPointer(the_win, ptr, 0, 0, 0, 0);   // Hide mouse pointer
368 +
369 +        // Set VideoMonitor
370 +        ULONG frame_base;
371          APTR handle = LockBitMapTags(the_screen->RastPort.BitMap,
372 <                        LBMI_BASEADDRESS, (ULONG)&VideoMonitor.mac_frame_base,
373 <                        TAG_END);
372 >                LBMI_BASEADDRESS, (ULONG)&frame_base,
373 >                TAG_END
374 >        );
375          UnLockBitMap(handle);
376 <        VideoMonitor.bytes_per_row = GetCyberMapAttr(the_screen->RastPort.BitMap, CYBRMATTR_XMOD);
376 >        set_video_monitor(width, height, GetCyberMapAttr(the_screen->RastPort.BitMap, CYBRMATTR_XMOD), depth);
377 >        VideoMonitor.mac_frame_base = frame_base;
378          return true;
379   }
380  
381   bool VideoInit(bool classic)
382   {
383 +        // Allocate blank mouse pointer data
384 +        null_pointer = (UWORD *)AllocMem(12, MEMF_PUBLIC | MEMF_CHIP | MEMF_CLEAR);
385 +        if (null_pointer == NULL) {
386 +                ErrorAlert(GetString(STR_NO_MEM_ERR));
387 +                return false;
388 +        }
389 +
390          // Read frame skip prefs
391          frame_skip = PrefsFindInt32("frameskip");
392          if (frame_skip == 0)
# Line 488 | Line 523 | void VideoExit(void)
523                          }
524                          break;
525          }
526 +
527 +        // Free mouse pointer
528 +        if (null_pointer) {
529 +                FreeMem(null_pointer, 12);
530 +                null_pointer = NULL;
531 +        }
532   }
533  
534  
# Line 497 | Line 538 | void VideoExit(void)
538  
539   void video_set_palette(uint8 *pal)
540   {
541 <        if (display_type == DISPLAY_SCREEN_P96 || display_type == DISPLAY_SCREEN_CGFX) {
541 >        if ((display_type == DISPLAY_SCREEN_P96 || display_type == DISPLAY_SCREEN_CGFX)
542 >         && !IsDirectMode(VideoMonitor.mode)) {
543  
544                  // Convert palette to 32 bits
545                  ULONG table[2 + 256 * 3];
# Line 516 | Line 558 | void video_set_palette(uint8 *pal)
558  
559  
560   /*
561 + *  Switch video mode
562 + */
563 +
564 + void video_switch_to_mode(const video_mode &mode)
565 + {
566 + }
567 +
568 +
569 + /*
570   *  Video message handling (not neccessary under AmigaOS, handled by periodic_func())
571   */
572  
# Line 573 | Line 624 | static __saveds void periodic_func(void)
624  
625                          // Timer tick, update display
626                          BltTemplate(the_bitmap->Planes[0], 0, the_bitmap->BytesPerRow, the_win->RPort,
627 <                                the_win->BorderLeft, the_win->BorderTop, VideoMonitor.x, VideoMonitor.y);
627 >                                the_win->BorderLeft, the_win->BorderTop, VideoMonitor.mode.x, VideoMonitor.mode.y);
628  
629                          // Restart timer
630                          timer_io->tr_node.io_Command = TR_ADDREQUEST;
# Line 600 | Line 651 | static __saveds void periodic_func(void)
651                                          case IDCMP_MOUSEMOVE:
652                                                  if (display_type == DISPLAY_SCREEN_P96 || display_type == DISPLAY_SCREEN_CGFX)
653                                                          ADBMouseMoved(mx, my);
654 <                                                else
654 >                                                else {
655                                                          ADBMouseMoved(mx - the_win->BorderLeft, my - the_win->BorderTop);
656 +                                                        if (mx < the_win->BorderLeft
657 +                                                         || my < the_win->BorderTop
658 +                                                         || mx >= the_win->BorderLeft + VideoMonitor.mode.x
659 +                                                         || my >= the_win->BorderTop + VideoMonitor.mode.y) {
660 +                                                                if (current_pointer) {
661 +                                                                        ClearPointer(the_win);
662 +                                                                        current_pointer = NULL;
663 +                                                                }
664 +                                                        } else {
665 +                                                                if (current_pointer != null_pointer) {
666 +                                                                        // Hide mouse pointer inside window
667 +                                                                        SetPointer(the_win, null_pointer, 1, 16, 0, 0);
668 +                                                                        current_pointer = null_pointer;
669 +                                                                }
670 +                                                        }
671 +                                                }
672                                                  break;
673  
674                                          case IDCMP_MOUSEBUTTONS:
# Line 622 | Line 689 | static __saveds void periodic_func(void)
689                                          case IDCMP_RAWKEY:
690                                                  if (qualifier & IEQUALIFIER_REPEAT)     // Keyboard repeat is done by MacOS
691                                                          break;
692 +                                                if ((qualifier & (IEQUALIFIER_LALT | IEQUALIFIER_LSHIFT | IEQUALIFIER_CONTROL)) ==
693 +                                                    (IEQUALIFIER_LALT | IEQUALIFIER_LSHIFT | IEQUALIFIER_CONTROL) && code == 0x5f) {
694 +                                                        SetInterruptFlag(INTFLAG_NMI);
695 +                                                        TriggerInterrupt();
696 +                                                        break;
697 +                                                }
698 +
699                                                  if (code & IECODE_UP_PREFIX)
700                                                          ADBKeyUp(keycode2mac[code & 0x7f]);
701                                                  else

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines