| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188 |
- /*
- ** Command & Conquer Renegade(tm)
- ** Copyright 2025 Electronic Arts Inc.
- **
- ** 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 <http://www.gnu.org/licenses/>.
- */
- //////////////////////////////////////////////////////////////////////////////////////////
- //
- // Utils.cpp
- //
- //
- #include "StdAfx.H"
- #include "ColorUtils.H"
- /////////////////////////////////////////////////////////////////////////////
- //
- // Draw_Sunken_Rect
- //
- void
- Draw_Sunken_Rect
- (
- UCHAR *pbits,
- const RECT &rect,
- int scanline_size
- )
- {
- int width = rect.right - rect.left;
- int height = rect.bottom - rect.top;
- // Draw the 4 lines that compose the rectangle
- ::Draw_Vert_Line (pbits, rect.left, rect.top, height, ::GetSysColor (COLOR_3DSHADOW), scanline_size);
- ::Draw_Vert_Line (pbits, rect.right-1, rect.top, height, ::GetSysColor (COLOR_3DHIGHLIGHT), scanline_size);
- ::Draw_Horz_Line (pbits, rect.left, rect.top, width, ::GetSysColor (COLOR_3DSHADOW), scanline_size);
- ::Draw_Horz_Line (pbits, rect.left, rect.bottom-1, width, ::GetSysColor (COLOR_3DHIGHLIGHT), scanline_size);
- return ;
- }
- /////////////////////////////////////////////////////////////////////////////
- //
- // Draw_Raised_Rect
- //
- void
- Draw_Raised_Rect
- (
- UCHAR *pbits,
- const RECT &rect,
- int scanline_size
- )
- {
- int width = rect.right - rect.left;
- int height = rect.bottom - rect.top;
- // Draw the 4 lines that compose the rectangle
- ::Draw_Vert_Line (pbits, rect.left, rect.top, height, ::GetSysColor (COLOR_3DHIGHLIGHT), scanline_size);
- ::Draw_Vert_Line (pbits, rect.right-1, rect.top, height, ::GetSysColor (COLOR_3DSHADOW), scanline_size);
- ::Draw_Horz_Line (pbits, rect.left, rect.top, width, ::GetSysColor (COLOR_3DHIGHLIGHT), scanline_size);
- ::Draw_Horz_Line (pbits, rect.left, rect.bottom-1, width, ::GetSysColor (COLOR_3DSHADOW), scanline_size);
- return ;
- }
- /////////////////////////////////////////////////////////////////////////////
- //
- // Frame_Rect
- //
- void
- Frame_Rect
- (
- UCHAR *pbits,
- const RECT &rect,
- COLORREF color,
- int scanline_size
- )
- {
- UCHAR red = GetRValue (color);
- UCHAR green = GetRValue (color);
- UCHAR blue = GetRValue (color);
- int index = (rect.top * scanline_size) + (rect.left * 3);
- for (int col = rect.left; col < rect.right; col ++) {
- pbits[index++] = blue;
- pbits[index++] = green;
- pbits[index++] = red;
- }
- index = ((rect.bottom-1) * scanline_size) + (rect.left * 3);
- for (col = rect.left; col < rect.right; col ++) {
- pbits[index++] = blue;
- pbits[index++] = green;
- pbits[index++] = red;
- }
-
- index = (rect.top * scanline_size) + (rect.left * 3);
- for (int row = rect.top; row < rect.bottom; row ++) {
- pbits[index] = blue;
- pbits[index + 1] = green;
- pbits[index + 2] = red;
- index += scanline_size;
- }
- index = (rect.top * scanline_size) + ((rect.right-1) * 3);
- for (row = rect.top; row < rect.bottom; row ++) {
- pbits[index] = blue;
- pbits[index + 1] = green;
- pbits[index + 2] = red;
- index += scanline_size;
- }
- return ;
- }
- /////////////////////////////////////////////////////////////////////////////
- //
- // Draw_Vert_Line
- //
- void
- Draw_Vert_Line
- (
- UCHAR *pbits,
- int x,
- int y,
- int len,
- COLORREF color,
- int scanline_size
- )
- {
- UCHAR red = GetRValue (color);
- UCHAR green = GetRValue (color);
- UCHAR blue = GetRValue (color);
- int index = (y * scanline_size) + (x * 3);
- for (int row = y; row < len; row ++) {
- pbits[index] = blue;
- pbits[index + 1] = green;
- pbits[index + 2] = red;
- index += scanline_size;
- }
- return ;
- }
- /////////////////////////////////////////////////////////////////////////////
- //
- // Draw_Horz_Line
- //
- void
- Draw_Horz_Line
- (
- UCHAR *pbits,
- int x,
- int y,
- int len,
- COLORREF color,
- int scanline_size
- )
- {
- UCHAR red = GetRValue (color);
- UCHAR green = GetRValue (color);
- UCHAR blue = GetRValue (color);
- int index = (y * scanline_size) + (x * 3);
- for (int col = x; col < len; col ++) {
- pbits[index++] = blue;
- pbits[index++] = green;
- pbits[index++] = red;
- }
- return ;
- }
|