628 lines
21 KiB
C
628 lines
21 KiB
C
/*
|
|
* colors.c
|
|
* Copyright (C) 2016 Kovid Goyal <kovid at kovidgoyal.net>
|
|
*
|
|
* Distributed under terms of the GPL3 license.
|
|
*/
|
|
|
|
#include "state.h"
|
|
#include <structmember.h>
|
|
#include "colors.h"
|
|
|
|
|
|
static uint32_t FG_BG_256[256] = {
|
|
0x000000, // 0
|
|
0xcd0000, // 1
|
|
0x00cd00, // 2
|
|
0xcdcd00, // 3
|
|
0x0000ee, // 4
|
|
0xcd00cd, // 5
|
|
0x00cdcd, // 6
|
|
0xe5e5e5, // 7
|
|
0x7f7f7f, // 8
|
|
0xff0000, // 9
|
|
0x00ff00, // 10
|
|
0xffff00, // 11
|
|
0x5c5cff, // 12
|
|
0xff00ff, // 13
|
|
0x00ffff, // 14
|
|
0xffffff, // 15
|
|
};
|
|
|
|
static void
|
|
init_FG_BG_table(void) {
|
|
if (UNLIKELY(FG_BG_256[255] == 0)) {
|
|
// colors 16..232: the 6x6x6 color cube
|
|
const uint8_t valuerange[6] = {0x00, 0x5f, 0x87, 0xaf, 0xd7, 0xff};
|
|
uint8_t i, j=16;
|
|
for(i = 0; i < 216; i++, j++) {
|
|
uint8_t r = valuerange[(i / 36) % 6], g = valuerange[(i / 6) % 6], b = valuerange[i % 6];
|
|
FG_BG_256[j] = (r << 16) | (g << 8) | b;
|
|
}
|
|
// colors 232..255: grayscale
|
|
for(i = 0; i < 24; i++, j++) {
|
|
uint8_t v = 8 + i * 10;
|
|
FG_BG_256[j] = (v << 16) | (v << 8) | v;
|
|
}
|
|
}
|
|
}
|
|
|
|
PyObject* create_256_color_table() {
|
|
init_FG_BG_table();
|
|
PyObject *ans = PyTuple_New(arraysz(FG_BG_256));
|
|
if (ans == NULL) return PyErr_NoMemory();
|
|
for (size_t i=0; i < arraysz(FG_BG_256); i++) {
|
|
PyObject *temp = PyLong_FromUnsignedLong(FG_BG_256[i]);
|
|
if (temp == NULL) { Py_CLEAR(ans); return NULL; }
|
|
PyTuple_SET_ITEM(ans, i, temp);
|
|
}
|
|
return ans;
|
|
}
|
|
|
|
static PyObject *
|
|
new_cp(PyTypeObject *type, PyObject UNUSED *args, PyObject UNUSED *kwds) {
|
|
ColorProfile *self;
|
|
|
|
self = (ColorProfile *)type->tp_alloc(type, 0);
|
|
if (self != NULL) {
|
|
init_FG_BG_table();
|
|
memcpy(self->color_table, FG_BG_256, sizeof(FG_BG_256));
|
|
memcpy(self->orig_color_table, FG_BG_256, sizeof(FG_BG_256));
|
|
#define S(which) self->mark_foregrounds[which] = OPT(mark##which##_foreground); self->mark_backgrounds[which] = OPT(mark##which##_background)
|
|
S(1); S(2); S(3);
|
|
#undef S
|
|
self->dirty = true;
|
|
}
|
|
return (PyObject*) self;
|
|
}
|
|
|
|
static void
|
|
dealloc_cp(ColorProfile* self) {
|
|
if (self->color_stack) free(self->color_stack);
|
|
Py_TYPE(self)->tp_free((PyObject*)self);
|
|
}
|
|
|
|
ColorProfile*
|
|
alloc_color_profile() {
|
|
return (ColorProfile*)new_cp(&ColorProfile_Type, NULL, NULL);
|
|
}
|
|
|
|
|
|
static PyObject*
|
|
update_ansi_color_table(ColorProfile *self, PyObject *val) {
|
|
#define update_ansi_color_table_doc "Update the 256 basic colors"
|
|
if (!PyLong_Check(val)) { PyErr_SetString(PyExc_TypeError, "color table must be a long"); return NULL; }
|
|
unsigned long *color_table = PyLong_AsVoidPtr(val);
|
|
for (size_t i = 0; i < arraysz(FG_BG_256); i++) {
|
|
self->color_table[i] = color_table[i];
|
|
self->orig_color_table[i] = color_table[i];
|
|
}
|
|
self->dirty = true;
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
void
|
|
copy_color_profile(ColorProfile *dest, ColorProfile *src) {
|
|
memcpy(dest->color_table, src->color_table, sizeof(dest->color_table));
|
|
memcpy(dest->orig_color_table, src->orig_color_table, sizeof(dest->color_table));
|
|
memcpy(&dest->configured, &src->configured, sizeof(dest->configured));
|
|
memcpy(&dest->overridden, &src->overridden, sizeof(dest->overridden));
|
|
dest->dirty = true;
|
|
}
|
|
|
|
static void
|
|
patch_color_table(const char *key, PyObject *profiles, PyObject *spec, size_t which, int change_configured) {
|
|
PyObject *v = PyDict_GetItemString(spec, key);
|
|
if (v && PyLong_Check(v)) {
|
|
color_type color = PyLong_AsUnsignedLong(v);
|
|
for (Py_ssize_t j = 0; j < PyTuple_GET_SIZE(profiles); j++) {
|
|
ColorProfile *self = (ColorProfile*)PyTuple_GET_ITEM(profiles, j);
|
|
self->color_table[which] = color;
|
|
if (change_configured) self->orig_color_table[which] = color;
|
|
self->dirty = true;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
#define patch_mark_color(key, profiles, spec, array, i) { \
|
|
PyObject *v = PyDict_GetItemString(spec, key); \
|
|
if (v && PyLong_Check(v)) { \
|
|
color_type color = PyLong_AsUnsignedLong(v); \
|
|
for (Py_ssize_t j = 0; j < PyTuple_GET_SIZE(profiles); j++) { \
|
|
ColorProfile *self = (ColorProfile*)PyTuple_GET_ITEM(profiles, j); \
|
|
self->array[i] = color; \
|
|
self->dirty = true; \
|
|
} } }
|
|
|
|
|
|
static PyObject*
|
|
patch_color_profiles(PyObject *module UNUSED, PyObject *args) {
|
|
PyObject *spec, *profiles, *v; ColorProfile *self; int change_configured;
|
|
if (!PyArg_ParseTuple(args, "O!O!p", &PyDict_Type, &spec, &PyTuple_Type, &profiles, &change_configured)) return NULL;
|
|
char key[32] = {0};
|
|
for (size_t i = 0; i < arraysz(FG_BG_256); i++) {
|
|
snprintf(key, sizeof(key) - 1, "color%zu", i);
|
|
patch_color_table(key, profiles, spec, i, change_configured);
|
|
}
|
|
for (size_t i = 1; i <= MARK_MASK; i++) {
|
|
#define S(which, i) snprintf(key, sizeof(key) - 1, "mark%zu_" #which, i); patch_mark_color(key, profiles, spec, mark_##which##s, i)
|
|
S(background, i); S(foreground, i);
|
|
#undef S
|
|
}
|
|
#define SI(profile_name) \
|
|
DynamicColor color; \
|
|
if (PyLong_Check(v)) { \
|
|
color.rgb = PyLong_AsUnsignedLong(v); color.type = COLOR_IS_RGB; \
|
|
} else { color.rgb = 0; color.type = COLOR_IS_SPECIAL; }\
|
|
self->overridden.profile_name = color; \
|
|
if (change_configured) self->configured.profile_name = color; \
|
|
self->dirty = true;
|
|
|
|
#define S(config_name, profile_name) { \
|
|
v = PyDict_GetItemString(spec, #config_name); \
|
|
if (v) { \
|
|
for (Py_ssize_t i = 0; i < PyTuple_GET_SIZE(profiles); i++) { \
|
|
self = (ColorProfile*)PyTuple_GET_ITEM(profiles, i); \
|
|
SI(profile_name); \
|
|
} \
|
|
} \
|
|
}
|
|
S(foreground, default_fg); S(background, default_bg); S(cursor, cursor_color);
|
|
S(selection_foreground, highlight_fg); S(selection_background, highlight_bg);
|
|
S(cursor_text_color, cursor_text_color); S(visual_bell_color, visual_bell_color);
|
|
#undef SI
|
|
#undef S
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
DynamicColor
|
|
colorprofile_to_color(ColorProfile *self, DynamicColor entry, DynamicColor defval) {
|
|
switch(entry.type) {
|
|
case COLOR_NOT_SET:
|
|
return defval;
|
|
case COLOR_IS_INDEX: {
|
|
DynamicColor ans;
|
|
ans.rgb = self->color_table[entry.rgb & 0xff] & 0xffffff;
|
|
ans.type = COLOR_IS_RGB;
|
|
return ans;
|
|
}
|
|
case COLOR_IS_RGB:
|
|
case COLOR_IS_SPECIAL:
|
|
return entry;
|
|
}
|
|
return entry;
|
|
}
|
|
|
|
color_type
|
|
colorprofile_to_color_with_fallback(ColorProfile *self, DynamicColor entry, DynamicColor defval, DynamicColor fallback, DynamicColor fallback_defval) {
|
|
switch(entry.type) {
|
|
case COLOR_NOT_SET:
|
|
case COLOR_IS_SPECIAL:
|
|
if (defval.type == COLOR_IS_SPECIAL) return colorprofile_to_color(self, fallback, fallback_defval).rgb;
|
|
return defval.rgb;
|
|
case COLOR_IS_RGB:
|
|
return entry.rgb;
|
|
case COLOR_IS_INDEX:
|
|
return self->color_table[entry.rgb & 0xff] & 0xffffff;
|
|
}
|
|
return entry.rgb;
|
|
}
|
|
|
|
static PyObject*
|
|
as_dict(ColorProfile *self, PyObject *args UNUSED) {
|
|
#define as_dict_doc "Return all colors as a dictionary of color_name to integer or None (names are the same as used in kitty.conf)"
|
|
PyObject *ans = PyDict_New();
|
|
if (ans == NULL) return PyErr_NoMemory();
|
|
for (unsigned i = 0; i < arraysz(self->color_table); i++) {
|
|
static char buf[32] = {0};
|
|
snprintf(buf, sizeof(buf) - 1, "color%u", i);
|
|
PyObject *val = PyLong_FromUnsignedLong(self->color_table[i]);
|
|
if (!val) { Py_CLEAR(ans); return PyErr_NoMemory(); }
|
|
int ret = PyDict_SetItemString(ans, buf, val);
|
|
Py_CLEAR(val);
|
|
if (ret != 0) { Py_CLEAR(ans); return NULL; }
|
|
}
|
|
#define D(attr, name) { \
|
|
if (self->overridden.attr.type != COLOR_NOT_SET) { \
|
|
int ret; PyObject *val; \
|
|
if (self->overridden.attr.type == COLOR_IS_SPECIAL) { \
|
|
val = Py_None; Py_INCREF(val); \
|
|
} else { \
|
|
color_type c = colorprofile_to_color(self, self->overridden.attr, self->configured.attr).rgb; \
|
|
val = PyLong_FromUnsignedLong(c); \
|
|
} \
|
|
if (!val) { Py_CLEAR(ans); return NULL; } \
|
|
ret = PyDict_SetItemString(ans, #name, val); \
|
|
Py_CLEAR(val); \
|
|
if (ret != 0) { Py_CLEAR(ans); return NULL; } \
|
|
}}
|
|
D(default_fg, foreground); D(default_bg, background);
|
|
D(cursor_color, cursor); D(cursor_text_color, cursor_text); D(highlight_fg, selection_foreground);
|
|
D(highlight_bg, selection_background); D(visual_bell_color, visual_bell_color);
|
|
|
|
#undef D
|
|
return ans;
|
|
}
|
|
|
|
static PyObject*
|
|
as_color(ColorProfile *self, PyObject *val) {
|
|
#define as_color_doc "Convert the specified terminal color into an (r, g, b) tuple based on the current profile values"
|
|
if (!PyLong_Check(val)) { PyErr_SetString(PyExc_TypeError, "val must be an int"); return NULL; }
|
|
unsigned long entry = PyLong_AsUnsignedLong(val);
|
|
unsigned int t = entry & 0xFF;
|
|
uint8_t r;
|
|
uint32_t col = 0;
|
|
switch(t) {
|
|
case 1:
|
|
r = (entry >> 8) & 0xff;
|
|
col = self->color_table[r];
|
|
break;
|
|
case 2:
|
|
col = entry >> 8;
|
|
break;
|
|
default:
|
|
Py_RETURN_NONE;
|
|
}
|
|
Color *ans = PyObject_New(Color, &Color_Type);
|
|
if (ans) ans->color.rgb = col;
|
|
return (PyObject*)ans;
|
|
}
|
|
|
|
static PyObject*
|
|
reset_color_table(ColorProfile *self, PyObject *a UNUSED) {
|
|
#define reset_color_table_doc "Reset all customized colors back to defaults"
|
|
memcpy(self->color_table, self->orig_color_table, sizeof(FG_BG_256));
|
|
self->dirty = true;
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
static PyObject*
|
|
reset_color(ColorProfile *self, PyObject *val) {
|
|
#define reset_color_doc "Reset the specified color"
|
|
uint8_t i = PyLong_AsUnsignedLong(val) & 0xff;
|
|
self->color_table[i] = self->orig_color_table[i];
|
|
self->dirty = true;
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
static PyObject*
|
|
set_color(ColorProfile *self, PyObject *args) {
|
|
#define set_color_doc "Set the specified color"
|
|
unsigned char i;
|
|
unsigned long val;
|
|
if (!PyArg_ParseTuple(args, "Bk", &i, &val)) return NULL;
|
|
self->color_table[i] = val;
|
|
self->dirty = true;
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
static PyObject*
|
|
set_configured_colors(ColorProfile *self, PyObject *args) {
|
|
#define set_configured_colors_doc "Set the configured colors"
|
|
unsigned int default_fg, default_bg, cursor_color, cursor_text_color, highlight_fg, highlight_bg, visual_bell_color;
|
|
if (!PyArg_ParseTuple(args, "II|IIIII", &default_fg, &default_bg,
|
|
&cursor_color, &cursor_text_color, &highlight_fg, &highlight_bg, &visual_bell_color)) return NULL;
|
|
#define S(which) \
|
|
self->configured.which.rgb = which & 0xffffff; \
|
|
self->configured.which.type = (which & 0xff000000) ? COLOR_IS_RGB : COLOR_IS_SPECIAL;
|
|
S(default_fg); S(default_bg); S(cursor_color); S(cursor_text_color); S(highlight_fg); S(highlight_bg); S(visual_bell_color);
|
|
#undef S
|
|
self->dirty = true;
|
|
Py_RETURN_NONE;
|
|
}
|
|
|
|
void
|
|
copy_color_table_to_buffer(ColorProfile *self, color_type *buf, int offset, size_t stride) {
|
|
size_t i;
|
|
stride = MAX(1u, stride);
|
|
for (i = 0, buf = buf + offset; i < arraysz(self->color_table); i++, buf += stride) *buf = self->color_table[i];
|
|
// Copy the mark colors
|
|
for (i = 0; i < arraysz(self->mark_backgrounds); i++) {
|
|
*buf = self->mark_backgrounds[i]; buf += stride;
|
|
}
|
|
for (i = 0; i < arraysz(self->mark_foregrounds); i++) {
|
|
*buf = self->mark_foregrounds[i]; buf += stride;
|
|
}
|
|
self->dirty = false;
|
|
}
|
|
|
|
static void
|
|
push_onto_color_stack_at(ColorProfile *self, unsigned int i) {
|
|
self->color_stack[i].dynamic_colors = self->overridden;
|
|
memcpy(self->color_stack[i].color_table, self->color_table, sizeof(self->color_stack->color_table));
|
|
}
|
|
|
|
static void
|
|
copy_from_color_stack_at(ColorProfile *self, unsigned int i) {
|
|
self->overridden = self->color_stack[i].dynamic_colors;
|
|
memcpy(self->color_table, self->color_stack[i].color_table, sizeof(self->color_table));
|
|
}
|
|
|
|
bool
|
|
colorprofile_push_colors(ColorProfile *self, unsigned int idx) {
|
|
if (idx > 10) return false;
|
|
size_t sz = idx ? idx : self->color_stack_idx + 1;
|
|
sz = MIN(10u, sz);
|
|
if (self->color_stack_sz < sz) {
|
|
self->color_stack = realloc(self->color_stack, sz * sizeof(self->color_stack[0]));
|
|
if (self->color_stack == NULL) fatal("Out of memory while ensuring space for %zu elements in color stack", sz);
|
|
memset(self->color_stack + self->color_stack_sz, 0, (sz - self->color_stack_sz) * sizeof(self->color_stack[0]));
|
|
self->color_stack_sz = sz;
|
|
}
|
|
if (idx == 0) {
|
|
if (self->color_stack_idx >= self->color_stack_sz) {
|
|
memmove(self->color_stack, self->color_stack + 1, (self->color_stack_sz - 1) * sizeof(self->color_stack[0]));
|
|
idx = self->color_stack_sz - 1;
|
|
} else idx = self->color_stack_idx++;
|
|
push_onto_color_stack_at(self, idx);
|
|
return true;
|
|
}
|
|
idx -= 1;
|
|
if (idx < self->color_stack_sz) {
|
|
push_onto_color_stack_at(self, idx);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool
|
|
colorprofile_pop_colors(ColorProfile *self, unsigned int idx) {
|
|
if (idx == 0) {
|
|
if (!self->color_stack_idx) return false;
|
|
copy_from_color_stack_at(self, --self->color_stack_idx);
|
|
memset(self->color_stack + self->color_stack_idx, 0, sizeof(self->color_stack[0]));
|
|
return true;
|
|
}
|
|
idx -= 1;
|
|
if (idx < self->color_stack_sz) {
|
|
copy_from_color_stack_at(self, idx);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void
|
|
colorprofile_report_stack(ColorProfile *self, unsigned int *idx, unsigned int *count) {
|
|
*count = self->color_stack_idx;
|
|
*idx = self->color_stack_idx ? self->color_stack_idx - 1 : 0;
|
|
}
|
|
|
|
static PyObject*
|
|
color_table_address(ColorProfile *self, PyObject *a UNUSED) {
|
|
#define color_table_address_doc "Pointer address to start of color table"
|
|
return PyLong_FromVoidPtr((void*)self->color_table);
|
|
}
|
|
|
|
static PyObject*
|
|
default_color_table(PyObject *self UNUSED, PyObject *args UNUSED) {
|
|
return create_256_color_table();
|
|
}
|
|
|
|
// Boilerplate {{{
|
|
|
|
#define CGETSET(name) \
|
|
static PyObject* name##_get(ColorProfile *self, void UNUSED *closure) { return PyLong_FromUnsignedLong(colorprofile_to_color(self, self->overridden.name, self->configured.name).rgb); } \
|
|
static int name##_set(ColorProfile *self, PyObject *v, void UNUSED *closure) { \
|
|
if (v == NULL) { PyErr_SetString(PyExc_TypeError, "Cannot delete attribute: " #name); return -1; } \
|
|
unsigned long val = PyLong_AsUnsignedLong(v); \
|
|
self->overridden.name.rgb = val & 0xffffff; \
|
|
self->overridden.name.type = (val & 0xff000000) ? COLOR_IS_RGB : COLOR_NOT_SET; \
|
|
self->dirty = true; return 0; \
|
|
}
|
|
|
|
CGETSET(default_fg)
|
|
CGETSET(default_bg)
|
|
CGETSET(cursor_color)
|
|
CGETSET(cursor_text_color)
|
|
CGETSET(highlight_fg)
|
|
CGETSET(highlight_bg)
|
|
CGETSET(visual_bell_color)
|
|
#undef CGETSET
|
|
|
|
static PyGetSetDef cp_getsetters[] = {
|
|
GETSET(default_fg)
|
|
GETSET(default_bg)
|
|
GETSET(cursor_color)
|
|
GETSET(cursor_text_color)
|
|
GETSET(highlight_fg)
|
|
GETSET(highlight_bg)
|
|
GETSET(visual_bell_color)
|
|
{NULL} /* Sentinel */
|
|
};
|
|
|
|
|
|
static PyMemberDef cp_members[] = {
|
|
{NULL}
|
|
};
|
|
|
|
static PyMethodDef cp_methods[] = {
|
|
METHOD(update_ansi_color_table, METH_O)
|
|
METHOD(reset_color_table, METH_NOARGS)
|
|
METHOD(as_dict, METH_NOARGS)
|
|
METHOD(color_table_address, METH_NOARGS)
|
|
METHOD(as_color, METH_O)
|
|
METHOD(reset_color, METH_O)
|
|
METHOD(set_color, METH_VARARGS)
|
|
METHOD(set_configured_colors, METH_VARARGS)
|
|
{NULL} /* Sentinel */
|
|
};
|
|
|
|
|
|
PyTypeObject ColorProfile_Type = {
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
|
.tp_name = "fast_data_types.ColorProfile",
|
|
.tp_basicsize = sizeof(ColorProfile),
|
|
.tp_dealloc = (destructor)dealloc_cp,
|
|
.tp_flags = Py_TPFLAGS_DEFAULT,
|
|
.tp_doc = "ColorProfile",
|
|
.tp_members = cp_members,
|
|
.tp_methods = cp_methods,
|
|
.tp_getset = cp_getsetters,
|
|
.tp_new = new_cp,
|
|
};
|
|
// }}}
|
|
|
|
|
|
static PyObject *
|
|
new_color(PyTypeObject *type, PyObject *args, PyObject *kwds) {
|
|
static const char* kwlist[] = {"red", "green", "blue", "alpha", NULL};
|
|
Color *self;
|
|
unsigned char r = 0, g = 0, b = 0, a = 0;
|
|
if (!PyArg_ParseTupleAndKeywords(args, kwds, "|BBBB", (char**)kwlist, &r, &g, &b, &a)) return NULL;
|
|
|
|
self = (Color *)type->tp_alloc(type, 0);
|
|
if (self != NULL) {
|
|
self->color.r = r; self->color.g = g; self->color.b = b; self->color.a = a;
|
|
}
|
|
return (PyObject*) self;
|
|
}
|
|
|
|
static PyObject*
|
|
color_as_int(Color *self) {
|
|
return PyLong_FromUnsignedLong(self->color.val);
|
|
}
|
|
|
|
static PyObject*
|
|
color_truediv(Color *self, PyObject *divisor) {
|
|
DECREF_AFTER_FUNCTION PyObject *o = PyNumber_Float(divisor);
|
|
if (o == NULL) return NULL;
|
|
double r = self->color.r, g = self->color.g, b = self->color.b, a = self->color.a;
|
|
double d = PyFloat_AS_DOUBLE(o) * 255.;
|
|
return Py_BuildValue("dddd", r/d, g/d, b/d, a/d);
|
|
}
|
|
|
|
static PyNumberMethods color_number_methods = {
|
|
.nb_int = (unaryfunc)color_as_int,
|
|
.nb_true_divide = (binaryfunc)color_truediv,
|
|
};
|
|
|
|
#define CGETSET(name) \
|
|
static PyObject* name##_get(Color *self, void UNUSED *closure) { return PyLong_FromUnsignedLong(self->color.name); }
|
|
CGETSET(red)
|
|
CGETSET(green)
|
|
CGETSET(blue)
|
|
CGETSET(alpha)
|
|
#undef CGETSET
|
|
|
|
static PyObject*
|
|
rgb_get(Color *self, void *closure UNUSED) {
|
|
return PyLong_FromUnsignedLong(self->color.rgb);
|
|
}
|
|
|
|
static PyObject*
|
|
luminance_get(Color *self, void *closure UNUSED) {
|
|
return PyFloat_FromDouble(rgb_luminance(self->color));
|
|
}
|
|
|
|
static PyObject*
|
|
sgr_get(Color* self, void *closure UNUSED) {
|
|
char buf[32];
|
|
int sz = snprintf(buf, sizeof(buf), ":2:%u:%u:%u", self->color.r, self->color.g, self->color.b);
|
|
return PyUnicode_FromStringAndSize(buf, sz);
|
|
}
|
|
|
|
static PyObject*
|
|
sharp_get(Color* self, void *closure UNUSED) {
|
|
char buf[32];
|
|
int sz;
|
|
if (self->color.alpha) sz = snprintf(buf, sizeof(buf), "#%02x%02x%02x%02x", self->color.a, self->color.r, self->color.g, self->color.b);
|
|
else sz = snprintf(buf, sizeof(buf), "#%02x%02x%02x", self->color.r, self->color.g, self->color.b);
|
|
return PyUnicode_FromStringAndSize(buf, sz);
|
|
}
|
|
|
|
static PyObject*
|
|
color_cmp(PyObject *self, PyObject *other, int op) {
|
|
if (op != Py_EQ && op != Py_NE) return Py_NotImplemented;
|
|
if (!PyObject_TypeCheck(other, &Color_Type)) {
|
|
if (op == Py_EQ) Py_RETURN_FALSE;
|
|
Py_RETURN_TRUE;
|
|
}
|
|
Color *a = (Color*)self, *b = (Color*)other;
|
|
switch (op) {
|
|
case Py_EQ: { if (a->color.val == b->color.val) { Py_RETURN_TRUE; } Py_RETURN_FALSE; }
|
|
case Py_NE: { if (a->color.val != b->color.val) { Py_RETURN_TRUE; } Py_RETURN_FALSE; }
|
|
default:
|
|
return Py_NotImplemented;
|
|
}
|
|
}
|
|
|
|
static PyGetSetDef color_getsetters[] = {
|
|
{"rgb", (getter) rgb_get, NULL, "rgb", NULL},
|
|
{"red", (getter) red_get, NULL, "red", NULL},
|
|
{"green", (getter) green_get, NULL, "green", NULL},
|
|
{"blue", (getter) blue_get, NULL, "blue", NULL},
|
|
{"alpha", (getter) alpha_get, NULL, "alpha", NULL},
|
|
{"r", (getter) red_get, NULL, "red", NULL},
|
|
{"g", (getter) green_get, NULL, "green", NULL},
|
|
{"b", (getter) blue_get, NULL, "blue", NULL},
|
|
{"a", (getter) alpha_get, NULL, "alpha", NULL},
|
|
{"luminance", (getter) luminance_get, NULL, "luminance", NULL},
|
|
{"as_sgr", (getter) sgr_get, NULL, "as_sgr", NULL},
|
|
{"as_sharp", (getter) sharp_get, NULL, "as_sharp", NULL},
|
|
{NULL} /* Sentinel */
|
|
};
|
|
|
|
static PyObject*
|
|
contrast(Color* self, PyObject *o) {
|
|
if (!PyObject_TypeCheck(o, &Color_Type)) { PyErr_SetString(PyExc_TypeError, "Not a Color"); return NULL; }
|
|
Color *other = (Color*) o;
|
|
return PyFloat_FromDouble(rgb_contrast(self->color, other->color));
|
|
}
|
|
|
|
static PyMethodDef color_methods[] = {
|
|
METHODB(contrast, METH_O),
|
|
{NULL} /* Sentinel */
|
|
};
|
|
|
|
|
|
static PyObject *
|
|
repr(Color *self) {
|
|
if (self->color.alpha) return PyUnicode_FromFormat("Color(red=%u, green=%u, blue=%u, alpha=%u)", self->color.r, self->color.g, self->color.b, self->color.a);
|
|
return PyUnicode_FromFormat("Color(%u, %u, %u)", self->color.r, self->color.g, self->color.b);
|
|
}
|
|
|
|
static Py_hash_t
|
|
color_hash(PyObject *x) {
|
|
return ((Color*)x)->color.val;
|
|
}
|
|
|
|
PyTypeObject Color_Type = {
|
|
PyVarObject_HEAD_INIT(NULL, 0)
|
|
.tp_name = "kitty.fast_data_types.Color",
|
|
.tp_basicsize = sizeof(Color),
|
|
.tp_flags = Py_TPFLAGS_DEFAULT,
|
|
.tp_doc = "Color",
|
|
.tp_new = new_color,
|
|
.tp_getset = color_getsetters,
|
|
.tp_as_number = &color_number_methods,
|
|
.tp_methods = color_methods,
|
|
.tp_repr = (reprfunc)repr,
|
|
.tp_hash = color_hash,
|
|
.tp_richcompare = color_cmp,
|
|
};
|
|
|
|
|
|
static PyMethodDef module_methods[] = {
|
|
METHODB(default_color_table, METH_NOARGS),
|
|
METHODB(patch_color_profiles, METH_VARARGS),
|
|
{NULL, NULL, 0, NULL} /* Sentinel */
|
|
};
|
|
|
|
|
|
int init_ColorProfile(PyObject *module) {\
|
|
if (PyType_Ready(&ColorProfile_Type) < 0) return 0;
|
|
if (PyModule_AddObject(module, "ColorProfile", (PyObject *)&ColorProfile_Type) != 0) return 0;
|
|
Py_INCREF(&ColorProfile_Type);
|
|
|
|
if (PyType_Ready(&Color_Type) < 0) return 0;
|
|
if (PyModule_AddObject(module, "Color", (PyObject *)&Color_Type) != 0) return 0;
|
|
Py_INCREF(&Color_Type);
|
|
|
|
if (PyModule_AddFunctions(module, module_methods) != 0) return false;
|
|
return 1;
|
|
}
|
|
|
|
|
|
// }}}
|