(svn r12761) -Codechange: lots of minor whitespace coding style fixes around operators.

This commit is contained in:
rubidium
2008-04-18 04:37:06 +00:00
parent 6daaf0fc55
commit 9d8fa486af
33 changed files with 70 additions and 70 deletions

View File

@@ -3995,11 +3995,11 @@ void AiDoGameLoop(Player *p)
if (_players_ai[p->index].state != old_state) {
if (hasdots)
printf("\n");
hasdots=false;
hasdots = false;
printf("AiState: %s\n", _ai_state_names[old_state=_players_ai[p->index].state]);
} else {
printf(".");
hasdots=true;
hasdots = true;
}
}
#endif

View File

@@ -342,7 +342,7 @@ static void AyStar_AiPathFinder_GetNeighbours(AyStar *aystar, OpenListNode *curr
// For now, we check both sides for this tile.. terraforming gives fuzzy result
if (tileh == InclinedSlope(dir)) {
// Now simply check if a tunnel can be build
ret = AI_DoCommand(tile, (PathFinderInfo->rail_or_road?0:0x200), 0, DC_AUTO, CMD_BUILD_TUNNEL);
ret = AI_DoCommand(tile, (PathFinderInfo->rail_or_road ? 0 : 0x200), 0, DC_AUTO, CMD_BUILD_TUNNEL);
tileh = GetTileSlope(_build_tunnel_endtile, NULL);
if (CmdSucceeded(ret) && IsInclinedSlope(tileh)) {
aystar->neighbours[aystar->num_neighbours].tile = _build_tunnel_endtile;

View File

@@ -796,7 +796,7 @@ static void AiNew_State_FindDepot(Player *p)
_players_ainew[p->index].depot_tile = 0;
for (i=2;i<_players_ainew[p->index].path_info.route_length-2;i++) {
for (i = 2; i < _players_ainew[p->index].path_info.route_length - 2; i++) {
tile = _players_ainew[p->index].path_info.route[i];
for (j = DIAGDIR_BEGIN; j < DIAGDIR_END; j++) {
TileIndex t = tile + TileOffsByDiagDir(j);
@@ -819,9 +819,9 @@ static void AiNew_State_FindDepot(Player *p)
while (i > 1 && i < _players_ainew[p->index].path_info.route_length - 2) {
i += g;
g *= -1;
(g < 0?g--:g++);
(g < 0 ? g-- : g++);
if (_players_ainew[p->index].path_info.route_extra[i] != 0 || _players_ainew[p->index].path_info.route_extra[i+1] != 0) {
if (_players_ainew[p->index].path_info.route_extra[i] != 0 || _players_ainew[p->index].path_info.route_extra[i + 1] != 0) {
// Bridge or tunnel.. we can't place a depot there
continue;
}
@@ -949,7 +949,7 @@ static void AiNew_State_VerifyRoute(Player *p)
_players_ainew[p->index].cur_veh = 0;
// Check how much it it going to cost us..
for (i=0;i<res;i++) {
for (i = 0; i < res; i++) {
_players_ainew[p->index].new_cost += AiNew_Build_Vehicle(p, 0, DC_QUERY_COST).GetCost();
}