- It's what the people want, why bother to complain? - Alt is now its own separate item titled the S-Monitor - Several variables, macros, functions, and comments have been renamed to fit this change
109 lines
2.9 KiB
C
109 lines
2.9 KiB
C
// BLANKART
|
|
//-----------------------------------------------------------------------------
|
|
// Copyright (C) 2018-2020 by Kart Krew
|
|
//
|
|
// This program is free software distributed under the
|
|
// terms of the GNU General Public License, version 2.
|
|
// See the 'LICENSE' file for more details.
|
|
//-----------------------------------------------------------------------------
|
|
/// \file k_color.h
|
|
/// \brief Skincolor & colormapping code
|
|
|
|
#ifndef __K_COLOR__
|
|
#define __K_COLOR__
|
|
|
|
#include "info.h"
|
|
#include "doomtype.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#define SKIN_RAMP_LENGTH 16
|
|
#define DEFAULT_STARTTRANSCOLOR 96
|
|
#define NUM_PALETTE_ENTRIES 256
|
|
|
|
/*--------------------------------------------------
|
|
UINT8 K_ColorRelativeLuminance(UINT8 r, UINT8 g, UINT8 b);
|
|
|
|
Gives you the brightness value of the provided RGB value, based on how the human eye interprets it.
|
|
See https://en.wikipedia.org/wiki/Relative_luminance for more info.
|
|
|
|
Input Arguments:-
|
|
r - Red component
|
|
g - Green component
|
|
b - Blue component
|
|
|
|
Return:-
|
|
Brightness value from 0 to 255.
|
|
--------------------------------------------------*/
|
|
|
|
UINT8 K_ColorRelativeLuminance(UINT8 r, UINT8 g, UINT8 b);
|
|
|
|
/*--------------------------------------------------
|
|
UINT16 K_RainbowColor(tic_t time)
|
|
|
|
Gives you a color to use for rainbow effects (like invincibility).
|
|
|
|
Input Arguments:-
|
|
time - Time offset, usually is leveltime.
|
|
|
|
Return:-
|
|
Skincolor value.
|
|
--------------------------------------------------*/
|
|
|
|
UINT16 K_RainbowColor(tic_t time);
|
|
|
|
/*--------------------------------------------------
|
|
UINT16 K_SMonitorColor(tic_t time)
|
|
|
|
Gives you a color from the S-Monitor color table, for less
|
|
aggressive rainbow coloring.
|
|
|
|
Input Arguments:-
|
|
time - Time offset, usually is leveltime.
|
|
|
|
Return:-
|
|
Skincolor value.
|
|
--------------------------------------------------*/
|
|
|
|
UINT16 K_SMonitorColor(tic_t time);
|
|
|
|
/*--------------------------------------------------
|
|
void K_RainbowColormap(UINT8 *dest_colormap, skincolornum_t skincolor);
|
|
|
|
Generates a colormap to "colorize" all palette indicies
|
|
to the provided skincolor.
|
|
|
|
Input Arguments:-
|
|
dest_colormap - Colormap to populate.
|
|
skincolor - Translation color.
|
|
|
|
Return:-
|
|
None
|
|
--------------------------------------------------*/
|
|
|
|
void K_RainbowColormap(UINT8 *dest_colormap, skincolornum_t skincolor);
|
|
|
|
|
|
/*--------------------------------------------------
|
|
void K_GenerateKartColormap(UINT8 *dest_colormap, INT32 skinnum, skincolornum_t color);
|
|
|
|
Generates a translation colormap for Kart, to replace R_GenerateTranslationColormap in r_draw.c
|
|
|
|
Input Arguments:-
|
|
dest_colormap - Colormap to populate.
|
|
skinnum - Number of skin or translation mode (TC_ constants)
|
|
color - Translation color.
|
|
|
|
Return:-
|
|
None
|
|
--------------------------------------------------*/
|
|
|
|
void K_GenerateKartColormap(UINT8 *dest_colormap, INT32 skinnum, skincolornum_t color);
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C"
|
|
#endif
|
|
|
|
#endif
|