So I started browsing the source code for this plugin and found the following bit of code:
if (_basicHome)
The boolean variable _basicHome is explicitly set to 'false' twice in the code, but is never set to either 'true', or even another variable that might have a value of 'true'. So this effectively means that the plugin won't allow jumping straight to the Basic Home screen (WINDOW_SECOND_HOME), but only to the regular Home Screen. Of course I could try to compile it with a tweak to fix this, but then I'd first have to figure out which parts of the MP code I need to download before I can compile the plugin (as the plugin is referring to parts of the MP code).
But more interesting would be to know why Basic Home is explicitly blocked from being "jumped to" with a key combination....
It looks as if there's some plan to make it possible to jump to Basic Home, but since there's no way to get the _basicHome variable set to 'true' it won't work. Unless of course I have missed something, but I did 'grep' the entire source dir and all subdirs for "_basicHome" and found no lines that could possibly set it to 'true'.
if (_basicHome)
msg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_SECOND_HOME, 0, null);
elsemsg = new GUIMessage(GUIMessage.MessageType.GUI_MSG_GOTO_WINDOW, 0, 0, 0, (int)GUIWindow.Window.WINDOW_HOME, 0, null);
The boolean variable _basicHome is explicitly set to 'false' twice in the code, but is never set to either 'true', or even another variable that might have a value of 'true'. So this effectively means that the plugin won't allow jumping straight to the Basic Home screen (WINDOW_SECOND_HOME), but only to the regular Home Screen. Of course I could try to compile it with a tweak to fix this, but then I'd first have to figure out which parts of the MP code I need to download before I can compile the plugin (as the plugin is referring to parts of the MP code).
But more interesting would be to know why Basic Home is explicitly blocked from being "jumped to" with a key combination....
It looks as if there's some plan to make it possible to jump to Basic Home, but since there's no way to get the _basicHome variable set to 'true' it won't work. Unless of course I have missed something, but I did 'grep' the entire source dir and all subdirs for "_basicHome" and found no lines that could possibly set it to 'true'.