summaryrefslogtreecommitdiffstats
path: root/libfreerdp/gdi/line.c
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:24:41 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-05-04 01:24:41 +0000
commita9bcc81f821d7c66f623779fa5147e728eb3c388 (patch)
tree98676963bcdd537ae5908a067a8eb110b93486a6 /libfreerdp/gdi/line.c
parentInitial commit. (diff)
downloadfreerdp3-a9bcc81f821d7c66f623779fa5147e728eb3c388.tar.xz
freerdp3-a9bcc81f821d7c66f623779fa5147e728eb3c388.zip
Adding upstream version 3.3.0+dfsg1.upstream/3.3.0+dfsg1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'libfreerdp/gdi/line.c')
-rw-r--r--libfreerdp/gdi/line.c315
1 files changed, 315 insertions, 0 deletions
diff --git a/libfreerdp/gdi/line.c b/libfreerdp/gdi/line.c
new file mode 100644
index 0000000..95c8288
--- /dev/null
+++ b/libfreerdp/gdi/line.c
@@ -0,0 +1,315 @@
+/**
+ * FreeRDP: A Remote Desktop Protocol Implementation
+ * GDI Line Functions
+ *
+ * Copyright 2010-2011 Marc-Andre Moreau <marcandre.moreau@gmail.com>
+ * Copyright 2016 Armin Novak <armin.novak@thincast.com>
+ * Copyright 2016 Thincast Technologies GmbH
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+#include <freerdp/config.h>
+
+#include <stdio.h>
+#include <string.h>
+#include <stdlib.h>
+
+#include <winpr/assert.h>
+
+#include <freerdp/freerdp.h>
+#include <freerdp/gdi/gdi.h>
+#include <freerdp/gdi/pen.h>
+#include <freerdp/gdi/bitmap.h>
+#include <freerdp/gdi/region.h>
+
+#include "drawing.h"
+#include "clipping.h"
+#include "line.h"
+
+static BOOL gdi_rop_color(UINT32 rop, BYTE* pixelPtr, UINT32 pen, UINT32 format)
+{
+ WINPR_ASSERT(pixelPtr);
+ const UINT32 srcPixel = FreeRDPReadColor(pixelPtr, format);
+ UINT32 dstPixel = 0;
+
+ switch (rop)
+ {
+ case GDI_R2_BLACK: /* LineTo_BLACK */
+ dstPixel = FreeRDPGetColor(format, 0, 0, 0, 0xFF);
+ break;
+
+ case GDI_R2_NOTMERGEPEN: /* LineTo_NOTMERGEPEN */
+ dstPixel = ~(srcPixel | pen);
+ break;
+
+ case GDI_R2_MASKNOTPEN: /* LineTo_MASKNOTPEN */
+ dstPixel = srcPixel & ~pen;
+ break;
+
+ case GDI_R2_NOTCOPYPEN: /* LineTo_NOTCOPYPEN */
+ dstPixel = ~pen;
+ break;
+
+ case GDI_R2_MASKPENNOT: /* LineTo_MASKPENNOT */
+ dstPixel = pen & ~srcPixel;
+ break;
+
+ case GDI_R2_NOT: /* LineTo_NOT */
+ dstPixel = ~srcPixel;
+ break;
+
+ case GDI_R2_XORPEN: /* LineTo_XORPEN */
+ dstPixel = srcPixel ^ pen;
+ break;
+
+ case GDI_R2_NOTMASKPEN: /* LineTo_NOTMASKPEN */
+ dstPixel = ~(srcPixel & pen);
+ break;
+
+ case GDI_R2_MASKPEN: /* LineTo_MASKPEN */
+ dstPixel = srcPixel & pen;
+ break;
+
+ case GDI_R2_NOTXORPEN: /* LineTo_NOTXORPEN */
+ dstPixel = ~(srcPixel ^ pen);
+ break;
+
+ case GDI_R2_NOP: /* LineTo_NOP */
+ dstPixel = srcPixel;
+ break;
+
+ case GDI_R2_MERGENOTPEN: /* LineTo_MERGENOTPEN */
+ dstPixel = srcPixel | ~pen;
+ break;
+
+ case GDI_R2_COPYPEN: /* LineTo_COPYPEN */
+ dstPixel = pen;
+ break;
+
+ case GDI_R2_MERGEPENNOT: /* LineTo_MERGEPENNOT */
+ dstPixel = srcPixel | ~pen;
+ break;
+
+ case GDI_R2_MERGEPEN: /* LineTo_MERGEPEN */
+ dstPixel = srcPixel | pen;
+ break;
+
+ case GDI_R2_WHITE: /* LineTo_WHITE */
+ dstPixel = FreeRDPGetColor(format, 0xFF, 0xFF, 0xFF, 0xFF);
+ break;
+
+ default:
+ return FALSE;
+ }
+
+ return FreeRDPWriteColor(pixelPtr, format, dstPixel);
+}
+
+BOOL gdi_LineTo(HGDI_DC hdc, UINT32 nXEnd, UINT32 nYEnd)
+{
+ INT32 e2 = 0;
+ UINT32 pen = 0;
+
+ WINPR_ASSERT(hdc);
+ const INT32 rop2 = gdi_GetROP2(hdc);
+
+ const INT32 x1 = hdc->pen->posX;
+ const INT32 y1 = hdc->pen->posY;
+ const INT32 x2 = nXEnd;
+ const INT32 y2 = nYEnd;
+ const INT32 dx = (x1 > x2) ? x1 - x2 : x2 - x1;
+ const INT32 dy = (y1 > y2) ? y1 - y2 : y2 - y1;
+ const INT32 sx = (x1 < x2) ? 1 : -1;
+ const INT32 sy = (y1 < y2) ? 1 : -1;
+ INT32 e = dx - dy;
+ INT32 x = x1;
+ INT32 y = y1;
+
+ WINPR_ASSERT(hdc->clip);
+ INT32 bx1 = 0;
+ INT32 by1 = 0;
+ INT32 bx2 = 0;
+ INT32 by2 = 0;
+ if (hdc->clip->null)
+ {
+ bx1 = (x1 < x2) ? x1 : x2;
+ by1 = (y1 < y2) ? y1 : y2;
+ bx2 = (x1 > x2) ? x1 : x2;
+ by2 = (y1 > y2) ? y1 : y2;
+ }
+ else
+ {
+ bx1 = hdc->clip->x;
+ by1 = hdc->clip->y;
+ bx2 = bx1 + hdc->clip->w - 1;
+ by2 = by1 + hdc->clip->h - 1;
+ }
+
+ HGDI_BITMAP bmp = (HGDI_BITMAP)hdc->selectedObject;
+ WINPR_ASSERT(bmp);
+
+ bx1 = MAX(bx1, 0);
+ by1 = MAX(by1, 0);
+ bx2 = MIN(bx2, bmp->width - 1);
+ by2 = MIN(by2, bmp->height - 1);
+
+ if (!gdi_InvalidateRegion(hdc, bx1, by1, bx2 - bx1 + 1, by2 - by1 + 1))
+ return FALSE;
+
+ pen = gdi_GetPenColor(hdc->pen, bmp->format);
+
+ while (1)
+ {
+ if (!(x == x2 && y == y2))
+ {
+ if ((x >= bx1 && x <= bx2) && (y >= by1 && y <= by2))
+ {
+ BYTE* pixel = gdi_GetPointer(bmp, x, y);
+ WINPR_ASSERT(pixel);
+ gdi_rop_color(rop2, pixel, pen, bmp->format);
+ }
+ }
+ else
+ {
+ break;
+ }
+
+ e2 = 2 * e;
+
+ if (e2 > -dy)
+ {
+ e -= dy;
+ x += sx;
+ }
+
+ if (e2 < dx)
+ {
+ e += dx;
+ y += sy;
+ }
+ }
+
+ return TRUE;
+}
+
+/**
+ * Draw one or more straight lines
+ * @param hdc device context
+ * @param lppt array of points
+ * @param cCount number of points
+ * @return nonzero on success, 0 otherwise
+ */
+BOOL gdi_PolylineTo(HGDI_DC hdc, GDI_POINT* lppt, DWORD cCount)
+{
+ WINPR_ASSERT(hdc);
+ WINPR_ASSERT(lppt || (cCount == 0));
+
+ for (DWORD i = 0; i < cCount; i++)
+ {
+ if (!gdi_LineTo(hdc, lppt[i].x, lppt[i].y))
+ return FALSE;
+
+ if (!gdi_MoveToEx(hdc, lppt[i].x, lppt[i].y, NULL))
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
+/**
+ * Draw one or more straight lines
+ * @param hdc device context
+ * @param lppt array of points
+ * @param cPoints number of points
+ * @return nonzero on success, 0 otherwise
+ */
+BOOL gdi_Polyline(HGDI_DC hdc, GDI_POINT* lppt, UINT32 cPoints)
+{
+ WINPR_ASSERT(hdc);
+ WINPR_ASSERT(lppt || (cPoints == 0));
+
+ if (cPoints > 0)
+ {
+ GDI_POINT pt = { 0 };
+
+ if (!gdi_MoveToEx(hdc, lppt[0].x, lppt[0].y, &pt))
+ return FALSE;
+
+ for (UINT32 i = 0; i < cPoints; i++)
+ {
+ if (!gdi_LineTo(hdc, lppt[i].x, lppt[i].y))
+ return FALSE;
+
+ if (!gdi_MoveToEx(hdc, lppt[i].x, lppt[i].y, NULL))
+ return FALSE;
+ }
+
+ if (!gdi_MoveToEx(hdc, pt.x, pt.y, NULL))
+ return FALSE;
+ }
+
+ return TRUE;
+}
+
+/**
+ * Draw multiple series of connected line segments
+ * @param hdc device context
+ * @param lppt array of points
+ * @param lpdwPolyPoints array of numbers of points per series
+ * @param cCount count of entries in lpdwPolyPoints
+ * @return nonzero on success, 0 otherwise
+ */
+BOOL gdi_PolyPolyline(HGDI_DC hdc, GDI_POINT* lppt, UINT32* lpdwPolyPoints, DWORD cCount)
+{
+ DWORD j = 0;
+
+ WINPR_ASSERT(hdc);
+ WINPR_ASSERT(lppt || (cCount == 0));
+ WINPR_ASSERT(lpdwPolyPoints || (cCount == 0));
+
+ for (DWORD i = 0; i < cCount; i++)
+ {
+ const UINT32 cPoints = lpdwPolyPoints[i];
+
+ if (!gdi_Polyline(hdc, &lppt[j], cPoints))
+ return FALSE;
+
+ j += cPoints;
+ }
+
+ return TRUE;
+}
+
+/**
+ * Move pen from the current device context to a new position.
+ * @param hdc device context
+ * @param X x position
+ * @param Y y position
+ * @return nonzero on success, 0 otherwise
+ */
+
+BOOL gdi_MoveToEx(HGDI_DC hdc, UINT32 X, UINT32 Y, HGDI_POINT lpPoint)
+{
+ WINPR_ASSERT(hdc);
+
+ if (lpPoint != NULL)
+ {
+ lpPoint->x = hdc->pen->posX;
+ lpPoint->y = hdc->pen->posY;
+ }
+
+ hdc->pen->posX = X;
+ hdc->pen->posY = Y;
+ return TRUE;
+}