From 54bf846f2159a5099276225da91c427d3b1133f3 Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 15 Apr 2014 20:59:09 +0200 Subject: canniablise my fake windows patch for redshift MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- DEPENDENCIES | 11 +-- README.md | 10 +-- TODO | 6 +- src/fake_w32gdi.c | 202 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ src/fake_w32gdi.h | 73 ++++++++++++++++++++ 5 files changed, 291 insertions(+), 11 deletions(-) create mode 100644 src/fake_w32gdi.c create mode 100644 src/fake_w32gdi.h diff --git a/DEPENDENCIES b/DEPENDENCIES index 7cba3bb..c6928cc 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -7,6 +7,9 @@ RUNTIME DEPENDENCIES: libxcb (opt-out) For RandR support and CRTC listing and ICC profile listing under X + libxcb (opt-in) + For testing Windows support on GNU/Linux under X. + libx11, libxxf86vm (opt-out) For VidMode support under X @@ -18,7 +21,7 @@ RUNTIME DEPENDENCIES: linux, adjbacklight (optional) For permission-hasslefree backlight adjustments via sysfs - + wget (optional) For weather conditions, default command @@ -28,10 +31,10 @@ MAKE DEPENDENCIES: cython gcc python3 - libxcb (opt-out, see runtime dependencies) - libx11 (opt-out, see runtime dependencies) + libxcb (opt-out/out-in, see runtime dependencies) + libx11 (opt-out, see runtime dependencies) libxxf86vm (opt-out, see runtime dependencies) - libdrm (opt-out, see runtime dependencies) + libdrm (opt-out, see runtime dependencies) make coreutils sed diff --git a/README.md b/README.md index cc3e66b..2104022 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,11 @@ modifying the colour curves. Blueshift provides no safe guards from making your screen unreadable (this feature [the lack of a feature] is used in the sleepmode example) or otherwise miscoloured; -and Blueshift will never, officially, add support -specifically for any proprietary operating system, -Free Software clones (for example ReactOS) may however -get support. Blueshift is fully extensible so it is -possible to make extensions that make it usable under +and Blueshift will never, officially, be tested on any +proprietary operating system. It may however add +theoretical support and be tested on Free Software clones +(for example ReactOS). Blueshift is fully extensible so it +is possible to make extensions that make it usable under unsupported systems, the base code is written in Python 3 without calls to any system dependent functions (with exception for fallbacks.) This is not necessarily true diff --git a/TODO b/TODO index 38085e6..0c2fcb9 100644 --- a/TODO +++ b/TODO @@ -24,8 +24,10 @@ Future stuff: How is it looking on the DirectFB front? Test on the BSD:s Add support for the BSD:s' TTY:s - Add reactos support (this way windows might get supported without my - computer or soul being violated with proprietary software.) + Test on ReactOS support (this way windows might get supported without + my computer or soul being violated with proprietary software.) + (Does ReactOS support support gamma ramps? It does not, + it should be enough that everything else works.) Make an example that warns about UPS states (not too important, you should have that in /etc/inittab) diff --git a/src/fake_w32gdi.c b/src/fake_w32gdi.c new file mode 100644 index 0000000..df8fe7e --- /dev/null +++ b/src/fake_w32gdi.c @@ -0,0 +1,202 @@ +/** + * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#include "fake-w32gdi.h" + +#include +#include +#include + +#include +#include + + +/* This file very sloppily translates Windows GDI calls to X RandR calls. + It should by no means be used, without additional modification, as a + part of a compatibility layer. The purpose of this file is only to make + it possible to test for logical errors in Windows specific code on + a GNU/Linux system under X. */ + + +#define GAMMA_RAMP_SIZE 256 + + +static xcb_connection_t* conn = NULL; +static size_t dc_count = 0; +static ssize_t crtc_count = -1; +static xcb_randr_crtc_t* crtcs = NULL; +static xcb_randr_get_screen_resources_current_reply_t* res_reply = NULL; + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd144871(v=vs.85).aspx */ +HDC GetDC(HWND hWnd) +{ + (void) hWnd; + return CreateDC(TEXT("DISPLAY"), "0", NULL, NULL); +} + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd162920(v=vs.85).aspx */ +int ReleaseDC(HWND hWnd, HDC hDC) +{ + (void) hWnd; + (void) hDC; + + dc_count--; + if (dc_count == 0) { + if (conn != NULL) + xcb_disconnect(conn); + conn = NULL; + if (res_reply != NULL) + free(res_reply); + res_reply = NULL; + } + + return 1; +} + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd144877(v=vs.85).aspx */ +int GetDeviceCaps(HDC hDC, int nIndex) +{ + (void) hDC; + + return CM_GAMMA_RAMP + nIndex - COLORMGMTCAPS; +} + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd372194(v=vs.85).aspx */ +BOOL SetDeviceGammaRamp(HDC hDC, LPVOID lpRamp) +{ + xcb_void_cookie_t gamma_cookie = + xcb_randr_set_crtc_gamma_checked(conn, *(xcb_randr_crtc_t*)hDC, GAMMA_RAMP_SIZE, + ((uint16_t *)lpRamp) + 0 * GAMMA_RAMP_SIZE, + ((uint16_t *)lpRamp) + 1 * GAMMA_RAMP_SIZE, + ((uint16_t *)lpRamp) + 2 * GAMMA_RAMP_SIZE); + xcb_generic_error_t* error = xcb_request_check(conn, gamma_cookie); + return error == NULL ? TRUE : FALSE; +} + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd316946(v=vs.85).aspx */ +BOOL GetDeviceGammaRamp(HDC hDC, LPVOID lpRamp) +{ + xcb_randr_get_crtc_gamma_cookie_t gamma_cookie; + xcb_randr_get_crtc_gamma_reply_t* gamma_reply; + xcb_generic_error_t* error; + + gamma_cookie = xcb_randr_get_crtc_gamma(conn, *(xcb_randr_crtc_t*)hDC); + gamma_reply = xcb_randr_get_crtc_gamma_reply(conn, gamma_cookie, &error); + + if (error) return FALSE; + +#define DEST_RAMP(I) (((uint16_t*)lpRamp) + (I) * GAMMA_RAMP_SIZE) +#define SRC_RAMP(C) (xcb_randr_get_crtc_gamma_##C(gamma_reply)) + + memcpy(DEST_RAMP(0), SRC_RAMP(red), GAMMA_RAMP_SIZE * sizeof(uint16_t)); + memcpy(DEST_RAMP(1), SRC_RAMP(green), GAMMA_RAMP_SIZE * sizeof(uint16_t)); + memcpy(DEST_RAMP(2), SRC_RAMP(blue), GAMMA_RAMP_SIZE * sizeof(uint16_t)); + +#undef SRC_RAMP +#undef DEST_RAMP + + free(gamma_reply); + return TRUE; +} + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd183490(v=vs.85).aspx */ +HDC CreateDC(LPCTSTR lpszDriver, LPCTSTR lpszDevice, void *lpszOutput, void *lpInitData) +{ + (void) lpszOutput; + (void) lpInitData; + + if (strcmp(lpszDriver, "DISPLAY")) + return NULL; + + int crtc_index = atoi(lpszDevice); + + if (dc_count == 0) + { + xcb_generic_error_t *error; + xcb_screen_iterator_t iter; + xcb_randr_get_screen_resources_current_cookie_t res_cookie; + + conn = xcb_connect(NULL, NULL); + + iter = xcb_setup_roots_iterator(xcb_get_setup(conn)); + res_cookie = xcb_randr_get_screen_resources_current(conn, iter.data->root); + res_reply = xcb_randr_get_screen_resources_current_reply(conn, res_cookie, &error); + + if (error) + { + xcb_disconnect(conn); + crtc_count = -1; + return NULL; + } + + crtc_count = res_reply->num_crtcs; + crtcs = xcb_randr_get_screen_resources_current_crtcs(res_reply); + } + + if (crtc_index >= crtc_count) + { + if (dc_count == 0) + { + xcb_disconnect(conn); + crtc_count = -1; + } + return NULL; + } + + dc_count++; + return crtcs + crtc_index; +} + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd162609(v=vs.85).aspx */ +BOOL EnumDisplayDevices(LPCTSTR lpDevice, DWORD iDevNum, PDISPLAY_DEVICE lpDisplayDevice, DWORD dwFlags) +{ + (void) dwFlags; + + size_t count = (size_t)crtc_count; + if (lpDevice != NULL) + { + fprintf(stderr, "lpDevice (argument 1) for EnumDisplayDevices should be NULL\n"); + abort(); + return FALSE; + } + if (crtc_count < 0) + { + if (GetDC(NULL) == NULL) + return FALSE; + dc_count = 0; + count = (size_t)crtc_count; + ReleaseDC(NULL, NULL); + } + if (iDevNum >= count) + return FALSE; + if (lpDisplayDevice->cb != sizeof(DISPLAY_DEVICE)) + { + fprintf(stderr, "lpDisplayDevice->cb for EnumDisplayDevices is not sizeof(DISPLAY_DEVICE)\n"); + abort(); + return FALSE; + } + sprintf(lpDisplayDevice->DeviceName, "%i", iDevNum); + lpDisplayDevice->StateFlags = DISPLAY_DEVICE_ACTIVE; + return TRUE; +} + diff --git a/src/fake_w32gdi.h b/src/fake_w32gdi.h new file mode 100644 index 0000000..7347caf --- /dev/null +++ b/src/fake_w32gdi.h @@ -0,0 +1,73 @@ +/** + * Copyright © 2014 Mattias Andrée (maandree@member.fsf.org) + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ +#ifndef BLUESHIFT_FAKE_W32GDI_H +#define BLUESHIFT_FAKE_W32GDI_H + +#include + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/aa383751(v=vs.85).aspx */ +typedef uint16_t WORD; +typedef uint32_t DWORD; +typedef int BOOL; +typedef void *HDC; +typedef void *HWND; +typedef void *LPVOID; +typedef const char *LPCTSTR; +typedef char TCHAR; +#define TRUE 1 +#define FALSE 0 + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd144871(v=vs.85).aspx */ +HDC GetDC(HWND hWnd); + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd162920(v=vs.85).aspx */ +int ReleaseDC(HWND hWnd, HDC hDC); + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd144877(v=vs.85).aspx */ +int GetDeviceCaps(HDC hDC, int nIndex) __attribute__((const)); +#define COLORMGMTCAPS 1 +#define CM_GAMMA_RAMP 1 + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd372194(v=vs.85).aspx */ +BOOL SetDeviceGammaRamp(HDC hDC, LPVOID lpRamp); + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd316946(v=vs.85).aspx */ +BOOL GetDeviceGammaRamp(HDC hDC, LPVOID lpRamp); + + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd183490(v=vs.85).aspx */ +HDC CreateDC(LPCTSTR lpszDriver, LPCTSTR lpszDevice, void *lpszOutput, void *lpInitData); +#define TEXT(X) ((LPCTSTR)(X)) + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd183569(v=vs.85).aspx */ +typedef struct { + DWORD cb; + TCHAR DeviceName[32]; + DWORD StateFlags; +} DISPLAY_DEVICE; +typedef DISPLAY_DEVICE *PDISPLAY_DEVICE; +#define DISPLAY_DEVICE_ACTIVE 1 + +/* http://msdn.microsoft.com/en-us/library/windows/desktop/dd162609(v=vs.85).aspx */ +BOOL EnumDisplayDevices(LPCTSTR lpDevice, DWORD iDevNum, PDISPLAY_DEVICE lpDisplayDevice, DWORD dwFlags); + + +#endif + -- cgit v1.2.3-70-g09d2