[Freeciv-Dev] Re: (PR#12109) corner fog graphics
[Top] [All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index] [Thread Index]
<URL: http://bugs.freeciv.org/Ticket/Display.html?id=12109 >
Here's a new version that works for trident too!
- See the screenshot.
- Apply the patch.
- Unpackage the tarball in the top-level src dir.
-jason
? blend.png
? fog
? fog.c
? fog.png
? terrain1.png
? data/isotrident/fog.png
? data/isotrident/foo
? data/isotrident/grid-ew.png
? data/isotrident/grid-ns.png
? data/isotrident/old.png
? data/trident/fog.png
Index: client/mapview_common.c
===================================================================
RCS file: /home/freeciv/CVS/freeciv/client/mapview_common.c,v
retrieving revision 1.173
diff -u -r1.173 mapview_common.c
--- client/mapview_common.c 4 Feb 2005 08:59:49 -0000 1.173
+++ client/mapview_common.c 4 Feb 2005 17:45:07 -0000
@@ -873,21 +873,37 @@
}
/**************************************************************************
+ Draw one layer of a tile, edge, corner, unit, and/or city onto the
+ canvas at the given position.
+**************************************************************************/
+static void put_one_element(struct canvas *pcanvas, enum mapview_layer layer,
+ struct tile *ptile,
+ const struct tile_edge *pedge,
+ const struct tile_corner *pcorner,
+ const struct unit *punit, struct city *pcity,
+ int canvas_x, int canvas_y, bool citymode)
+{
+ struct drawn_sprite tile_sprs[80];
+ int count = fill_sprite_array(tile_sprs, layer, ptile, pedge, pcorner,
+ punit, pcity, citymode);
+ bool fog = (ptile && tile_get_known(ptile) == TILE_KNOWN_FOGGED
+ && draw_fog_of_war && fogstyle == FOG_AUTO);
+
+ /*** Draw terrain and specials ***/
+ put_drawn_sprites(pcanvas, canvas_x, canvas_y, count, tile_sprs, fog);
+}
+
+/**************************************************************************
Draw the given unit onto the canvas store at the given location. The
area of drawing is UNIT_TILE_HEIGHT x UNIT_TILE_WIDTH.
**************************************************************************/
void put_unit(const struct unit *punit,
struct canvas *pcanvas, int canvas_x, int canvas_y)
{
- struct drawn_sprite drawn_sprites[40];
-
canvas_y += (UNIT_TILE_HEIGHT - NORMAL_TILE_HEIGHT);
mapview_layer_iterate(layer) {
- int count = fill_sprite_array(drawn_sprites, layer,
- NULL, punit, NULL, FALSE);
-
- put_drawn_sprites(pcanvas, canvas_x, canvas_y,
- count, drawn_sprites, FALSE);
+ put_one_element(pcanvas, layer, NULL, NULL, NULL,
+ punit, NULL, canvas_x, canvas_y, FALSE);
} mapview_layer_iterate_end;
}
@@ -898,15 +914,11 @@
void put_city(struct city *pcity,
struct canvas *pcanvas, int canvas_x, int canvas_y)
{
- struct drawn_sprite drawn_sprites[40];
-
canvas_y += (UNIT_TILE_HEIGHT - NORMAL_TILE_HEIGHT);
mapview_layer_iterate(layer) {
- int count = fill_sprite_array(drawn_sprites, layer,
- NULL, NULL, pcity, FALSE);
-
- put_drawn_sprites(pcanvas, canvas_x, canvas_y,
- count, drawn_sprites, FALSE);
+ put_one_element(pcanvas, layer,
+ NULL, NULL, NULL, NULL, pcity,
+ canvas_x, canvas_y, FALSE);
} mapview_layer_iterate_end;
}
@@ -918,16 +930,11 @@
void put_terrain(struct tile *ptile,
struct canvas *pcanvas, int canvas_x, int canvas_y)
{
- struct drawn_sprite drawn_sprites[40];
-
/* Use full tile height, even for terrains. */
canvas_y += (UNIT_TILE_HEIGHT - NORMAL_TILE_HEIGHT);
mapview_layer_iterate(layer) {
- int count = fill_sprite_array(drawn_sprites, layer,
- ptile, NULL, NULL, FALSE);
-
- put_drawn_sprites(pcanvas, canvas_x, canvas_y,
- count, drawn_sprites, FALSE);
+ put_one_element(pcanvas, layer, ptile, NULL, NULL, NULL, NULL,
+ canvas_x, canvas_y, FALSE);
} mapview_layer_iterate_end;
}
@@ -1439,15 +1446,11 @@
struct tile *ptile,
int canvas_x, int canvas_y, bool citymode)
{
- struct drawn_sprite tile_sprs[80];
- int count = fill_sprite_array(tile_sprs, layer, ptile,
- get_drawable_unit(ptile, citymode),
- ptile->city, citymode);
- bool fog = (tile_get_known(ptile) == TILE_KNOWN_FOGGED && draw_fog_of_war
- && fogstyle == FOG_AUTO);
-
- /*** Draw terrain and specials ***/
- put_drawn_sprites(pcanvas, canvas_x, canvas_y, count, tile_sprs, fog);
+ if (tile_get_known(ptile) != TILE_UNKNOWN) {
+ put_one_element(pcanvas, layer, ptile, NULL, NULL,
+ get_drawable_unit(ptile, citymode),
+ ptile->city, canvas_x, canvas_y, citymode);
+ }
}
/**************************************************************************
@@ -1509,12 +1512,17 @@
mapview_layer_iterate(layer) {
gui_rect_iterate(gui_x0, gui_y0, width,
height + (is_isometric ? (NORMAL_TILE_HEIGHT / 2) : 0),
- ptile) {
- int cx, cy;
-
- if (tile_get_known(ptile) != TILE_UNKNOWN
- && tile_to_canvas_pos(&cx, &cy, ptile)) {
+ ptile, pedge, pcorner, cx, cy) {
+ if (ptile) {
put_one_tile(mapview_canvas.store, layer, ptile, cx, cy, FALSE);
+ } else if (pedge) {
+ put_one_element(mapview_canvas.store, layer, NULL, pedge, NULL,
+ NULL, NULL, cx, cy, FALSE);
+ } else if (pcorner) {
+ put_one_element(mapview_canvas.store, layer, NULL, NULL, pcorner,
+ NULL, NULL, cx, cy, FALSE);
+ } else {
+ /* This can happen, for instance for unreal tiles. */
}
} gui_rect_iterate_end;
} mapview_layer_iterate_end;
@@ -1527,7 +1535,10 @@
* from adjacent tiles (if they're close enough). */
gui_rect_iterate(gui_x0 - GOTO_WIDTH, gui_y0 - GOTO_WIDTH,
width + 2 * GOTO_WIDTH, height + 2 * GOTO_WIDTH,
- ptile) {
+ ptile, pedge, pcorner, cx, cy) {
+ if (!ptile) {
+ continue;
+ }
adjc_dir_iterate(ptile, adjc_tile, dir) {
if (is_drawn_line(ptile, dir)) {
draw_segment(ptile, dir);
@@ -1536,17 +1547,17 @@
} gui_rect_iterate_end;
/* Draw citymap overlays on top. */
- gui_rect_iterate(gui_x0, gui_y0, width, height, ptile) {
- if (tile_get_known(ptile) != TILE_UNKNOWN) {
+ gui_rect_iterate(gui_x0, gui_y0, width, height,
+ ptile, pedge, pcorner, canvas_x2, canvas_y2) {
+ if (ptile && tile_get_known(ptile) != TILE_UNKNOWN) {
struct unit *punit;
struct city *pcity;
- int city_x, city_y, canvas_x2, canvas_y2;
+ int city_x, city_y;
pcity = find_city_or_settler_near_tile(ptile, &punit);
if (pcity
&& city_colors[pcity->client.color] != COLOR_STD_LAST
- && map_to_city_map(&city_x, &city_y, pcity, ptile)
- && tile_to_canvas_pos(&canvas_x2, &canvas_y2, ptile)) {
+ && map_to_city_map(&city_x, &city_y, pcity, ptile)) {
enum city_tile_type worker = get_worker_city(pcity, city_x, city_y);
put_city_worker(mapview_canvas.store,
@@ -1557,8 +1568,7 @@
mapview_canvas.store, canvas_x2, canvas_y2);
}
} else if (punit
- && city_colors[punit->client.color] != COLOR_STD_LAST
- && tile_to_canvas_pos(&canvas_x2, &canvas_y2, ptile)) {
+ && city_colors[punit->client.color] != COLOR_STD_LAST) {
/* Draw citymap overlay for settlers. */
put_city_worker(mapview_canvas.store,
city_colors[punit->client.color], C_TILE_EMPTY,
@@ -1656,14 +1666,11 @@
gui_rect_iterate(mapview_canvas.gui_x0 + canvas_x - dx / 2,
mapview_canvas.gui_y0 + canvas_y - dy,
width + dx, height + dy - NORMAL_TILE_HEIGHT,
- ptile) {
- int canvas_x, canvas_y;
- struct city *pcity = ptile->city;
-
- if (pcity) {
+ ptile, pedge, pcorner, canvas_x, canvas_y) {
+ if (ptile && ptile->city) {
int width = 0, height = 0;
+ struct city *pcity = ptile->city;
- (void) tile_to_canvas_pos(&canvas_x, &canvas_y, ptile);
show_city_desc(mapview_canvas.store, canvas_x, canvas_y,
pcity, &width, &height);
Index: client/mapview_common.h
===================================================================
RCS file: /home/freeciv/CVS/freeciv/client/mapview_common.h,v
retrieving revision 1.85
diff -u -r1.85 mapview_common.h
--- client/mapview_common.h 25 Dec 2004 20:38:14 -0000 1.85
+++ client/mapview_common.h 4 Feb 2005 17:45:07 -0000
@@ -85,9 +85,10 @@
* iso-view iteration is at
* http://rt.freeciv.org/Ticket/Attachment/51374/37363/isogrid.png.
*/
-#define gui_rect_iterate(gui_x0, gui_y0, width, height, ptile) \
+#define gui_rect_iterate(GRI_gui_x0, GRI_gui_y0, width, height,
\
+ ptile, pedge, pcorner, canvas_x, canvas_y) \
{ \
- int _gui_x0 = (gui_x0), _gui_y0 = (gui_y0); \
+ int _gui_x0 = (GRI_gui_x0), _gui_y0 = (GRI_gui_y0); \
int _width = (width), _height = (height); \
\
if (_width < 0) { \
@@ -99,38 +100,105 @@
_height = -_height;
\
} \
if (_width > 0 && _height > 0) { \
- int W = (is_isometric ? (NORMAL_TILE_WIDTH / 2) : NORMAL_TILE_WIDTH); \
- int H = (is_isometric ? (NORMAL_TILE_HEIGHT / 2) : NORMAL_TILE_HEIGHT); \
- int GRI_x0 = DIVIDE(_gui_x0, W), GRI_y0 = DIVIDE(_gui_y0, H); \
- int GRI_x1 = DIVIDE(_gui_x0 + _width + W - 1, W); \
- int GRI_y1 = DIVIDE(_gui_y0 + _height + H - 1, H); \
- int GRI_itr, GRI_x_itr, GRI_y_itr, _map_x, _map_y; \
- int count; \
- struct tile *ptile;
\
+ const int _ratio = (is_isometric ? 2 : 1); \
+ const int _W = NORMAL_TILE_WIDTH / (_ratio * 2); \
+ const int _H = NORMAL_TILE_HEIGHT / (_ratio * 2); \
+ const int GRI_x0 = DIVIDE(_gui_x0, _W) - 1;
\
+ const int GRI_y0 = DIVIDE(_gui_y0, _H) - 1;
\
+ const int GRI_x1 = DIVIDE(_gui_x0 + _width + _W - 1, _W) + _ratio; \
+ const int GRI_y1 = DIVIDE(_gui_y0 + _height + _H - 1, _H) + _ratio;
\
+ const int _count = (GRI_x1 - GRI_x0) * (GRI_y1 - GRI_y0); \
+ int GRI_itr, GRI_x_itr, GRI_y_itr, GRI_sum, GRI_diff; \
+ \
+ for (GRI_itr = 0; GRI_itr < _count; GRI_itr++) { \
+ struct tile *ptile = NULL; \
+ struct tile_edge *pedge = NULL; \
+ struct tile_corner *pcorner = NULL; \
+ struct tile_edge GRI_edge; \
+ struct tile_corner GRI_corner; \
+ int canvas_x, canvas_y; \
\
- if (is_isometric) {
\
- /* Tiles to the left/above overlap with us. */ \
- GRI_x0--;
\
- GRI_y0--;
\
- } \
- count = (GRI_x1 - GRI_x0) * (GRI_y1 - GRI_y0); \
- for (GRI_itr = 0; GRI_itr < count; GRI_itr++) { \
GRI_x_itr = GRI_x0 + (GRI_itr % (GRI_x1 - GRI_x0)); \
GRI_y_itr = GRI_y0 + (GRI_itr / (GRI_x1 - GRI_x0)); \
+ GRI_sum = GRI_x_itr + GRI_y_itr; \
+ GRI_diff = GRI_y_itr - GRI_x_itr;
\
if (is_isometric) { \
if ((GRI_x_itr + GRI_y_itr) % 2 != 0) { \
continue; \
} \
- _map_x = (GRI_x_itr + GRI_y_itr) / 2; \
- _map_y = (GRI_y_itr - GRI_x_itr) / 2; \
+ if (GRI_x_itr % 2 == 0 && GRI_y_itr % 2 == 0) { \
+ if ((GRI_x_itr + GRI_y_itr) % 4 == 0) { \
+ /* Tile */ \
+ ptile = map_pos_to_tile(GRI_sum / 4 - 1, GRI_diff / 4); \
+ } else { \
+ /* Corner */ \
+ pcorner = &GRI_corner; \
+ pcorner->tile[0] = map_pos_to_tile((GRI_sum - 6) / 4, \
+ (GRI_diff - 2) / 4); \
+ pcorner->tile[1] = map_pos_to_tile((GRI_sum - 2) / 4, \
+ (GRI_diff - 2) / 4); \
+ pcorner->tile[2] = map_pos_to_tile((GRI_sum - 2) / 4, \
+ (GRI_diff + 2) / 4); \
+ pcorner->tile[3] = map_pos_to_tile((GRI_sum - 6) / 4, \
+ (GRI_diff + 2) / 4); \
+ } \
+ } else { \
+ /* Edge. */ \
+ pedge = &GRI_edge; \
+ if (GRI_sum % 4 == 0) { \
+ pedge->type = EDGE_NS; \
+ pedge->tile[0] = map_pos_to_tile((GRI_sum - 4) / 4, /* N */ \
+ (GRI_diff - 2) / 4); \
+ pedge->tile[1] = map_pos_to_tile((GRI_sum - 4) / 4, /* S */ \
+ (GRI_diff + 2) / 4); \
+ } else { \
+ pedge->type = EDGE_EW; \
+ pedge->tile[0] = map_pos_to_tile((GRI_sum - 6) / 4, \
+ GRI_diff / 4); /* E */ \
+ pedge->tile[1] = map_pos_to_tile((GRI_sum - 2) / 4, \
+ GRI_diff / 4); /* W */ \
+ } \
+ } \
} else { \
- _map_x = GRI_x_itr; \
- _map_y = GRI_y_itr; \
+ if (GRI_sum % 2 == 0) { \
+ if (GRI_x_itr % 2 == 0) { \
+ /* Corner. */ \
+ pcorner = &GRI_corner; \
+ pcorner->tile[0] = map_pos_to_tile(GRI_x_itr / 2 - 1, \
+ GRI_y_itr / 2 - 1); /* NW */ \
+ pcorner->tile[1] = map_pos_to_tile(GRI_x_itr / 2, \
+ GRI_y_itr / 2 - 1); /* NE */ \
+ pcorner->tile[2] = map_pos_to_tile(GRI_x_itr / 2, \
+ GRI_y_itr / 2); /* SE */ \
+ pcorner->tile[3] = map_pos_to_tile(GRI_x_itr / 2 - 1, \
+ GRI_y_itr / 2); /* SW */ \
+ } else { \
+ /* Tile. */ \
+ ptile = map_pos_to_tile((GRI_x_itr - 1) / 2, \
+ (GRI_y_itr - 1) / 2); \
+ } \
+ } else { \
+ /* Edge. */ \
+ pedge = &GRI_edge; \
+ if (GRI_y_itr % 2 == 0) { \
+ pedge->type = EDGE_EW; \
+ pedge->tile[0] = map_pos_to_tile(GRI_x_itr / 2 - 1, \
+ (GRI_y_itr - 1) / 2); \
+ pedge->tile[1] = map_pos_to_tile(GRI_x_itr / 2, \
+ (GRI_y_itr - 1) / 2); \
+ } else { \
+ pedge->type = EDGE_NS; \
+ pedge->tile[0] = map_pos_to_tile((GRI_x_itr - 1) / 2, \
+ GRI_y_itr / 2 - 1); \
+ pedge->tile[1] = map_pos_to_tile((GRI_x_itr - 1) / 2, \
+ GRI_y_itr / 2); \
+ } \
+ } \
}
\
- ptile = map_pos_to_tile(_map_x, _map_y); \
- if (!ptile) { \
- continue; \
- }
+ canvas_x \
+ = GRI_x_itr * _W - NORMAL_TILE_WIDTH / 2 - mapview_canvas.gui_x0; \
+ canvas_y \
+ = GRI_y_itr * _H - NORMAL_TILE_HEIGHT / 2 - mapview_canvas.gui_y0;
#define gui_rect_iterate_end \
} \
Index: client/tilespec.c
===================================================================
RCS file: /home/freeciv/CVS/freeciv/client/tilespec.c,v
retrieving revision 1.228
diff -u -r1.228 tilespec.c
--- client/tilespec.c 4 Feb 2005 08:59:49 -0000 1.228
+++ client/tilespec.c 4 Feb 2005 17:45:07 -0000
@@ -118,7 +118,10 @@
/* 15=2^4-1 sprites. A single sprite is drawn, chosen based on whether
* there's darkness in _each_ of the cardinal directions. */
- DARKNESS_CARD_FULL = 3
+ DARKNESS_CARD_FULL = 3,
+
+ /* Corner darkness & fog. 3^4 = 81 sprites. */
+ DARKNESS_CORNER = 4
} darkness_style;
struct specfile;
@@ -872,7 +875,7 @@
"tilespec.fogstyle");
darkness_style = secfile_lookup_int(file, "tilespec.darkness_style");
if (darkness_style < DARKNESS_NONE
- || darkness_style > DARKNESS_CARD_FULL
+ || darkness_style > DARKNESS_CORNER
|| (darkness_style == DARKNESS_ISORECT
&& (!is_isometric || hex_width > 0 || hex_height > 0))) {
freelog(LOG_FATAL, _("Invalid darkness style set in tileset."));
@@ -1512,6 +1515,26 @@
SET_SPRITE(tx.darkness[i], buffer);
}
break;
+ case DARKNESS_CORNER:
+ sprites.tx.fullfog = fc_realloc(sprites.tx.fullfog,
+ 81 * sizeof(*sprites.tx.fullfog));
+ for (i = 0; i < 81; i++) {
+ /* Unknown, fog, known. */
+ char ids[] = {'u', 'f', 'k'};
+ char buf[512] = "t.fog";
+ int values[4], j, k = i;
+
+ for (j = 0; j < 4; j++) {
+ values[j] = k % 3;
+ k /= 3;
+
+ cat_snprintf(buf, sizeof(buf), "_%c", ids[values[j]]);
+ }
+ assert(k == 0);
+
+ sprites.tx.fullfog[i] = load_sprite(buf);
+ }
+ break;
}
for(i=0; i<4; i++) {
@@ -2473,6 +2496,54 @@
return sprs - saved_sprs;
}
+static int fill_fog_sprite_array(struct drawn_sprite *sprs,
+ const struct tile *ptile,
+ const struct tile_edge *pedge,
+ const struct tile_corner *pcorner)
+{
+ struct drawn_sprite *saved_sprs = sprs;
+
+ if (fogstyle == FOG_SPRITE && draw_fog_of_war
+ && ptile && tile_get_known(ptile) == TILE_KNOWN_FOGGED) {
+ /* With FOG_AUTO, fog is done this way. */
+ ADD_SPRITE_SIMPLE(sprites.tx.fog);
+ }
+
+ if (darkness_style == DARKNESS_CORNER && pcorner && draw_fog_of_war) {
+ int i, tileno = 0;
+
+ for (i = 3; i >= 0; i--) {
+ const int unknown = 0, fogged = 1, known = 2;
+ int value = -1;
+
+ if (!pcorner->tile[i]) {
+ value = known;
+ } else {
+ switch (tile_get_known(pcorner->tile[i])) {
+ case TILE_KNOWN:
+ value = known;
+ break;
+ case TILE_KNOWN_FOGGED:
+ value = fogged;
+ break;
+ case TILE_UNKNOWN:
+ value = unknown;
+ break;
+ }
+ }
+ assert(value >= 0 && value < 3);
+
+ tileno = tileno * 3 + value;
+ }
+
+ if (sprites.tx.fullfog[tileno]) {
+ ADD_SPRITE_SIMPLE(sprites.tx.fullfog[tileno]);
+ }
+ }
+
+ return sprs - saved_sprs;
+}
+
/****************************************************************************
Add sprites for the base terrain to the sprite list. This doesn't
include specials or rivers.
@@ -2650,6 +2721,8 @@
ADD_SPRITE_SIMPLE(sprites.tx.darkness[tileno]);
}
break;
+ case DARKNESS_CORNER:
+ break;
}
#undef UNKNOWN
}
@@ -2675,7 +2748,8 @@
is done differently.
****************************************************************************/
int fill_sprite_array(struct drawn_sprite *sprs, enum mapview_layer layer,
- struct tile *ptile,
+ struct tile *ptile, const struct tile_edge *pedge,
+ const struct tile_corner *pcorner,
const struct unit *punit, struct city *pcity,
bool citymode)
{
@@ -2834,11 +2908,7 @@
break;
case LAYER_FOG:
- if (fogstyle == FOG_SPRITE && draw_fog_of_war
- && ptile && tile_get_known(ptile) == TILE_KNOWN_FOGGED) {
- /* With FOG_SPRITE, fog is done this way. */
- ADD_SPRITE_SIMPLE(sprites.tx.fog);
- }
+ sprs += fill_fog_sprite_array(sprs, ptile, pedge, pcorner);
break;
case LAYER_CITY2:
Index: client/tilespec.h
===================================================================
RCS file: /home/freeciv/CVS/freeciv/client/tilespec.h,v
retrieving revision 1.98
diff -u -r1.98 tilespec.h
--- client/tilespec.h 4 Feb 2005 08:59:49 -0000 1.98
+++ client/tilespec.h 4 Feb 2005 17:45:07 -0000
@@ -26,6 +26,21 @@
struct Sprite; /* opaque; gui-dep */
+/* An edge is the border between two tiles. This structure represents one
+ * edge. The tiles are in unspecified order for the moment. */
+struct tile_edge {
+ enum {
+ EDGE_NS, EDGE_EW
+ } type;
+ struct tile *tile[2];
+};
+
+/* A corner is the endpoint of several edges. At each corner 4 tiles will
+ * meet (3 in hex view). Tiles are in clockwise order NESW. */
+struct tile_corner {
+ struct tile *tile[4];
+};
+
struct drawn_sprite {
enum {
DRAWN_SPRITE, /* Draw a sprite. */
@@ -114,7 +129,8 @@
/* Gfx support */
int fill_sprite_array(struct drawn_sprite *sprs, enum mapview_layer layer,
- struct tile *ptile,
+ struct tile *ptile, const struct tile_edge *pedge,
+ const struct tile_corner *pcorner,
const struct unit *punit, struct city *pcity,
bool citymode);
@@ -292,6 +308,7 @@
*airbase,
*fallout,
*fog,
+ **fullfog,
*spec_river[MAX_INDEX_CARDINAL],
*darkness[MAX_INDEX_CARDINAL], /* first unused */
*river_outlet[4]; /* indexed by enum direction4 */
Index: data/isotrident.tilespec
===================================================================
RCS file: /home/freeciv/CVS/freeciv/data/isotrident.tilespec,v
retrieving revision 1.26
diff -u -r1.26 isotrident.tilespec
--- data/isotrident.tilespec 3 Feb 2005 19:28:41 -0000 1.26
+++ data/isotrident.tilespec 4 Feb 2005 17:45:07 -0000
@@ -22,10 +22,10 @@
roadstyle = 0
; Use fogstyle (old iso style)
-fogstyle = 0
+fogstyle = 2
; Use darkness style 1 (single-sprite)
-darkness_style = 1
+darkness_style = 4
; offset the flags by this amount when drawing units
flag_offset_x = 17
@@ -62,6 +62,7 @@
"misc/space.spec",
; "misc/techs.spec",
"misc/treaty.spec",
+ "isotrident/fog.spec",
"isotrident/nuke.spec",
"isotrident/cities.spec",
"isotrident/morecities.spec"
Index: data/trident.tilespec
===================================================================
RCS file: /home/freeciv/CVS/freeciv/data/trident.tilespec,v
retrieving revision 1.28
diff -u -r1.28 trident.tilespec
--- data/trident.tilespec 25 Dec 2004 19:50:29 -0000 1.28
+++ data/trident.tilespec 4 Feb 2005 17:45:07 -0000
@@ -22,10 +22,10 @@
roadstyle = 1
; Use fogstyle 0 (old iso style)
-fogstyle = 0
+fogstyle = 2
; Use darkness style 3 (15 sprites)
-darkness_style = 3
+darkness_style = 4
; offset the flags by this amount when drawing units
flag_offset_x = 0
@@ -56,6 +56,7 @@
"misc/space.spec",
; "misc/techs.spec",
"misc/treaty.spec",
+ "trident/fog.spec",
"trident/cities.spec",
"trident/explosions.spec"
Index: data/isotrident/fog.spec
===================================================================
RCS file: data/isotrident/fog.spec
diff -N data/isotrident/fog.spec
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ data/isotrident/fog.spec 4 Feb 2005 17:45:07 -0000
@@ -0,0 +1,101 @@
+[spec]
+
+options = "+spec3"
+
+artists = "unknown"
+
+[file]
+gfx = "isotrident/fog"
+
+[grid_main]
+
+x_top_left = 0
+y_top_left = 0
+dx = 64
+dy = 32
+is_pixel_border = 0
+
+tiles = { "row", "column", "tag"
+
+ 0, 0, "t.fog_u_u_u_u"
+ 0, 1, "t.fog_f_u_u_u"
+ 0, 2, "t.fog_k_u_u_u"
+ 0, 3, "t.fog_u_u_u_f"
+ 0, 4, "t.fog_f_u_u_f"
+ 0, 5, "t.fog_k_u_u_f"
+ 0, 6, "t.fog_u_u_u_k"
+ 0, 7, "t.fog_f_u_u_k"
+ 0, 8, "t.fog_k_u_u_k"
+ 1, 0, "t.fog_u_f_u_u"
+ 1, 1, "t.fog_f_f_u_u"
+ 1, 2, "t.fog_k_f_u_u"
+ 1, 3, "t.fog_u_f_u_f"
+ 1, 4, "t.fog_f_f_u_f"
+ 1, 5, "t.fog_k_f_u_f"
+ 1, 6, "t.fog_u_f_u_k"
+ 1, 7, "t.fog_f_f_u_k"
+ 1, 8, "t.fog_k_f_u_k"
+ 2, 0, "t.fog_u_k_u_u"
+ 2, 1, "t.fog_f_k_u_u"
+ 2, 2, "t.fog_k_k_u_u"
+ 2, 3, "t.fog_u_k_u_f"
+ 2, 4, "t.fog_f_k_u_f"
+ 2, 5, "t.fog_k_k_u_f"
+ 2, 6, "t.fog_u_k_u_k"
+ 2, 7, "t.fog_f_k_u_k"
+ 2, 8, "t.fog_k_k_u_k"
+ 3, 0, "t.fog_u_u_f_u"
+ 3, 1, "t.fog_f_u_f_u"
+ 3, 2, "t.fog_k_u_f_u"
+ 3, 3, "t.fog_u_u_f_f"
+ 3, 4, "t.fog_f_u_f_f"
+ 3, 5, "t.fog_k_u_f_f"
+ 3, 6, "t.fog_u_u_f_k"
+ 3, 7, "t.fog_f_u_f_k"
+ 3, 8, "t.fog_k_u_f_k"
+ 4, 0, "t.fog_u_f_f_u"
+ 4, 1, "t.fog_f_f_f_u"
+ 4, 2, "t.fog_k_f_f_u"
+ 4, 3, "t.fog_u_f_f_f"
+ 4, 4, "t.fog_f_f_f_f"
+ 4, 5, "t.fog_k_f_f_f"
+ 4, 6, "t.fog_u_f_f_k"
+ 4, 7, "t.fog_f_f_f_k"
+ 4, 8, "t.fog_k_f_f_k"
+ 5, 0, "t.fog_u_k_f_u"
+ 5, 1, "t.fog_f_k_f_u"
+ 5, 2, "t.fog_k_k_f_u"
+ 5, 3, "t.fog_u_k_f_f"
+ 5, 4, "t.fog_f_k_f_f"
+ 5, 5, "t.fog_k_k_f_f"
+ 5, 6, "t.fog_u_k_f_k"
+ 5, 7, "t.fog_f_k_f_k"
+ 5, 8, "t.fog_k_k_f_k"
+ 6, 0, "t.fog_u_u_k_u"
+ 6, 1, "t.fog_f_u_k_u"
+ 6, 2, "t.fog_k_u_k_u"
+ 6, 3, "t.fog_u_u_k_f"
+ 6, 4, "t.fog_f_u_k_f"
+ 6, 5, "t.fog_k_u_k_f"
+ 6, 6, "t.fog_u_u_k_k"
+ 6, 7, "t.fog_f_u_k_k"
+ 6, 8, "t.fog_k_u_k_k"
+ 7, 0, "t.fog_u_f_k_u"
+ 7, 1, "t.fog_f_f_k_u"
+ 7, 2, "t.fog_k_f_k_u"
+ 7, 3, "t.fog_u_f_k_f"
+ 7, 4, "t.fog_f_f_k_f"
+ 7, 5, "t.fog_k_f_k_f"
+ 7, 6, "t.fog_u_f_k_k"
+ 7, 7, "t.fog_f_f_k_k"
+ 7, 8, "t.fog_k_f_k_k"
+ 8, 0, "t.fog_u_k_k_u"
+ 8, 1, "t.fog_f_k_k_u"
+ 8, 2, "t.fog_k_k_k_u"
+ 8, 3, "t.fog_u_k_k_f"
+ 8, 4, "t.fog_f_k_k_f"
+ 8, 5, "t.fog_k_k_k_f"
+ 8, 6, "t.fog_u_k_k_k"
+ 8, 7, "t.fog_f_k_k_k"
+ 8, 8, "t.fog_k_k_k_k"
+}
Index: data/trident/fog.spec
===================================================================
RCS file: data/trident/fog.spec
diff -N data/trident/fog.spec
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ data/trident/fog.spec 4 Feb 2005 17:45:08 -0000
@@ -0,0 +1,101 @@
+[spec]
+
+options = "+spec3"
+
+artists = "unknown"
+
+[file]
+gfx = "trident/fog"
+
+[grid_main]
+
+x_top_left = 0
+y_top_left = 0
+dx = 30
+dy = 30
+is_pixel_border = 0
+
+tiles = { "row", "column", "tag"
+
+ 0, 0, "t.fog_u_u_u_u"
+ 0, 1, "t.fog_f_u_u_u"
+ 0, 2, "t.fog_k_u_u_u"
+ 0, 3, "t.fog_u_u_u_f"
+ 0, 4, "t.fog_f_u_u_f"
+ 0, 5, "t.fog_k_u_u_f"
+ 0, 6, "t.fog_u_u_u_k"
+ 0, 7, "t.fog_f_u_u_k"
+ 0, 8, "t.fog_k_u_u_k"
+ 1, 0, "t.fog_u_f_u_u"
+ 1, 1, "t.fog_f_f_u_u"
+ 1, 2, "t.fog_k_f_u_u"
+ 1, 3, "t.fog_u_f_u_f"
+ 1, 4, "t.fog_f_f_u_f"
+ 1, 5, "t.fog_k_f_u_f"
+ 1, 6, "t.fog_u_f_u_k"
+ 1, 7, "t.fog_f_f_u_k"
+ 1, 8, "t.fog_k_f_u_k"
+ 2, 0, "t.fog_u_k_u_u"
+ 2, 1, "t.fog_f_k_u_u"
+ 2, 2, "t.fog_k_k_u_u"
+ 2, 3, "t.fog_u_k_u_f"
+ 2, 4, "t.fog_f_k_u_f"
+ 2, 5, "t.fog_k_k_u_f"
+ 2, 6, "t.fog_u_k_u_k"
+ 2, 7, "t.fog_f_k_u_k"
+ 2, 8, "t.fog_k_k_u_k"
+ 3, 0, "t.fog_u_u_f_u"
+ 3, 1, "t.fog_f_u_f_u"
+ 3, 2, "t.fog_k_u_f_u"
+ 3, 3, "t.fog_u_u_f_f"
+ 3, 4, "t.fog_f_u_f_f"
+ 3, 5, "t.fog_k_u_f_f"
+ 3, 6, "t.fog_u_u_f_k"
+ 3, 7, "t.fog_f_u_f_k"
+ 3, 8, "t.fog_k_u_f_k"
+ 4, 0, "t.fog_u_f_f_u"
+ 4, 1, "t.fog_f_f_f_u"
+ 4, 2, "t.fog_k_f_f_u"
+ 4, 3, "t.fog_u_f_f_f"
+ 4, 4, "t.fog_f_f_f_f"
+ 4, 5, "t.fog_k_f_f_f"
+ 4, 6, "t.fog_u_f_f_k"
+ 4, 7, "t.fog_f_f_f_k"
+ 4, 8, "t.fog_k_f_f_k"
+ 5, 0, "t.fog_u_k_f_u"
+ 5, 1, "t.fog_f_k_f_u"
+ 5, 2, "t.fog_k_k_f_u"
+ 5, 3, "t.fog_u_k_f_f"
+ 5, 4, "t.fog_f_k_f_f"
+ 5, 5, "t.fog_k_k_f_f"
+ 5, 6, "t.fog_u_k_f_k"
+ 5, 7, "t.fog_f_k_f_k"
+ 5, 8, "t.fog_k_k_f_k"
+ 6, 0, "t.fog_u_u_k_u"
+ 6, 1, "t.fog_f_u_k_u"
+ 6, 2, "t.fog_k_u_k_u"
+ 6, 3, "t.fog_u_u_k_f"
+ 6, 4, "t.fog_f_u_k_f"
+ 6, 5, "t.fog_k_u_k_f"
+ 6, 6, "t.fog_u_u_k_k"
+ 6, 7, "t.fog_f_u_k_k"
+ 6, 8, "t.fog_k_u_k_k"
+ 7, 0, "t.fog_u_f_k_u"
+ 7, 1, "t.fog_f_f_k_u"
+ 7, 2, "t.fog_k_f_k_u"
+ 7, 3, "t.fog_u_f_k_f"
+ 7, 4, "t.fog_f_f_k_f"
+ 7, 5, "t.fog_k_f_k_f"
+ 7, 6, "t.fog_u_f_k_k"
+ 7, 7, "t.fog_f_f_k_k"
+ 7, 8, "t.fog_k_f_k_k"
+ 8, 0, "t.fog_u_k_k_u"
+ 8, 1, "t.fog_f_k_k_u"
+ 8, 2, "t.fog_k_k_k_u"
+ 8, 3, "t.fog_u_k_k_f"
+ 8, 4, "t.fog_f_k_k_f"
+ 8, 5, "t.fog_k_k_k_f"
+ 8, 6, "t.fog_u_k_k_k"
+ 8, 7, "t.fog_f_k_k_k"
+ 8, 8, "t.fog_k_k_k_k"
+}
fog.tar.gz
Description: GNU Zip compressed data
- [Freeciv-Dev] Re: (PR#12109) corner fog graphics,
Jason Short <=
|
|