-
Notifications
You must be signed in to change notification settings - Fork 53
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
New: Allow uncoupling of cars #930
Conversation
Finding an unused default key was actually more difficult than I thought, U is actually in use for cutoff. (Probably not used by many if any items, as this is only currently passed to custom plugins) For the minute, I've set it to semicolon. |
Right file this time...
https://www.youtube.com/watch?v=ayou3XdY4BE Tested and seems to be working reasonably OK, but no doubt once it goes public someone will completely break it. I'll probably merge this tomorrow or Sunday and post a thread with this video in on BVEWorldwide for the wider community. |
If this is a train with two trains, is it possible to drive the train behind after separating and moving the front train with TFO? |
At the minute, I'm afraid this is incredibly simplistic. You can uncouple a portion (front / rear) of the train and drive it away, but anything left behind will not move at the minute. What you want should be possible in the much longer-term, but it'll need careful thinking about as to how it works, as obviously we wouldn't want a set of goods trucks to drive themselves off without a locomotive attached. I think whatever happens, something like that will require a whole set of configuration XML somewhere to denote the fact that this portion may automonously drive away. Essentially, I'm working on the principle of many small steps. |
I've compiled this branch, and it crashed when I jump to the second car and decoupling the front car (Shift+Ctrl+Semicolon) Another crash would occur if I jump to the last 2 car and decouples the front car: (Train used: MTR SIL C-train EMU-FAO) |
Thanks, must have broken something in the logic for the front uncouple. |
Done a little redesign, and hopefully that should now work. @Kenny-Hui |
Very unlikely, I've checked the panel.animated it is the same file as another train HKRSC has produced (MTR URL C-Train EMU). It's probably still in development, or there was never one developed in the first place. |
Also, just wondering is there any plan for animated or train plugin to be able to tell if the train has been divided? (I assume for animated you can check if the |
Plugins should I think be able to check the runtime data. Realistically though, I'd much rather move all code from plugins into the sim itself. |
I think for .NET Plugin, it will call |
I'll have to check, not off the top of my head on the phone :/ Either way, the whole plugin interface is a teetering tower :) |
Yuck, you're right. Looking at the VehicleSpecs, it contains the basic specs of the train, but even this would seem to need some major revision now you've brought this point up. Doing some quick digging through the vast quantity of stuff I've got, I can see various methods of car / train information handling including beacons to pass this data, and it being hardcoded into some plugins. Overwhelmingly though, it's route-specific trains. I do wonder at this point whether it'd be better to introduce a V2 runtime API, specifically designed to take into account coupling, and allowing plugins to do things like set the deceleration / acceleration on a per-car basis. Another (easy-ish) possibility would probably be to call the SetVehicleSpecs function on a couple / uncouple event. What I don't know however is how existing code would react, especially some of the legacy plugins. Whilst obviously this could be tested, it's the sort of thing that could cause subtle issues. Other thoughts: Essentially, we need a design and steering committe almost. |
I do agree the current Plugin API is kinda a mess, and calling SetVehicleSpecs again could very potentially break things. (I think I have a plugin that does specific stuff with SetVehicleSpecs under the assumption they will only be called once) I think a V2 API would be inevitable one day, probably just far away from now. (Unless there's a new scripting language that can control the train. I probably can abuse some animated CSScript for this but that sounds like a terrible idea) Essentially I am looking to see if there's a way to apply Full Service Brake when a train is decoupled midway while the train is running, although that was probably never the intent for this PR, either way it's just a very minor thing and it's not a very high priority thing. |
Interesting. Another bit of design that needs looking at before going down this hole too far is where the handles are stored. If we're considering coupling etc. then the handles really need to be a property of the driver car, not the train- That's also important if we split off a portion so that it has more than the simple dummy handles in this PR. |
Depending on what information you need there's a lot of ideas and suggestion for the uncoupling features that you can incorporate in the future such as: Sounds played when coupled or uncoupled from the train car |
Completely agree. Have added CanUncouple to the coupler XML. (Add in the same way as a distance)
Train air system is on the list of things to look at, but is complicated by the fact that the pressure distribution is actually only dummy averages, rather than proper simulation. |
This PR allows us to uncouple cars from a train.
No method of coupling two trains at the minute, will be part of a separate PR.
Uncoupling must be done in train exterior view, with the camera set to the car you wish to uncouple.
Another strand of #329
Realistically, that wants merging reasonably close to this, as otherwise we've got no way of actually doing anything interesting with this.
TODO:
Animated functions which use car indicies are now broken.Add uncoupling sound with appropriate trigger.Assign default controls- Probably going to be CTRL + U to uncouple front and ALT + U to uncouple rear (??)Further Development:
We need a method of finding preceeding / next trains, which takes into account those on other rails, and where the points are set, although this is probably part of #329
It also occurs to me that uncoupled couplers require a different state to that of the coupled / default ones.
The number of people using coupler objects is likely to be lower (as a later addition), but that's someting interesting to think about.
A nicer GUI for this might be useful.
MSTS / TrainSim have a consist window, which could also be useful for other things, such as showing car loadings / weights etc.
Click on couplers to decouple?
Presumably this could be bodged in using something along the lines of the clickable 3D cabs.
RELATED:
The main website should have a default keymap template on it somewhere.
Essentially, something like this random template found on Google.
This would help to increase accessibility for new players, although legacy plugins may confuse the issue slightly, as these often use the ATS keys to operate wipers etc.