summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2008-04-20 10:13:54 +0000
committerrubidium <rubidium@openttd.org>2008-04-20 10:13:54 +0000
commitf55ffd14bdaa85f9eb7c22c442f46169f63137be (patch)
tree417e4bd30794e812ee9200d90aec95d9c7d5dc14 /src
parent12ae3a2194011c7260da8286b7dc527eaacb1329 (diff)
downloadopenttd-f55ffd14bdaa85f9eb7c22c442f46169f63137be.tar.xz
(svn r12803) -Cleanup: rename SpecialVehicle to EffectVehicle to have a uniform naming of the thing instead of using both names for the same thing.
Diffstat (limited to 'src')
-rw-r--r--src/industry_cmd.cpp2
-rw-r--r--src/oldloader.cpp12
-rw-r--r--src/roadveh_cmd.cpp2
-rw-r--r--src/ship_cmd.cpp2
-rw-r--r--src/smallmap_gui.cpp2
-rw-r--r--src/train_cmd.cpp2
-rw-r--r--src/vehicle.cpp44
-rw-r--r--src/vehicle_base.h10
-rw-r--r--src/vehicle_func.h6
-rw-r--r--src/vehicle_type.h4
10 files changed, 43 insertions, 43 deletions
diff --git a/src/industry_cmd.cpp b/src/industry_cmd.cpp
index 7fbcaf551..299d4f5a5 100644
--- a/src/industry_cmd.cpp
+++ b/src/industry_cmd.cpp
@@ -702,7 +702,7 @@ static void TileLoopIndustry_BubbleGenerator(TileIndex tile)
EV_BUBBLE
);
- if (v != NULL) v->u.special.animation_substate = dir;
+ if (v != NULL) v->u.effect.animation_substate = dir;
}
static void TileLoop_Industry(TileIndex tile)
diff --git a/src/oldloader.cpp b/src/oldloader.cpp
index 7b32fd1f4..a4b3b1ca1 100644
--- a/src/oldloader.cpp
+++ b/src/oldloader.cpp
@@ -1086,9 +1086,9 @@ static const OldChunks vehicle_air_chunk[] = {
OCL_END()
};
-static const OldChunks vehicle_special_chunk[] = {
- OCL_SVAR( OC_UINT16, VehicleSpecial, animation_state ),
- OCL_SVAR( OC_UINT8, VehicleSpecial, animation_substate ),
+static const OldChunks vehicle_effect_chunk[] = {
+ OCL_SVAR( OC_UINT16, VehicleEffect, animation_state ),
+ OCL_SVAR( OC_UINT8, VehicleEffect, animation_substate ),
OCL_NULL( 7 ), // Junk
@@ -1123,7 +1123,7 @@ static bool LoadOldVehicleUnion(LoadgameState *ls, int num)
case VEH_ROAD : res = LoadChunk(ls, &v->u.road, vehicle_road_chunk); break;
case VEH_SHIP : res = LoadChunk(ls, &v->u.ship, vehicle_ship_chunk); break;
case VEH_AIRCRAFT: res = LoadChunk(ls, &v->u.air, vehicle_air_chunk); break;
- case VEH_SPECIAL : res = LoadChunk(ls, &v->u.special, vehicle_special_chunk); break;
+ case VEH_EFFECT : res = LoadChunk(ls, &v->u.effect, vehicle_effect_chunk); break;
case VEH_DISASTER: res = LoadChunk(ls, &v->u.disaster, vehicle_disaster_chunk); break;
}
@@ -1236,7 +1236,7 @@ bool LoadOldVehicle(LoadgameState *ls, int num)
case 0x11 /*VEH_ROAD */: v = new (_current_vehicle_id) RoadVehicle(); break;
case 0x12 /*VEH_SHIP */: v = new (_current_vehicle_id) Ship(); break;
case 0x13 /*VEH_AIRCRAFT*/: v = new (_current_vehicle_id) Aircraft(); break;
- case 0x14 /*VEH_SPECIAL */: v = new (_current_vehicle_id) SpecialVehicle(); break;
+ case 0x14 /*VEH_EFFECT */: v = new (_current_vehicle_id) EffectVehicle(); break;
case 0x15 /*VEH_DISASTER*/: v = new (_current_vehicle_id) DisasterVehicle(); break;
}
if (!LoadChunk(ls, v, vehicle_chunk)) return false;
@@ -1270,7 +1270,7 @@ bool LoadOldVehicle(LoadgameState *ls, int num)
v->name = CopyFromOldName(_old_string_id);
/* Vehicle-subtype is different in TTD(Patch) */
- if (v->type == VEH_SPECIAL) v->subtype = v->subtype >> 1;
+ if (v->type == VEH_EFFECT) v->subtype = v->subtype >> 1;
if (_cargo_count != 0) {
CargoPacket *cp = new CargoPacket((_cargo_source == 0xFF) ? INVALID_STATION : _cargo_source, _cargo_count);
diff --git a/src/roadveh_cmd.cpp b/src/roadveh_cmd.cpp
index 78a5d5ee2..49176ccc0 100644
--- a/src/roadveh_cmd.cpp
+++ b/src/roadveh_cmd.cpp
@@ -704,7 +704,7 @@ static void HandleBrokenRoadVeh(Vehicle *v)
if (!(v->vehstatus & VS_HIDDEN)) {
Vehicle *u = CreateEffectVehicleRel(v, 4, 4, 5, EV_BREAKDOWN_SMOKE);
- if (u != NULL) u->u.special.animation_state = v->breakdown_delay * 2;
+ if (u != NULL) u->u.effect.animation_state = v->breakdown_delay * 2;
}
}
diff --git a/src/ship_cmd.cpp b/src/ship_cmd.cpp
index 901514727..f8b4a7554 100644
--- a/src/ship_cmd.cpp
+++ b/src/ship_cmd.cpp
@@ -210,7 +210,7 @@ static void HandleBrokenShip(Vehicle *v)
if (!(v->vehstatus & VS_HIDDEN)) {
Vehicle *u = CreateEffectVehicleRel(v, 4, 4, 5, EV_BREAKDOWN_SMOKE);
- if (u != NULL) u->u.special.animation_state = v->breakdown_delay * 2;
+ if (u != NULL) u->u.effect.animation_state = v->breakdown_delay * 2;
}
}
diff --git a/src/smallmap_gui.cpp b/src/smallmap_gui.cpp
index 93086d1ff..1cba5798b 100644
--- a/src/smallmap_gui.cpp
+++ b/src/smallmap_gui.cpp
@@ -682,7 +682,7 @@ skip_column:
byte color;
FOR_ALL_VEHICLES(v) {
- if (v->type != VEH_SPECIAL &&
+ if (v->type != VEH_EFFECT &&
(v->vehstatus & (VS_HIDDEN | VS_UNCLICKABLE)) == 0) {
/* Remap into flat coordinates. */
Point pt = RemapCoords(
diff --git a/src/train_cmd.cpp b/src/train_cmd.cpp
index 15c47450f..8d6874163 100644
--- a/src/train_cmd.cpp
+++ b/src/train_cmd.cpp
@@ -3237,7 +3237,7 @@ static void HandleBrokenTrain(Vehicle *v)
if (!(v->vehstatus & VS_HIDDEN)) {
Vehicle *u = CreateEffectVehicleRel(v, 4, 4, 5, EV_BREAKDOWN_SMOKE);
- if (u != NULL) u->u.special.animation_state = v->breakdown_delay * 2;
+ if (u != NULL) u->u.effect.animation_state = v->breakdown_delay * 2;
}
}
diff --git a/src/vehicle.cpp b/src/vehicle.cpp
index ff32c50a3..3a1761f79 100644
--- a/src/vehicle.cpp
+++ b/src/vehicle.cpp
@@ -1044,8 +1044,8 @@ static void BreakdownSmokeTick(Vehicle *v)
EndVehicleMove(v);
}
- v->u.special.animation_state--;
- if (v->u.special.animation_state == 0) {
+ v->u.effect.animation_state--;
+ if (v->u.effect.animation_state == 0) {
BeginVehicleMove(v);
EndVehicleMove(v);
delete v;
@@ -1078,8 +1078,8 @@ static void BulldozerInit(Vehicle *v)
{
v->cur_image = SPR_BULLDOZER_NE;
v->progress = 0;
- v->u.special.animation_state = 0;
- v->u.special.animation_substate = 0;
+ v->u.effect.animation_state = 0;
+ v->u.effect.animation_substate = 0;
}
struct BulldozerMovement {
@@ -1125,7 +1125,7 @@ static void BulldozerTick(Vehicle *v)
{
v->progress++;
if ((v->progress & 7) == 0) {
- const BulldozerMovement* b = &_bulldozer_movement[v->u.special.animation_state];
+ const BulldozerMovement* b = &_bulldozer_movement[v->u.effect.animation_state];
BeginVehicleMove(v);
@@ -1134,11 +1134,11 @@ static void BulldozerTick(Vehicle *v)
v->x_pos += _inc_by_dir[b->direction].x;
v->y_pos += _inc_by_dir[b->direction].y;
- v->u.special.animation_substate++;
- if (v->u.special.animation_substate >= b->duration) {
- v->u.special.animation_substate = 0;
- v->u.special.animation_state++;
- if (v->u.special.animation_state == lengthof(_bulldozer_movement)) {
+ v->u.effect.animation_substate++;
+ if (v->u.effect.animation_substate >= b->duration) {
+ v->u.effect.animation_substate = 0;
+ v->u.effect.animation_state++;
+ if (v->u.effect.animation_state == lengthof(_bulldozer_movement)) {
EndVehicleMove(v);
delete v;
return;
@@ -1328,7 +1328,7 @@ static void BubbleTick(Vehicle *v)
EndVehicleMove(v);
return;
}
- if (v->u.special.animation_substate != 0) {
+ if (v->u.effect.animation_substate != 0) {
v->spritenum = GB(InteractiveRandom(), 0, 2) + 1;
} else {
v->spritenum = 6;
@@ -1407,9 +1407,9 @@ static EffectTickProc * const _effect_tick_procs[] = {
};
-Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicle type)
+Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicleType type)
{
- Vehicle *v = new SpecialVehicle();
+ Vehicle *v = new EffectVehicle();
if (v != NULL) {
v->subtype = type;
v->x_pos = x;
@@ -1428,19 +1428,19 @@ Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicle type)
return v;
}
-Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicle type)
+Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicleType type)
{
int safe_x = Clamp(x, 0, MapMaxX() * TILE_SIZE);
int safe_y = Clamp(y, 0, MapMaxY() * TILE_SIZE);
return CreateEffectVehicle(x, y, GetSlopeZ(safe_x, safe_y) + z, type);
}
-Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicle type)
+Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicleType type)
{
return CreateEffectVehicle(v->x_pos + x, v->y_pos + y, v->z_pos + z, type);
}
-void SpecialVehicle::Tick()
+void EffectVehicle::Tick()
{
_effect_tick_procs[this->subtype](this);
}
@@ -2498,7 +2498,7 @@ Trackdir GetVehicleTrackdir(const Vehicle *v)
/* Vehicle is turning around, get the direction from vehicle's direction */
return DiagdirToDiagTrackdir(DirToDiagDir(v->direction));
- /* case VEH_AIRCRAFT: case VEH_SPECIAL: case VEH_DISASTER: */
+ /* case VEH_AIRCRAFT: case VEH_EFFECT: case VEH_DISASTER: */
default: return INVALID_TRACKDIR;
}
}
@@ -2955,7 +2955,7 @@ static const SaveLoad _aircraft_desc[] = {
};
static const SaveLoad _special_desc[] = {
- SLE_WRITEBYTE(Vehicle, type, VEH_SPECIAL),
+ SLE_WRITEBYTE(Vehicle, type, VEH_EFFECT),
SLE_VAR(Vehicle, subtype, SLE_UINT8),
@@ -2973,8 +2973,8 @@ static const SaveLoad _special_desc[] = {
SLE_VAR(Vehicle, progress, SLE_UINT8),
SLE_VAR(Vehicle, vehstatus, SLE_UINT8),
- SLE_VARX(cpp_offsetof(Vehicle, u) + cpp_offsetof(VehicleSpecial, animation_state), SLE_UINT16),
- SLE_VARX(cpp_offsetof(Vehicle, u) + cpp_offsetof(VehicleSpecial, animation_substate), SLE_UINT8),
+ SLE_VARX(cpp_offsetof(Vehicle, u) + cpp_offsetof(VehicleEffect, animation_state), SLE_UINT16),
+ SLE_VARX(cpp_offsetof(Vehicle, u) + cpp_offsetof(VehicleEffect, animation_substate), SLE_UINT8),
/* reserve extra space in savegame here. (currently 16 bytes) */
SLE_CONDNULL(16, 2, SL_MAX_VERSION),
@@ -3062,7 +3062,7 @@ void Load_VEHS()
case VEH_ROAD: v = new (index) RoadVehicle(); break;
case VEH_SHIP: v = new (index) Ship(); break;
case VEH_AIRCRAFT: v = new (index) Aircraft(); break;
- case VEH_SPECIAL: v = new (index) SpecialVehicle(); break;
+ case VEH_EFFECT: v = new (index) EffectVehicle(); break;
case VEH_DISASTER: v = new (index) DisasterVehicle(); break;
case VEH_INVALID: v = new (index) InvalidVehicle(); break;
default: NOT_REACHED();
@@ -3282,7 +3282,7 @@ void Vehicle::SetNext(Vehicle *next)
}
}
-void SpecialVehicle::UpdateDeltaXY(Direction direction)
+void EffectVehicle::UpdateDeltaXY(Direction direction)
{
this->x_offs = 0;
this->y_offs = 0;
diff --git a/src/vehicle_base.h b/src/vehicle_base.h
index 806dc2dc7..33d4b8696 100644
--- a/src/vehicle_base.h
+++ b/src/vehicle_base.h
@@ -169,7 +169,7 @@ struct VehicleRoad {
RoadTypes compatible_roadtypes;
};
-struct VehicleSpecial {
+struct VehicleEffect {
uint16 animation_state;
byte animation_substate;
};
@@ -313,7 +313,7 @@ public:
VehicleRail rail;
VehicleAir air;
VehicleRoad road;
- VehicleSpecial special;
+ VehicleEffect effect;
VehicleDisaster disaster;
VehicleShip ship;
} u;
@@ -547,12 +547,12 @@ public:
* - bulldozer (road works)
* - bubbles (industry)
*/
-struct SpecialVehicle : public Vehicle {
+struct EffectVehicle : public Vehicle {
/** Initializes the Vehicle to a special vehicle */
- SpecialVehicle() { this->type = VEH_SPECIAL; }
+ EffectVehicle() { this->type = VEH_EFFECT; }
/** We want to 'destruct' the right class. */
- virtual ~SpecialVehicle() {}
+ virtual ~EffectVehicle() {}
const char *GetTypeString() const { return "special vehicle"; }
void UpdateDeltaXY(Direction direction);
diff --git a/src/vehicle_func.h b/src/vehicle_func.h
index 2d44eb6a9..2417b6642 100644
--- a/src/vehicle_func.h
+++ b/src/vehicle_func.h
@@ -171,9 +171,9 @@ static inline uint32 GetCmdSendToDepot(const BaseVehicle *v)
bool EnsureNoVehicleOnGround(TileIndex tile);
void StopAllVehicles();
-Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicle type);
-Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicle type);
-Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicle type);
+Vehicle *CreateEffectVehicle(int x, int y, int z, EffectVehicleType type);
+Vehicle *CreateEffectVehicleAbove(int x, int y, int z, EffectVehicleType type);
+Vehicle *CreateEffectVehicleRel(const Vehicle *v, int x, int y, int z, EffectVehicleType type);
extern VehicleID _vehicle_id_ctr_day;
extern Vehicle *_place_clicked_vehicle;
diff --git a/src/vehicle_type.h b/src/vehicle_type.h
index 1fbd3da04..b1188737a 100644
--- a/src/vehicle_type.h
+++ b/src/vehicle_type.h
@@ -14,7 +14,7 @@ enum VehicleType {
VEH_ROAD,
VEH_SHIP,
VEH_AIRCRAFT,
- VEH_SPECIAL,
+ VEH_EFFECT,
VEH_DISASTER,
VEH_END,
VEH_INVALID = 0xFF,
@@ -39,7 +39,7 @@ struct BaseVehicle
static const VehicleID INVALID_VEHICLE = 0xFFFF;
/* Effect vehicle types */
-enum EffectVehicle {
+enum EffectVehicleType {
EV_CHIMNEY_SMOKE = 0,
EV_STEAM_SMOKE = 1,
EV_DIESEL_SMOKE = 2,