mirror of https://github.com/OpenTTD/OpenTTD
(svn r6775) -Codechange: Use some more proper types, especially Owner and PlayerID as
these are used intermixed often.release/0.5
parent
dad5d5dd72
commit
9732c129c1
|
@ -52,7 +52,7 @@ void TileLoop_Water(TileIndex tile);
|
||||||
bool CheckPlayerHasMoney(int32 cost);
|
bool CheckPlayerHasMoney(int32 cost);
|
||||||
void SubtractMoneyFromPlayer(int32 cost);
|
void SubtractMoneyFromPlayer(int32 cost);
|
||||||
void SubtractMoneyFromPlayerFract(PlayerID player, int32 cost);
|
void SubtractMoneyFromPlayerFract(PlayerID player, int32 cost);
|
||||||
bool CheckOwnership(PlayerID owner);
|
bool CheckOwnership(Owner owner);
|
||||||
bool CheckTileOwnership(TileIndex tile);
|
bool CheckTileOwnership(TileIndex tile);
|
||||||
StringID GetPlayerNameString(PlayerID player, uint index);
|
StringID GetPlayerNameString(PlayerID player, uint index);
|
||||||
|
|
||||||
|
|
5
map.h
5
map.h
|
@ -67,12 +67,13 @@ static inline TileIndex TileVirtXY(uint x, uint y)
|
||||||
return (y >> 4 << MapLogX()) + (x >> 4);
|
return (y >> 4 << MapLogX()) + (x >> 4);
|
||||||
}
|
}
|
||||||
|
|
||||||
typedef enum Owner {
|
typedef byte Owner;
|
||||||
|
enum Owners {
|
||||||
OWNER_TOWN = 0x0F, // a town owns the tile
|
OWNER_TOWN = 0x0F, // a town owns the tile
|
||||||
OWNER_NONE = 0x10, // nobody owns the tile
|
OWNER_NONE = 0x10, // nobody owns the tile
|
||||||
OWNER_WATER = 0x11, // "water" owns the tile
|
OWNER_WATER = 0x11, // "water" owns the tile
|
||||||
OWNER_END = 0x12,
|
OWNER_END = 0x12,
|
||||||
} Owner;
|
};
|
||||||
|
|
||||||
enum {
|
enum {
|
||||||
INVALID_TILE = (TileIndex)-1
|
INVALID_TILE = (TileIndex)-1
|
||||||
|
|
|
@ -292,7 +292,7 @@ typedef uint AcceptedCargo[NUM_CARGO];
|
||||||
|
|
||||||
typedef struct TileDesc {
|
typedef struct TileDesc {
|
||||||
StringID str;
|
StringID str;
|
||||||
byte owner;
|
Owner owner;
|
||||||
Date build_date;
|
Date build_date;
|
||||||
uint32 dparam[2];
|
uint32 dparam[2];
|
||||||
} TileDesc;
|
} TileDesc;
|
||||||
|
|
2
player.h
2
player.h
|
@ -202,7 +202,7 @@ typedef struct Player {
|
||||||
uint16 GetDrawStringPlayerColor(PlayerID player);
|
uint16 GetDrawStringPlayerColor(PlayerID player);
|
||||||
|
|
||||||
void ChangeOwnershipOfPlayerItems(PlayerID old_player, PlayerID new_player);
|
void ChangeOwnershipOfPlayerItems(PlayerID old_player, PlayerID new_player);
|
||||||
void GetNameOfOwner(PlayerID owner, TileIndex tile);
|
void GetNameOfOwner(Owner owner, TileIndex tile);
|
||||||
int64 CalculateCompanyValue(const Player* p);
|
int64 CalculateCompanyValue(const Player* p);
|
||||||
void InvalidatePlayerWindows(const Player* p);
|
void InvalidatePlayerWindows(const Player* p);
|
||||||
void UpdatePlayerMoney32(Player *p);
|
void UpdatePlayerMoney32(Player *p);
|
||||||
|
|
|
@ -259,7 +259,7 @@ void UpdatePlayerMoney32(Player *p)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void GetNameOfOwner(PlayerID owner, TileIndex tile)
|
void GetNameOfOwner(Owner owner, TileIndex tile)
|
||||||
{
|
{
|
||||||
SetDParam(2, owner);
|
SetDParam(2, owner);
|
||||||
|
|
||||||
|
@ -283,7 +283,7 @@ void GetNameOfOwner(PlayerID owner, TileIndex tile)
|
||||||
|
|
||||||
bool CheckOwnership(PlayerID owner)
|
bool CheckOwnership(PlayerID owner)
|
||||||
{
|
{
|
||||||
assert(owner <= OWNER_WATER);
|
assert(owner < OWNER_END);
|
||||||
|
|
||||||
if (owner == _current_player) return true;
|
if (owner == _current_player) return true;
|
||||||
_error_message = STR_013B_OWNED_BY;
|
_error_message = STR_013B_OWNED_BY;
|
||||||
|
@ -293,9 +293,9 @@ bool CheckOwnership(PlayerID owner)
|
||||||
|
|
||||||
bool CheckTileOwnership(TileIndex tile)
|
bool CheckTileOwnership(TileIndex tile)
|
||||||
{
|
{
|
||||||
PlayerID owner = GetTileOwner(tile);
|
Owner owner = GetTileOwner(tile);
|
||||||
|
|
||||||
assert(owner <= OWNER_WATER);
|
assert(owner < OWNER_END);
|
||||||
|
|
||||||
if (owner == _current_player) return true;
|
if (owner == _current_player) return true;
|
||||||
_error_message = STR_013B_OWNED_BY;
|
_error_message = STR_013B_OWNED_BY;
|
||||||
|
|
|
@ -39,7 +39,7 @@ static bool CheckAllowRemoveRoad(TileIndex tile, RoadBits remove, bool* edge_roa
|
||||||
{
|
{
|
||||||
RoadBits present;
|
RoadBits present;
|
||||||
RoadBits n;
|
RoadBits n;
|
||||||
byte owner;
|
Owner owner;
|
||||||
*edge_road = true;
|
*edge_road = true;
|
||||||
|
|
||||||
if (_game_mode == GM_EDITOR) return true;
|
if (_game_mode == GM_EDITOR) return true;
|
||||||
|
@ -51,9 +51,7 @@ static bool CheckAllowRemoveRoad(TileIndex tile, RoadBits remove, bool* edge_roa
|
||||||
|
|
||||||
// Only do the special processing if the road is owned
|
// Only do the special processing if the road is owned
|
||||||
// by a town
|
// by a town
|
||||||
if (owner != OWNER_TOWN) {
|
if (owner != OWNER_TOWN) return (owner == OWNER_NONE) || CheckOwnership(owner);
|
||||||
return owner == OWNER_NONE || CheckOwnership(owner);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (_cheats.magic_bulldozer.value) return true;
|
if (_cheats.magic_bulldozer.value) return true;
|
||||||
|
|
||||||
|
@ -94,7 +92,7 @@ int32 CmdRemoveRoad(TileIndex tile, uint32 flags, uint32 p1, uint32 p2)
|
||||||
// cost for removing inner/edge -roads
|
// cost for removing inner/edge -roads
|
||||||
static const uint16 road_remove_cost[2] = {50, 18};
|
static const uint16 road_remove_cost[2] = {50, 18};
|
||||||
|
|
||||||
PlayerID owner;
|
Owner owner;
|
||||||
Town *t;
|
Town *t;
|
||||||
/* true if the roadpiece was always removeable,
|
/* true if the roadpiece was always removeable,
|
||||||
* false if it was a center piece. Affects town ratings drop */
|
* false if it was a center piece. Affects town ratings drop */
|
||||||
|
|
|
@ -178,7 +178,7 @@ RoadBits GetAnyRoadBits(TileIndex);
|
||||||
TrackBits GetAnyRoadTrackBits(TileIndex tile);
|
TrackBits GetAnyRoadTrackBits(TileIndex tile);
|
||||||
|
|
||||||
|
|
||||||
static inline void MakeRoadNormal(TileIndex t, Owner owner, RoadBits bits, uint town)
|
static inline void MakeRoadNormal(TileIndex t, Owner owner, RoadBits bits, TownID town)
|
||||||
{
|
{
|
||||||
SetTileType(t, MP_STREET);
|
SetTileType(t, MP_STREET);
|
||||||
SetTileOwner(t, owner);
|
SetTileOwner(t, owner);
|
||||||
|
|
|
@ -708,7 +708,7 @@ static int32 DoClearBridge(TileIndex tile, uint32 flags)
|
||||||
if (GetTransportTypeUnderBridge(c) == TRANSPORT_RAIL) {
|
if (GetTransportTypeUnderBridge(c) == TRANSPORT_RAIL) {
|
||||||
MakeRailNormal(c, GetTileOwner(c), GetRailBitsUnderBridge(c), GetRailType(c));
|
MakeRailNormal(c, GetTileOwner(c), GetRailBitsUnderBridge(c), GetRailType(c));
|
||||||
} else {
|
} else {
|
||||||
uint town = IsTileOwner(c, OWNER_TOWN) ? ClosestTownFromTile(c, (uint)-1)->index : 0;
|
TownID town = IsTileOwner(c, OWNER_TOWN) ? ClosestTownFromTile(c, (uint)-1)->index : 0;
|
||||||
MakeRoadNormal(c, GetTileOwner(c), GetRoadBitsUnderBridge(c), town);
|
MakeRoadNormal(c, GetTileOwner(c), GetRoadBitsUnderBridge(c), town);
|
||||||
}
|
}
|
||||||
MarkTileDirtyByTile(c);
|
MarkTileDirtyByTile(c);
|
||||||
|
|
Loading…
Reference in New Issue