Freeciv-3.3
Loading...
Searching...
No Matches
colors.c
Go to the documentation of this file.
1/***********************************************************************
2 Freeciv - Copyright (C) 1996 - A Kjeldberg, L Gregersen, P Unold
3 This program is free software; you can redistribute it and/or modify
4 it under the terms of the GNU General Public License as published by
5 the Free Software Foundation; either version 2, or (at your option)
6 any later version.
7
8 This program is distributed in the hope that it will be useful,
9 but WITHOUT ANY WARRANTY; without even the implied warranty of
10 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 GNU General Public License for more details.
12***********************************************************************/
13
14#ifdef HAVE_CONFIG_H
15#include <fc_config.h>
16#endif
17
18#include <stdio.h>
19
20#include <gtk/gtk.h>
21
22/* utility */
23#include "log.h"
24#include "mem.h"
25
26/* common */
27#include "rgbcolor.h"
28
29/* client/gui-gtk-5.0 */
30#include "gui_main.h"
31
32#include "colors.h"
33
34/************************************************************************/
38struct color *color_alloc(int r, int g, int b)
39{
40 struct color *color = fc_malloc(sizeof(*color));
41
42 color->color.red = (double)r/255;
43 color->color.green = (double)g/255;
44 color->color.blue = (double)b/255;
45 color->color.alpha = 1.0;
46
47 return color;
48}
49
50/************************************************************************/
53void color_free(struct color *color)
54{
55 free(color);
56}
57
58/************************************************************************/
63{
64 struct rgbcolor *prgb = rgbcolor_new(pcolor->color.red * 255,
65 pcolor->color.green * 255,
66 pcolor->color.blue * 255);
68
70 return score;
71}
struct canvas int int int int struct sprite *sprite struct canvas struct color * pcolor
Definition canvas_g.h:56
char * incite_cost
Definition comments.c:74
struct color * color_alloc(int r, int g, int b)
Definition colors.c:38
void color_free(struct color *color)
Definition colors.c:53
int color_brightness_score(struct color *pcolor)
Definition colors.c:62
#define fc_malloc(sz)
Definition mem.h:34
void rgbcolor_destroy(struct rgbcolor *prgbcolor)
Definition rgbcolor.c:74
struct rgbcolor * rgbcolor_new(int r, int g, int b)
Definition rgbcolor.c:34
int rgbcolor_brightness_score(struct rgbcolor *prgbcolor)
Definition rgbcolor.c:196
Definition colors.h:21
int g
Definition colors.h:21
GdkRGBA color
Definition colors.h:22
int r
Definition colors.h:21
int b
Definition colors.h:21