source: Daodan/src/daodan_gl.c@ 322

Last change on this file since 322 was 316, checked in by rossy, 16 years ago

custom resoultions :)

File size: 2.7 KB
RevLine 
[297]1#include "daodan_gl.h"
2
[316]3#define max_modes (104) // Dirty hack to add more resolutions, it really should only be 16 ^_^
4#define builtin_modes (sizeof(daodan_reslist) / sizeof(M3tDisplayMode))
5#define builtin_depths (sizeof(daodan_resdepths) / sizeof(short))
[297]6
7const M3tDisplayMode daodan_reslist[] = {
[316]8 { 720 , 480, 0, 0 },
9 { 720 , 576, 0, 0 },
10 { 768 , 480, 0, 0 },
11 { 800 , 480, 0, 0 },
12 { 852 , 480, 0, 0 },
13 { 856 , 480, 0, 0 },
14 { 960 , 540, 0, 0 },
15 { 960 , 720, 0, 0 },
16 { 1024, 576, 0, 0 },
17 { 1024, 600, 0, 0 },
18 { 1024, 640, 0, 0 },
[297]19 { 1024, 768, 0, 0 },
[316]20 { 1152, 768, 0, 0 },
21 { 1152, 864, 0, 0 },
22 { 1280, 720, 0, 0 },
23 { 1280, 768, 0, 0 },
24 { 1280, 800, 0, 0 },
25 { 1280, 960, 0, 0 },
[297]26 { 1280, 1024, 0, 0 },
[316]27 { 1366, 768, 0, 0 },
28 { 1400, 1050, 0, 0 },
29 { 1440, 900, 0, 0 },
30 { 1600, 900, 0, 0 },
[297]31 { 1600, 1200, 0, 0 },
32 { 1920, 1080, 0, 0 },
[316]33 { 1920, 1440, 0, 0 },
[297]34};
35
[316]36const short daodan_resdepths[] = { 16, 32 };
[297]37
[316]38unsigned int ONICALL daodan_enumerate_valid_display_modes(M3tDisplayMode modes[max_modes])
[297]39{
40 unsigned int vmodes = 0;
41 unsigned int screen_x = GetSystemMetrics(SM_CXSCREEN);
42 unsigned int screen_y = GetSystemMetrics(SM_CYSCREEN);
43
44 int i, j;
45
[316]46 for (i = 0; i < builtin_depths; i ++)
[297]47 {
[316]48 modes[vmodes].Width = 640;
49 modes[vmodes].Height = 480;
50 modes[vmodes].Depth = daodan_resdepths[i];
51
52 if (++vmodes == max_modes - builtin_modes + i)
53 goto modesfull;
54
55 for (j = 0; j < builtin_modes; j ++)
56 if (!(daodan_reslist[j].Width == 640 && daodan_reslist[j].Height == 480) && !(daodan_reslist[j].Width == screen_x && daodan_reslist[j].Height == screen_y) &&
57 ((daodan_reslist[j].Width < screen_x && daodan_reslist[j].Height < screen_y) || daodan_testmode(daodan_reslist[j])))
[297]58 {
59 modes[vmodes].Width = daodan_reslist[j].Width;
60 modes[vmodes].Height = daodan_reslist[j].Height;
[316]61 modes[vmodes].Depth = daodan_resdepths[i];
[297]62
[316]63 if (++vmodes == max_modes - builtin_modes + i)
[297]64 goto modesfull;
65 }
66
67 modes[vmodes].Width = GetSystemMetrics(SM_CXSCREEN);
68 modes[vmodes].Height = GetSystemMetrics(SM_CYSCREEN);
[316]69 modes[vmodes].Depth = daodan_resdepths[i];
70
71 if (++vmodes == max_modes - builtin_modes + i)
[297]72 goto modesfull;
73 }
74
75 modesfull:
76 return vmodes;
77}
[316]78
79bool daodan_testmode(M3tDisplayMode mode)
80{
81 DEVMODE devmode;
82 memset(&devmode, 0, sizeof(devmode));
83
84 devmode.dmSize = sizeof(devmode);
85 devmode.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT;
86 devmode.dmBitsPerPel = mode.Depth;
87 devmode.dmPelsWidth = mode.Width;
88 devmode.dmPelsHeight = mode.Height;
89
90 return (ChangeDisplaySettings(&devmode, CDS_TEST) == DISP_CHANGE_SUCCESSFUL);
91}
Note: See TracBrowser for help on using the repository browser.