Crossfire JXClient, Trunk
DarknessColors.java
Go to the documentation of this file.
1 /*
2  * This file is part of JXClient, the Fullscreen Java Crossfire Client.
3  *
4  * JXClient is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * JXClient is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with JXClient; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  *
18  * Copyright (C) 2005-2008 Yann Chachkoff
19  * Copyright (C) 2006-2017,2019-2023 Andreas Kirschbaum
20  * Copyright (C) 2010-2012,2014-2018,2020-2023 Nicolas Weeger
21  */
22 
23 package com.realtime.crossfire.jxclient.gui.map;
24 
26 import java.awt.Color;
27 import org.jetbrains.annotations.NotNull;
28 import org.jetbrains.annotations.Nullable;
29 
34 public class DarknessColors {
35 
40  private static final float MAX_DARKNESS_ALPHA = 0.7F;
41 
45  @NotNull
46  public static final Color FOG_OF_WAR_COLOR = new Color(0, 0, 0.5F, 0.5F);
47 
51  @NotNull
52  public static final Color BLACK_AND_FOG_OF_WAR_COLOR = new Color(0, 0, 0.25F, 1.0F);
53 
58  @Nullable
59  private final Color @NotNull [] darknessColors = new Color[256];
60 
66  @NotNull
67  public Color getDarknessColor(final int darkness) {
68  synchronized (darknessColors) {
69  if (darknessColors[darkness] == null) {
71  darknessColors[darkness] = new Color(0, 0, 0, alpha);
72  }
73 
74  //noinspection ConstantConditions
75  return darknessColors[darkness];
76  }
77  }
78 
79 }
com.realtime.crossfire.jxclient
com.realtime.crossfire.jxclient.map
Definition: CfMap.java:23
com.realtime.crossfire.jxclient.gui.map.DarknessColors.FOG_OF_WAR_COLOR
static final Color FOG_OF_WAR_COLOR
Definition: DarknessColors.java:46
com.realtime.crossfire.jxclient.gui.map.DarknessColors
Definition: DarknessColors.java:34
com.realtime.crossfire.jxclient.map.CfMapSquare.DARKNESS_FULL_BRIGHT
static final int DARKNESS_FULL_BRIGHT
Definition: CfMapSquare.java:60
com.realtime.crossfire.jxclient.gui.map.DarknessColors.MAX_DARKNESS_ALPHA
static final float MAX_DARKNESS_ALPHA
Definition: DarknessColors.java:40
com.realtime.crossfire.jxclient.gui.map.DarknessColors.getDarknessColor
Color getDarknessColor(final int darkness)
Definition: DarknessColors.java:67
com.realtime.crossfire.jxclient.gui.map.DarknessColors.darknessColors
final Color[] darknessColors
Definition: DarknessColors.java:59
com.realtime.crossfire
com.realtime
com
com.realtime.crossfire.jxclient.map.CfMapSquare
Definition: CfMapSquare.java:40
com.realtime.crossfire.jxclient.gui.map.DarknessColors.BLACK_AND_FOG_OF_WAR_COLOR
static final Color BLACK_AND_FOG_OF_WAR_COLOR
Definition: DarknessColors.java:52