Feature #1828 ยป 0023-Fix-some-comment-typos.patch
| NEWS | ||
|---|---|---|
|
clients. GNAPATCH#6564
|
||
|
* Various elements now have configurable offsets, allowing more
|
||
|
condensed graphics files.
|
||
|
* Can specify seperate pixel_border_x/y. GNAPATCH#5786
|
||
|
* Can specify separate pixel_border_x/y. GNAPATCH#5786
|
||
|
* Tilesets can have a summary and description, which are displayed in
|
||
|
the client in "About Current Tileset". GNAPATCH#6350
|
||
| client/climisc.h | ||
|---|---|---|
|
/*
|
||
|
* A compound id (cid) can hold all objects a city can build:
|
||
|
* improvements (with wonders) and units. This is achieved by
|
||
|
* seperation the value set: a cid < B_LAST denotes a improvement
|
||
|
* separating the value set: a cid < B_LAST denotes an improvement
|
||
|
* (including wonders). A cid >= B_LAST denotes a unit with the
|
||
|
* unit_type_id of (cid - B_LAST).
|
||
|
*/
|
||
| client/mapctrl_common.c | ||
|---|---|---|
|
/**********************************************************************//**
|
||
|
Iterate over the pixel boundaries of the rectangle and pick the tiles
|
||
|
whose center falls within. Axis pixel incrementation is half tile size to
|
||
|
accomodate tilesets with varying tile shapes and proportions of X / Y.
|
||
|
accommodate tilesets with varying tile shapes and proportions of X / Y.
|
||
|
These operations are performed on the tiles:
|
||
|
- Make tiles that contain owned cities hilited
|
||
| common/map.c | ||
|---|---|---|
|
}
|
||
|
/*******************************************************************//**
|
||
|
Are (x1,y1) and (x2,y2) really the same when adjusted?
|
||
|
This function might be necessary ALOT of places...
|
||
|
Are (x1, y1) and (x2, y2) really the same when adjusted?
|
||
|
This function might be necessary in a lot of places...
|
||
|
***********************************************************************/
|
||
|
bool same_pos(const struct tile *tile1, const struct tile *tile2)
|
||
|
{
|
||