Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
307 lines (254 loc) · 7.72 KB

SDL_bmodes.cc

File metadata and controls

307 lines (254 loc) · 7.72 KB
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
Simple DirectMedia Layer
Copyright (C) 1997-2011 Sam Lantinga <slouken@libsdl.org>
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must not
claim that you wrote the original software. If you use this software
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original software.
3. This notice may not be removed or altered from any source distribution.
*/
Jul 20, 2011
Jul 20, 2011
24
25
26
#include <AppKit.h>
#include <InterfaceKit.h>
#include "SDL_bmodes.h"
Jul 22, 2011
Jul 22, 2011
27
#include "SDL_BWin.h"
Jul 20, 2011
Jul 20, 2011
29
30
31
32
#include "../../main/beos/SDL_BApp.h"
#ifdef __cplusplus
extern "C" {
Jul 20, 2011
Jul 20, 2011
34
Jul 22, 2011
Jul 22, 2011
35
36
37
static inline SDL_BWin *_ToBeWin(SDL_Window *window) {
return ((SDL_BWin*)(window->driverdata));
}
Jul 20, 2011
Jul 20, 2011
38
39
40
41
42
43
44
45
static inline SDL_BApp *_GetBeApp() {
return ((SDL_BApp*)be_app);
}
/* Copied from haiku/trunk/src/preferences/screen/ScreenMode.cpp */
static float get_refresh_rate(display_mode &mode) {
Jul 22, 2011
Jul 22, 2011
46
47
return float(mode.timing.pixel_clock * 1000)
/ float(mode.timing.h_total * mode.timing.v_total);
Jul 20, 2011
Jul 20, 2011
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
}
static inline int ColorSpaceToBitsPerPixel(uint32 colorspace)
{
int bitsperpixel;
bitsperpixel = 0;
switch (colorspace) {
case B_CMAP8:
bitsperpixel = 8;
break;
case B_RGB15:
case B_RGBA15:
case B_RGB15_BIG:
case B_RGBA15_BIG:
bitsperpixel = 15;
break;
case B_RGB16:
case B_RGB16_BIG:
bitsperpixel = 16;
break;
case B_RGB32:
case B_RGBA32:
case B_RGB32_BIG:
case B_RGBA32_BIG:
bitsperpixel = 32;
break;
default:
break;
}
return(bitsperpixel);
}
Jul 22, 2011
Jul 22, 2011
81
static inline int32 BPPToSDLPxFormat(int32 bpp) {
Jul 20, 2011
Jul 20, 2011
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
/* Translation taken from SDL_windowsmodes.c */
switch (bpp) {
case 32:
return SDL_PIXELFORMAT_RGB888;
break;
case 24: /* May not be supported by Haiku */
return SDL_PIXELFORMAT_RGB24;
break;
case 16:
return SDL_PIXELFORMAT_RGB565;
break;
case 15:
return SDL_PIXELFORMAT_RGB555;
break;
case 8:
return SDL_PIXELFORMAT_INDEX8;
break;
case 4: /* May not be supported by Haiku */
return SDL_PIXELFORMAT_INDEX4LSB;
break;
}
}
static inline void BE_BDisplayModeToSdlDisplayMode(display_mode *bmode,
SDL_DisplayMode *mode) {
mode->w = bmode->virtual_width;
mode->h = bmode->virtual_height;
mode->refresh_rate = (int)get_refresh_rate(*bmode);
mode->driverdata = bmode; /* This makes setting display
modes easier */
/* Set the format */
int32 bpp = ColorSpaceToBitsPerPixel(bmode->space);
Jul 22, 2011
Jul 22, 2011
115
mode->format = BPPToSDLPxFormat(bpp);
Jul 20, 2011
Jul 20, 2011
116
117
118
119
120
}
/* Later, there may be more than one monitor available */
void BE_AddDisplay(BScreen *screen) {
SDL_VideoDisplay display;
Jul 25, 2011
Jul 25, 2011
121
SDL_DisplayMode *mode = (SDL_DisplayMode*)SDL_calloc(1, sizeof(SDL_DisplayMode));
Jul 20, 2011
Jul 20, 2011
122
123
124
display_mode bmode;
screen->GetMode(&bmode);
Jul 25, 2011
Jul 25, 2011
125
BE_BDisplayModeToSdlDisplayMode(&bmode, mode);
Jul 20, 2011
Jul 20, 2011
126
127
SDL_zero(display);
Jul 25, 2011
Jul 25, 2011
128
129
display.desktop_mode = *mode;
display.current_mode = *mode;
Jul 20, 2011
Jul 20, 2011
130
131
132
133
134
135
136
137
138
139
140
141
142
SDL_AddVideoDisplay(&display);
}
int BE_InitModes(_THIS) {
BScreen screen;
/* Save the current display mode */
display_mode *prevMode;
screen.GetMode(prevMode);
_GetBeApp()->SetPrevMode(prevMode);
/* Only one possible video display right now */
BE_AddDisplay(&screen);
143
144
145
}
int BE_QuitModes(_THIS) {
Jul 25, 2011
Jul 25, 2011
146
printf(__FILE__": %d; Begin quit\n", __LINE__);
Jul 20, 2011
Jul 20, 2011
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/* Restore the previous video mode */
BScreen screen;
display_mode *savedMode = _GetBeApp()->GetPrevMode();
screen.SetMode(savedMode);
return 0;
}
int BE_GetDisplayBounds(_THIS, SDL_VideoDisplay *display, SDL_Rect *rect) {
BScreen bscreen;
BRect rc = bscreen.Frame();
rect->x = (int)rc.left;
rect->y = (int)rc.top;
rect->w = (int)rc.Width() + 1;
rect->h = (int)rc.Height() + 1;
return 0;
}
void BE_GetDisplayModes(_THIS, SDL_VideoDisplay *display) {
/* Get the current screen */
BScreen bscreen;
Jul 25, 2011
Jul 25, 2011
168
Jul 20, 2011
Jul 20, 2011
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
/* Iterate through all of the modes */
SDL_DisplayMode mode;
display_mode this_bmode;
display_mode *bmodes;
uint32 count, i;
/* Get graphics-hardware supported modes */
bscreen.GetModeList(&bmodes, &count);
bscreen.GetMode(&this_bmode);
for(i = 0; i < count; ++i) {
//FIXME: Apparently there are errors with colorspace changes
if (bmodes[i].space == this_bmode.space) {
BE_BDisplayModeToSdlDisplayMode(&bmodes[i], &mode);
SDL_AddDisplayMode(display, &mode);
Jul 20, 2011
Jul 20, 2011
186
187
free(bmodes);
}
Jul 20, 2011
Jul 20, 2011
189
190
191
192
193
194
195
196
int BE_SetDisplayMode(_THIS, SDL_VideoDisplay *display, SDL_DisplayMode *mode){
/* Get the current screen */
BScreen bscreen;
/* Set the mode using the driver data */
display_mode *bmode = (display_mode*)mode->driverdata;
if(bscreen.SetMode(bmode) == B_OK) {
return 0; /* No error */
Jul 20, 2011
Jul 20, 2011
198
199
return -1;
Jul 20, 2011
Jul 20, 2011
201
Jul 22, 2011
Jul 22, 2011
202
203
204
205
206
207
208
209
210
211
212
int BE_CreateWindowFramebuffer(_THIS, SDL_Window * window,
Uint32 * format,
void ** pixels, int *pitch) {
SDL_BWin *bwin = _ToBeWin(window);
BScreen bscreen;
if(!bscreen.IsValid()) {
return -1;
}
Jul 25, 2011
Jul 25, 2011
213
while(!bwin->Connected()) { snooze(10); }
Jul 22, 2011
Jul 22, 2011
214
215
216
217
218
219
220
221
/* Make sure we have exclusive access to frame buffer data */
bwin->LockBuffer();
/* format */
display_mode bmode;
bscreen.GetMode(&bmode);
int32 bpp = ColorSpaceToBitsPerPixel(bmode.space);
Jul 22, 2011
Jul 22, 2011
222
*format = BPPToSDLPxFormat(bpp);
Jul 22, 2011
Jul 22, 2011
223
224
/* pitch = width of screen, in bytes */
Jul 22, 2011
Jul 22, 2011
225
*pitch = bwin->GetFbWidth() * bwin->GetBytesPerPx();
Jul 22, 2011
Jul 22, 2011
226
Jul 22, 2011
Jul 22, 2011
227
228
/* Create a copy of the pixel buffer if it doesn't recycle */
*pixels = bwin->GetWindowFramebuffer();
Jul 25, 2011
Jul 25, 2011
229
if( bwin->CanTrashWindowBuffer() || (*pixels) == NULL) {
Jul 22, 2011
Jul 22, 2011
230
231
232
233
234
235
236
if( (*pixels) != NULL ) {
SDL_free(*pixels);
}
*pixels = SDL_calloc((*pitch) * bwin->GetFbHeight() *
bwin->GetBytesPerPx(), sizeof(uint8));
bwin->SetWindowFramebuffer((uint8*)(*pixels));
}
Jul 22, 2011
Jul 22, 2011
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
bwin->UnlockBuffer();
return 0;
}
int BE_UpdateWindowFramebuffer(_THIS, SDL_Window * window,
SDL_Rect * rects, int numrects) {
SDL_BWin *bwin = _ToBeWin(window);
BScreen bscreen;
if(!bscreen.IsValid()) {
return -1;
}
if(bwin->ConnectionEnabled() && bwin->Connected()) {
bwin->LockBuffer();
int32 windowPitch = window->surface->pitch;
int32 bufferPitch = bwin->GetRowBytes();
uint8 *windowpx;
uint8 *bufferpx;
Jul 22, 2011
Jul 22, 2011
259
int32 BPP = bwin->GetBytesPerPx();
Jul 22, 2011
Jul 22, 2011
260
uint8 *windowBaseAddress = (uint8*)window->surface->pixels;
Jul 22, 2011
Jul 22, 2011
261
int32 windowSub = bwin->GetFbX() * BPP +
Jul 22, 2011
Jul 22, 2011
262
263
264
265
266
267
268
269
bwin->GetFbY() * windowPitch;
clipping_rect *clips = bwin->GetClips();
int32 numClips = bwin->GetNumClips();
int i, y;
/* Blit each clipping rectangle */
bscreen.WaitForRetrace();
for(i = 0; i < numClips; ++i) {
Jul 25, 2011
Jul 25, 2011
270
clipping_rect rc = clips[i];
Jul 22, 2011
Jul 22, 2011
271
272
273
274
/* Get addresses of the start of each clipping rectangle */
int32 width = clips[i].right - clips[i].left + 1;
int32 height = clips[i].bottom - clips[i].top + 1;
bufferpx = bwin->GetBufferPx() +
Jul 22, 2011
Jul 22, 2011
275
clips[i].top * bufferPitch + clips[i].left * BPP;
Jul 22, 2011
Jul 22, 2011
276
windowpx = windowBaseAddress +
Jul 22, 2011
Jul 22, 2011
277
clips[i].top * windowPitch + clips[i].left * BPP - windowSub;
Jul 25, 2011
Jul 25, 2011
278
Jul 22, 2011
Jul 22, 2011
279
280
281
282
/* Copy each row of pixels from the window buffer into the frame
buffer */
for(y = 0; y < height; ++y)
{
Jul 22, 2011
Jul 22, 2011
283
memcpy(bufferpx, windowpx, width * BPP);
Jul 22, 2011
Jul 22, 2011
284
285
286
287
288
289
290
291
292
293
bufferpx += bufferPitch;
windowpx += windowPitch;
}
}
bwin->UnlockBuffer();
}
return 0;
}
void BE_DestroyWindowFramebuffer(_THIS, SDL_Window * window) {
Jul 22, 2011
Jul 22, 2011
294
295
296
297
298
299
300
301
302
SDL_BWin *bwin = _ToBeWin(window);
bwin->LockBuffer();
/* Free and clear the window buffer */
uint8* winBuffer = bwin->GetWindowFramebuffer();
SDL_free(winBuffer);
bwin->SetWindowFramebuffer(NULL);
bwin->UnlockBuffer();
Jul 22, 2011
Jul 22, 2011
303
304
}
Jul 20, 2011
Jul 20, 2011
305
306
307
#ifdef __cplusplus
}
#endif