-
-
Notifications
You must be signed in to change notification settings - Fork 968
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature: Allow converting track under trains when compatible with the new rail type #8505
base: master
Are you sure you want to change the base?
Conversation
f2e0c3a
to
2d890c6
Compare
This allows converting elrail to rail, while an elrail train is on the tile. How do road/tramtypes behave? |
2d890c6
to
25f992b
Compare
src/rail_cmd.cpp
Outdated
|
||
Train *t = Train::From(v); | ||
if (HasBit(t->First()->compatible_railtypes, procdata->type) && HasPowerOnRail(t->First()->railtype, procdata->type)) return nullptr; | ||
if (rail_bits & TRACK_BIT_WORMHOLE) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The TRACK_BIT_WORMHOLE masking/etc is specific to the custom bridge heads implementation in my branch, so you can probably simplify this section a bit.
|
||
if (v->z_pos > procdata->z) return nullptr; | ||
Train *t = Train::From(v)->First(); | ||
if (HasBit(t->compatible_railtypes, procdata->type) && HasPowerOnRail(t->railtype, procdata->type)) return nullptr; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HasPowerOnRail(t->railtype, procdata->type)
is not correct as this only tests the rail type of the first engine.
It's perfectly legal to create mixed power consists of compatible but not necessarily mutually powered rail types.
See the calculation of Train::compatible_railtypes in Train::ConsistChanged.
For testing you also need to note the current value of VRF_EL_ENGINE_ALLOWED_NORMAL_RAIL
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes, I did wonder. Not as simple as I thought! I'll get there... probably.
25f992b
to
e184ffc
Compare
Any chance of you continuing this patch? It sounds like a lovely idea :) |
This already seems possible so I don't know if this is just outdated, or does something different than the existing behaviour? |
… new rail type
e184ffc
to
2f66088
Compare
Guessing a bit. As peter says, this may not be necessary at all |
}; | ||
|
||
if (HasVehicleOnPos(tile, &data, &EnsureNoIncompatibleRailtypeTrainProc)) { | ||
return_cmd_error(STR_ERROR_TRAIN_IN_THE_WAY); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
return_cmd_error
got removed recently.
return v; // Non-trains are always in the way | ||
} | ||
|
||
const EnsureNoIncompatibleRailtypeTrainOnGroundData *procdata = (EnsureNoIncompatibleRailtypeTrainOnGroundData *)data; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const EnsureNoIncompatibleRailtypeTrainOnGroundData *procdata = (EnsureNoIncompatibleRailtypeTrainOnGroundData *)data; | |
const EnsureNoIncompatibleRailtypeTrainOnGroundData *procdata = static_cast<EnsureNoIncompatibleRailtypeTrainOnGroundData *>(data); |
if (v->type == VEH_DISASTER || v->type == VEH_AIRCRAFT) return nullptr; // Don't care about flying things | ||
return v; // Non-trains are always in the way |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why would a truck/bus/tram be in the way, and a landed UFO not?
Also, if this returns a vehicle then later on an error about a train being in the way will be given when this could be a truck/bus/tram.
So, might it make sense to just ignore all non-trains? After all, won't a bus/tram be compatible with the new rail type in any case?
return v; // Non-trains are always in the way | ||
} | ||
|
||
const EnsureNoIncompatibleRailtypeTrainOnTrackBitsData *procdata = (EnsureNoIncompatibleRailtypeTrainOnTrackBitsData *)data; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const EnsureNoIncompatibleRailtypeTrainOnTrackBitsData *procdata = (EnsureNoIncompatibleRailtypeTrainOnTrackBitsData *)data; | |
const EnsureNoIncompatibleRailtypeTrainOnTrackBitsData *procdata = static_cast<EnsureNoIncompatibleRailtypeTrainOnTrackBitsData *>(data); |
if (v->type == VEH_DISASTER || v->type == VEH_AIRCRAFT) return nullptr; // Don't care about flying things | ||
return v; // Non-trains are always in the way |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why would a truck/bus/tram be in the way, and a landed UFO not?
Also, if this returns a vehicle then later on an error about a train being in the way will be given when this could be a truck/bus/tram.
So, might it make sense to just ignore all non-trains? After all, won't a bus/tram be compatible with the new rail type in any case?
Motivation / Problem
Probably fixes #8314
Cherry-picked from JGRennison/OpenTTD-patches@a18ebba with some modifications due to no per-vehicle-type
HasVehicleOnPos
functionAt the request of @markspolakovs ;)
Description
Allows converting track under trains when compatible with the new rail type
Limitations
Checklist for review
Some things are not automated, and forgotten often. This list is a reminder for the reviewers.